Skip to content

Commit 832342a

Browse files
committed
Add documentation for SQLiteDriver and YMLDriver variables
- Created HTML documentation for SQLiteDriver, detailing its usage and providing an example. - Created HTML documentation for YMLDriver, detailing its usage and providing an example.
1 parent 065cfd4 commit 832342a

110 files changed

Lines changed: 18387 additions & 2203 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/assets/hierarchy.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/icons.js

Lines changed: 17 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/icons.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/assets/main.js

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/material-style.css

Lines changed: 54 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@
4949
--color-scheme: var(--md-sys-color-scheme); */
5050

5151
--top-app-bar-height: 4.5rem;
52+
--top-app-bar-padding-vertical: .5rem;
5253
--footer-height: 3.5rem;
54+
55+
--safe-area-inset-top: env(safe-area-inset-top);
5356
}
5457

5558
body {
@@ -64,30 +67,50 @@ img {
6467
max-width: 100%;
6568
}
6669

67-
*::-webkit-scrollbar {
68-
width: 8px;
69-
height: 8px;
70-
}
71-
*::-webkit-scrollbar-track {
72-
background: none;
70+
@supports not selector(::-webkit-scrollbar) {
71+
* {
72+
scrollbar-width: thin;
73+
scrollbar-color: var(--color-accent) transparent;
74+
}
7375
}
74-
*::-webkit-scrollbar-thumb {
75-
border: none;
76+
77+
@supports selector(::-webkit-scrollbar) {
78+
*::-webkit-scrollbar {
79+
width: 8px;
80+
height: 8px;
81+
}
82+
*::-webkit-scrollbar-track {
83+
background: none;
84+
margin: 4px;
85+
}
86+
*::-webkit-scrollbar-thumb {
87+
border: none;
88+
}
89+
*::-webkit-scrollbar-thumb:hover,
90+
*::-webkit-scrollbar-thumb:active {
91+
background-color: var(--md-sys-color-secondary);
92+
}
93+
* {
94+
scrollbar-width: unset;
95+
scrollbar-color: unset;
96+
}
7697
}
7798

7899
.container-main {
79100
min-height: calc(100vh - var(--top-app-bar-height) - var(--footer-height));
80101
}
81102
.col-content {
82103
overflow: hidden;
104+
position: relative;
83105
box-sizing: border-box;
84106
padding: 1.75rem;
107+
margin-bottom: 1.75rem;
85108
border-radius: 28px;
86109
background-color: var(--md-sys-color-surface);
87110
}
88111
.page-menu {
89112
height: fit-content;
90-
padding: 0.75rem 1.75rem;
113+
padding: 1.25rem 1.75rem;
91114
border-radius: 28px;
92115
background-color: var(--md-sys-color-surface);
93116
}
@@ -96,51 +119,40 @@ img {
96119
position: relative;
97120
}
98121
.title {
99-
display: block;
100-
max-width: calc(100% - 5rem);
122+
display: inline-block;
101123
white-space: nowrap;
102124
overflow: hidden;
103125
text-overflow: ellipsis;
104126
font-size: 22px;
105127
}
106-
128+
.tsd-page-title {
129+
word-break: break-all;
130+
}
107131
.tsd-page-toolbar {
108-
padding: 8px 0;
109-
height: calc(var(--top-app-bar-height) - 16px);
132+
padding: 1rem 0;
110133
background-color: var(--color-background);
111134
border-bottom: none;
112135
}
113-
.tsd-page-toolbar .tsd-toolbar-contents {
114-
height: 56px;
115-
}
116-
.tsd-page-toolbar .table-cell {
117-
height: 56px;
118-
margin-left: 1.5rem;
119-
}
120136
.tsd-page-toolbar .tsd-toolbar-icon {
121137
padding: 20px 0;
122138
}
123139
#tsd-search {
124-
line-height: 56px;
140+
border-radius: 38px;
141+
}
142+
#tsd-search-input {
125143
border-radius: 22px;
126144
}
127-
#tsd-search .results {
128-
z-index: -1;
129-
top: calc(56px - 22px);
130-
padding-top: 22px;
131-
box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.125);
132-
background-color: var(--color-background-secondary);
133-
border-bottom-left-radius: 22px;
134-
border-bottom-right-radius: 22px;
135-
overflow: hidden;
145+
#tsd-search-input:focus-visible {
146+
background-color: var(--color-accent);
136147
}
137-
#tsd-search .results li {
148+
#tsd-search-results > li {
138149
background: none;
139150
}
140-
#tsd-search .results a {
141-
padding: 1rem 0.25rem;
151+
#tsd-toolbar-menu-trigger,
152+
#tsd-search-trigger {
153+
border-radius: 50%;
142154
}
143-
.col-sidebar {
155+
html:not(.has-menu) .col-sidebar {
144156
padding-top: 0;
145157
margin-right: 1rem;
146158
}
@@ -165,6 +177,9 @@ img {
165177
text-decoration: none;
166178
background-color: var(--md-sys-color-surface-container-high);
167179
}
180+
.page-menu .tsd-accordion-summary {
181+
margin-bottom: 0.5rem;
182+
}
168183
.page-menu .tsd-accordion-summary svg {
169184
position: absolute;
170185
right: 0;
@@ -189,10 +204,10 @@ img {
189204
.tsd-navigation .tsd-accordion-summary {
190205
width: 100%;
191206
}
207+
.tsd-accordion .tsd-accordion-summary > svg,
192208
.tsd-index-accordion .tsd-accordion-summary > svg {
193209
position: absolute;
194210
right: 1.5rem;
195-
margin-top: 1rem;
196211
}
197212
.tsd-accordion-summary .tsd-kind-icon ~ span {
198213
margin-right: 2.5rem;
@@ -217,9 +232,6 @@ img {
217232
}
218233

219234
@media (max-width: 769px) {
220-
.container {
221-
padding: 1rem;
222-
}
223235
.col-sidebar {
224236
margin-right: 0;
225237
}
@@ -238,6 +250,9 @@ img {
238250
max-height: calc(100vh - var(--footer-height) - var(--top-app-bar-height));
239251
top: var(--top-app-bar-height);
240252
}
253+
.site-menu {
254+
margin-top: 0;
255+
}
241256
.page-menu {
242257
margin-left: 1rem;
243258
}

docs/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)