@launchdarkly/server-sdk-ai 0.1.1 → 0.2.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.
@@ -4,21 +4,13 @@
4
4
  --light-color-background-secondary: #eff0f1;
5
5
  --light-color-warning-text: #222;
6
6
  --light-color-background-warning: #e6e600;
7
+ --light-color-icon-background: var(--light-color-background);
7
8
  --light-color-accent: #c5c7c9;
8
9
  --light-color-active-menu-item: var(--light-color-accent);
9
10
  --light-color-text: #222;
10
11
  --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
12
  --light-color-link: #1f70c2;
19
- --light-color-focus-outline: #3584e4;
20
13
 
21
- --light-color-ts-keyword: #056bd6;
22
14
  --light-color-ts-project: #b111c9;
23
15
  --light-color-ts-module: var(--light-color-ts-project);
24
16
  --light-color-ts-namespace: var(--light-color-ts-project);
@@ -28,22 +20,20 @@
28
20
  --light-color-ts-function: #572be7;
29
21
  --light-color-ts-class: #1f70c2;
30
22
  --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;
23
+ --light-color-ts-constructor: var(--light-color-ts-class);
24
+ --light-color-ts-property: var(--light-color-ts-variable);
25
+ --light-color-ts-method: var(--light-color-ts-function);
35
26
  --light-color-ts-call-signature: var(--light-color-ts-method);
36
27
  --light-color-ts-index-signature: var(--light-color-ts-property);
37
28
  --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
38
29
  --light-color-ts-parameter: var(--light-color-ts-variable);
39
30
  /* 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;
31
+ --light-color-ts-type-parameter: var(--light-color-ts-type-alias);
32
+ --light-color-ts-accessor: var(--light-color-ts-property);
42
33
  --light-color-ts-get-signature: var(--light-color-ts-accessor);
43
34
  --light-color-ts-set-signature: var(--light-color-ts-accessor);
44
35
  --light-color-ts-type-alias: #d51270;
45
36
  /* reference not included as links will be colored with the kind that it points to */
46
- --light-color-document: #000000;
47
37
 
48
38
  --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
39
  --light-color-scheme: light;
@@ -53,21 +43,13 @@
53
43
  --dark-color-background-secondary: #1e2024;
54
44
  --dark-color-background-warning: #bebe00;
55
45
  --dark-color-warning-text: #222;
46
+ --dark-color-icon-background: var(--dark-color-background-secondary);
56
47
  --dark-color-accent: #9096a2;
57
48
  --dark-color-active-menu-item: #5d5d6a;
58
49
  --dark-color-text: #f5f5f5;
59
50
  --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
51
  --dark-color-link: #00aff4;
68
- --dark-color-focus-outline: #4c97f2;
69
52
 
70
- --dark-color-ts-keyword: #3399ff;
71
53
  --dark-color-ts-project: #e358ff;
72
54
  --dark-color-ts-module: var(--dark-color-ts-project);
73
55
  --dark-color-ts-namespace: var(--dark-color-ts-project);
@@ -77,22 +59,20 @@
77
59
  --dark-color-ts-function: #a280ff;
78
60
  --dark-color-ts-class: #8ac4ff;
79
61
  --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;
62
+ --dark-color-ts-constructor: var(--dark-color-ts-class);
63
+ --dark-color-ts-property: var(--dark-color-ts-variable);
64
+ --dark-color-ts-method: var(--dark-color-ts-function);
84
65
  --dark-color-ts-call-signature: var(--dark-color-ts-method);
85
66
  --dark-color-ts-index-signature: var(--dark-color-ts-property);
86
67
  --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
87
68
  --dark-color-ts-parameter: var(--dark-color-ts-variable);
88
69
  /* 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;
70
+ --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
71
+ --dark-color-ts-accessor: var(--dark-color-ts-property);
91
72
  --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
92
73
  --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
93
74
  --dark-color-ts-type-alias: #ff6492;
94
75
  /* reference not included as links will be colored with the kind that it points to */
95
- --dark-color-document: #ffffff;
96
76
 
97
77
  --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
78
  --dark-color-scheme: dark;
@@ -104,22 +84,13 @@
104
84
  --color-background-secondary: var(--light-color-background-secondary);
105
85
  --color-background-warning: var(--light-color-background-warning);
106
86
  --color-warning-text: var(--light-color-warning-text);
87
+ --color-icon-background: var(--light-color-icon-background);
107
88
  --color-accent: var(--light-color-accent);
108
89
  --color-active-menu-item: var(--light-color-active-menu-item);
109
90
  --color-text: var(--light-color-text);
110
91
  --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
92
  --color-link: var(--light-color-link);
119
- --color-focus-outline: var(--light-color-focus-outline);
120
93
 
121
- --color-ts-keyword: var(--light-color-ts-keyword);
122
- --color-ts-project: var(--light-color-ts-project);
123
94
  --color-ts-module: var(--light-color-ts-module);
124
95
  --color-ts-namespace: var(--light-color-ts-namespace);
125
96
  --color-ts-enum: var(--light-color-ts-enum);
@@ -131,7 +102,6 @@
131
102
  --color-ts-constructor: var(--light-color-ts-constructor);
132
103
  --color-ts-property: var(--light-color-ts-property);
133
104
  --color-ts-method: var(--light-color-ts-method);
134
- --color-ts-reference: var(--light-color-ts-reference);
135
105
  --color-ts-call-signature: var(--light-color-ts-call-signature);
136
106
  --color-ts-index-signature: var(--light-color-ts-index-signature);
137
107
  --color-ts-constructor-signature: var(
@@ -143,7 +113,6 @@
143
113
  --color-ts-get-signature: var(--light-color-ts-get-signature);
144
114
  --color-ts-set-signature: var(--light-color-ts-set-signature);
145
115
  --color-ts-type-alias: var(--light-color-ts-type-alias);
146
- --color-document: var(--light-color-document);
147
116
 
148
117
  --external-icon: var(--light-external-icon);
149
118
  --color-scheme: var(--light-color-scheme);
@@ -156,22 +125,13 @@
156
125
  --color-background-secondary: var(--dark-color-background-secondary);
157
126
  --color-background-warning: var(--dark-color-background-warning);
158
127
  --color-warning-text: var(--dark-color-warning-text);
128
+ --color-icon-background: var(--dark-color-icon-background);
159
129
  --color-accent: var(--dark-color-accent);
160
130
  --color-active-menu-item: var(--dark-color-active-menu-item);
161
131
  --color-text: var(--dark-color-text);
162
132
  --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
133
  --color-link: var(--dark-color-link);
171
- --color-focus-outline: var(--dark-color-focus-outline);
172
134
 
173
- --color-ts-keyword: var(--dark-color-ts-keyword);
174
- --color-ts-project: var(--dark-color-ts-project);
175
135
  --color-ts-module: var(--dark-color-ts-module);
176
136
  --color-ts-namespace: var(--dark-color-ts-namespace);
177
137
  --color-ts-enum: var(--dark-color-ts-enum);
@@ -183,7 +143,6 @@
183
143
  --color-ts-constructor: var(--dark-color-ts-constructor);
184
144
  --color-ts-property: var(--dark-color-ts-property);
185
145
  --color-ts-method: var(--dark-color-ts-method);
186
- --color-ts-reference: var(--dark-color-ts-reference);
187
146
  --color-ts-call-signature: var(--dark-color-ts-call-signature);
188
147
  --color-ts-index-signature: var(--dark-color-ts-index-signature);
189
148
  --color-ts-constructor-signature: var(
@@ -195,7 +154,6 @@
195
154
  --color-ts-get-signature: var(--dark-color-ts-get-signature);
196
155
  --color-ts-set-signature: var(--dark-color-ts-set-signature);
197
156
  --color-ts-type-alias: var(--dark-color-ts-type-alias);
198
- --color-document: var(--dark-color-document);
199
157
 
200
158
  --external-icon: var(--dark-external-icon);
201
159
  --color-scheme: var(--dark-color-scheme);
@@ -220,16 +178,8 @@ body {
220
178
  --color-active-menu-item: var(--light-color-active-menu-item);
221
179
  --color-text: var(--light-color-text);
222
180
  --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
181
  --color-link: var(--light-color-link);
229
- --color-focus-outline: var(--light-color-focus-outline);
230
182
 
231
- --color-ts-keyword: var(--light-color-ts-keyword);
232
- --color-ts-project: var(--light-color-ts-project);
233
183
  --color-ts-module: var(--light-color-ts-module);
234
184
  --color-ts-namespace: var(--light-color-ts-namespace);
235
185
  --color-ts-enum: var(--light-color-ts-enum);
@@ -241,7 +191,6 @@ body {
241
191
  --color-ts-constructor: var(--light-color-ts-constructor);
242
192
  --color-ts-property: var(--light-color-ts-property);
243
193
  --color-ts-method: var(--light-color-ts-method);
244
- --color-ts-reference: var(--light-color-ts-reference);
245
194
  --color-ts-call-signature: var(--light-color-ts-call-signature);
246
195
  --color-ts-index-signature: var(--light-color-ts-index-signature);
247
196
  --color-ts-constructor-signature: var(
@@ -253,7 +202,6 @@ body {
253
202
  --color-ts-get-signature: var(--light-color-ts-get-signature);
254
203
  --color-ts-set-signature: var(--light-color-ts-set-signature);
255
204
  --color-ts-type-alias: var(--light-color-ts-type-alias);
256
- --color-document: var(--light-color-document);
257
205
 
258
206
  --external-icon: var(--light-external-icon);
259
207
  --color-scheme: var(--light-color-scheme);
@@ -269,16 +217,8 @@ body {
269
217
  --color-active-menu-item: var(--dark-color-active-menu-item);
270
218
  --color-text: var(--dark-color-text);
271
219
  --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
220
  --color-link: var(--dark-color-link);
278
- --color-focus-outline: var(--dark-color-focus-outline);
279
221
 
280
- --color-ts-keyword: var(--dark-color-ts-keyword);
281
- --color-ts-project: var(--dark-color-ts-project);
282
222
  --color-ts-module: var(--dark-color-ts-module);
283
223
  --color-ts-namespace: var(--dark-color-ts-namespace);
284
224
  --color-ts-enum: var(--dark-color-ts-enum);
@@ -290,7 +230,6 @@ body {
290
230
  --color-ts-constructor: var(--dark-color-ts-constructor);
291
231
  --color-ts-property: var(--dark-color-ts-property);
292
232
  --color-ts-method: var(--dark-color-ts-method);
293
- --color-ts-reference: var(--dark-color-ts-reference);
294
233
  --color-ts-call-signature: var(--dark-color-ts-call-signature);
295
234
  --color-ts-index-signature: var(--dark-color-ts-index-signature);
296
235
  --color-ts-constructor-signature: var(
@@ -302,17 +241,11 @@ body {
302
241
  --color-ts-get-signature: var(--dark-color-ts-get-signature);
303
242
  --color-ts-set-signature: var(--dark-color-ts-set-signature);
304
243
  --color-ts-type-alias: var(--dark-color-ts-type-alias);
305
- --color-document: var(--dark-color-document);
306
244
 
307
245
  --external-icon: var(--dark-external-icon);
308
246
  --color-scheme: var(--dark-color-scheme);
309
247
  }
310
248
 
311
- *:focus-visible,
312
- .tsd-accordion-summary:focus-visible svg {
313
- outline: 2px solid var(--color-focus-outline);
314
- }
315
-
316
249
  .always-visible,
317
250
  .always-visible .tsd-signatures {
318
251
  display: inherit !important;
@@ -327,6 +260,16 @@ h6 {
327
260
  line-height: 1.2;
328
261
  }
329
262
 
263
+ h1 > a,
264
+ h2 > a,
265
+ h3 > a,
266
+ h4 > a,
267
+ h5 > a,
268
+ h6 > a {
269
+ text-decoration: none;
270
+ color: var(--color-text);
271
+ }
272
+
330
273
  h1 {
331
274
  font-size: 1.875rem;
332
275
  margin: 0.67rem 0;
@@ -357,6 +300,10 @@ h6 {
357
300
  margin: 2.33rem 0;
358
301
  }
359
302
 
303
+ .uppercase {
304
+ text-transform: uppercase;
305
+ }
306
+
360
307
  dl,
361
308
  menu,
362
309
  ol,
@@ -374,14 +321,17 @@ dd {
374
321
  }
375
322
 
376
323
  /* Footer */
377
- footer {
324
+ .tsd-generator {
378
325
  border-top: 1px solid var(--color-accent);
379
326
  padding-top: 1rem;
380
327
  padding-bottom: 1rem;
381
328
  max-height: 3.5rem;
382
329
  }
383
- footer > p {
384
- margin: 0 1em;
330
+
331
+ .tsd-generator > p {
332
+ margin-top: 0;
333
+ margin-bottom: 0;
334
+ padding: 0 1rem;
385
335
  }
386
336
 
387
337
  .container-main {
@@ -449,8 +399,7 @@ footer > p {
449
399
  }
450
400
  body {
451
401
  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";
402
+ font-family: "Segoe UI", sans-serif;
454
403
  font-size: 16px;
455
404
  color: var(--color-text);
456
405
  }
@@ -468,9 +417,6 @@ a.external[target="_blank"] {
468
417
  background-repeat: no-repeat;
469
418
  padding-right: 13px;
470
419
  }
471
- a.tsd-anchor-link {
472
- color: var(--color-text);
473
- }
474
420
 
475
421
  code,
476
422
  pre {
@@ -483,6 +429,7 @@ pre {
483
429
 
484
430
  pre {
485
431
  position: relative;
432
+ white-space: pre;
486
433
  white-space: pre-wrap;
487
434
  word-wrap: break-word;
488
435
  padding: 10px;
@@ -629,13 +576,13 @@ dl.tsd-comment-tag-group p {
629
576
  }
630
577
  .tsd-filter-input {
631
578
  display: flex;
632
- width: -moz-fit-content;
633
579
  width: fit-content;
580
+ width: -moz-fit-content;
634
581
  align-items: center;
582
+ user-select: none;
635
583
  -webkit-user-select: none;
636
584
  -moz-user-select: none;
637
585
  -ms-user-select: none;
638
- user-select: none;
639
586
  cursor: pointer;
640
587
  }
641
588
  .tsd-filter-input input[type="checkbox"] {
@@ -658,8 +605,11 @@ dl.tsd-comment-tag-group p {
658
605
  Don't remove unless you know what you're doing. */
659
606
  opacity: 0.99;
660
607
  }
661
- .tsd-filter-input input[type="checkbox"]:focus-visible + svg {
662
- outline: 2px solid var(--color-focus-outline);
608
+ .tsd-filter-input input[type="checkbox"]:focus + svg {
609
+ transform: scale(0.95);
610
+ }
611
+ .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
612
+ transform: scale(1);
663
613
  }
664
614
  .tsd-checkbox-background {
665
615
  fill: var(--color-accent);
@@ -676,18 +626,13 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
676
626
  stroke: var(--color-accent);
677
627
  }
678
628
 
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;
629
+ .tsd-theme-toggle {
630
+ padding-top: 0.75rem;
687
631
  }
688
-
689
- .tsd-theme-toggle .settings-label {
690
- margin: 0.75rem 0.75rem 0 0;
632
+ .tsd-theme-toggle > h4 {
633
+ display: inline;
634
+ vertical-align: middle;
635
+ margin-right: 0.75rem;
691
636
  }
692
637
 
693
638
  .tsd-hierarchy {
@@ -698,28 +643,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
698
643
  font-weight: bold;
699
644
  }
700
645
 
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
646
  .tsd-panel-group.tsd-index-group {
724
647
  margin-bottom: 0;
725
648
  }
@@ -785,15 +708,12 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
785
708
  }
786
709
  .tsd-navigation > a,
787
710
  .tsd-navigation .tsd-accordion-summary {
788
- width: calc(100% - 0.25rem);
789
- display: flex;
790
- align-items: center;
711
+ width: calc(100% - 0.5rem);
791
712
  }
792
713
  .tsd-navigation a,
793
714
  .tsd-navigation summary > span,
794
715
  .tsd-page-navigation a {
795
- display: flex;
796
- width: calc(100% - 0.25rem);
716
+ display: inline-flex;
797
717
  align-items: center;
798
718
  padding: 0.25rem;
799
719
  color: var(--color-text);
@@ -820,9 +740,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
820
740
  padding: 0;
821
741
  max-width: 100%;
822
742
  }
823
- .tsd-navigation .tsd-nav-link {
824
- display: none;
825
- }
826
743
  .tsd-nested-navigation {
827
744
  margin-left: 3rem;
828
745
  }
@@ -836,15 +753,11 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
836
753
  margin-left: -1.5rem;
837
754
  }
838
755
 
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;
756
+ .tsd-nested-navigation > li > a,
757
+ .tsd-nested-navigation > li > span {
758
+ width: calc(100% - 1.75rem - 0.5rem);
847
759
  }
760
+
848
761
  .tsd-page-navigation ul {
849
762
  padding-left: 1.75rem;
850
763
  }
@@ -875,10 +788,10 @@ a.tsd-index-link {
875
788
  }
876
789
  .tsd-accordion-summary,
877
790
  .tsd-accordion-summary a {
791
+ user-select: none;
878
792
  -moz-user-select: none;
879
793
  -webkit-user-select: none;
880
794
  -ms-user-select: none;
881
- user-select: none;
882
795
 
883
796
  cursor: pointer;
884
797
  }
@@ -891,9 +804,8 @@ a.tsd-index-link {
891
804
  padding-top: 0;
892
805
  padding-bottom: 0;
893
806
  }
894
- .tsd-accordion .tsd-accordion-summary > svg {
807
+ .tsd-index-accordion .tsd-accordion-summary > svg {
895
808
  margin-left: 0.25rem;
896
- vertical-align: text-top;
897
809
  }
898
810
  .tsd-index-content > :not(:first-child) {
899
811
  margin-top: 0.75rem;
@@ -903,12 +815,6 @@ a.tsd-index-link {
903
815
  margin-bottom: 0.75rem;
904
816
  }
905
817
 
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
818
  .tsd-kind-icon {
913
819
  margin-right: 0.5rem;
914
820
  width: 1.25rem;
@@ -916,6 +822,10 @@ a.tsd-index-link {
916
822
  min-width: 1.25rem;
917
823
  min-height: 1.25rem;
918
824
  }
825
+ .tsd-kind-icon path {
826
+ transform-origin: center;
827
+ transform: scale(1.1);
828
+ }
919
829
  .tsd-signature > .tsd-kind-icon {
920
830
  margin-right: 0.8rem;
921
831
  }
@@ -943,7 +853,7 @@ a.tsd-index-link {
943
853
  }
944
854
 
945
855
  .tsd-panel-group {
946
- margin: 2rem 0;
856
+ margin: 4rem 0;
947
857
  }
948
858
  .tsd-panel-group.tsd-index-group {
949
859
  margin: 2rem 0;
@@ -951,9 +861,6 @@ a.tsd-index-link {
951
861
  .tsd-panel-group.tsd-index-group details {
952
862
  margin: 2rem 0;
953
863
  }
954
- .tsd-panel-group > .tsd-accordion-summary {
955
- margin-bottom: 1rem;
956
- }
957
864
 
958
865
  #tsd-search {
959
866
  transition: background-color 0.2s;
@@ -1003,9 +910,8 @@ a.tsd-index-link {
1003
910
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
1004
911
  }
1005
912
  #tsd-search .results li {
913
+ padding: 0 10px;
1006
914
  background-color: var(--color-background);
1007
- line-height: initial;
1008
- padding: 4px;
1009
915
  }
1010
916
  #tsd-search .results li:nth-child(even) {
1011
917
  background-color: var(--color-background-secondary);
@@ -1018,10 +924,7 @@ a.tsd-index-link {
1018
924
  background-color: var(--color-accent);
1019
925
  }
1020
926
  #tsd-search .results a {
1021
- display: flex;
1022
- align-items: center;
1023
- padding: 0.25rem;
1024
- box-sizing: border-box;
927
+ display: block;
1025
928
  }
1026
929
  #tsd-search .results a:before {
1027
930
  top: 10px;
@@ -1077,11 +980,6 @@ a.tsd-index-link {
1077
980
  overflow-x: auto;
1078
981
  }
1079
982
 
1080
- .tsd-signature-keyword {
1081
- color: var(--color-ts-keyword);
1082
- font-weight: normal;
1083
- }
1084
-
1085
983
  .tsd-signature-symbol {
1086
984
  color: var(--color-text-aside);
1087
985
  font-weight: normal;
@@ -1103,12 +1001,6 @@ a.tsd-index-link {
1103
1001
  border-width: 1px 0;
1104
1002
  transition: background-color 0.1s;
1105
1003
  }
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
1004
  .tsd-description .tsd-signatures .tsd-signature {
1113
1005
  border-width: 1px;
1114
1006
  }
@@ -1242,7 +1134,7 @@ img {
1242
1134
  }
1243
1135
 
1244
1136
  .deprecated {
1245
- text-decoration: line-through !important;
1137
+ text-decoration: line-through;
1246
1138
  }
1247
1139
 
1248
1140
  .warning {
@@ -1287,9 +1179,6 @@ img {
1287
1179
  .tsd-kind-method {
1288
1180
  color: var(--color-ts-method);
1289
1181
  }
1290
- .tsd-kind-reference {
1291
- color: var(--color-ts-reference);
1292
- }
1293
1182
  .tsd-kind-call-signature {
1294
1183
  color: var(--color-ts-call-signature);
1295
1184
  }
@@ -1302,6 +1191,9 @@ img {
1302
1191
  .tsd-kind-parameter {
1303
1192
  color: var(--color-ts-parameter);
1304
1193
  }
1194
+ .tsd-kind-type-literal {
1195
+ color: var(--color-ts-type-literal);
1196
+ }
1305
1197
  .tsd-kind-type-parameter {
1306
1198
  color: var(--color-ts-type-parameter);
1307
1199
  }
@@ -1422,12 +1314,6 @@ img {
1422
1314
  .has-menu .tsd-navigation {
1423
1315
  max-height: 100%;
1424
1316
  }
1425
- #tsd-toolbar-links {
1426
- display: none;
1427
- }
1428
- .tsd-navigation .tsd-nav-link {
1429
- display: flex;
1430
- }
1431
1317
  }
1432
1318
 
1433
1319
  /* one sidebar */
@@ -1480,7 +1366,7 @@ img {
1480
1366
  }
1481
1367
 
1482
1368
  .site-menu {
1483
- margin-top: 1rem;
1369
+ margin-top: 1rem 0;
1484
1370
  }
1485
1371
 
1486
1372
  .page-menu,