@rkosafo/cai.components 0.0.78 → 0.0.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/README.md +8 -8
  2. package/dist/baseEditor/index.svelte +32 -32
  3. package/dist/builders/filters/FilterBuilder.svelte +641 -641
  4. package/dist/forms/FormCheckbox/FormCheckbox.svelte +53 -53
  5. package/dist/forms/FormClEditor/ClEdito.svelte +68 -68
  6. package/dist/forms/FormDatepicker/FormDatepicker.svelte +159 -159
  7. package/dist/forms/FormFileUpload/FormFileUplad.svelte +134 -134
  8. package/dist/forms/FormInput/FormInput.svelte +87 -87
  9. package/dist/forms/FormRadio/FormRadio.svelte +53 -53
  10. package/dist/forms/FormSelect/FormSelect.svelte +88 -88
  11. package/dist/forms/FormTextarea/FormTextarea.svelte +78 -78
  12. package/dist/forms/button-toggle/ButtonToggle.svelte +119 -119
  13. package/dist/forms/button-toggle/CheckIcon.svelte +28 -28
  14. package/dist/forms/checkbox/Checkbox.svelte +82 -82
  15. package/dist/forms/checkbox/CheckboxButton.svelte +92 -92
  16. package/dist/forms/datepicker/Datepicker.svelte +707 -707
  17. package/dist/forms/form/Form.svelte +69 -69
  18. package/dist/forms/input/Input.svelte +363 -363
  19. package/dist/forms/label/Label.svelte +38 -38
  20. package/dist/forms/radio/Radio.svelte +48 -48
  21. package/dist/forms/radio/RadioButton.svelte +22 -22
  22. package/dist/forms/select/Select.svelte +56 -56
  23. package/dist/forms/textarea/Textarea.svelte +165 -165
  24. package/dist/forms/toggle/Toggle.svelte +70 -70
  25. package/dist/layout/Chat/CategorySelector.svelte +52 -52
  26. package/dist/layout/Chat/ChatEntry.svelte +246 -246
  27. package/dist/layout/Chat/ChatEntrySkeleton.svelte +81 -81
  28. package/dist/layout/Chat/ChatHeader.svelte +172 -172
  29. package/dist/layout/Chat/ChatInput.svelte +207 -207
  30. package/dist/layout/Chat/DraggableWindow.svelte +230 -230
  31. package/dist/layout/Chat/PreviewPage.svelte +182 -182
  32. package/dist/layout/Chat/RichText.svelte +216 -216
  33. package/dist/layout/ComponentCanvas/Canvas.svelte +40 -40
  34. package/dist/layout/ComponentCanvas/ComponentRenderer.svelte +85 -85
  35. package/dist/layout/TF/Content/Content.svelte +21 -21
  36. package/dist/layout/TF/Header/Header.svelte +166 -166
  37. package/dist/layout/TF/Sidebar/Sidebar.svelte +148 -148
  38. package/dist/layout/TF/Wrapper/Wrapper.svelte +17 -17
  39. package/dist/layout/mailing/MailPaginator.svelte +36 -36
  40. package/dist/layout/mailing/MailSidebar.svelte +39 -39
  41. package/dist/layout/mailing/MailToolBar.svelte +174 -174
  42. package/dist/layout/mailing/MailingContent.svelte +10 -10
  43. package/dist/layout/mailing/MailingHeader.svelte +55 -55
  44. package/dist/layout/mailing/MailingMessageCard.svelte +112 -112
  45. package/dist/layout/mailing/MailingMessageViewer.svelte +87 -87
  46. package/dist/layout/mailing/MailingModule.svelte +448 -448
  47. package/dist/styles/docs.css +615 -615
  48. package/dist/styles/tf-layout.css +185 -185
  49. package/dist/themes/ThemeProvider.svelte +20 -20
  50. package/dist/types/index.d.ts +2 -0
  51. package/dist/typography/heading/Heading.svelte +35 -35
  52. package/dist/ui/accordion/Accordion.svelte +49 -49
  53. package/dist/ui/accordion/AccordionItem.svelte +173 -173
  54. package/dist/ui/alert/Alert.svelte +83 -83
  55. package/dist/ui/alertDialog/AlertDialog.svelte +40 -40
  56. package/dist/ui/avatar/Avatar.svelte +77 -77
  57. package/dist/ui/box/Box.svelte +28 -28
  58. package/dist/ui/breadcrumb/Breadcrumb.svelte +39 -39
  59. package/dist/ui/buttons/ActionButton.svelte +234 -234
  60. package/dist/ui/buttons/Button.svelte +102 -102
  61. package/dist/ui/buttons/GradientButton.svelte +59 -59
  62. package/dist/ui/datatable/Datatable.svelte +525 -525
  63. package/dist/ui/drawer/Drawer.svelte +300 -300
  64. package/dist/ui/dropdown/Dropdown.svelte +36 -36
  65. package/dist/ui/dropdown/DropdownDivider.svelte +11 -11
  66. package/dist/ui/dropdown/DropdownGroup.svelte +14 -14
  67. package/dist/ui/dropdown/DropdownHeader.svelte +14 -14
  68. package/dist/ui/dropdown/DropdownItem.svelte +52 -52
  69. package/dist/ui/footer/Footer.svelte +15 -15
  70. package/dist/ui/footer/FooterBrand.svelte +37 -37
  71. package/dist/ui/footer/FooterCopyright.svelte +45 -45
  72. package/dist/ui/footer/FooterIcon.svelte +22 -22
  73. package/dist/ui/footer/FooterLink.svelte +33 -33
  74. package/dist/ui/footer/FooterLinkGroup.svelte +13 -13
  75. package/dist/ui/icons/IconifyIcon.svelte +7 -7
  76. package/dist/ui/indicator/Indicator.svelte +42 -42
  77. package/dist/ui/modal/Modal.svelte +265 -265
  78. package/dist/ui/notificationList/NotificationList.svelte +123 -123
  79. package/dist/ui/pageLoader/PageLoader.svelte +14 -14
  80. package/dist/ui/pageLoader/PageLoader2.svelte +99 -0
  81. package/dist/ui/pageLoader/PageLoader2.svelte.d.ts +24 -0
  82. package/dist/ui/pageLoader/index.d.ts +2 -1
  83. package/dist/ui/pageLoader/index.js +2 -1
  84. package/dist/ui/paginate/Paginate.svelte +96 -96
  85. package/dist/ui/speedDial/SpeedDial.svelte +77 -77
  86. package/dist/ui/speedDial/SpeedDialButton.svelte +75 -75
  87. package/dist/ui/speedDial/SpeedDialTrigger.svelte +79 -79
  88. package/dist/ui/tab/Tab.svelte +93 -67
  89. package/dist/ui/table/Table.svelte +396 -396
  90. package/dist/ui/tableLoader/TableLoader.svelte +24 -24
  91. package/dist/ui/toast/Toast.svelte +337 -337
  92. package/dist/ui/toast/Toast.svelte.d.ts +10 -10
  93. package/dist/ui/toolbar/Toolbar.svelte +59 -59
  94. package/dist/ui/toolbar/ToolbarButton.svelte +56 -56
  95. package/dist/ui/toolbar/ToolbarGroup.svelte +43 -43
  96. package/dist/ui/tooltip/Tooltip.svelte +51 -51
  97. package/dist/utils/Popper.svelte +257 -257
  98. package/dist/utils/closeButton/CloseButton.svelte +88 -88
  99. package/dist/utils/index.d.ts +2 -2
  100. package/dist/utils/index.js +3 -3
  101. package/dist/utils/singleSelection.svelte.js +48 -48
  102. package/dist/youtube/index.svelte +12 -12
  103. package/package.json +1 -1
@@ -1,616 +1,616 @@
1
- .yt-video {
2
- height: 250px;
3
- }
4
-
5
- @media only screen and (min-width: 768px) {
6
- .yt-video {
7
- height: 350px;
8
- }
9
- }
10
-
11
- @media only screen and (min-width: 1024px) {
12
- .yt-video {
13
- height: 450px;
14
- }
15
- }
16
-
17
- @media only screen and (max-width: 1024px) {
18
- .collapse.collapsed {
19
- display: none;
20
- }
21
- }
22
-
23
- .highlight {
24
- @apply overflow-hidden;
25
- }
26
-
27
- #mainContent > h2 {
28
- @apply mt-8 mb-4 text-2xl font-bold text-gray-900 dark:text-white;
29
- }
30
-
31
- #mainContent > h3 {
32
- @apply mt-8 mb-4 text-xl font-bold text-gray-900 dark:text-white;
33
- }
34
-
35
- #mainContent > h4 {
36
- @apply mt-8 mb-4 text-lg font-bold text-gray-900 dark:text-white;
37
- }
38
-
39
- #mainContent > p {
40
- @apply /*text-gray-600 dark:text-gray-400*/ mb-4 text-base font-normal;
41
- }
42
-
43
- #mainContent > p > a,
44
- #mainContent > ul > li > a,
45
- #mainContent > ol > li > a {
46
- @apply decoration-primary-700 dark:decoration-primary-700 font-medium text-gray-900 underline decoration-1 underline-offset-2 dark:text-white;
47
- }
48
-
49
- #mainContent > p > a:hover,
50
- #mainContent > ul > li > a:hover,
51
- #mainContent > ol > li > a:hover {
52
- @apply /*text-gray-900*/ decoration-2 dark:text-white;
53
- }
54
-
55
- /*
56
- #mainContent > p > code,
57
- #mainContent > ul > li > code,
58
- #mainContent > ol > li > code {
59
- @apply px-1 font-mono text-sm text-blue-600 break-all dark:text-blue-400;
60
- }
61
- */
62
-
63
- #mainContent > ul {
64
- list-style: disc;
65
- }
66
-
67
- #mainContent > ol {
68
- list-style: decimal;
69
- }
70
-
71
- #mainContent p > strong {
72
- @apply text-gray-900 dark:text-white;
73
- }
74
-
75
- #mainContent > ul,
76
- #mainContent > div > div > ul,
77
- #mainContent > ol {
78
- padding-left: 1rem;
79
- }
80
-
81
- #mainContent > ul > li,
82
- #mainContent > ol > li {
83
- @apply mb-4 text-base font-normal text-gray-600 dark:text-gray-400;
84
- }
85
-
86
- /* prism styles */
87
-
88
- code[class*="language-"],
89
- pre[class*="language-"] {
90
- color: #c5c8c6;
91
- @apply text-gray-800 dark:text-gray-400;
92
- font-family:
93
- Menlo,
94
- ui-monospace,
95
- SFMono-Regular,
96
- Monaco,
97
- Consolas,
98
- Liberation Mono,
99
- Courier New,
100
- monospace;
101
- direction: ltr;
102
- text-align: left;
103
- white-space: pre;
104
- word-spacing: normal;
105
- word-break: normal;
106
- line-height: 1.5;
107
- text-shadow: none;
108
-
109
- -moz-tab-size: 4;
110
- -o-tab-size: 4;
111
- tab-size: 4;
112
-
113
- -webkit-hyphens: none;
114
- -moz-hyphens: none;
115
- -ms-hyphens: none;
116
- hyphens: none;
117
-
118
- @apply font-normal;
119
- }
120
-
121
- /* without preview */
122
- .highlight pre[class*="language-"] {
123
- overflow: auto;
124
- @apply m-0 mt-4 mb-8 rounded-xl bg-gray-50 p-6 pt-6 text-sm dark:bg-gray-800;
125
- }
126
-
127
- /* when after preview */
128
- .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight pre[class*="language-"],
129
- .code-preview-wrapper + .code-syntax-wrapper > .code-syntax {
130
- overflow: auto;
131
- @apply mt-0 rounded-none;
132
- }
133
-
134
- .code-preview-wrapper + .code-syntax-wrapper {
135
- @apply mb-4;
136
- }
137
-
138
- .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight > pre[class*="language-"] {
139
- @apply m-0 bg-gray-50 p-4 dark:bg-gray-800;
140
- }
141
-
142
- :not(pre) > code[class*="language-"],
143
- pre[class*="language-"] {
144
- @apply bg-gray-50 dark:bg-gray-800;
145
- }
146
-
147
- /* Inline code */
148
- :not(pre) > code[class*="language-"] {
149
- padding: 0.1em;
150
- border-radius: 0.3em;
151
- }
152
-
153
- .token.comment,
154
- .token.prolog,
155
- .token.doctype,
156
- .token.cdata {
157
- @apply text-gray-800 dark:text-gray-400;
158
- }
159
-
160
- .token.punctuation {
161
- @apply text-gray-800 dark:text-gray-400;
162
- }
163
-
164
- .namespace {
165
- opacity: 0.7;
166
- }
167
-
168
- .token.property,
169
- .token.keyword,
170
- .token.tag {
171
- @apply text-orange-900 dark:text-orange-500;
172
- }
173
-
174
- .token.class-name {
175
- color: #ffffb6;
176
- text-decoration: underline;
177
- }
178
-
179
- .token.boolean,
180
- .token.constant {
181
- @apply text-green-600 dark:text-green-500;
182
- }
183
-
184
- .token.symbol,
185
- .token.deleted {
186
- @apply text-red-500 dark:text-red-400;
187
- }
188
-
189
- .token.number {
190
- @apply text-pink-500 dark:text-pink-400;
191
- }
192
-
193
- .token.selector,
194
- .token.attr-name,
195
- .token.string,
196
- .token.char,
197
- .token.builtin,
198
- .token.inserted {
199
- @apply text-red-500 dark:text-red-400;
200
- }
201
-
202
- .token.variable {
203
- @apply text-purple-500 dark:text-purple-400;
204
- }
205
-
206
- .token.operator {
207
- @apply text-gray-500 dark:bg-gray-800 dark:text-gray-400;
208
- }
209
-
210
- .token.entity {
211
- @apply text-yellow-400 dark:text-yellow-300;
212
- cursor: help;
213
- }
214
-
215
- .token.url {
216
- @apply text-primary-600 dark:text-primary-500;
217
- }
218
-
219
- .language-css .token.string,
220
- .style .token.string {
221
- @apply text-red-500 dark:text-red-400;
222
- }
223
-
224
- .token.atrule,
225
- .token.attr-value {
226
- @apply text-primary-600 dark:text-primary-500;
227
- }
228
-
229
- .token.function {
230
- /* color: #dad085; */
231
- @apply text-slate-600 dark:text-slate-400;
232
- }
233
-
234
- .token.regex {
235
- color: #e9c062;
236
- }
237
-
238
- .token.important {
239
- color: #fd971f;
240
- }
241
-
242
- .token.important,
243
- .token.bold {
244
- font-weight: bold;
245
- }
246
-
247
- .token.italic {
248
- font-style: italic;
249
- }
250
-
251
- code.language-bash,
252
- pre.language-bash {
253
- @apply text-primary-600 dark:text-primary-400;
254
- }
255
-
256
- code.language-javascript {
257
- @apply text-primary-600 dark:text-primary-400;
258
- }
259
-
260
- code.language-javascript .token.function {
261
- @apply text-green-500 dark:text-green-300;
262
- }
263
-
264
- code.language-javascript .token.punctuation {
265
- @apply text-gray-500 dark:text-gray-400;
266
- }
267
-
268
- code.language-javascript .token.keyword {
269
- @apply text-pink-500 dark:text-pink-400;
270
- }
271
-
272
- code.language-javascript .token.comment {
273
- @apply text-gray-500 dark:text-gray-500;
274
- }
275
-
276
- code.language-javascript .token.string {
277
- @apply text-purple-600 dark:text-purple-400;
278
- }
279
-
280
- code.language-javascript .token.class-name {
281
- @apply text-orange-400 dark:text-orange-300;
282
- }
283
-
284
- code.language-javascript .token {
285
- /* @apply text-blue-900 dark:text-blue-500; */
286
- background: transparent;
287
- }
288
-
289
- /* language html */
290
- code.language-html .token.tag {
291
- @apply text-fuchsia-700 dark:text-fuchsia-400;
292
- }
293
- code.language-html .token.attr-name {
294
- @apply text-gray-600 dark:text-gray-400;
295
- }
296
- code.language-html .token.attr-value {
297
- @apply text-primary-600 dark:text-primary-400;
298
- }
299
- code.language-html .token.punctuation {
300
- @apply text-gray-400 dark:text-gray-500;
301
- }
302
- code.language-html .token.attr-name {
303
- @apply text-green-600 dark:text-green-400;
304
- }
305
- code.language-html .token.comment {
306
- @apply text-gray-400 dark:text-gray-500;
307
- }
308
-
309
- /* language svelte */
310
- pre.language-svelte .token.tag {
311
- @apply text-gray-700 dark:text-gray-400;
312
- }
313
- pre.language-svelte .token.attr-value {
314
- @apply text-blue-600 dark:text-blue-500;
315
- }
316
- pre.language-svelte .token.punctuation {
317
- @apply text-gray-400 dark:text-gray-500;
318
- }
319
- pre.language-svelte .token.attr-name {
320
- @apply text-primary-600 dark:text-primary-500;
321
- }
322
- pre.language-svelte .token.comment {
323
- @apply text-gray-400 dark:text-gray-500;
324
- }
325
-
326
- .code-responsive-wrapper {
327
- background-color: #ffffff;
328
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d1d5db' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
329
- }
330
- .dark .code-responsive-wrapper {
331
- background-color: #111827;
332
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%236b7280' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
333
- }
334
-
335
- #carbonads * {
336
- margin: initial;
337
- padding: initial;
338
- }
339
- #carbonads {
340
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
341
- @apply m-0;
342
- }
343
- #carbonads {
344
- display: flex;
345
- max-width: 330px;
346
- box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, 0.1);
347
- z-index: 100;
348
- @apply bg-white dark:bg-gray-800 dark:text-white;
349
- }
350
- #carbonads a {
351
- color: inherit;
352
- text-decoration: none;
353
- }
354
- #carbonads a:hover {
355
- color: inherit;
356
- }
357
- #carbonads span {
358
- position: relative;
359
- display: block;
360
- overflow: hidden;
361
- }
362
- #carbonads .carbon-wrap {
363
- display: flex;
364
- }
365
- #carbonads .carbon-img {
366
- display: block;
367
- margin: 0;
368
- line-height: 1;
369
- }
370
- #carbonads .carbon-img img {
371
- display: block;
372
- }
373
- #carbonads .carbon-text {
374
- font-size: 13px;
375
- padding: 10px;
376
- margin-bottom: 16px;
377
- line-height: 1.5;
378
- text-align: left;
379
- }
380
- #carbonads .carbon-poweredby {
381
- @apply bg-gray-100 dark:bg-gray-800;
382
- display: block;
383
- padding: 6px 8px;
384
- text-align: center;
385
- text-transform: uppercase;
386
- letter-spacing: 0.5px;
387
- font-weight: 600;
388
- font-size: 8px;
389
- line-height: 1;
390
- position: absolute;
391
- bottom: 0;
392
- right: 0;
393
- }
394
-
395
- /* DocSearch */
396
-
397
- .DocSearch .DocSearch-Modal {
398
- @apply mx-auto mt-[1rem] max-h-[calc(100vh-2rem)] w-full max-w-[calc(100vw-2rem)] overflow-hidden rounded-lg lg:mt-[4rem] lg:max-h-none lg:max-w-xl;
399
- }
400
-
401
- .DocSearch.DocSearch-Button {
402
- @apply m-2! ml-0 flex h-[40px] w-[40px] items-center justify-center rounded-lg! border! bg-white p-2! shadow-none hover:bg-gray-100! hover:shadow-none focus:shadow-none focus:ring-4 focus:ring-gray-200 focus:outline-hidden md:mr-0 md:w-52 md:justify-between md:border-solid! md:border-gray-300! md:bg-gray-50! xl:w-64 xl:pl-4 dark:bg-gray-700! dark:md:border-gray-600!;
403
- }
404
-
405
- .DocSearch .DocSearch-Button-Placeholder {
406
- @apply text-sm! font-normal text-gray-500;
407
- }
408
-
409
- .DocSearch .DocSearch-Search-Icon {
410
- @apply h-4! w-4! text-transparent! md:mr-1! md:h-3! md:w-3!;
411
- background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%236A7280" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
412
- }
413
-
414
- .dark .DocSearch .DocSearch-Search-Icon {
415
- background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%239BA3AF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
416
- }
417
-
418
- .DocSearch .DocSearch-Button-Keys {
419
- @apply min-w-0 items-center;
420
- }
421
-
422
- .DocSearch .DocSearch-Button-Key:first-child {
423
- @apply mr-px text-base;
424
- }
425
-
426
- .DocSearch .DocSearch-Button-Key {
427
- @apply m-0 w-auto bg-none pt-1 pb-0 text-xs font-normal text-gray-500 shadow-none;
428
- }
429
-
430
- .DocSearch.DocSearch-Button .DocSearch-Search-Icon {
431
- @apply text-gray-500;
432
- }
433
-
434
- .DocSearch .DocSearch-Hit-icon {
435
- @apply hidden;
436
- }
437
-
438
- .DocSearch .DocSearch-Hits mark {
439
- @apply text-cyan-600 decoration-cyan-600 decoration-2 underline-offset-2;
440
- }
441
-
442
- .DocSearch .DocSearch-Hit[aria-selected="true"] a {
443
- @apply bg-cyan-700;
444
- }
445
-
446
- .DocSearch .DocSearch-Hit-source {
447
- @apply bg-white pb-1 text-gray-700;
448
- }
449
-
450
- .DocSearch .DocSearch-Container {
451
- @apply bg-black/50 bg-gray-900;
452
- }
453
-
454
- .DocSearch .DocSearch-Modal {
455
- @apply shadow-none;
456
- }
457
-
458
- .DocSearch .DocSearch-SearchBar {
459
- @apply border-b border-gray-100 p-0;
460
- }
461
-
462
- .DocSearch .DocSearch-Form {
463
- @apply shadow-none;
464
- }
465
-
466
- .DocSearch .DocSearch-Input {
467
- @apply text-sm text-gray-500 shadow-none focus:shadow-none focus:ring-0 focus:outline-hidden;
468
- }
469
-
470
- .DocSearch .DocSearch-LoadingIndicator svg,
471
- .DocSearch .DocSearch-MagnifierLabel svg {
472
- @apply h-4 w-4;
473
- }
474
-
475
- .DocSearch .DocSearch-Commands {
476
- @apply hidden;
477
- }
478
-
479
- .DocSearch .DocSearch-Footer {
480
- @apply h-12 border-t border-gray-100 shadow-none;
481
- }
482
-
483
- .DocSearch .DocSearch-Dropdown {
484
- @apply bg-white;
485
- }
486
-
487
- .DocSearch .DocSearch-Hit {
488
- @apply pb-2 shadow-none;
489
- }
490
-
491
- .DocSearch .DocSearch-Hit a {
492
- @apply rounded-lg bg-gray-50 shadow-none;
493
- }
494
-
495
- .DocSearch .DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Select-Icon,
496
- .DocSearch .DocSearch-Hit-action-button {
497
- @apply hidden;
498
- }
499
-
500
- .DocSearch .DocSearch-Hit .DocSearch-Hit-action:last-child {
501
- @apply h-5 w-5;
502
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11 9 3 3-3 3' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
503
- }
504
-
505
- .DocSearch .DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-action:last-child {
506
- background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11 9 3 3-3 3' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
507
- }
508
-
509
- .DocSearch .DocSearch-Screen-Icon,
510
- .DocSearch .DocSearch-NoResults-Prefill-List,
511
- .DocSearch .DocSearch-Cancel {
512
- @apply hidden;
513
- }
514
-
515
- .DocSearch .DocSearch-Title {
516
- @apply mb-1 text-lg font-normal text-gray-700;
517
- }
518
-
519
- .DocSearch .DocSearch-Reset {
520
- @apply hover:text-black;
521
- }
522
-
523
- .formkit-alert.formkit-alert-success {
524
- @apply mb-4 rounded-lg bg-green-100 p-4 text-sm font-medium text-green-700;
525
- }
526
-
527
- .formkit-alert.formkit-alert-error:not(:empty) {
528
- @apply mb-4 rounded-lg bg-red-100 p-4 text-sm text-red-700;
529
- }
530
-
531
- /* DARK MODE */
532
- .dark {
533
- .DocSearch.DocSearch-Button {
534
- @apply border-gray-600 bg-gray-800 hover:bg-gray-600 focus:bg-gray-600 focus:ring-gray-700 md:bg-gray-700;
535
- }
536
-
537
- .DocSearch .DocSearch-Button-Placeholder {
538
- @apply text-gray-400;
539
- }
540
-
541
- .DocSearch .DocSearch-Search-Icon {
542
- background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%239BA3AF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
543
- }
544
-
545
- .DocSearch .DocSearch-Button-Key {
546
- @apply text-gray-400;
547
- }
548
-
549
- .DocSearch .DocSearch-Hits mark {
550
- @apply text-white decoration-white;
551
- }
552
-
553
- .DocSearch .DocSearch-Hit[aria-selected="true"] a {
554
- @apply bg-cyan-600;
555
- }
556
-
557
- .DocSearch .DocSearch-Hit-source {
558
- @apply bg-gray-700 text-gray-400;
559
- }
560
-
561
- .DocSearch .DocSearch-Container {
562
- @apply bg-black/80;
563
- }
564
-
565
- .DocSearch .DocSearch-Modal {
566
- @apply bg-gray-700;
567
- }
568
-
569
- .DocSearch .DocSearch-SearchBar {
570
- @apply border-gray-600;
571
- }
572
-
573
- .DocSearch .DocSearch-Form {
574
- @apply bg-gray-700;
575
- }
576
-
577
- .DocSearch .DocSearch-Input {
578
- @apply bg-gray-700 text-white;
579
- }
580
-
581
- .DocSearch .DocSearch-Footer {
582
- @apply border-gray-600 bg-gray-700;
583
- }
584
-
585
- .DocSearch .DocSearch-Dropdown {
586
- @apply bg-gray-700;
587
- }
588
-
589
- .DocSearch .DocSearch-Hit a {
590
- @apply bg-gray-600 hover:bg-cyan-600;
591
- }
592
-
593
- .DocSearch .DocSearch-Title {
594
- @apply text-gray-200;
595
- }
596
-
597
- .DocSearch .DocSearch-Hit-Container {
598
- @apply text-gray-300;
599
- }
600
-
601
- .DocSearch .DocSearch-Logo svg {
602
- @apply text-gray-400;
603
- }
604
-
605
- .DocSearch .DocSearch-Reset {
606
- @apply text-gray-300 hover:text-white;
607
- }
608
-
609
- .formkit-alert.formkit-alert-success {
610
- @apply bg-gray-800 text-green-400;
611
- }
612
-
613
- .formkit-alert.formkit-alert-error:not(:empty) {
614
- @apply bg-gray-800 text-red-400;
615
- }
1
+ .yt-video {
2
+ height: 250px;
3
+ }
4
+
5
+ @media only screen and (min-width: 768px) {
6
+ .yt-video {
7
+ height: 350px;
8
+ }
9
+ }
10
+
11
+ @media only screen and (min-width: 1024px) {
12
+ .yt-video {
13
+ height: 450px;
14
+ }
15
+ }
16
+
17
+ @media only screen and (max-width: 1024px) {
18
+ .collapse.collapsed {
19
+ display: none;
20
+ }
21
+ }
22
+
23
+ .highlight {
24
+ @apply overflow-hidden;
25
+ }
26
+
27
+ #mainContent > h2 {
28
+ @apply mt-8 mb-4 text-2xl font-bold text-gray-900 dark:text-white;
29
+ }
30
+
31
+ #mainContent > h3 {
32
+ @apply mt-8 mb-4 text-xl font-bold text-gray-900 dark:text-white;
33
+ }
34
+
35
+ #mainContent > h4 {
36
+ @apply mt-8 mb-4 text-lg font-bold text-gray-900 dark:text-white;
37
+ }
38
+
39
+ #mainContent > p {
40
+ @apply /*text-gray-600 dark:text-gray-400*/ mb-4 text-base font-normal;
41
+ }
42
+
43
+ #mainContent > p > a,
44
+ #mainContent > ul > li > a,
45
+ #mainContent > ol > li > a {
46
+ @apply decoration-primary-700 dark:decoration-primary-700 font-medium text-gray-900 underline decoration-1 underline-offset-2 dark:text-white;
47
+ }
48
+
49
+ #mainContent > p > a:hover,
50
+ #mainContent > ul > li > a:hover,
51
+ #mainContent > ol > li > a:hover {
52
+ @apply /*text-gray-900*/ decoration-2 dark:text-white;
53
+ }
54
+
55
+ /*
56
+ #mainContent > p > code,
57
+ #mainContent > ul > li > code,
58
+ #mainContent > ol > li > code {
59
+ @apply px-1 font-mono text-sm text-blue-600 break-all dark:text-blue-400;
60
+ }
61
+ */
62
+
63
+ #mainContent > ul {
64
+ list-style: disc;
65
+ }
66
+
67
+ #mainContent > ol {
68
+ list-style: decimal;
69
+ }
70
+
71
+ #mainContent p > strong {
72
+ @apply text-gray-900 dark:text-white;
73
+ }
74
+
75
+ #mainContent > ul,
76
+ #mainContent > div > div > ul,
77
+ #mainContent > ol {
78
+ padding-left: 1rem;
79
+ }
80
+
81
+ #mainContent > ul > li,
82
+ #mainContent > ol > li {
83
+ @apply mb-4 text-base font-normal text-gray-600 dark:text-gray-400;
84
+ }
85
+
86
+ /* prism styles */
87
+
88
+ code[class*="language-"],
89
+ pre[class*="language-"] {
90
+ color: #c5c8c6;
91
+ @apply text-gray-800 dark:text-gray-400;
92
+ font-family:
93
+ Menlo,
94
+ ui-monospace,
95
+ SFMono-Regular,
96
+ Monaco,
97
+ Consolas,
98
+ Liberation Mono,
99
+ Courier New,
100
+ monospace;
101
+ direction: ltr;
102
+ text-align: left;
103
+ white-space: pre;
104
+ word-spacing: normal;
105
+ word-break: normal;
106
+ line-height: 1.5;
107
+ text-shadow: none;
108
+
109
+ -moz-tab-size: 4;
110
+ -o-tab-size: 4;
111
+ tab-size: 4;
112
+
113
+ -webkit-hyphens: none;
114
+ -moz-hyphens: none;
115
+ -ms-hyphens: none;
116
+ hyphens: none;
117
+
118
+ @apply font-normal;
119
+ }
120
+
121
+ /* without preview */
122
+ .highlight pre[class*="language-"] {
123
+ overflow: auto;
124
+ @apply m-0 mt-4 mb-8 rounded-xl bg-gray-50 p-6 pt-6 text-sm dark:bg-gray-800;
125
+ }
126
+
127
+ /* when after preview */
128
+ .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight pre[class*="language-"],
129
+ .code-preview-wrapper + .code-syntax-wrapper > .code-syntax {
130
+ overflow: auto;
131
+ @apply mt-0 rounded-none;
132
+ }
133
+
134
+ .code-preview-wrapper + .code-syntax-wrapper {
135
+ @apply mb-4;
136
+ }
137
+
138
+ .code-preview-wrapper + .code-syntax-wrapper > .code-syntax > .relative > [data-code-wrapper] > .highlight > pre[class*="language-"] {
139
+ @apply m-0 bg-gray-50 p-4 dark:bg-gray-800;
140
+ }
141
+
142
+ :not(pre) > code[class*="language-"],
143
+ pre[class*="language-"] {
144
+ @apply bg-gray-50 dark:bg-gray-800;
145
+ }
146
+
147
+ /* Inline code */
148
+ :not(pre) > code[class*="language-"] {
149
+ padding: 0.1em;
150
+ border-radius: 0.3em;
151
+ }
152
+
153
+ .token.comment,
154
+ .token.prolog,
155
+ .token.doctype,
156
+ .token.cdata {
157
+ @apply text-gray-800 dark:text-gray-400;
158
+ }
159
+
160
+ .token.punctuation {
161
+ @apply text-gray-800 dark:text-gray-400;
162
+ }
163
+
164
+ .namespace {
165
+ opacity: 0.7;
166
+ }
167
+
168
+ .token.property,
169
+ .token.keyword,
170
+ .token.tag {
171
+ @apply text-orange-900 dark:text-orange-500;
172
+ }
173
+
174
+ .token.class-name {
175
+ color: #ffffb6;
176
+ text-decoration: underline;
177
+ }
178
+
179
+ .token.boolean,
180
+ .token.constant {
181
+ @apply text-green-600 dark:text-green-500;
182
+ }
183
+
184
+ .token.symbol,
185
+ .token.deleted {
186
+ @apply text-red-500 dark:text-red-400;
187
+ }
188
+
189
+ .token.number {
190
+ @apply text-pink-500 dark:text-pink-400;
191
+ }
192
+
193
+ .token.selector,
194
+ .token.attr-name,
195
+ .token.string,
196
+ .token.char,
197
+ .token.builtin,
198
+ .token.inserted {
199
+ @apply text-red-500 dark:text-red-400;
200
+ }
201
+
202
+ .token.variable {
203
+ @apply text-purple-500 dark:text-purple-400;
204
+ }
205
+
206
+ .token.operator {
207
+ @apply text-gray-500 dark:bg-gray-800 dark:text-gray-400;
208
+ }
209
+
210
+ .token.entity {
211
+ @apply text-yellow-400 dark:text-yellow-300;
212
+ cursor: help;
213
+ }
214
+
215
+ .token.url {
216
+ @apply text-primary-600 dark:text-primary-500;
217
+ }
218
+
219
+ .language-css .token.string,
220
+ .style .token.string {
221
+ @apply text-red-500 dark:text-red-400;
222
+ }
223
+
224
+ .token.atrule,
225
+ .token.attr-value {
226
+ @apply text-primary-600 dark:text-primary-500;
227
+ }
228
+
229
+ .token.function {
230
+ /* color: #dad085; */
231
+ @apply text-slate-600 dark:text-slate-400;
232
+ }
233
+
234
+ .token.regex {
235
+ color: #e9c062;
236
+ }
237
+
238
+ .token.important {
239
+ color: #fd971f;
240
+ }
241
+
242
+ .token.important,
243
+ .token.bold {
244
+ font-weight: bold;
245
+ }
246
+
247
+ .token.italic {
248
+ font-style: italic;
249
+ }
250
+
251
+ code.language-bash,
252
+ pre.language-bash {
253
+ @apply text-primary-600 dark:text-primary-400;
254
+ }
255
+
256
+ code.language-javascript {
257
+ @apply text-primary-600 dark:text-primary-400;
258
+ }
259
+
260
+ code.language-javascript .token.function {
261
+ @apply text-green-500 dark:text-green-300;
262
+ }
263
+
264
+ code.language-javascript .token.punctuation {
265
+ @apply text-gray-500 dark:text-gray-400;
266
+ }
267
+
268
+ code.language-javascript .token.keyword {
269
+ @apply text-pink-500 dark:text-pink-400;
270
+ }
271
+
272
+ code.language-javascript .token.comment {
273
+ @apply text-gray-500 dark:text-gray-500;
274
+ }
275
+
276
+ code.language-javascript .token.string {
277
+ @apply text-purple-600 dark:text-purple-400;
278
+ }
279
+
280
+ code.language-javascript .token.class-name {
281
+ @apply text-orange-400 dark:text-orange-300;
282
+ }
283
+
284
+ code.language-javascript .token {
285
+ /* @apply text-blue-900 dark:text-blue-500; */
286
+ background: transparent;
287
+ }
288
+
289
+ /* language html */
290
+ code.language-html .token.tag {
291
+ @apply text-fuchsia-700 dark:text-fuchsia-400;
292
+ }
293
+ code.language-html .token.attr-name {
294
+ @apply text-gray-600 dark:text-gray-400;
295
+ }
296
+ code.language-html .token.attr-value {
297
+ @apply text-primary-600 dark:text-primary-400;
298
+ }
299
+ code.language-html .token.punctuation {
300
+ @apply text-gray-400 dark:text-gray-500;
301
+ }
302
+ code.language-html .token.attr-name {
303
+ @apply text-green-600 dark:text-green-400;
304
+ }
305
+ code.language-html .token.comment {
306
+ @apply text-gray-400 dark:text-gray-500;
307
+ }
308
+
309
+ /* language svelte */
310
+ pre.language-svelte .token.tag {
311
+ @apply text-gray-700 dark:text-gray-400;
312
+ }
313
+ pre.language-svelte .token.attr-value {
314
+ @apply text-blue-600 dark:text-blue-500;
315
+ }
316
+ pre.language-svelte .token.punctuation {
317
+ @apply text-gray-400 dark:text-gray-500;
318
+ }
319
+ pre.language-svelte .token.attr-name {
320
+ @apply text-primary-600 dark:text-primary-500;
321
+ }
322
+ pre.language-svelte .token.comment {
323
+ @apply text-gray-400 dark:text-gray-500;
324
+ }
325
+
326
+ .code-responsive-wrapper {
327
+ background-color: #ffffff;
328
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d1d5db' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
329
+ }
330
+ .dark .code-responsive-wrapper {
331
+ background-color: #111827;
332
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%236b7280' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
333
+ }
334
+
335
+ #carbonads * {
336
+ margin: initial;
337
+ padding: initial;
338
+ }
339
+ #carbonads {
340
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
341
+ @apply m-0;
342
+ }
343
+ #carbonads {
344
+ display: flex;
345
+ max-width: 330px;
346
+ box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, 0.1);
347
+ z-index: 100;
348
+ @apply bg-white dark:bg-gray-800 dark:text-white;
349
+ }
350
+ #carbonads a {
351
+ color: inherit;
352
+ text-decoration: none;
353
+ }
354
+ #carbonads a:hover {
355
+ color: inherit;
356
+ }
357
+ #carbonads span {
358
+ position: relative;
359
+ display: block;
360
+ overflow: hidden;
361
+ }
362
+ #carbonads .carbon-wrap {
363
+ display: flex;
364
+ }
365
+ #carbonads .carbon-img {
366
+ display: block;
367
+ margin: 0;
368
+ line-height: 1;
369
+ }
370
+ #carbonads .carbon-img img {
371
+ display: block;
372
+ }
373
+ #carbonads .carbon-text {
374
+ font-size: 13px;
375
+ padding: 10px;
376
+ margin-bottom: 16px;
377
+ line-height: 1.5;
378
+ text-align: left;
379
+ }
380
+ #carbonads .carbon-poweredby {
381
+ @apply bg-gray-100 dark:bg-gray-800;
382
+ display: block;
383
+ padding: 6px 8px;
384
+ text-align: center;
385
+ text-transform: uppercase;
386
+ letter-spacing: 0.5px;
387
+ font-weight: 600;
388
+ font-size: 8px;
389
+ line-height: 1;
390
+ position: absolute;
391
+ bottom: 0;
392
+ right: 0;
393
+ }
394
+
395
+ /* DocSearch */
396
+
397
+ .DocSearch .DocSearch-Modal {
398
+ @apply mx-auto mt-[1rem] max-h-[calc(100vh-2rem)] w-full max-w-[calc(100vw-2rem)] overflow-hidden rounded-lg lg:mt-[4rem] lg:max-h-none lg:max-w-xl;
399
+ }
400
+
401
+ .DocSearch.DocSearch-Button {
402
+ @apply m-2! ml-0 flex h-[40px] w-[40px] items-center justify-center rounded-lg! border! bg-white p-2! shadow-none hover:bg-gray-100! hover:shadow-none focus:shadow-none focus:ring-4 focus:ring-gray-200 focus:outline-hidden md:mr-0 md:w-52 md:justify-between md:border-solid! md:border-gray-300! md:bg-gray-50! xl:w-64 xl:pl-4 dark:bg-gray-700! dark:md:border-gray-600!;
403
+ }
404
+
405
+ .DocSearch .DocSearch-Button-Placeholder {
406
+ @apply text-sm! font-normal text-gray-500;
407
+ }
408
+
409
+ .DocSearch .DocSearch-Search-Icon {
410
+ @apply h-4! w-4! text-transparent! md:mr-1! md:h-3! md:w-3!;
411
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%236A7280" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
412
+ }
413
+
414
+ .dark .DocSearch .DocSearch-Search-Icon {
415
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%239BA3AF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
416
+ }
417
+
418
+ .DocSearch .DocSearch-Button-Keys {
419
+ @apply min-w-0 items-center;
420
+ }
421
+
422
+ .DocSearch .DocSearch-Button-Key:first-child {
423
+ @apply mr-px text-base;
424
+ }
425
+
426
+ .DocSearch .DocSearch-Button-Key {
427
+ @apply m-0 w-auto bg-none pt-1 pb-0 text-xs font-normal text-gray-500 shadow-none;
428
+ }
429
+
430
+ .DocSearch.DocSearch-Button .DocSearch-Search-Icon {
431
+ @apply text-gray-500;
432
+ }
433
+
434
+ .DocSearch .DocSearch-Hit-icon {
435
+ @apply hidden;
436
+ }
437
+
438
+ .DocSearch .DocSearch-Hits mark {
439
+ @apply text-cyan-600 decoration-cyan-600 decoration-2 underline-offset-2;
440
+ }
441
+
442
+ .DocSearch .DocSearch-Hit[aria-selected="true"] a {
443
+ @apply bg-cyan-700;
444
+ }
445
+
446
+ .DocSearch .DocSearch-Hit-source {
447
+ @apply bg-white pb-1 text-gray-700;
448
+ }
449
+
450
+ .DocSearch .DocSearch-Container {
451
+ @apply bg-black/50 bg-gray-900;
452
+ }
453
+
454
+ .DocSearch .DocSearch-Modal {
455
+ @apply shadow-none;
456
+ }
457
+
458
+ .DocSearch .DocSearch-SearchBar {
459
+ @apply border-b border-gray-100 p-0;
460
+ }
461
+
462
+ .DocSearch .DocSearch-Form {
463
+ @apply shadow-none;
464
+ }
465
+
466
+ .DocSearch .DocSearch-Input {
467
+ @apply text-sm text-gray-500 shadow-none focus:shadow-none focus:ring-0 focus:outline-hidden;
468
+ }
469
+
470
+ .DocSearch .DocSearch-LoadingIndicator svg,
471
+ .DocSearch .DocSearch-MagnifierLabel svg {
472
+ @apply h-4 w-4;
473
+ }
474
+
475
+ .DocSearch .DocSearch-Commands {
476
+ @apply hidden;
477
+ }
478
+
479
+ .DocSearch .DocSearch-Footer {
480
+ @apply h-12 border-t border-gray-100 shadow-none;
481
+ }
482
+
483
+ .DocSearch .DocSearch-Dropdown {
484
+ @apply bg-white;
485
+ }
486
+
487
+ .DocSearch .DocSearch-Hit {
488
+ @apply pb-2 shadow-none;
489
+ }
490
+
491
+ .DocSearch .DocSearch-Hit a {
492
+ @apply rounded-lg bg-gray-50 shadow-none;
493
+ }
494
+
495
+ .DocSearch .DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-Select-Icon,
496
+ .DocSearch .DocSearch-Hit-action-button {
497
+ @apply hidden;
498
+ }
499
+
500
+ .DocSearch .DocSearch-Hit .DocSearch-Hit-action:last-child {
501
+ @apply h-5 w-5;
502
+ background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11 9 3 3-3 3' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
503
+ }
504
+
505
+ .DocSearch .DocSearch-Hit[aria-selected="true"] .DocSearch-Hit-action:last-child {
506
+ background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11 9 3 3-3 3' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
507
+ }
508
+
509
+ .DocSearch .DocSearch-Screen-Icon,
510
+ .DocSearch .DocSearch-NoResults-Prefill-List,
511
+ .DocSearch .DocSearch-Cancel {
512
+ @apply hidden;
513
+ }
514
+
515
+ .DocSearch .DocSearch-Title {
516
+ @apply mb-1 text-lg font-normal text-gray-700;
517
+ }
518
+
519
+ .DocSearch .DocSearch-Reset {
520
+ @apply hover:text-black;
521
+ }
522
+
523
+ .formkit-alert.formkit-alert-success {
524
+ @apply mb-4 rounded-lg bg-green-100 p-4 text-sm font-medium text-green-700;
525
+ }
526
+
527
+ .formkit-alert.formkit-alert-error:not(:empty) {
528
+ @apply mb-4 rounded-lg bg-red-100 p-4 text-sm text-red-700;
529
+ }
530
+
531
+ /* DARK MODE */
532
+ .dark {
533
+ .DocSearch.DocSearch-Button {
534
+ @apply border-gray-600 bg-gray-800 hover:bg-gray-600 focus:bg-gray-600 focus:ring-gray-700 md:bg-gray-700;
535
+ }
536
+
537
+ .DocSearch .DocSearch-Button-Placeholder {
538
+ @apply text-gray-400;
539
+ }
540
+
541
+ .DocSearch .DocSearch-Search-Icon {
542
+ background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20"><path stroke="%239BA3AF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z"/></svg>');
543
+ }
544
+
545
+ .DocSearch .DocSearch-Button-Key {
546
+ @apply text-gray-400;
547
+ }
548
+
549
+ .DocSearch .DocSearch-Hits mark {
550
+ @apply text-white decoration-white;
551
+ }
552
+
553
+ .DocSearch .DocSearch-Hit[aria-selected="true"] a {
554
+ @apply bg-cyan-600;
555
+ }
556
+
557
+ .DocSearch .DocSearch-Hit-source {
558
+ @apply bg-gray-700 text-gray-400;
559
+ }
560
+
561
+ .DocSearch .DocSearch-Container {
562
+ @apply bg-black/80;
563
+ }
564
+
565
+ .DocSearch .DocSearch-Modal {
566
+ @apply bg-gray-700;
567
+ }
568
+
569
+ .DocSearch .DocSearch-SearchBar {
570
+ @apply border-gray-600;
571
+ }
572
+
573
+ .DocSearch .DocSearch-Form {
574
+ @apply bg-gray-700;
575
+ }
576
+
577
+ .DocSearch .DocSearch-Input {
578
+ @apply bg-gray-700 text-white;
579
+ }
580
+
581
+ .DocSearch .DocSearch-Footer {
582
+ @apply border-gray-600 bg-gray-700;
583
+ }
584
+
585
+ .DocSearch .DocSearch-Dropdown {
586
+ @apply bg-gray-700;
587
+ }
588
+
589
+ .DocSearch .DocSearch-Hit a {
590
+ @apply bg-gray-600 hover:bg-cyan-600;
591
+ }
592
+
593
+ .DocSearch .DocSearch-Title {
594
+ @apply text-gray-200;
595
+ }
596
+
597
+ .DocSearch .DocSearch-Hit-Container {
598
+ @apply text-gray-300;
599
+ }
600
+
601
+ .DocSearch .DocSearch-Logo svg {
602
+ @apply text-gray-400;
603
+ }
604
+
605
+ .DocSearch .DocSearch-Reset {
606
+ @apply text-gray-300 hover:text-white;
607
+ }
608
+
609
+ .formkit-alert.formkit-alert-success {
610
+ @apply bg-gray-800 text-green-400;
611
+ }
612
+
613
+ .formkit-alert.formkit-alert-error:not(:empty) {
614
+ @apply bg-gray-800 text-red-400;
615
+ }
616
616
  }