@coveo/push-api-client 2.8.13 → 3.0.1

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 (135) hide show
  1. package/README.md +7 -6
  2. package/dist/APICore.js +18 -13
  3. package/dist/APICore.js.map +1 -1
  4. package/dist/definitions/APICore.d.ts +12 -5
  5. package/dist/definitions/document.d.ts +2 -45
  6. package/dist/definitions/documentBuilder.d.ts +32 -59
  7. package/dist/definitions/errors/validatorErrors.d.ts +2 -1
  8. package/dist/definitions/help/fileConsumer.d.ts +3 -3
  9. package/dist/definitions/help/fileContainer.d.ts +2 -3
  10. package/dist/definitions/help/fileContainer.spec.d.ts +1 -1
  11. package/dist/definitions/index.d.ts +1 -1
  12. package/dist/definitions/interfaces.d.ts +3 -3
  13. package/dist/definitions/permissionSetBuilder.d.ts +34 -0
  14. package/dist/definitions/permissionSetBuilder.spec.d.ts +1 -0
  15. package/dist/definitions/securityIdentityBuilder.d.ts +33 -24
  16. package/dist/definitions/securityIdentityBuilder.spec.d.ts +1 -0
  17. package/dist/definitions/source/catalog.d.ts +2 -1
  18. package/dist/definitions/source/documentUploader.d.ts +3 -3
  19. package/dist/definitions/source/push.d.ts +8 -37
  20. package/dist/definitions/source/securityIdenty.d.ts +1 -0
  21. package/dist/definitions/uploadStrategy/fileContainerStrategy.d.ts +1 -1
  22. package/dist/definitions/uploadStrategy/strategy.d.ts +2 -2
  23. package/dist/definitions/uploadStrategy/streamChunkStrategy.d.ts +1 -1
  24. package/dist/definitions/validation/caseInsensitiveDocument.d.ts +10 -1
  25. package/dist/definitions/validation/knownKey.d.ts +2 -1
  26. package/dist/definitions/validation/parsePermissions.d.ts +5 -0
  27. package/dist/definitions/validation/parsePermissions.spec.d.ts +1 -0
  28. package/dist/documentBuilder.js +28 -46
  29. package/dist/documentBuilder.js.map +1 -1
  30. package/dist/documentBuilder.spec.js +55 -74
  31. package/dist/documentBuilder.spec.js.map +1 -1
  32. package/dist/errors/validatorErrors.js +4 -1
  33. package/dist/errors/validatorErrors.js.map +1 -1
  34. package/dist/help/fileConsumer.js +1 -1
  35. package/dist/help/fileConsumer.js.map +1 -1
  36. package/dist/help/fileConsumer.spec.js +2 -3
  37. package/dist/help/fileConsumer.spec.js.map +1 -1
  38. package/dist/help/fileContainer.js +41 -24
  39. package/dist/help/fileContainer.js.map +1 -1
  40. package/dist/help/fileContainer.spec.js +38 -33
  41. package/dist/help/fileContainer.spec.js.map +1 -1
  42. package/dist/index.js +3 -3
  43. package/dist/index.js.map +1 -1
  44. package/dist/localtest.js +10 -8
  45. package/dist/localtest.js.map +1 -1
  46. package/dist/permissionSetBuilder.js +59 -0
  47. package/dist/permissionSetBuilder.js.map +1 -0
  48. package/dist/permissionSetBuilder.spec.js +69 -0
  49. package/dist/permissionSetBuilder.spec.js.map +1 -0
  50. package/dist/securityIdentityBuilder.js +34 -27
  51. package/dist/securityIdentityBuilder.js.map +1 -1
  52. package/dist/securityIdentityBuilder.spec.js +51 -0
  53. package/dist/securityIdentityBuilder.spec.js.map +1 -0
  54. package/dist/source/catalog.js +1 -2
  55. package/dist/source/catalog.js.map +1 -1
  56. package/dist/source/documentUploader.js +1 -1
  57. package/dist/source/documentUploader.js.map +1 -1
  58. package/dist/source/documentUploader.spec.js +5 -5
  59. package/dist/source/documentUploader.spec.js.map +1 -1
  60. package/dist/source/push.js +6 -47
  61. package/dist/source/push.js.map +1 -1
  62. package/dist/source/push.spec.js +3 -3
  63. package/dist/source/push.spec.js.map +1 -1
  64. package/dist/source/securityIdenty.js +1 -2
  65. package/dist/source/securityIdenty.js.map +1 -1
  66. package/dist/uploadStrategy/fileContainerStrategy.js +2 -2
  67. package/dist/uploadStrategy/fileContainerStrategy.js.map +1 -1
  68. package/dist/uploadStrategy/fileContainerStrategy.spec.js +2 -2
  69. package/dist/uploadStrategy/fileContainerStrategy.spec.js.map +1 -1
  70. package/dist/uploadStrategy/streamChunkStrategy.js +4 -4
  71. package/dist/uploadStrategy/streamChunkStrategy.js.map +1 -1
  72. package/dist/uploadStrategy/streamChunkStrategy.spec.js +8 -12
  73. package/dist/uploadStrategy/streamChunkStrategy.spec.js.map +1 -1
  74. package/dist/validation/caseInsensitiveDocument.js +21 -2
  75. package/dist/validation/caseInsensitiveDocument.js.map +1 -1
  76. package/dist/validation/knownKey.js +13 -4
  77. package/dist/validation/knownKey.js.map +1 -1
  78. package/dist/validation/parseFile.js +14 -60
  79. package/dist/validation/parseFile.js.map +1 -1
  80. package/dist/validation/parseFile.spec.js +42 -3
  81. package/dist/validation/parseFile.spec.js.map +1 -1
  82. package/dist/validation/parsePermissions.js +119 -0
  83. package/dist/validation/parsePermissions.js.map +1 -0
  84. package/dist/validation/parsePermissions.spec.js +87 -0
  85. package/dist/validation/parsePermissions.spec.js.map +1 -0
  86. package/dist/validation/requiredKeyValidator.js +1 -1
  87. package/dist/validation/requiredKeyValidator.js.map +1 -1
  88. package/package.json +24 -18
  89. package/dist/definitions/source/source.d.ts +0 -5
  90. package/dist/docs/.nojekyll +0 -1
  91. package/dist/docs/assets/highlight.css +0 -71
  92. package/dist/docs/assets/main.js +0 -58
  93. package/dist/docs/assets/search.js +0 -1
  94. package/dist/docs/assets/style.css +0 -1280
  95. package/dist/docs/classes/AnySecurityIdentityBuilder.html +0 -125
  96. package/dist/docs/classes/CatalogSource.html +0 -327
  97. package/dist/docs/classes/DocumentBuilder.html +0 -509
  98. package/dist/docs/classes/FieldAnalyser.html +0 -203
  99. package/dist/docs/classes/GroupSecurityIdentityBuilder.html +0 -128
  100. package/dist/docs/classes/PushSource.html +0 -465
  101. package/dist/docs/classes/UserSecurityIdentityBuilder.html +0 -128
  102. package/dist/docs/classes/VirtualGroupSecurityIdentityBuilder.html +0 -128
  103. package/dist/docs/classes/errors.FieldTypeInconsistencyError.html +0 -170
  104. package/dist/docs/classes/errors.InvalidDocument.html +0 -172
  105. package/dist/docs/classes/errors.InvalidPermanentId.html +0 -170
  106. package/dist/docs/classes/errors.NotAFileError.html +0 -170
  107. package/dist/docs/classes/errors.NotAJsonFileError.html +0 -170
  108. package/dist/docs/classes/errors.PrivilegeError.html +0 -170
  109. package/dist/docs/classes/errors.UnsupportedAttribute.html +0 -172
  110. package/dist/docs/classes/errors.UnsupportedFieldError.html +0 -199
  111. package/dist/docs/enums/PlatformEnvironment.html +0 -86
  112. package/dist/docs/enums/Region.html +0 -79
  113. package/dist/docs/enums/SourceVisibility.html +0 -79
  114. package/dist/docs/functions/parseAndGetDocumentBuilderFromJSONDocument.html +0 -86
  115. package/dist/docs/index.html +0 -121
  116. package/dist/docs/interfaces/BatchUpdateDocuments.html +0 -76
  117. package/dist/docs/interfaces/Document.html +0 -236
  118. package/dist/docs/interfaces/SecurityIdentity.html +0 -105
  119. package/dist/docs/interfaces/SecurityIdentityBuilder.html +0 -82
  120. package/dist/docs/interfaces/UploadBatchCallbackData.html +0 -100
  121. package/dist/docs/modules/errors.html +0 -68
  122. package/dist/docs/modules.html +0 -122
  123. package/dist/docs/types/BatchUpdateDocumentsFromFiles.html +0 -75
  124. package/dist/docs/types/CompressionType.html +0 -77
  125. package/dist/docs/types/FailedUploadCallback.html +0 -90
  126. package/dist/docs/types/Metadata.html +0 -75
  127. package/dist/docs/types/MetadataValue.html +0 -75
  128. package/dist/docs/types/PlatformUrlOptions.html +0 -82
  129. package/dist/docs/types/SecurityIdentityType.html +0 -75
  130. package/dist/docs/types/SuccessfulUploadCallback.html +0 -88
  131. package/dist/docs/types/Transformer.html +0 -88
  132. package/dist/docs/variables/BuiltInTransformers.html +0 -75
  133. package/dist/docs/variables/Source.html +0 -78
  134. package/dist/source/source.js +0 -9
  135. package/dist/source/source.js.map +0 -1
@@ -1,1280 +0,0 @@
1
- :root {
2
- /* Light */
3
- --light-color-background: #f2f4f8;
4
- --light-color-background-secondary: #eff0f1;
5
- --light-color-warning-text: #222;
6
- --light-color-background-warning: #e6e600;
7
- --light-color-icon-background: var(--light-color-background);
8
- --light-color-accent: #c5c7c9;
9
- --light-color-text: #222;
10
- --light-color-text-aside: #707070;
11
- --light-color-link: #4da6ff;
12
- --light-color-ts: #db1373;
13
- --light-color-ts-interface: #139d2c;
14
- --light-color-ts-enum: #9c891a;
15
- --light-color-ts-class: #2484e5;
16
- --light-color-ts-function: #572be7;
17
- --light-color-ts-namespace: #b111c9;
18
- --light-color-ts-private: #707070;
19
- --light-color-ts-variable: #4d68ff;
20
- --light-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23000' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
21
- --light-color-scheme: light;
22
-
23
- /* Dark */
24
- --dark-color-background: #2b2e33;
25
- --dark-color-background-secondary: #1e2024;
26
- --dark-color-background-warning: #bebe00;
27
- --dark-color-warning-text: #222;
28
- --dark-color-icon-background: var(--dark-color-background-secondary);
29
- --dark-color-accent: #9096a2;
30
- --dark-color-text: #f5f5f5;
31
- --dark-color-text-aside: #dddddd;
32
- --dark-color-link: #00aff4;
33
- --dark-color-ts: #ff6492;
34
- --dark-color-ts-interface: #6cff87;
35
- --dark-color-ts-enum: #f4d93e;
36
- --dark-color-ts-class: #61b0ff;
37
- --dark-color-ts-function: #9772ff;
38
- --dark-color-ts-namespace: #e14dff;
39
- --dark-color-ts-private: #e2e2e2;
40
- --dark-color-ts-variable: #4d68ff;
41
- --dark-external-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='10' height='10'><path fill-opacity='0' stroke='%23fff' stroke-width='10' d='m43,35H5v60h60V57M45,5v10l10,10-30,30 20,20 30-30 10,10h10V5z'/></svg>");
42
- --dark-color-scheme: dark;
43
- }
44
-
45
- @media (prefers-color-scheme: light) {
46
- :root {
47
- --color-background: var(--light-color-background);
48
- --color-background-secondary: var(--light-color-background-secondary);
49
- --color-background-warning: var(--light-color-background-warning);
50
- --color-warning-text: var(--light-color-warning-text);
51
- --color-icon-background: var(--light-color-icon-background);
52
- --color-accent: var(--light-color-accent);
53
- --color-text: var(--light-color-text);
54
- --color-text-aside: var(--light-color-text-aside);
55
- --color-link: var(--light-color-link);
56
- --color-ts: var(--light-color-ts);
57
- --color-ts-interface: var(--light-color-ts-interface);
58
- --color-ts-enum: var(--light-color-ts-enum);
59
- --color-ts-class: var(--light-color-ts-class);
60
- --color-ts-function: var(--light-color-ts-function);
61
- --color-ts-namespace: var(--light-color-ts-namespace);
62
- --color-ts-private: var(--light-color-ts-private);
63
- --color-ts-variable: var(--light-color-ts-variable);
64
- --external-icon: var(--light-external-icon);
65
- --color-scheme: var(--light-color-scheme);
66
- }
67
- }
68
-
69
- @media (prefers-color-scheme: dark) {
70
- :root {
71
- --color-background: var(--dark-color-background);
72
- --color-background-secondary: var(--dark-color-background-secondary);
73
- --color-background-warning: var(--dark-color-background-warning);
74
- --color-warning-text: var(--dark-color-warning-text);
75
- --color-icon-background: var(--dark-color-icon-background);
76
- --color-accent: var(--dark-color-accent);
77
- --color-text: var(--dark-color-text);
78
- --color-text-aside: var(--dark-color-text-aside);
79
- --color-link: var(--dark-color-link);
80
- --color-ts: var(--dark-color-ts);
81
- --color-ts-interface: var(--dark-color-ts-interface);
82
- --color-ts-enum: var(--dark-color-ts-enum);
83
- --color-ts-class: var(--dark-color-ts-class);
84
- --color-ts-function: var(--dark-color-ts-function);
85
- --color-ts-namespace: var(--dark-color-ts-namespace);
86
- --color-ts-private: var(--dark-color-ts-private);
87
- --color-ts-variable: var(--dark-color-ts-variable);
88
- --external-icon: var(--dark-external-icon);
89
- --color-scheme: var(--dark-color-scheme);
90
- }
91
- }
92
-
93
- html {
94
- color-scheme: var(--color-scheme);
95
- }
96
-
97
- body {
98
- margin: 0;
99
- }
100
-
101
- :root[data-theme="light"] {
102
- --color-background: var(--light-color-background);
103
- --color-background-secondary: var(--light-color-background-secondary);
104
- --color-background-warning: var(--light-color-background-warning);
105
- --color-warning-text: var(--light-color-warning-text);
106
- --color-icon-background: var(--light-color-icon-background);
107
- --color-accent: var(--light-color-accent);
108
- --color-text: var(--light-color-text);
109
- --color-text-aside: var(--light-color-text-aside);
110
- --color-link: var(--light-color-link);
111
- --color-ts: var(--light-color-ts);
112
- --color-ts-interface: var(--light-color-ts-interface);
113
- --color-ts-enum: var(--light-color-ts-enum);
114
- --color-ts-class: var(--light-color-ts-class);
115
- --color-ts-function: var(--light-color-ts-function);
116
- --color-ts-namespace: var(--light-color-ts-namespace);
117
- --color-ts-private: var(--light-color-ts-private);
118
- --color-ts-variable: var(--light-color-ts-variable);
119
- --external-icon: var(--light-external-icon);
120
- --color-scheme: var(--light-color-scheme);
121
- }
122
-
123
- :root[data-theme="dark"] {
124
- --color-background: var(--dark-color-background);
125
- --color-background-secondary: var(--dark-color-background-secondary);
126
- --color-background-warning: var(--dark-color-background-warning);
127
- --color-warning-text: var(--dark-color-warning-text);
128
- --color-icon-background: var(--dark-color-icon-background);
129
- --color-accent: var(--dark-color-accent);
130
- --color-text: var(--dark-color-text);
131
- --color-text-aside: var(--dark-color-text-aside);
132
- --color-link: var(--dark-color-link);
133
- --color-ts: var(--dark-color-ts);
134
- --color-ts-interface: var(--dark-color-ts-interface);
135
- --color-ts-enum: var(--dark-color-ts-enum);
136
- --color-ts-class: var(--dark-color-ts-class);
137
- --color-ts-function: var(--dark-color-ts-function);
138
- --color-ts-namespace: var(--dark-color-ts-namespace);
139
- --color-ts-private: var(--dark-color-ts-private);
140
- --color-ts-variable: var(--dark-color-ts-variable);
141
- --external-icon: var(--dark-external-icon);
142
- --color-scheme: var(--dark-color-scheme);
143
- }
144
-
145
- .always-visible,
146
- .always-visible .tsd-signatures {
147
- display: inherit !important;
148
- }
149
-
150
- h1,
151
- h2,
152
- h3,
153
- h4,
154
- h5,
155
- h6 {
156
- line-height: 1.2;
157
- }
158
-
159
- h1 {
160
- font-size: 1.875rem;
161
- margin: 0.67rem 0;
162
- }
163
-
164
- h2 {
165
- font-size: 1.5rem;
166
- margin: 0.83rem 0;
167
- }
168
-
169
- h3 {
170
- font-size: 1.25rem;
171
- margin: 1rem 0;
172
- }
173
-
174
- h4 {
175
- font-size: 1.05rem;
176
- margin: 1.33rem 0;
177
- }
178
-
179
- h5 {
180
- font-size: 1rem;
181
- margin: 1.5rem 0;
182
- }
183
-
184
- h6 {
185
- font-size: 0.875rem;
186
- margin: 2.33rem 0;
187
- }
188
-
189
- .uppercase {
190
- text-transform: uppercase;
191
- }
192
-
193
- pre {
194
- white-space: pre;
195
- white-space: pre-wrap;
196
- word-wrap: break-word;
197
- }
198
-
199
- dl,
200
- menu,
201
- ol,
202
- ul {
203
- margin: 1em 0;
204
- }
205
-
206
- dd {
207
- margin: 0 0 0 40px;
208
- }
209
-
210
- .container {
211
- max-width: 1600px;
212
- padding: 0 2rem;
213
- }
214
-
215
- @media (min-width: 640px) {
216
- .container {
217
- padding: 0 4rem;
218
- }
219
- }
220
- @media (min-width: 1200px) {
221
- .container {
222
- padding: 0 8rem;
223
- }
224
- }
225
- @media (min-width: 1600px) {
226
- .container {
227
- padding: 0 12rem;
228
- }
229
- }
230
-
231
- /* Footer */
232
- .tsd-generator {
233
- border-top: 1px solid var(--color-accent);
234
- padding-top: 1rem;
235
- padding-bottom: 1rem;
236
- max-height: 3.5rem;
237
- }
238
-
239
- .tsd-generator > p {
240
- margin-top: 0;
241
- margin-bottom: 0;
242
- padding: 0 1rem;
243
- }
244
-
245
- .container-main {
246
- display: flex;
247
- justify-content: space-between;
248
- position: relative;
249
- margin: 0 auto;
250
- }
251
-
252
- .col-4,
253
- .col-8 {
254
- box-sizing: border-box;
255
- float: left;
256
- padding: 2rem 1rem;
257
- }
258
-
259
- .col-4 {
260
- flex: 0 0 25%;
261
- }
262
- .col-8 {
263
- flex: 1 0;
264
- flex-wrap: wrap;
265
- padding-left: 0;
266
- }
267
-
268
- @keyframes fade-in {
269
- from {
270
- opacity: 0;
271
- }
272
- to {
273
- opacity: 1;
274
- }
275
- }
276
- @keyframes fade-out {
277
- from {
278
- opacity: 1;
279
- visibility: visible;
280
- }
281
- to {
282
- opacity: 0;
283
- }
284
- }
285
- @keyframes fade-in-delayed {
286
- 0% {
287
- opacity: 0;
288
- }
289
- 33% {
290
- opacity: 0;
291
- }
292
- 100% {
293
- opacity: 1;
294
- }
295
- }
296
- @keyframes fade-out-delayed {
297
- 0% {
298
- opacity: 1;
299
- visibility: visible;
300
- }
301
- 66% {
302
- opacity: 0;
303
- }
304
- 100% {
305
- opacity: 0;
306
- }
307
- }
308
- @keyframes shift-to-left {
309
- from {
310
- transform: translate(0, 0);
311
- }
312
- to {
313
- transform: translate(-25%, 0);
314
- }
315
- }
316
- @keyframes unshift-to-left {
317
- from {
318
- transform: translate(-25%, 0);
319
- }
320
- to {
321
- transform: translate(0, 0);
322
- }
323
- }
324
- @keyframes pop-in-from-right {
325
- from {
326
- transform: translate(100%, 0);
327
- }
328
- to {
329
- transform: translate(0, 0);
330
- }
331
- }
332
- @keyframes pop-out-to-right {
333
- from {
334
- transform: translate(0, 0);
335
- visibility: visible;
336
- }
337
- to {
338
- transform: translate(100%, 0);
339
- }
340
- }
341
- body {
342
- background: var(--color-background);
343
- font-family: "Segoe UI", sans-serif;
344
- font-size: 16px;
345
- color: var(--color-text);
346
- }
347
-
348
- a {
349
- color: var(--color-link);
350
- text-decoration: none;
351
- }
352
- a:hover {
353
- text-decoration: underline;
354
- }
355
- a.external[target="_blank"] {
356
- background-image: var(--external-icon);
357
- background-position: top 3px right;
358
- background-repeat: no-repeat;
359
- padding-right: 13px;
360
- }
361
-
362
- code,
363
- pre {
364
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
365
- padding: 0.2em;
366
- margin: 0;
367
- font-size: 0.875rem;
368
- border-radius: 0.8em;
369
- }
370
-
371
- pre {
372
- padding: 10px;
373
- border: 0.1em solid var(--color-accent);
374
- }
375
- pre code {
376
- padding: 0;
377
- font-size: 100%;
378
- }
379
-
380
- blockquote {
381
- margin: 1em 0;
382
- padding-left: 1em;
383
- border-left: 4px solid gray;
384
- }
385
-
386
- .tsd-typography {
387
- line-height: 1.333em;
388
- }
389
- .tsd-typography ul {
390
- list-style: square;
391
- padding: 0 0 0 20px;
392
- margin: 0;
393
- }
394
- .tsd-typography h4,
395
- .tsd-typography .tsd-index-panel h3,
396
- .tsd-index-panel .tsd-typography h3,
397
- .tsd-typography h5,
398
- .tsd-typography h6 {
399
- font-size: 1em;
400
- margin: 0;
401
- }
402
- .tsd-typography h5,
403
- .tsd-typography h6 {
404
- font-weight: normal;
405
- }
406
- .tsd-typography p,
407
- .tsd-typography ul,
408
- .tsd-typography ol {
409
- margin: 1em 0;
410
- }
411
-
412
- @media (max-width: 1024px) {
413
- html .col-content {
414
- float: none;
415
- max-width: 100%;
416
- width: 100%;
417
- padding-top: 3rem;
418
- }
419
- html .col-menu {
420
- position: fixed !important;
421
- overflow-y: auto;
422
- -webkit-overflow-scrolling: touch;
423
- z-index: 1024;
424
- top: 0 !important;
425
- bottom: 0 !important;
426
- left: auto !important;
427
- right: 0 !important;
428
- padding: 1.5rem 1.5rem 0 0;
429
- max-width: 25rem;
430
- visibility: hidden;
431
- background-color: var(--color-background);
432
- transform: translate(100%, 0);
433
- }
434
- html .col-menu > *:last-child {
435
- padding-bottom: 20px;
436
- }
437
- html .overlay {
438
- content: "";
439
- display: block;
440
- position: fixed;
441
- z-index: 1023;
442
- top: 0;
443
- left: 0;
444
- right: 0;
445
- bottom: 0;
446
- background-color: rgba(0, 0, 0, 0.75);
447
- visibility: hidden;
448
- }
449
-
450
- .to-has-menu .overlay {
451
- animation: fade-in 0.4s;
452
- }
453
-
454
- .to-has-menu :is(header, footer, .col-content) {
455
- animation: shift-to-left 0.4s;
456
- }
457
-
458
- .to-has-menu .col-menu {
459
- animation: pop-in-from-right 0.4s;
460
- }
461
-
462
- .from-has-menu .overlay {
463
- animation: fade-out 0.4s;
464
- }
465
-
466
- .from-has-menu :is(header, footer, .col-content) {
467
- animation: unshift-to-left 0.4s;
468
- }
469
-
470
- .from-has-menu .col-menu {
471
- animation: pop-out-to-right 0.4s;
472
- }
473
-
474
- .has-menu body {
475
- overflow: hidden;
476
- }
477
- .has-menu .overlay {
478
- visibility: visible;
479
- }
480
- .has-menu :is(header, footer, .col-content) {
481
- transform: translate(-25%, 0);
482
- }
483
- .has-menu .col-menu {
484
- visibility: visible;
485
- transform: translate(0, 0);
486
- display: grid;
487
- align-items: center;
488
- grid-template-rows: auto 1fr;
489
- grid-gap: 1.5rem;
490
- max-height: 100vh;
491
- padding: 1rem 2rem;
492
- }
493
- .has-menu .tsd-navigation {
494
- max-height: 100%;
495
- }
496
- }
497
-
498
- .tsd-breadcrumb {
499
- margin: 0;
500
- padding: 0;
501
- color: var(--color-text-aside);
502
- }
503
- .tsd-breadcrumb a {
504
- color: var(--color-text-aside);
505
- text-decoration: none;
506
- }
507
- .tsd-breadcrumb a:hover {
508
- text-decoration: underline;
509
- }
510
- .tsd-breadcrumb li {
511
- display: inline;
512
- }
513
- .tsd-breadcrumb li:after {
514
- content: " / ";
515
- }
516
-
517
- .tsd-comment-tags {
518
- display: flex;
519
- flex-direction: column;
520
- }
521
- dl.tsd-comment-tag-group {
522
- display: flex;
523
- align-items: center;
524
- overflow: hidden;
525
- margin: 0.5em 0;
526
- }
527
- dl.tsd-comment-tag-group dt {
528
- display: flex;
529
- margin-right: 0.5em;
530
- font-size: 0.875em;
531
- font-weight: normal;
532
- }
533
- dl.tsd-comment-tag-group dd {
534
- margin: 0;
535
- }
536
- code.tsd-tag {
537
- padding: 0.25em 0.4em;
538
- border: 0.1em solid var(--color-accent);
539
- margin-right: 0.25em;
540
- font-size: 70%;
541
- }
542
- h1 code.tsd-tag:first-of-type {
543
- margin-left: 0.25em;
544
- }
545
-
546
- dl.tsd-comment-tag-group dd:before,
547
- dl.tsd-comment-tag-group dd:after {
548
- content: " ";
549
- }
550
- dl.tsd-comment-tag-group dd pre,
551
- dl.tsd-comment-tag-group dd:after {
552
- clear: both;
553
- }
554
- dl.tsd-comment-tag-group p {
555
- margin: 0;
556
- }
557
-
558
- .tsd-panel.tsd-comment .lead {
559
- font-size: 1.1em;
560
- line-height: 1.333em;
561
- margin-bottom: 2em;
562
- }
563
- .tsd-panel.tsd-comment .lead:last-child {
564
- margin-bottom: 0;
565
- }
566
-
567
- .tsd-filter-visibility h4 {
568
- font-size: 1rem;
569
- padding-top: 0.75rem;
570
- padding-bottom: 0.5rem;
571
- margin: 0;
572
- }
573
- .tsd-filter-item:not(:last-child) {
574
- margin-bottom: 0.5rem;
575
- }
576
- .tsd-filter-input {
577
- display: flex;
578
- width: fit-content;
579
- width: -moz-fit-content;
580
- align-items: center;
581
- user-select: none;
582
- -webkit-user-select: none;
583
- -moz-user-select: none;
584
- -ms-user-select: none;
585
- cursor: pointer;
586
- }
587
- .tsd-filter-input input[type="checkbox"] {
588
- cursor: pointer;
589
- position: absolute;
590
- width: 1.5em;
591
- height: 1.5em;
592
- opacity: 0;
593
- }
594
- .tsd-filter-input input[type="checkbox"]:disabled {
595
- pointer-events: none;
596
- }
597
- .tsd-filter-input svg {
598
- cursor: pointer;
599
- width: 1.5em;
600
- height: 1.5em;
601
- margin-right: 0.5em;
602
- border-radius: 0.33em;
603
- /* Leaving this at full opacity breaks event listeners on Firefox.
604
- Don't remove unless you know what you're doing. */
605
- opacity: 0.99;
606
- }
607
- .tsd-filter-input input[type="checkbox"]:focus + svg {
608
- transform: scale(0.95);
609
- }
610
- .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
611
- transform: scale(1);
612
- }
613
- .tsd-checkbox-background {
614
- fill: var(--color-accent);
615
- }
616
- input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
617
- stroke: var(--color-text);
618
- }
619
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
620
- fill: var(--color-background);
621
- stroke: var(--color-accent);
622
- stroke-width: 0.25rem;
623
- }
624
- .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
625
- stroke: var(--color-accent);
626
- }
627
-
628
- .tsd-theme-toggle {
629
- padding-top: 0.75rem;
630
- }
631
- .tsd-theme-toggle > h4 {
632
- display: inline;
633
- vertical-align: middle;
634
- margin-right: 0.75rem;
635
- }
636
-
637
- .tsd-hierarchy {
638
- list-style: square;
639
- margin: 0;
640
- }
641
- .tsd-hierarchy .target {
642
- font-weight: bold;
643
- }
644
-
645
- .tsd-panel-group.tsd-index-group {
646
- margin-bottom: 0;
647
- }
648
- .tsd-index-panel .tsd-index-list {
649
- list-style: none;
650
- line-height: 1.333em;
651
- margin: 0;
652
- padding: 0.25rem 0 0 0;
653
- overflow: hidden;
654
- display: grid;
655
- grid-template-columns: repeat(3, 1fr);
656
- column-gap: 1rem;
657
- grid-template-rows: auto;
658
- }
659
- @media (max-width: 1024px) {
660
- .tsd-index-panel .tsd-index-list {
661
- grid-template-columns: repeat(2, 1fr);
662
- }
663
- }
664
- @media (max-width: 768px) {
665
- .tsd-index-panel .tsd-index-list {
666
- grid-template-columns: repeat(1, 1fr);
667
- }
668
- }
669
- .tsd-index-panel .tsd-index-list li {
670
- -webkit-page-break-inside: avoid;
671
- -moz-page-break-inside: avoid;
672
- -ms-page-break-inside: avoid;
673
- -o-page-break-inside: avoid;
674
- page-break-inside: avoid;
675
- }
676
- .tsd-index-panel a,
677
- .tsd-index-panel a.tsd-parent-kind-module {
678
- color: var(--color-ts);
679
- }
680
- .tsd-index-panel a.tsd-parent-kind-interface {
681
- color: var(--color-ts-interface);
682
- }
683
- .tsd-index-panel a.tsd-parent-kind-enum {
684
- color: var(--color-ts-enum);
685
- }
686
- .tsd-index-panel a.tsd-parent-kind-class {
687
- color: var(--color-ts-class);
688
- }
689
- .tsd-index-panel a.tsd-kind-module {
690
- color: var(--color-ts-namespace);
691
- }
692
- .tsd-index-panel a.tsd-kind-interface {
693
- color: var(--color-ts-interface);
694
- }
695
- .tsd-index-panel a.tsd-kind-enum {
696
- color: var(--color-ts-enum);
697
- }
698
- .tsd-index-panel a.tsd-kind-class {
699
- color: var(--color-ts-class);
700
- }
701
- .tsd-index-panel a.tsd-kind-function {
702
- color: var(--color-ts-function);
703
- }
704
- .tsd-index-panel a.tsd-kind-namespace {
705
- color: var(--color-ts-namespace);
706
- }
707
- .tsd-index-panel a.tsd-kind-variable {
708
- color: var(--color-ts-variable);
709
- }
710
- .tsd-index-panel a.tsd-is-private {
711
- color: var(--color-ts-private);
712
- }
713
-
714
- .tsd-flag {
715
- display: inline-block;
716
- padding: 0.25em 0.4em;
717
- border-radius: 4px;
718
- color: var(--color-comment-tag-text);
719
- background-color: var(--color-comment-tag);
720
- text-indent: 0;
721
- font-size: 75%;
722
- line-height: 1;
723
- font-weight: normal;
724
- }
725
-
726
- .tsd-anchor {
727
- position: absolute;
728
- top: -100px;
729
- }
730
-
731
- .tsd-member {
732
- position: relative;
733
- }
734
- .tsd-member .tsd-anchor + h3 {
735
- display: flex;
736
- align-items: center;
737
- margin-top: 0;
738
- margin-bottom: 0;
739
- border-bottom: none;
740
- }
741
- .tsd-member [data-tsd-kind] {
742
- color: var(--color-ts);
743
- }
744
- .tsd-member [data-tsd-kind="Interface"] {
745
- color: var(--color-ts-interface);
746
- }
747
- .tsd-member [data-tsd-kind="Enum"] {
748
- color: var(--color-ts-enum);
749
- }
750
- .tsd-member [data-tsd-kind="Class"] {
751
- color: var(--color-ts-class);
752
- }
753
- .tsd-member [data-tsd-kind="Private"] {
754
- color: var(--color-ts-private);
755
- }
756
-
757
- .tsd-navigation a {
758
- display: block;
759
- margin: 0.4rem 0;
760
- border-left: 2px solid transparent;
761
- color: var(--color-text);
762
- text-decoration: none;
763
- transition: border-left-color 0.1s;
764
- }
765
- .tsd-navigation a:hover {
766
- text-decoration: underline;
767
- }
768
- .tsd-navigation ul {
769
- margin: 0;
770
- padding: 0;
771
- list-style: none;
772
- }
773
- .tsd-navigation li {
774
- padding: 0;
775
- }
776
-
777
- .tsd-navigation.primary .tsd-accordion-details > ul {
778
- margin-top: 0.75rem;
779
- }
780
- .tsd-navigation.primary a {
781
- padding: 0.75rem 0.5rem;
782
- margin: 0;
783
- }
784
- .tsd-navigation.primary ul li a {
785
- margin-left: 0.5rem;
786
- }
787
- .tsd-navigation.primary ul li li a {
788
- margin-left: 1.5rem;
789
- }
790
- .tsd-navigation.primary ul li li li a {
791
- margin-left: 2.5rem;
792
- }
793
- .tsd-navigation.primary ul li li li li a {
794
- margin-left: 3.5rem;
795
- }
796
- .tsd-navigation.primary ul li li li li li a {
797
- margin-left: 4.5rem;
798
- }
799
- .tsd-navigation.primary ul li li li li li li a {
800
- margin-left: 5.5rem;
801
- }
802
- .tsd-navigation.primary li.current > a {
803
- border-left: 0.15rem var(--color-text) solid;
804
- }
805
- .tsd-navigation.primary li.selected > a {
806
- font-weight: bold;
807
- border-left: 0.2rem var(--color-text) solid;
808
- }
809
- .tsd-navigation.primary ul li a:hover {
810
- border-left: 0.2rem var(--color-text-aside) solid;
811
- }
812
- .tsd-navigation.primary li.globals + li > span,
813
- .tsd-navigation.primary li.globals + li > a {
814
- padding-top: 20px;
815
- }
816
-
817
- .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
818
- max-height: calc(100vh - 1rem);
819
- top: 0.5rem;
820
- }
821
- .tsd-navigation.secondary > ul {
822
- display: inline;
823
- padding-right: 0.5rem;
824
- transition: opacity 0.2s;
825
- }
826
- .tsd-navigation.secondary ul li a {
827
- padding-left: 0;
828
- }
829
- .tsd-navigation.secondary ul li li a {
830
- padding-left: 1.1rem;
831
- }
832
- .tsd-navigation.secondary ul li li li a {
833
- padding-left: 2.2rem;
834
- }
835
- .tsd-navigation.secondary ul li li li li a {
836
- padding-left: 3.3rem;
837
- }
838
- .tsd-navigation.secondary ul li li li li li a {
839
- padding-left: 4.4rem;
840
- }
841
- .tsd-navigation.secondary ul li li li li li li a {
842
- padding-left: 5.5rem;
843
- }
844
-
845
- #tsd-sidebar-links a {
846
- margin-top: 0;
847
- margin-bottom: 0.5rem;
848
- line-height: 1.25rem;
849
- }
850
- #tsd-sidebar-links a:last-of-type {
851
- margin-bottom: 0;
852
- }
853
-
854
- a.tsd-index-link {
855
- margin: 0.25rem 0;
856
- font-size: 1rem;
857
- line-height: 1.25rem;
858
- display: inline-flex;
859
- align-items: center;
860
- }
861
- .tsd-accordion-summary > h1,
862
- .tsd-accordion-summary > h2,
863
- .tsd-accordion-summary > h3,
864
- .tsd-accordion-summary > h4,
865
- .tsd-accordion-summary > h5 {
866
- display: inline-flex;
867
- align-items: center;
868
- vertical-align: middle;
869
- margin-bottom: 0;
870
- user-select: none;
871
- -moz-user-select: none;
872
- -webkit-user-select: none;
873
- -ms-user-select: none;
874
- }
875
- .tsd-accordion-summary {
876
- display: block;
877
- cursor: pointer;
878
- }
879
- .tsd-accordion-summary > * {
880
- margin-top: 0;
881
- margin-bottom: 0;
882
- padding-top: 0;
883
- padding-bottom: 0;
884
- }
885
- .tsd-accordion-summary::-webkit-details-marker {
886
- display: none;
887
- }
888
- .tsd-index-accordion .tsd-accordion-summary svg {
889
- margin-right: 0.25rem;
890
- }
891
- .tsd-index-content > :not(:first-child) {
892
- margin-top: 0.75rem;
893
- }
894
- .tsd-index-heading {
895
- margin-top: 1.5rem;
896
- margin-bottom: 0.75rem;
897
- }
898
-
899
- .tsd-kind-icon {
900
- margin-right: 0.5rem;
901
- width: 1.25rem;
902
- height: 1.25rem;
903
- min-width: 1.25rem;
904
- min-height: 1.25rem;
905
- }
906
- .tsd-kind-icon path {
907
- transform-origin: center;
908
- transform: scale(1.1);
909
- }
910
- .tsd-signature > .tsd-kind-icon {
911
- margin-right: 0.8rem;
912
- }
913
-
914
- @media (min-width: 1024px) {
915
- .col-content {
916
- margin: 2rem auto;
917
- }
918
-
919
- .menu-sticky-wrap {
920
- position: sticky;
921
- height: calc(100vh - 2rem);
922
- top: 4rem;
923
- right: 0;
924
- padding: 0 1.5rem;
925
- padding-top: 1rem;
926
- margin-top: 3rem;
927
- transition: 0.3s ease-in-out;
928
- transition-property: top, padding-top, padding, height;
929
- overflow-y: auto;
930
- }
931
- .col-menu {
932
- border-left: 1px solid var(--color-accent);
933
- }
934
- .col-menu--hide {
935
- top: 1rem;
936
- }
937
- .col-menu .tsd-navigation:not(:last-child) {
938
- padding-bottom: 1.75rem;
939
- }
940
- }
941
-
942
- .tsd-panel {
943
- margin-bottom: 2.5rem;
944
- }
945
- .tsd-panel.tsd-member {
946
- margin-bottom: 4rem;
947
- }
948
- .tsd-panel:empty {
949
- display: none;
950
- }
951
- .tsd-panel > h1,
952
- .tsd-panel > h2,
953
- .tsd-panel > h3 {
954
- margin: 1.5rem -1.5rem 0.75rem -1.5rem;
955
- padding: 0 1.5rem 0.75rem 1.5rem;
956
- }
957
- .tsd-panel > h1.tsd-before-signature,
958
- .tsd-panel > h2.tsd-before-signature,
959
- .tsd-panel > h3.tsd-before-signature {
960
- margin-bottom: 0;
961
- border-bottom: none;
962
- }
963
-
964
- .tsd-panel-group {
965
- margin: 4rem 0;
966
- }
967
- .tsd-panel-group.tsd-index-group {
968
- margin: 2rem 0;
969
- }
970
- .tsd-panel-group.tsd-index-group details {
971
- margin: 2rem 0;
972
- }
973
-
974
- #tsd-search {
975
- transition: background-color 0.2s;
976
- }
977
- #tsd-search .title {
978
- position: relative;
979
- z-index: 2;
980
- }
981
- #tsd-search .field {
982
- position: absolute;
983
- left: 0;
984
- top: 0;
985
- right: 2.5rem;
986
- height: 100%;
987
- }
988
- #tsd-search .field input {
989
- box-sizing: border-box;
990
- position: relative;
991
- top: -50px;
992
- z-index: 1;
993
- width: 100%;
994
- padding: 0 10px;
995
- opacity: 0;
996
- outline: 0;
997
- border: 0;
998
- background: transparent;
999
- color: var(--color-text);
1000
- }
1001
- #tsd-search .field label {
1002
- position: absolute;
1003
- overflow: hidden;
1004
- right: -40px;
1005
- }
1006
- #tsd-search .field input,
1007
- #tsd-search .title,
1008
- #tsd-toolbar-links a {
1009
- transition: opacity 0.2s;
1010
- }
1011
- #tsd-search .results {
1012
- position: absolute;
1013
- visibility: hidden;
1014
- top: 40px;
1015
- width: 100%;
1016
- margin: 0;
1017
- padding: 0;
1018
- list-style: none;
1019
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1020
- }
1021
- #tsd-search .results li {
1022
- padding: 0 10px;
1023
- background-color: var(--color-background);
1024
- }
1025
- #tsd-search .results li:nth-child(even) {
1026
- background-color: var(--color-background-secondary);
1027
- }
1028
- #tsd-search .results li.state {
1029
- display: none;
1030
- }
1031
- #tsd-search .results li.current,
1032
- #tsd-search .results li:hover {
1033
- background-color: var(--color-accent);
1034
- }
1035
- #tsd-search .results a {
1036
- display: block;
1037
- }
1038
- #tsd-search .results a:before {
1039
- top: 10px;
1040
- }
1041
- #tsd-search .results span.parent {
1042
- color: var(--color-text-aside);
1043
- font-weight: normal;
1044
- }
1045
- #tsd-search.has-focus {
1046
- background-color: var(--color-accent);
1047
- }
1048
- #tsd-search.has-focus .field input {
1049
- top: 0;
1050
- opacity: 1;
1051
- }
1052
- #tsd-search.has-focus .title,
1053
- #tsd-search.has-focus #tsd-toolbar-links a {
1054
- z-index: 0;
1055
- opacity: 0;
1056
- }
1057
- #tsd-search.has-focus .results {
1058
- visibility: visible;
1059
- }
1060
- #tsd-search.loading .results li.state.loading {
1061
- display: block;
1062
- }
1063
- #tsd-search.failure .results li.state.failure {
1064
- display: block;
1065
- }
1066
-
1067
- #tsd-toolbar-links {
1068
- position: absolute;
1069
- top: 0;
1070
- right: 2rem;
1071
- height: 100%;
1072
- display: flex;
1073
- align-items: center;
1074
- justify-content: flex-end;
1075
- }
1076
- #tsd-toolbar-links a {
1077
- margin-left: 1.5rem;
1078
- }
1079
- #tsd-toolbar-links a:hover {
1080
- text-decoration: underline;
1081
- }
1082
-
1083
- .tsd-signature {
1084
- margin: 0 0 1rem 0;
1085
- padding: 1rem 0.5rem;
1086
- border: 1px solid var(--color-accent);
1087
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1088
- font-size: 14px;
1089
- overflow-x: auto;
1090
- }
1091
-
1092
- .tsd-signature-symbol {
1093
- color: var(--color-text-aside);
1094
- font-weight: normal;
1095
- }
1096
-
1097
- .tsd-signature-type {
1098
- font-style: italic;
1099
- font-weight: normal;
1100
- }
1101
-
1102
- .tsd-signatures {
1103
- padding: 0;
1104
- margin: 0 0 1em 0;
1105
- list-style-type: none;
1106
- }
1107
- .tsd-signatures .tsd-signature {
1108
- margin: 0;
1109
- border-color: var(--color-accent);
1110
- border-width: 1px 0;
1111
- transition: background-color 0.1s;
1112
- }
1113
- .tsd-description .tsd-signatures .tsd-signature {
1114
- border-width: 1px;
1115
- }
1116
-
1117
- ul.tsd-parameter-list,
1118
- ul.tsd-type-parameter-list {
1119
- list-style: square;
1120
- margin: 0;
1121
- padding-left: 20px;
1122
- }
1123
- ul.tsd-parameter-list > li.tsd-parameter-signature,
1124
- ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1125
- list-style: none;
1126
- margin-left: -20px;
1127
- }
1128
- ul.tsd-parameter-list h5,
1129
- ul.tsd-type-parameter-list h5 {
1130
- font-size: 16px;
1131
- margin: 1em 0 0.5em 0;
1132
- }
1133
- .tsd-sources {
1134
- margin-top: 1rem;
1135
- font-size: 0.875em;
1136
- }
1137
- .tsd-sources a {
1138
- color: var(--color-text-aside);
1139
- text-decoration: underline;
1140
- }
1141
- .tsd-sources ul {
1142
- list-style: none;
1143
- padding: 0;
1144
- }
1145
-
1146
- .tsd-page-toolbar {
1147
- position: fixed;
1148
- z-index: 1;
1149
- top: 0;
1150
- left: 0;
1151
- width: 100%;
1152
- color: var(--color-text);
1153
- background: var(--color-background-secondary);
1154
- border-bottom: 1px var(--color-accent) solid;
1155
- transition: transform 0.3s ease-in-out;
1156
- }
1157
- .tsd-page-toolbar a {
1158
- color: var(--color-text);
1159
- text-decoration: none;
1160
- }
1161
- .tsd-page-toolbar a.title {
1162
- font-weight: bold;
1163
- }
1164
- .tsd-page-toolbar a.title:hover {
1165
- text-decoration: underline;
1166
- }
1167
- .tsd-page-toolbar .tsd-toolbar-contents {
1168
- display: flex;
1169
- justify-content: space-between;
1170
- height: 2.5rem;
1171
- margin: 0 auto;
1172
- }
1173
- .tsd-page-toolbar .table-cell {
1174
- position: relative;
1175
- white-space: nowrap;
1176
- line-height: 40px;
1177
- }
1178
- .tsd-page-toolbar .table-cell:first-child {
1179
- width: 100%;
1180
- }
1181
- .tsd-page-toolbar .tsd-toolbar-icon {
1182
- box-sizing: border-box;
1183
- line-height: 0;
1184
- padding: 12px 0;
1185
- }
1186
-
1187
- .tsd-page-toolbar--hide {
1188
- transform: translateY(-100%);
1189
- }
1190
-
1191
- .tsd-widget {
1192
- display: inline-block;
1193
- overflow: hidden;
1194
- opacity: 0.8;
1195
- height: 40px;
1196
- transition: opacity 0.1s, background-color 0.2s;
1197
- vertical-align: bottom;
1198
- cursor: pointer;
1199
- }
1200
- .tsd-widget:hover {
1201
- opacity: 0.9;
1202
- }
1203
- .tsd-widget.active {
1204
- opacity: 1;
1205
- background-color: var(--color-accent);
1206
- }
1207
- .tsd-widget.no-caption {
1208
- width: 40px;
1209
- }
1210
- .tsd-widget.no-caption:before {
1211
- margin: 0;
1212
- }
1213
-
1214
- .tsd-widget.options,
1215
- .tsd-widget.menu {
1216
- display: none;
1217
- }
1218
- @media (max-width: 1024px) {
1219
- .tsd-widget.options,
1220
- .tsd-widget.menu {
1221
- display: inline-block;
1222
- }
1223
- }
1224
- input[type="checkbox"] + .tsd-widget:before {
1225
- background-position: -120px 0;
1226
- }
1227
- input[type="checkbox"]:checked + .tsd-widget:before {
1228
- background-position: -160px 0;
1229
- }
1230
-
1231
- img {
1232
- max-width: 100%;
1233
- }
1234
-
1235
- .tsd-anchor-icon {
1236
- display: inline-flex;
1237
- align-items: center;
1238
- margin-left: 0.5rem;
1239
- vertical-align: middle;
1240
- color: var(--color-text);
1241
- }
1242
-
1243
- .tsd-anchor-icon svg {
1244
- width: 1em;
1245
- height: 1em;
1246
- visibility: hidden;
1247
- }
1248
-
1249
- .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1250
- visibility: visible;
1251
- }
1252
-
1253
- .deprecated {
1254
- text-decoration: line-through;
1255
- }
1256
-
1257
- .warning {
1258
- padding: 1rem;
1259
- color: var(--color-warning-text);
1260
- background: var(--color-background-warning);
1261
- }
1262
-
1263
- * {
1264
- scrollbar-width: thin;
1265
- scrollbar-color: var(--color-accent) var(--color-icon-background);
1266
- }
1267
-
1268
- *::-webkit-scrollbar {
1269
- width: 0.75rem;
1270
- }
1271
-
1272
- *::-webkit-scrollbar-track {
1273
- background: var(--color-icon-background);
1274
- }
1275
-
1276
- *::-webkit-scrollbar-thumb {
1277
- background-color: var(--color-accent);
1278
- border-radius: 999rem;
1279
- border: 0.25rem solid var(--color-icon-background);
1280
- }