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