@homebridge-plugins/homebridge-smarthq 0.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 (62) hide show
  1. package/.gitattributes +2 -0
  2. package/.github/FUNDING.yml +4 -0
  3. package/.github/ISSUE_TEMPLATE/bug-report.yml +91 -0
  4. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  5. package/.github/ISSUE_TEMPLATE/feature-request.yml +34 -0
  6. package/.github/ISSUE_TEMPLATE/support-request.yml +85 -0
  7. package/.github/ISSUE_TEMPLATE.md +48 -0
  8. package/.github/PULL_REQUEST_TEMPLATE/pull_request.md +27 -0
  9. package/.github/dependabot.yml +17 -0
  10. package/.github/labeler.yml +38 -0
  11. package/.github/release-drafter.yml +33 -0
  12. package/.github/workflows/beta-release.yml +55 -0
  13. package/.github/workflows/build.yml +18 -0
  14. package/.github/workflows/changerelease.yml +11 -0
  15. package/.github/workflows/labeler.yml +9 -0
  16. package/.github/workflows/release-drafter.yml +14 -0
  17. package/.github/workflows/release.yml +35 -0
  18. package/.github/workflows/stale.yml +12 -0
  19. package/CHANGELOG.md +17 -0
  20. package/LICENSE +14 -0
  21. package/README.md +52 -0
  22. package/SECURITY.md +19 -0
  23. package/branding/Homebridge_x_Air.svg +27 -0
  24. package/branding/icon.png +0 -0
  25. package/config.schema.json +163 -0
  26. package/dist/devices/device.d.ts +47 -0
  27. package/dist/devices/device.d.ts.map +1 -0
  28. package/dist/devices/device.js +181 -0
  29. package/dist/devices/device.js.map +1 -0
  30. package/dist/devices/dishwashers.d.ts +30 -0
  31. package/dist/devices/dishwashers.d.ts.map +1 -0
  32. package/dist/devices/dishwashers.js +78 -0
  33. package/dist/devices/dishwashers.js.map +1 -0
  34. package/dist/homebridge-ui/public/index.html +338 -0
  35. package/dist/homebridge-ui/server.d.ts +2 -0
  36. package/dist/homebridge-ui/server.d.ts.map +1 -0
  37. package/dist/homebridge-ui/server.js +48 -0
  38. package/dist/homebridge-ui/server.js.map +1 -0
  39. package/dist/index.d.ts +4 -0
  40. package/dist/index.d.ts.map +1 -0
  41. package/dist/index.js +7 -0
  42. package/dist/index.js.map +1 -0
  43. package/dist/platform.d.ts +74 -0
  44. package/dist/platform.d.ts.map +1 -0
  45. package/dist/platform.js +315 -0
  46. package/dist/platform.js.map +1 -0
  47. package/dist/settings.d.ts +30 -0
  48. package/dist/settings.d.ts.map +1 -0
  49. package/dist/settings.js +9 -0
  50. package/dist/settings.js.map +1 -0
  51. package/docs/.nojekyll +1 -0
  52. package/docs/assets/highlight.css +22 -0
  53. package/docs/assets/icons.js +18 -0
  54. package/docs/assets/icons.svg +1 -0
  55. package/docs/assets/main.js +60 -0
  56. package/docs/assets/navigation.js +1 -0
  57. package/docs/assets/search.js +1 -0
  58. package/docs/assets/style.css +1493 -0
  59. package/docs/index.html +34 -0
  60. package/docs/modules.html +1 -0
  61. package/eslint.config.js +50 -0
  62. package/package.json +91 -0
@@ -0,0 +1,1493 @@
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-accent: #c5c7c9;
8
+ --light-color-active-menu-item: var(--light-color-accent);
9
+ --light-color-text: #222;
10
+ --light-color-text-aside: #6e6e6e;
11
+
12
+ --light-color-icon-background: var(--light-color-background);
13
+ --light-color-icon-text: var(--light-color-text);
14
+
15
+ --light-color-comment-tag-text: var(--light-color-text);
16
+ --light-color-comment-tag: var(--light-color-background);
17
+
18
+ --light-color-link: #1f70c2;
19
+ --light-color-focus-outline: #3584e4;
20
+
21
+ --light-color-ts-keyword: #056bd6;
22
+ --light-color-ts-project: #b111c9;
23
+ --light-color-ts-module: var(--light-color-ts-project);
24
+ --light-color-ts-namespace: var(--light-color-ts-project);
25
+ --light-color-ts-enum: #7e6f15;
26
+ --light-color-ts-enum-member: var(--light-color-ts-enum);
27
+ --light-color-ts-variable: #4760ec;
28
+ --light-color-ts-function: #572be7;
29
+ --light-color-ts-class: #1f70c2;
30
+ --light-color-ts-interface: #108024;
31
+ --light-color-ts-constructor: #4d7fff;
32
+ --light-color-ts-property: #ff984d;
33
+ --light-color-ts-method: #ff4db8;
34
+ --light-color-ts-reference: #ff4d82;
35
+ --light-color-ts-call-signature: var(--light-color-ts-method);
36
+ --light-color-ts-index-signature: var(--light-color-ts-property);
37
+ --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
38
+ --light-color-ts-parameter: var(--light-color-ts-variable);
39
+ /* type literal not included as links will never be generated to it */
40
+ --light-color-ts-type-parameter: #a55c0e;
41
+ --light-color-ts-accessor: #ff4d4d;
42
+ --light-color-ts-get-signature: var(--light-color-ts-accessor);
43
+ --light-color-ts-set-signature: var(--light-color-ts-accessor);
44
+ --light-color-ts-type-alias: #d51270;
45
+ /* reference not included as links will be colored with the kind that it points to */
46
+ --light-color-document: #000000;
47
+
48
+ --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>");
49
+ --light-color-scheme: light;
50
+
51
+ /* Dark */
52
+ --dark-color-background: #2b2e33;
53
+ --dark-color-background-secondary: #1e2024;
54
+ --dark-color-background-warning: #bebe00;
55
+ --dark-color-warning-text: #222;
56
+ --dark-color-accent: #9096a2;
57
+ --dark-color-active-menu-item: #5d5d6a;
58
+ --dark-color-text: #f5f5f5;
59
+ --dark-color-text-aside: #dddddd;
60
+
61
+ --dark-color-icon-background: var(--dark-color-background-secondary);
62
+ --dark-color-icon-text: var(--dark-color-text);
63
+
64
+ --dark-color-comment-tag-text: var(--dark-color-text);
65
+ --dark-color-comment-tag: var(--dark-color-background);
66
+
67
+ --dark-color-link: #00aff4;
68
+ --dark-color-focus-outline: #4c97f2;
69
+
70
+ --dark-color-ts-keyword: #3399ff;
71
+ --dark-color-ts-project: #e358ff;
72
+ --dark-color-ts-module: var(--dark-color-ts-project);
73
+ --dark-color-ts-namespace: var(--dark-color-ts-project);
74
+ --dark-color-ts-enum: #f4d93e;
75
+ --dark-color-ts-enum-member: var(--dark-color-ts-enum);
76
+ --dark-color-ts-variable: #798dff;
77
+ --dark-color-ts-function: #a280ff;
78
+ --dark-color-ts-class: #8ac4ff;
79
+ --dark-color-ts-interface: #6cff87;
80
+ --dark-color-ts-constructor: #4d7fff;
81
+ --dark-color-ts-property: #ff984d;
82
+ --dark-color-ts-method: #ff4db8;
83
+ --dark-color-ts-reference: #ff4d82;
84
+ --dark-color-ts-call-signature: var(--dark-color-ts-method);
85
+ --dark-color-ts-index-signature: var(--dark-color-ts-property);
86
+ --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
87
+ --dark-color-ts-parameter: var(--dark-color-ts-variable);
88
+ /* type literal not included as links will never be generated to it */
89
+ --dark-color-ts-type-parameter: #e07d13;
90
+ --dark-color-ts-accessor: #ff4d4d;
91
+ --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
92
+ --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
93
+ --dark-color-ts-type-alias: #ff6492;
94
+ /* reference not included as links will be colored with the kind that it points to */
95
+ --dark-color-document: #ffffff;
96
+
97
+ --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>");
98
+ --dark-color-scheme: dark;
99
+ }
100
+
101
+ @media (prefers-color-scheme: light) {
102
+ :root {
103
+ --color-background: var(--light-color-background);
104
+ --color-background-secondary: var(--light-color-background-secondary);
105
+ --color-background-warning: var(--light-color-background-warning);
106
+ --color-warning-text: var(--light-color-warning-text);
107
+ --color-accent: var(--light-color-accent);
108
+ --color-active-menu-item: var(--light-color-active-menu-item);
109
+ --color-text: var(--light-color-text);
110
+ --color-text-aside: var(--light-color-text-aside);
111
+
112
+ --color-icon-background: var(--light-color-icon-background);
113
+ --color-icon-text: var(--light-color-icon-text);
114
+
115
+ --color-comment-tag-text: var(--light-color-text);
116
+ --color-comment-tag: var(--light-color-background);
117
+
118
+ --color-link: var(--light-color-link);
119
+ --color-focus-outline: var(--light-color-focus-outline);
120
+
121
+ --color-ts-keyword: var(--light-color-ts-keyword);
122
+ --color-ts-project: var(--light-color-ts-project);
123
+ --color-ts-module: var(--light-color-ts-module);
124
+ --color-ts-namespace: var(--light-color-ts-namespace);
125
+ --color-ts-enum: var(--light-color-ts-enum);
126
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
127
+ --color-ts-variable: var(--light-color-ts-variable);
128
+ --color-ts-function: var(--light-color-ts-function);
129
+ --color-ts-class: var(--light-color-ts-class);
130
+ --color-ts-interface: var(--light-color-ts-interface);
131
+ --color-ts-constructor: var(--light-color-ts-constructor);
132
+ --color-ts-property: var(--light-color-ts-property);
133
+ --color-ts-method: var(--light-color-ts-method);
134
+ --color-ts-reference: var(--light-color-ts-reference);
135
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
136
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
137
+ --color-ts-constructor-signature: var(
138
+ --light-color-ts-constructor-signature
139
+ );
140
+ --color-ts-parameter: var(--light-color-ts-parameter);
141
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
142
+ --color-ts-accessor: var(--light-color-ts-accessor);
143
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
144
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
145
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
146
+ --color-document: var(--light-color-document);
147
+
148
+ --external-icon: var(--light-external-icon);
149
+ --color-scheme: var(--light-color-scheme);
150
+ }
151
+ }
152
+
153
+ @media (prefers-color-scheme: dark) {
154
+ :root {
155
+ --color-background: var(--dark-color-background);
156
+ --color-background-secondary: var(--dark-color-background-secondary);
157
+ --color-background-warning: var(--dark-color-background-warning);
158
+ --color-warning-text: var(--dark-color-warning-text);
159
+ --color-accent: var(--dark-color-accent);
160
+ --color-active-menu-item: var(--dark-color-active-menu-item);
161
+ --color-text: var(--dark-color-text);
162
+ --color-text-aside: var(--dark-color-text-aside);
163
+
164
+ --color-icon-background: var(--dark-color-icon-background);
165
+ --color-icon-text: var(--dark-color-icon-text);
166
+
167
+ --color-comment-tag-text: var(--dark-color-text);
168
+ --color-comment-tag: var(--dark-color-background);
169
+
170
+ --color-link: var(--dark-color-link);
171
+ --color-focus-outline: var(--dark-color-focus-outline);
172
+
173
+ --color-ts-keyword: var(--dark-color-ts-keyword);
174
+ --color-ts-project: var(--dark-color-ts-project);
175
+ --color-ts-module: var(--dark-color-ts-module);
176
+ --color-ts-namespace: var(--dark-color-ts-namespace);
177
+ --color-ts-enum: var(--dark-color-ts-enum);
178
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
179
+ --color-ts-variable: var(--dark-color-ts-variable);
180
+ --color-ts-function: var(--dark-color-ts-function);
181
+ --color-ts-class: var(--dark-color-ts-class);
182
+ --color-ts-interface: var(--dark-color-ts-interface);
183
+ --color-ts-constructor: var(--dark-color-ts-constructor);
184
+ --color-ts-property: var(--dark-color-ts-property);
185
+ --color-ts-method: var(--dark-color-ts-method);
186
+ --color-ts-reference: var(--dark-color-ts-reference);
187
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
188
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
189
+ --color-ts-constructor-signature: var(
190
+ --dark-color-ts-constructor-signature
191
+ );
192
+ --color-ts-parameter: var(--dark-color-ts-parameter);
193
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
194
+ --color-ts-accessor: var(--dark-color-ts-accessor);
195
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
196
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
197
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
198
+ --color-document: var(--dark-color-document);
199
+
200
+ --external-icon: var(--dark-external-icon);
201
+ --color-scheme: var(--dark-color-scheme);
202
+ }
203
+ }
204
+
205
+ html {
206
+ color-scheme: var(--color-scheme);
207
+ }
208
+
209
+ body {
210
+ margin: 0;
211
+ }
212
+
213
+ :root[data-theme="light"] {
214
+ --color-background: var(--light-color-background);
215
+ --color-background-secondary: var(--light-color-background-secondary);
216
+ --color-background-warning: var(--light-color-background-warning);
217
+ --color-warning-text: var(--light-color-warning-text);
218
+ --color-icon-background: var(--light-color-icon-background);
219
+ --color-accent: var(--light-color-accent);
220
+ --color-active-menu-item: var(--light-color-active-menu-item);
221
+ --color-text: var(--light-color-text);
222
+ --color-text-aside: var(--light-color-text-aside);
223
+ --color-icon-text: var(--light-color-icon-text);
224
+
225
+ --color-comment-tag-text: var(--light-color-text);
226
+ --color-comment-tag: var(--light-color-background);
227
+
228
+ --color-link: var(--light-color-link);
229
+ --color-focus-outline: var(--light-color-focus-outline);
230
+
231
+ --color-ts-keyword: var(--light-color-ts-keyword);
232
+ --color-ts-project: var(--light-color-ts-project);
233
+ --color-ts-module: var(--light-color-ts-module);
234
+ --color-ts-namespace: var(--light-color-ts-namespace);
235
+ --color-ts-enum: var(--light-color-ts-enum);
236
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
237
+ --color-ts-variable: var(--light-color-ts-variable);
238
+ --color-ts-function: var(--light-color-ts-function);
239
+ --color-ts-class: var(--light-color-ts-class);
240
+ --color-ts-interface: var(--light-color-ts-interface);
241
+ --color-ts-constructor: var(--light-color-ts-constructor);
242
+ --color-ts-property: var(--light-color-ts-property);
243
+ --color-ts-method: var(--light-color-ts-method);
244
+ --color-ts-reference: var(--light-color-ts-reference);
245
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
246
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
247
+ --color-ts-constructor-signature: var(
248
+ --light-color-ts-constructor-signature
249
+ );
250
+ --color-ts-parameter: var(--light-color-ts-parameter);
251
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
252
+ --color-ts-accessor: var(--light-color-ts-accessor);
253
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
254
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
255
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
256
+ --color-document: var(--light-color-document);
257
+
258
+ --external-icon: var(--light-external-icon);
259
+ --color-scheme: var(--light-color-scheme);
260
+ }
261
+
262
+ :root[data-theme="dark"] {
263
+ --color-background: var(--dark-color-background);
264
+ --color-background-secondary: var(--dark-color-background-secondary);
265
+ --color-background-warning: var(--dark-color-background-warning);
266
+ --color-warning-text: var(--dark-color-warning-text);
267
+ --color-icon-background: var(--dark-color-icon-background);
268
+ --color-accent: var(--dark-color-accent);
269
+ --color-active-menu-item: var(--dark-color-active-menu-item);
270
+ --color-text: var(--dark-color-text);
271
+ --color-text-aside: var(--dark-color-text-aside);
272
+ --color-icon-text: var(--dark-color-icon-text);
273
+
274
+ --color-comment-tag-text: var(--dark-color-text);
275
+ --color-comment-tag: var(--dark-color-background);
276
+
277
+ --color-link: var(--dark-color-link);
278
+ --color-focus-outline: var(--dark-color-focus-outline);
279
+
280
+ --color-ts-keyword: var(--dark-color-ts-keyword);
281
+ --color-ts-project: var(--dark-color-ts-project);
282
+ --color-ts-module: var(--dark-color-ts-module);
283
+ --color-ts-namespace: var(--dark-color-ts-namespace);
284
+ --color-ts-enum: var(--dark-color-ts-enum);
285
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
286
+ --color-ts-variable: var(--dark-color-ts-variable);
287
+ --color-ts-function: var(--dark-color-ts-function);
288
+ --color-ts-class: var(--dark-color-ts-class);
289
+ --color-ts-interface: var(--dark-color-ts-interface);
290
+ --color-ts-constructor: var(--dark-color-ts-constructor);
291
+ --color-ts-property: var(--dark-color-ts-property);
292
+ --color-ts-method: var(--dark-color-ts-method);
293
+ --color-ts-reference: var(--dark-color-ts-reference);
294
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
295
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
296
+ --color-ts-constructor-signature: var(
297
+ --dark-color-ts-constructor-signature
298
+ );
299
+ --color-ts-parameter: var(--dark-color-ts-parameter);
300
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
301
+ --color-ts-accessor: var(--dark-color-ts-accessor);
302
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
303
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
304
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
305
+ --color-document: var(--dark-color-document);
306
+
307
+ --external-icon: var(--dark-external-icon);
308
+ --color-scheme: var(--dark-color-scheme);
309
+ }
310
+
311
+ *:focus-visible,
312
+ .tsd-accordion-summary:focus-visible svg {
313
+ outline: 2px solid var(--color-focus-outline);
314
+ }
315
+
316
+ .always-visible,
317
+ .always-visible .tsd-signatures {
318
+ display: inherit !important;
319
+ }
320
+
321
+ h1,
322
+ h2,
323
+ h3,
324
+ h4,
325
+ h5,
326
+ h6 {
327
+ line-height: 1.2;
328
+ }
329
+
330
+ h1 {
331
+ font-size: 1.875rem;
332
+ margin: 0.67rem 0;
333
+ }
334
+
335
+ h2 {
336
+ font-size: 1.5rem;
337
+ margin: 0.83rem 0;
338
+ }
339
+
340
+ h3 {
341
+ font-size: 1.25rem;
342
+ margin: 1rem 0;
343
+ }
344
+
345
+ h4 {
346
+ font-size: 1.05rem;
347
+ margin: 1.33rem 0;
348
+ }
349
+
350
+ h5 {
351
+ font-size: 1rem;
352
+ margin: 1.5rem 0;
353
+ }
354
+
355
+ h6 {
356
+ font-size: 0.875rem;
357
+ margin: 2.33rem 0;
358
+ }
359
+
360
+ dl,
361
+ menu,
362
+ ol,
363
+ ul {
364
+ margin: 1em 0;
365
+ }
366
+
367
+ dd {
368
+ margin: 0 0 0 40px;
369
+ }
370
+
371
+ .container {
372
+ max-width: 1700px;
373
+ padding: 0 2rem;
374
+ }
375
+
376
+ /* Footer */
377
+ footer {
378
+ border-top: 1px solid var(--color-accent);
379
+ padding-top: 1rem;
380
+ padding-bottom: 1rem;
381
+ max-height: 3.5rem;
382
+ }
383
+ footer > p {
384
+ margin: 0 1em;
385
+ }
386
+
387
+ .container-main {
388
+ margin: 0 auto;
389
+ /* toolbar, footer, margin */
390
+ min-height: calc(100vh - 41px - 56px - 4rem);
391
+ }
392
+
393
+ @keyframes fade-in {
394
+ from {
395
+ opacity: 0;
396
+ }
397
+ to {
398
+ opacity: 1;
399
+ }
400
+ }
401
+ @keyframes fade-out {
402
+ from {
403
+ opacity: 1;
404
+ visibility: visible;
405
+ }
406
+ to {
407
+ opacity: 0;
408
+ }
409
+ }
410
+ @keyframes fade-in-delayed {
411
+ 0% {
412
+ opacity: 0;
413
+ }
414
+ 33% {
415
+ opacity: 0;
416
+ }
417
+ 100% {
418
+ opacity: 1;
419
+ }
420
+ }
421
+ @keyframes fade-out-delayed {
422
+ 0% {
423
+ opacity: 1;
424
+ visibility: visible;
425
+ }
426
+ 66% {
427
+ opacity: 0;
428
+ }
429
+ 100% {
430
+ opacity: 0;
431
+ }
432
+ }
433
+ @keyframes pop-in-from-right {
434
+ from {
435
+ transform: translate(100%, 0);
436
+ }
437
+ to {
438
+ transform: translate(0, 0);
439
+ }
440
+ }
441
+ @keyframes pop-out-to-right {
442
+ from {
443
+ transform: translate(0, 0);
444
+ visibility: visible;
445
+ }
446
+ to {
447
+ transform: translate(100%, 0);
448
+ }
449
+ }
450
+ body {
451
+ background: var(--color-background);
452
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
453
+ Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
454
+ font-size: 16px;
455
+ color: var(--color-text);
456
+ }
457
+
458
+ a {
459
+ color: var(--color-link);
460
+ text-decoration: none;
461
+ }
462
+ a:hover {
463
+ text-decoration: underline;
464
+ }
465
+ a.external[target="_blank"] {
466
+ background-image: var(--external-icon);
467
+ background-position: top 3px right;
468
+ background-repeat: no-repeat;
469
+ padding-right: 13px;
470
+ }
471
+ a.tsd-anchor-link {
472
+ color: var(--color-text);
473
+ }
474
+
475
+ code,
476
+ pre {
477
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
478
+ padding: 0.2em;
479
+ margin: 0;
480
+ font-size: 0.875rem;
481
+ border-radius: 0.8em;
482
+ }
483
+
484
+ pre {
485
+ position: relative;
486
+ white-space: pre-wrap;
487
+ word-wrap: break-word;
488
+ padding: 10px;
489
+ border: 1px solid var(--color-accent);
490
+ }
491
+ pre code {
492
+ padding: 0;
493
+ font-size: 100%;
494
+ }
495
+ pre > button {
496
+ position: absolute;
497
+ top: 10px;
498
+ right: 10px;
499
+ opacity: 0;
500
+ transition: opacity 0.1s;
501
+ box-sizing: border-box;
502
+ }
503
+ pre:hover > button,
504
+ pre > button.visible {
505
+ opacity: 1;
506
+ }
507
+
508
+ blockquote {
509
+ margin: 1em 0;
510
+ padding-left: 1em;
511
+ border-left: 4px solid gray;
512
+ }
513
+
514
+ .tsd-typography {
515
+ line-height: 1.333em;
516
+ }
517
+ .tsd-typography ul {
518
+ list-style: square;
519
+ padding: 0 0 0 20px;
520
+ margin: 0;
521
+ }
522
+ .tsd-typography .tsd-index-panel h3,
523
+ .tsd-index-panel .tsd-typography h3,
524
+ .tsd-typography h4,
525
+ .tsd-typography h5,
526
+ .tsd-typography h6 {
527
+ font-size: 1em;
528
+ }
529
+ .tsd-typography h5,
530
+ .tsd-typography h6 {
531
+ font-weight: normal;
532
+ }
533
+ .tsd-typography p,
534
+ .tsd-typography ul,
535
+ .tsd-typography ol {
536
+ margin: 1em 0;
537
+ }
538
+ .tsd-typography table {
539
+ border-collapse: collapse;
540
+ border: none;
541
+ }
542
+ .tsd-typography td,
543
+ .tsd-typography th {
544
+ padding: 6px 13px;
545
+ border: 1px solid var(--color-accent);
546
+ }
547
+ .tsd-typography thead,
548
+ .tsd-typography tr:nth-child(even) {
549
+ background-color: var(--color-background-secondary);
550
+ }
551
+
552
+ .tsd-breadcrumb {
553
+ margin: 0;
554
+ padding: 0;
555
+ color: var(--color-text-aside);
556
+ }
557
+ .tsd-breadcrumb a {
558
+ color: var(--color-text-aside);
559
+ text-decoration: none;
560
+ }
561
+ .tsd-breadcrumb a:hover {
562
+ text-decoration: underline;
563
+ }
564
+ .tsd-breadcrumb li {
565
+ display: inline;
566
+ }
567
+ .tsd-breadcrumb li:after {
568
+ content: " / ";
569
+ }
570
+
571
+ .tsd-comment-tags {
572
+ display: flex;
573
+ flex-direction: column;
574
+ }
575
+ dl.tsd-comment-tag-group {
576
+ display: flex;
577
+ align-items: center;
578
+ overflow: hidden;
579
+ margin: 0.5em 0;
580
+ }
581
+ dl.tsd-comment-tag-group dt {
582
+ display: flex;
583
+ margin-right: 0.5em;
584
+ font-size: 0.875em;
585
+ font-weight: normal;
586
+ }
587
+ dl.tsd-comment-tag-group dd {
588
+ margin: 0;
589
+ }
590
+ code.tsd-tag {
591
+ padding: 0.25em 0.4em;
592
+ border: 0.1em solid var(--color-accent);
593
+ margin-right: 0.25em;
594
+ font-size: 70%;
595
+ }
596
+ h1 code.tsd-tag:first-of-type {
597
+ margin-left: 0.25em;
598
+ }
599
+
600
+ dl.tsd-comment-tag-group dd:before,
601
+ dl.tsd-comment-tag-group dd:after {
602
+ content: " ";
603
+ }
604
+ dl.tsd-comment-tag-group dd pre,
605
+ dl.tsd-comment-tag-group dd:after {
606
+ clear: both;
607
+ }
608
+ dl.tsd-comment-tag-group p {
609
+ margin: 0;
610
+ }
611
+
612
+ .tsd-panel.tsd-comment .lead {
613
+ font-size: 1.1em;
614
+ line-height: 1.333em;
615
+ margin-bottom: 2em;
616
+ }
617
+ .tsd-panel.tsd-comment .lead:last-child {
618
+ margin-bottom: 0;
619
+ }
620
+
621
+ .tsd-filter-visibility h4 {
622
+ font-size: 1rem;
623
+ padding-top: 0.75rem;
624
+ padding-bottom: 0.5rem;
625
+ margin: 0;
626
+ }
627
+ .tsd-filter-item:not(:last-child) {
628
+ margin-bottom: 0.5rem;
629
+ }
630
+ .tsd-filter-input {
631
+ display: flex;
632
+ width: -moz-fit-content;
633
+ width: fit-content;
634
+ align-items: center;
635
+ -webkit-user-select: none;
636
+ -moz-user-select: none;
637
+ -ms-user-select: none;
638
+ user-select: none;
639
+ cursor: pointer;
640
+ }
641
+ .tsd-filter-input input[type="checkbox"] {
642
+ cursor: pointer;
643
+ position: absolute;
644
+ width: 1.5em;
645
+ height: 1.5em;
646
+ opacity: 0;
647
+ }
648
+ .tsd-filter-input input[type="checkbox"]:disabled {
649
+ pointer-events: none;
650
+ }
651
+ .tsd-filter-input svg {
652
+ cursor: pointer;
653
+ width: 1.5em;
654
+ height: 1.5em;
655
+ margin-right: 0.5em;
656
+ border-radius: 0.33em;
657
+ /* Leaving this at full opacity breaks event listeners on Firefox.
658
+ Don't remove unless you know what you're doing. */
659
+ opacity: 0.99;
660
+ }
661
+ .tsd-filter-input input[type="checkbox"]:focus-visible + svg {
662
+ outline: 2px solid var(--color-focus-outline);
663
+ }
664
+ .tsd-checkbox-background {
665
+ fill: var(--color-accent);
666
+ }
667
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
668
+ stroke: var(--color-text);
669
+ }
670
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
671
+ fill: var(--color-background);
672
+ stroke: var(--color-accent);
673
+ stroke-width: 0.25rem;
674
+ }
675
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
676
+ stroke: var(--color-accent);
677
+ }
678
+
679
+ .settings-label {
680
+ font-weight: bold;
681
+ text-transform: uppercase;
682
+ display: inline-block;
683
+ }
684
+
685
+ .tsd-filter-visibility .settings-label {
686
+ margin: 0.75rem 0 0.5rem 0;
687
+ }
688
+
689
+ .tsd-theme-toggle .settings-label {
690
+ margin: 0.75rem 0.75rem 0 0;
691
+ }
692
+
693
+ .tsd-hierarchy {
694
+ list-style: square;
695
+ margin: 0;
696
+ }
697
+ .tsd-hierarchy .target {
698
+ font-weight: bold;
699
+ }
700
+
701
+ .tsd-full-hierarchy:not(:last-child) {
702
+ margin-bottom: 1em;
703
+ padding-bottom: 1em;
704
+ border-bottom: 1px solid var(--color-accent);
705
+ }
706
+ .tsd-full-hierarchy,
707
+ .tsd-full-hierarchy ul {
708
+ list-style: none;
709
+ margin: 0;
710
+ padding: 0;
711
+ }
712
+ .tsd-full-hierarchy ul {
713
+ padding-left: 1.5rem;
714
+ }
715
+ .tsd-full-hierarchy a {
716
+ padding: 0.25rem 0 !important;
717
+ font-size: 1rem;
718
+ display: inline-flex;
719
+ align-items: center;
720
+ color: var(--color-text);
721
+ }
722
+
723
+ .tsd-panel-group.tsd-index-group {
724
+ margin-bottom: 0;
725
+ }
726
+ .tsd-index-panel .tsd-index-list {
727
+ list-style: none;
728
+ line-height: 1.333em;
729
+ margin: 0;
730
+ padding: 0.25rem 0 0 0;
731
+ overflow: hidden;
732
+ display: grid;
733
+ grid-template-columns: repeat(3, 1fr);
734
+ column-gap: 1rem;
735
+ grid-template-rows: auto;
736
+ }
737
+ @media (max-width: 1024px) {
738
+ .tsd-index-panel .tsd-index-list {
739
+ grid-template-columns: repeat(2, 1fr);
740
+ }
741
+ }
742
+ @media (max-width: 768px) {
743
+ .tsd-index-panel .tsd-index-list {
744
+ grid-template-columns: repeat(1, 1fr);
745
+ }
746
+ }
747
+ .tsd-index-panel .tsd-index-list li {
748
+ -webkit-page-break-inside: avoid;
749
+ -moz-page-break-inside: avoid;
750
+ -ms-page-break-inside: avoid;
751
+ -o-page-break-inside: avoid;
752
+ page-break-inside: avoid;
753
+ }
754
+
755
+ .tsd-flag {
756
+ display: inline-block;
757
+ padding: 0.25em 0.4em;
758
+ border-radius: 4px;
759
+ color: var(--color-comment-tag-text);
760
+ background-color: var(--color-comment-tag);
761
+ text-indent: 0;
762
+ font-size: 75%;
763
+ line-height: 1;
764
+ font-weight: normal;
765
+ }
766
+
767
+ .tsd-anchor {
768
+ position: relative;
769
+ top: -100px;
770
+ }
771
+
772
+ .tsd-member {
773
+ position: relative;
774
+ }
775
+ .tsd-member .tsd-anchor + h3 {
776
+ display: flex;
777
+ align-items: center;
778
+ margin-top: 0;
779
+ margin-bottom: 0;
780
+ border-bottom: none;
781
+ }
782
+
783
+ .tsd-navigation.settings {
784
+ margin: 1rem 0;
785
+ }
786
+ .tsd-navigation > a,
787
+ .tsd-navigation .tsd-accordion-summary {
788
+ width: calc(100% - 0.25rem);
789
+ display: flex;
790
+ align-items: center;
791
+ }
792
+ .tsd-navigation a,
793
+ .tsd-navigation summary > span,
794
+ .tsd-page-navigation a {
795
+ display: flex;
796
+ width: calc(100% - 0.25rem);
797
+ align-items: center;
798
+ padding: 0.25rem;
799
+ color: var(--color-text);
800
+ text-decoration: none;
801
+ box-sizing: border-box;
802
+ }
803
+ .tsd-navigation a.current,
804
+ .tsd-page-navigation a.current {
805
+ background: var(--color-active-menu-item);
806
+ }
807
+ .tsd-navigation a:hover,
808
+ .tsd-page-navigation a:hover {
809
+ text-decoration: underline;
810
+ }
811
+ .tsd-navigation ul,
812
+ .tsd-page-navigation ul {
813
+ margin-top: 0;
814
+ margin-bottom: 0;
815
+ padding: 0;
816
+ list-style: none;
817
+ }
818
+ .tsd-navigation li,
819
+ .tsd-page-navigation li {
820
+ padding: 0;
821
+ max-width: 100%;
822
+ }
823
+ .tsd-navigation .tsd-nav-link {
824
+ display: none;
825
+ }
826
+ .tsd-nested-navigation {
827
+ margin-left: 3rem;
828
+ }
829
+ .tsd-nested-navigation > li > details {
830
+ margin-left: -1.5rem;
831
+ }
832
+ .tsd-small-nested-navigation {
833
+ margin-left: 1.5rem;
834
+ }
835
+ .tsd-small-nested-navigation > li > details {
836
+ margin-left: -1.5rem;
837
+ }
838
+
839
+ .tsd-page-navigation-section {
840
+ margin-left: 10px;
841
+ }
842
+ .tsd-page-navigation-section > summary {
843
+ padding: 0.25rem;
844
+ }
845
+ .tsd-page-navigation-section > div {
846
+ margin-left: 20px;
847
+ }
848
+ .tsd-page-navigation ul {
849
+ padding-left: 1.75rem;
850
+ }
851
+
852
+ #tsd-sidebar-links a {
853
+ margin-top: 0;
854
+ margin-bottom: 0.5rem;
855
+ line-height: 1.25rem;
856
+ }
857
+ #tsd-sidebar-links a:last-of-type {
858
+ margin-bottom: 0;
859
+ }
860
+
861
+ a.tsd-index-link {
862
+ padding: 0.25rem 0 !important;
863
+ font-size: 1rem;
864
+ line-height: 1.25rem;
865
+ display: inline-flex;
866
+ align-items: center;
867
+ color: var(--color-text);
868
+ }
869
+ .tsd-accordion-summary {
870
+ list-style-type: none; /* hide marker on non-safari */
871
+ outline: none; /* broken on safari, so just hide it */
872
+ }
873
+ .tsd-accordion-summary::-webkit-details-marker {
874
+ display: none; /* hide marker on safari */
875
+ }
876
+ .tsd-accordion-summary,
877
+ .tsd-accordion-summary a {
878
+ -moz-user-select: none;
879
+ -webkit-user-select: none;
880
+ -ms-user-select: none;
881
+ user-select: none;
882
+
883
+ cursor: pointer;
884
+ }
885
+ .tsd-accordion-summary a {
886
+ width: calc(100% - 1.5rem);
887
+ }
888
+ .tsd-accordion-summary > * {
889
+ margin-top: 0;
890
+ margin-bottom: 0;
891
+ padding-top: 0;
892
+ padding-bottom: 0;
893
+ }
894
+ .tsd-accordion .tsd-accordion-summary > svg {
895
+ margin-left: 0.25rem;
896
+ vertical-align: text-top;
897
+ }
898
+ .tsd-index-content > :not(:first-child) {
899
+ margin-top: 0.75rem;
900
+ }
901
+ .tsd-index-heading {
902
+ margin-top: 1.5rem;
903
+ margin-bottom: 0.75rem;
904
+ }
905
+
906
+ .tsd-no-select {
907
+ -webkit-user-select: none;
908
+ -moz-user-select: none;
909
+ -ms-user-select: none;
910
+ user-select: none;
911
+ }
912
+ .tsd-kind-icon {
913
+ margin-right: 0.5rem;
914
+ width: 1.25rem;
915
+ height: 1.25rem;
916
+ min-width: 1.25rem;
917
+ min-height: 1.25rem;
918
+ }
919
+ .tsd-signature > .tsd-kind-icon {
920
+ margin-right: 0.8rem;
921
+ }
922
+
923
+ .tsd-panel {
924
+ margin-bottom: 2.5rem;
925
+ }
926
+ .tsd-panel.tsd-member {
927
+ margin-bottom: 4rem;
928
+ }
929
+ .tsd-panel:empty {
930
+ display: none;
931
+ }
932
+ .tsd-panel > h1,
933
+ .tsd-panel > h2,
934
+ .tsd-panel > h3 {
935
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
936
+ padding: 0 1.5rem 0.75rem 1.5rem;
937
+ }
938
+ .tsd-panel > h1.tsd-before-signature,
939
+ .tsd-panel > h2.tsd-before-signature,
940
+ .tsd-panel > h3.tsd-before-signature {
941
+ margin-bottom: 0;
942
+ border-bottom: none;
943
+ }
944
+
945
+ .tsd-panel-group {
946
+ margin: 2rem 0;
947
+ }
948
+ .tsd-panel-group.tsd-index-group {
949
+ margin: 2rem 0;
950
+ }
951
+ .tsd-panel-group.tsd-index-group details {
952
+ margin: 2rem 0;
953
+ }
954
+ .tsd-panel-group > .tsd-accordion-summary {
955
+ margin-bottom: 1rem;
956
+ }
957
+
958
+ #tsd-search {
959
+ transition: background-color 0.2s;
960
+ }
961
+ #tsd-search .title {
962
+ position: relative;
963
+ z-index: 2;
964
+ }
965
+ #tsd-search .field {
966
+ position: absolute;
967
+ left: 0;
968
+ top: 0;
969
+ right: 2.5rem;
970
+ height: 100%;
971
+ }
972
+ #tsd-search .field input {
973
+ box-sizing: border-box;
974
+ position: relative;
975
+ top: -50px;
976
+ z-index: 1;
977
+ width: 100%;
978
+ padding: 0 10px;
979
+ opacity: 0;
980
+ outline: 0;
981
+ border: 0;
982
+ background: transparent;
983
+ color: var(--color-text);
984
+ }
985
+ #tsd-search .field label {
986
+ position: absolute;
987
+ overflow: hidden;
988
+ right: -40px;
989
+ }
990
+ #tsd-search .field input,
991
+ #tsd-search .title,
992
+ #tsd-toolbar-links a {
993
+ transition: opacity 0.2s;
994
+ }
995
+ #tsd-search .results {
996
+ position: absolute;
997
+ visibility: hidden;
998
+ top: 40px;
999
+ width: 100%;
1000
+ margin: 0;
1001
+ padding: 0;
1002
+ list-style: none;
1003
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1004
+ }
1005
+ #tsd-search .results li {
1006
+ background-color: var(--color-background);
1007
+ line-height: initial;
1008
+ padding: 4px;
1009
+ }
1010
+ #tsd-search .results li:nth-child(even) {
1011
+ background-color: var(--color-background-secondary);
1012
+ }
1013
+ #tsd-search .results li.state {
1014
+ display: none;
1015
+ }
1016
+ #tsd-search .results li.current:not(.no-results),
1017
+ #tsd-search .results li:hover:not(.no-results) {
1018
+ background-color: var(--color-accent);
1019
+ }
1020
+ #tsd-search .results a {
1021
+ display: flex;
1022
+ align-items: center;
1023
+ padding: 0.25rem;
1024
+ box-sizing: border-box;
1025
+ }
1026
+ #tsd-search .results a:before {
1027
+ top: 10px;
1028
+ }
1029
+ #tsd-search .results span.parent {
1030
+ color: var(--color-text-aside);
1031
+ font-weight: normal;
1032
+ }
1033
+ #tsd-search.has-focus {
1034
+ background-color: var(--color-accent);
1035
+ }
1036
+ #tsd-search.has-focus .field input {
1037
+ top: 0;
1038
+ opacity: 1;
1039
+ }
1040
+ #tsd-search.has-focus .title,
1041
+ #tsd-search.has-focus #tsd-toolbar-links a {
1042
+ z-index: 0;
1043
+ opacity: 0;
1044
+ }
1045
+ #tsd-search.has-focus .results {
1046
+ visibility: visible;
1047
+ }
1048
+ #tsd-search.loading .results li.state.loading {
1049
+ display: block;
1050
+ }
1051
+ #tsd-search.failure .results li.state.failure {
1052
+ display: block;
1053
+ }
1054
+
1055
+ #tsd-toolbar-links {
1056
+ position: absolute;
1057
+ top: 0;
1058
+ right: 2rem;
1059
+ height: 100%;
1060
+ display: flex;
1061
+ align-items: center;
1062
+ justify-content: flex-end;
1063
+ }
1064
+ #tsd-toolbar-links a {
1065
+ margin-left: 1.5rem;
1066
+ }
1067
+ #tsd-toolbar-links a:hover {
1068
+ text-decoration: underline;
1069
+ }
1070
+
1071
+ .tsd-signature {
1072
+ margin: 0 0 1rem 0;
1073
+ padding: 1rem 0.5rem;
1074
+ border: 1px solid var(--color-accent);
1075
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1076
+ font-size: 14px;
1077
+ overflow-x: auto;
1078
+ }
1079
+
1080
+ .tsd-signature-keyword {
1081
+ color: var(--color-ts-keyword);
1082
+ font-weight: normal;
1083
+ }
1084
+
1085
+ .tsd-signature-symbol {
1086
+ color: var(--color-text-aside);
1087
+ font-weight: normal;
1088
+ }
1089
+
1090
+ .tsd-signature-type {
1091
+ font-style: italic;
1092
+ font-weight: normal;
1093
+ }
1094
+
1095
+ .tsd-signatures {
1096
+ padding: 0;
1097
+ margin: 0 0 1em 0;
1098
+ list-style-type: none;
1099
+ }
1100
+ .tsd-signatures .tsd-signature {
1101
+ margin: 0;
1102
+ border-color: var(--color-accent);
1103
+ border-width: 1px 0;
1104
+ transition: background-color 0.1s;
1105
+ }
1106
+ .tsd-signatures .tsd-index-signature:not(:last-child) {
1107
+ margin-bottom: 1em;
1108
+ }
1109
+ .tsd-signatures .tsd-index-signature .tsd-signature {
1110
+ border-width: 1px;
1111
+ }
1112
+ .tsd-description .tsd-signatures .tsd-signature {
1113
+ border-width: 1px;
1114
+ }
1115
+
1116
+ ul.tsd-parameter-list,
1117
+ ul.tsd-type-parameter-list {
1118
+ list-style: square;
1119
+ margin: 0;
1120
+ padding-left: 20px;
1121
+ }
1122
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
1123
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1124
+ list-style: none;
1125
+ margin-left: -20px;
1126
+ }
1127
+ ul.tsd-parameter-list h5,
1128
+ ul.tsd-type-parameter-list h5 {
1129
+ font-size: 16px;
1130
+ margin: 1em 0 0.5em 0;
1131
+ }
1132
+ .tsd-sources {
1133
+ margin-top: 1rem;
1134
+ font-size: 0.875em;
1135
+ }
1136
+ .tsd-sources a {
1137
+ color: var(--color-text-aside);
1138
+ text-decoration: underline;
1139
+ }
1140
+ .tsd-sources ul {
1141
+ list-style: none;
1142
+ padding: 0;
1143
+ }
1144
+
1145
+ .tsd-page-toolbar {
1146
+ position: sticky;
1147
+ z-index: 1;
1148
+ top: 0;
1149
+ left: 0;
1150
+ width: 100%;
1151
+ color: var(--color-text);
1152
+ background: var(--color-background-secondary);
1153
+ border-bottom: 1px var(--color-accent) solid;
1154
+ transition: transform 0.3s ease-in-out;
1155
+ }
1156
+ .tsd-page-toolbar a {
1157
+ color: var(--color-text);
1158
+ text-decoration: none;
1159
+ }
1160
+ .tsd-page-toolbar a.title {
1161
+ font-weight: bold;
1162
+ }
1163
+ .tsd-page-toolbar a.title:hover {
1164
+ text-decoration: underline;
1165
+ }
1166
+ .tsd-page-toolbar .tsd-toolbar-contents {
1167
+ display: flex;
1168
+ justify-content: space-between;
1169
+ height: 2.5rem;
1170
+ margin: 0 auto;
1171
+ }
1172
+ .tsd-page-toolbar .table-cell {
1173
+ position: relative;
1174
+ white-space: nowrap;
1175
+ line-height: 40px;
1176
+ }
1177
+ .tsd-page-toolbar .table-cell:first-child {
1178
+ width: 100%;
1179
+ }
1180
+ .tsd-page-toolbar .tsd-toolbar-icon {
1181
+ box-sizing: border-box;
1182
+ line-height: 0;
1183
+ padding: 12px 0;
1184
+ }
1185
+
1186
+ .tsd-widget {
1187
+ display: inline-block;
1188
+ overflow: hidden;
1189
+ opacity: 0.8;
1190
+ height: 40px;
1191
+ transition:
1192
+ opacity 0.1s,
1193
+ background-color 0.2s;
1194
+ vertical-align: bottom;
1195
+ cursor: pointer;
1196
+ }
1197
+ .tsd-widget:hover {
1198
+ opacity: 0.9;
1199
+ }
1200
+ .tsd-widget.active {
1201
+ opacity: 1;
1202
+ background-color: var(--color-accent);
1203
+ }
1204
+ .tsd-widget.no-caption {
1205
+ width: 40px;
1206
+ }
1207
+ .tsd-widget.no-caption:before {
1208
+ margin: 0;
1209
+ }
1210
+
1211
+ .tsd-widget.options,
1212
+ .tsd-widget.menu {
1213
+ display: none;
1214
+ }
1215
+ input[type="checkbox"] + .tsd-widget:before {
1216
+ background-position: -120px 0;
1217
+ }
1218
+ input[type="checkbox"]:checked + .tsd-widget:before {
1219
+ background-position: -160px 0;
1220
+ }
1221
+
1222
+ img {
1223
+ max-width: 100%;
1224
+ }
1225
+
1226
+ .tsd-anchor-icon {
1227
+ display: inline-flex;
1228
+ align-items: center;
1229
+ margin-left: 0.5rem;
1230
+ vertical-align: middle;
1231
+ color: var(--color-text);
1232
+ }
1233
+
1234
+ .tsd-anchor-icon svg {
1235
+ width: 1em;
1236
+ height: 1em;
1237
+ visibility: hidden;
1238
+ }
1239
+
1240
+ .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1241
+ visibility: visible;
1242
+ }
1243
+
1244
+ .deprecated {
1245
+ text-decoration: line-through !important;
1246
+ }
1247
+
1248
+ .warning {
1249
+ padding: 1rem;
1250
+ color: var(--color-warning-text);
1251
+ background: var(--color-background-warning);
1252
+ }
1253
+
1254
+ .tsd-kind-project {
1255
+ color: var(--color-ts-project);
1256
+ }
1257
+ .tsd-kind-module {
1258
+ color: var(--color-ts-module);
1259
+ }
1260
+ .tsd-kind-namespace {
1261
+ color: var(--color-ts-namespace);
1262
+ }
1263
+ .tsd-kind-enum {
1264
+ color: var(--color-ts-enum);
1265
+ }
1266
+ .tsd-kind-enum-member {
1267
+ color: var(--color-ts-enum-member);
1268
+ }
1269
+ .tsd-kind-variable {
1270
+ color: var(--color-ts-variable);
1271
+ }
1272
+ .tsd-kind-function {
1273
+ color: var(--color-ts-function);
1274
+ }
1275
+ .tsd-kind-class {
1276
+ color: var(--color-ts-class);
1277
+ }
1278
+ .tsd-kind-interface {
1279
+ color: var(--color-ts-interface);
1280
+ }
1281
+ .tsd-kind-constructor {
1282
+ color: var(--color-ts-constructor);
1283
+ }
1284
+ .tsd-kind-property {
1285
+ color: var(--color-ts-property);
1286
+ }
1287
+ .tsd-kind-method {
1288
+ color: var(--color-ts-method);
1289
+ }
1290
+ .tsd-kind-reference {
1291
+ color: var(--color-ts-reference);
1292
+ }
1293
+ .tsd-kind-call-signature {
1294
+ color: var(--color-ts-call-signature);
1295
+ }
1296
+ .tsd-kind-index-signature {
1297
+ color: var(--color-ts-index-signature);
1298
+ }
1299
+ .tsd-kind-constructor-signature {
1300
+ color: var(--color-ts-constructor-signature);
1301
+ }
1302
+ .tsd-kind-parameter {
1303
+ color: var(--color-ts-parameter);
1304
+ }
1305
+ .tsd-kind-type-parameter {
1306
+ color: var(--color-ts-type-parameter);
1307
+ }
1308
+ .tsd-kind-accessor {
1309
+ color: var(--color-ts-accessor);
1310
+ }
1311
+ .tsd-kind-get-signature {
1312
+ color: var(--color-ts-get-signature);
1313
+ }
1314
+ .tsd-kind-set-signature {
1315
+ color: var(--color-ts-set-signature);
1316
+ }
1317
+ .tsd-kind-type-alias {
1318
+ color: var(--color-ts-type-alias);
1319
+ }
1320
+
1321
+ /* if we have a kind icon, don't color the text by kind */
1322
+ .tsd-kind-icon ~ span {
1323
+ color: var(--color-text);
1324
+ }
1325
+
1326
+ * {
1327
+ scrollbar-width: thin;
1328
+ scrollbar-color: var(--color-accent) var(--color-icon-background);
1329
+ }
1330
+
1331
+ *::-webkit-scrollbar {
1332
+ width: 0.75rem;
1333
+ }
1334
+
1335
+ *::-webkit-scrollbar-track {
1336
+ background: var(--color-icon-background);
1337
+ }
1338
+
1339
+ *::-webkit-scrollbar-thumb {
1340
+ background-color: var(--color-accent);
1341
+ border-radius: 999rem;
1342
+ border: 0.25rem solid var(--color-icon-background);
1343
+ }
1344
+
1345
+ /* mobile */
1346
+ @media (max-width: 769px) {
1347
+ .tsd-widget.options,
1348
+ .tsd-widget.menu {
1349
+ display: inline-block;
1350
+ }
1351
+
1352
+ .container-main {
1353
+ display: flex;
1354
+ }
1355
+ html .col-content {
1356
+ float: none;
1357
+ max-width: 100%;
1358
+ width: 100%;
1359
+ }
1360
+ html .col-sidebar {
1361
+ position: fixed !important;
1362
+ overflow-y: auto;
1363
+ -webkit-overflow-scrolling: touch;
1364
+ z-index: 1024;
1365
+ top: 0 !important;
1366
+ bottom: 0 !important;
1367
+ left: auto !important;
1368
+ right: 0 !important;
1369
+ padding: 1.5rem 1.5rem 0 0;
1370
+ width: 75vw;
1371
+ visibility: hidden;
1372
+ background-color: var(--color-background);
1373
+ transform: translate(100%, 0);
1374
+ }
1375
+ html .col-sidebar > *:last-child {
1376
+ padding-bottom: 20px;
1377
+ }
1378
+ html .overlay {
1379
+ content: "";
1380
+ display: block;
1381
+ position: fixed;
1382
+ z-index: 1023;
1383
+ top: 0;
1384
+ left: 0;
1385
+ right: 0;
1386
+ bottom: 0;
1387
+ background-color: rgba(0, 0, 0, 0.75);
1388
+ visibility: hidden;
1389
+ }
1390
+
1391
+ .to-has-menu .overlay {
1392
+ animation: fade-in 0.4s;
1393
+ }
1394
+
1395
+ .to-has-menu .col-sidebar {
1396
+ animation: pop-in-from-right 0.4s;
1397
+ }
1398
+
1399
+ .from-has-menu .overlay {
1400
+ animation: fade-out 0.4s;
1401
+ }
1402
+
1403
+ .from-has-menu .col-sidebar {
1404
+ animation: pop-out-to-right 0.4s;
1405
+ }
1406
+
1407
+ .has-menu body {
1408
+ overflow: hidden;
1409
+ }
1410
+ .has-menu .overlay {
1411
+ visibility: visible;
1412
+ }
1413
+ .has-menu .col-sidebar {
1414
+ visibility: visible;
1415
+ transform: translate(0, 0);
1416
+ display: flex;
1417
+ flex-direction: column;
1418
+ gap: 1.5rem;
1419
+ max-height: 100vh;
1420
+ padding: 1rem 2rem;
1421
+ }
1422
+ .has-menu .tsd-navigation {
1423
+ max-height: 100%;
1424
+ }
1425
+ #tsd-toolbar-links {
1426
+ display: none;
1427
+ }
1428
+ .tsd-navigation .tsd-nav-link {
1429
+ display: flex;
1430
+ }
1431
+ }
1432
+
1433
+ /* one sidebar */
1434
+ @media (min-width: 770px) {
1435
+ .container-main {
1436
+ display: grid;
1437
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1438
+ grid-template-areas: "sidebar content";
1439
+ margin: 2rem auto;
1440
+ }
1441
+
1442
+ .col-sidebar {
1443
+ grid-area: sidebar;
1444
+ }
1445
+ .col-content {
1446
+ grid-area: content;
1447
+ padding: 0 1rem;
1448
+ }
1449
+ }
1450
+ @media (min-width: 770px) and (max-width: 1399px) {
1451
+ .col-sidebar {
1452
+ max-height: calc(100vh - 2rem - 42px);
1453
+ overflow: auto;
1454
+ position: sticky;
1455
+ top: 42px;
1456
+ padding-top: 1rem;
1457
+ }
1458
+ .site-menu {
1459
+ margin-top: 1rem;
1460
+ }
1461
+ }
1462
+
1463
+ /* two sidebars */
1464
+ @media (min-width: 1200px) {
1465
+ .container-main {
1466
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
1467
+ grid-template-areas: "sidebar content toc";
1468
+ }
1469
+
1470
+ .col-sidebar {
1471
+ display: contents;
1472
+ }
1473
+
1474
+ .page-menu {
1475
+ grid-area: toc;
1476
+ padding-left: 1rem;
1477
+ }
1478
+ .site-menu {
1479
+ grid-area: sidebar;
1480
+ }
1481
+
1482
+ .site-menu {
1483
+ margin-top: 1rem;
1484
+ }
1485
+
1486
+ .page-menu,
1487
+ .site-menu {
1488
+ max-height: calc(100vh - 2rem - 42px);
1489
+ overflow: auto;
1490
+ position: sticky;
1491
+ top: 42px;
1492
+ }
1493
+ }