@coveo/push-api-client 2.4.14 → 2.4.15

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 (47) hide show
  1. package/dist/docs/assets/highlight.css +3 -52
  2. package/dist/docs/assets/main.js +4 -2
  3. package/dist/docs/assets/search.js +1 -1
  4. package/dist/docs/assets/style.css +424 -538
  5. package/dist/docs/classes/AnySecurityIdentityBuilder.html +114 -7
  6. package/dist/docs/classes/CatalogSource.html +285 -33
  7. package/dist/docs/classes/DocumentBuilder.html +458 -37
  8. package/dist/docs/classes/FieldAnalyser.html +184 -8
  9. package/dist/docs/classes/GroupSecurityIdentityBuilder.html +102 -9
  10. package/dist/docs/classes/PushSource.html +428 -41
  11. package/dist/docs/classes/UserSecurityIdentityBuilder.html +102 -9
  12. package/dist/docs/classes/VirtualGroupSecurityIdentityBuilder.html +102 -9
  13. package/dist/docs/classes/errors.FieldTypeInconsistencyError.html +165 -6
  14. package/dist/docs/classes/errors.InvalidDocument.html +167 -6
  15. package/dist/docs/classes/errors.InvalidPermanentId.html +165 -6
  16. package/dist/docs/classes/errors.NotAFileError.html +165 -6
  17. package/dist/docs/classes/errors.NotAJsonFileError.html +165 -6
  18. package/dist/docs/classes/errors.PrivilegeError.html +165 -6
  19. package/dist/docs/classes/errors.UnsupportedAttribute.html +167 -6
  20. package/dist/docs/classes/errors.UnsupportedFieldError.html +193 -6
  21. package/dist/docs/enums/PlatformEnvironment.html +82 -1
  22. package/dist/docs/enums/Region.html +75 -1
  23. package/dist/docs/enums/SourceVisibility.html +75 -1
  24. package/dist/docs/functions/parseAndGetDocumentBuilderFromJSONDocument.html +83 -0
  25. package/dist/docs/index.html +69 -49
  26. package/dist/docs/interfaces/BatchUpdateDocuments.html +72 -1
  27. package/dist/docs/interfaces/Document.html +216 -51
  28. package/dist/docs/interfaces/SecurityIdentity.html +90 -11
  29. package/dist/docs/interfaces/SecurityIdentityBuilder.html +77 -3
  30. package/dist/docs/interfaces/UploadBatchCallbackData.html +87 -4
  31. package/dist/docs/modules/errors.html +64 -1
  32. package/dist/docs/modules.html +120 -4
  33. package/dist/docs/types/BatchUpdateDocumentsFromFiles.html +73 -0
  34. package/dist/docs/types/CompressionType.html +75 -0
  35. package/dist/docs/types/FailedUploadCallback.html +89 -0
  36. package/dist/docs/types/Metadata.html +73 -0
  37. package/dist/docs/types/MetadataValue.html +73 -0
  38. package/dist/docs/types/PlatformUrlOptions.html +80 -0
  39. package/dist/docs/types/SecurityIdentityType.html +73 -0
  40. package/dist/docs/types/SuccessfulUploadCallback.html +87 -0
  41. package/dist/docs/types/Transformer.html +87 -0
  42. package/dist/docs/variables/BuiltInTransformers.html +73 -0
  43. package/dist/docs/variables/Source.html +76 -0
  44. package/package.json +7 -7
  45. package/dist/docs/assets/icons.css +0 -1043
  46. package/dist/docs/assets/icons.png +0 -0
  47. package/dist/docs/assets/icons@2x.png +0 -0
@@ -1,155 +1,133 @@
1
- @import url("./icons.css");
2
-
3
1
  :root {
4
2
  /* Light */
5
- --light-color-background: #fcfcfc;
6
- --light-color-secondary-background: #fff;
3
+ --light-color-background: #f2f4f8;
4
+ --light-color-background-secondary: #eff0f1;
5
+ --light-color-icon-background: var(--light-color-background);
6
+ --light-color-accent: #c5c7c9;
7
7
  --light-color-text: #222;
8
8
  --light-color-text-aside: #707070;
9
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;
10
+ --light-color-ts: #db1373;
11
+ --light-color-ts-interface: #139d2c;
12
+ --light-color-ts-enum: #9c891a;
13
+ --light-color-ts-class: #2484e5;
14
+ --light-color-ts-function: #572be7;
15
+ --light-color-ts-namespace: #b111c9;
21
16
  --light-color-ts-private: #707070;
22
- --light-color-toolbar: #fff;
23
- --light-color-toolbar-text: #333;
24
- --light-icon-filter: invert(0);
17
+ --light-color-ts-variable: #4d68ff;
25
18
  --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>");
19
+ --light-color-scheme: light;
26
20
 
27
21
  /* Dark */
28
- --dark-color-background: #36393f;
29
- --dark-color-secondary-background: #2f3136;
30
- --dark-color-text: #ffffff;
31
- --dark-color-text-aside: #e6e4e4;
22
+ --dark-color-background: #2b2e33;
23
+ --dark-color-background-secondary: #1e2024;
24
+ --dark-color-icon-background: var(--dark-color-background-secondary);
25
+ --dark-color-accent: #9096a2;
26
+ --dark-color-text: #f5f5f5;
27
+ --dark-color-text-aside: #dddddd;
32
28
  --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;
29
+ --dark-color-ts: #ff6492;
30
+ --dark-color-ts-interface: #6cff87;
31
+ --dark-color-ts-enum: #f4d93e;
32
+ --dark-color-ts-class: #61b0ff;
33
+ --dark-color-ts-function: #9772ff;
34
+ --dark-color-ts-namespace: #e14dff;
44
35
  --dark-color-ts-private: #e2e2e2;
45
- --dark-color-toolbar: #34373c;
46
- --dark-color-toolbar-text: #ffffff;
47
- --dark-icon-filter: invert(1);
36
+ --dark-color-ts-variable: #4d68ff;
48
37
  --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>");
38
+ --dark-color-scheme: dark;
49
39
  }
50
40
 
51
41
  @media (prefers-color-scheme: light) {
52
42
  :root {
53
43
  --color-background: var(--light-color-background);
54
- --color-secondary-background: var(--light-color-secondary-background);
44
+ --color-background-secondary: var(--light-color-background-secondary);
45
+ --color-icon-background: var(--light-color-icon-background);
46
+ --color-accent: var(--light-color-accent);
55
47
  --color-text: var(--light-color-text);
56
48
  --color-text-aside: var(--light-color-text-aside);
57
49
  --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
50
  --color-ts: var(--light-color-ts);
66
51
  --color-ts-interface: var(--light-color-ts-interface);
67
52
  --color-ts-enum: var(--light-color-ts-enum);
68
53
  --color-ts-class: var(--light-color-ts-class);
54
+ --color-ts-function: var(--light-color-ts-function);
55
+ --color-ts-namespace: var(--light-color-ts-namespace);
69
56
  --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);
57
+ --color-ts-variable: var(--light-color-ts-variable);
73
58
  --external-icon: var(--light-external-icon);
59
+ --color-scheme: var(--light-color-scheme);
74
60
  }
75
61
  }
76
62
 
77
63
  @media (prefers-color-scheme: dark) {
78
64
  :root {
79
65
  --color-background: var(--dark-color-background);
80
- --color-secondary-background: var(--dark-color-secondary-background);
66
+ --color-background-secondary: var(--dark-color-background-secondary);
67
+ --color-icon-background: var(--dark-color-icon-background);
68
+ --color-accent: var(--dark-color-accent);
81
69
  --color-text: var(--dark-color-text);
82
70
  --color-text-aside: var(--dark-color-text-aside);
83
71
  --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
72
  --color-ts: var(--dark-color-ts);
92
73
  --color-ts-interface: var(--dark-color-ts-interface);
93
74
  --color-ts-enum: var(--dark-color-ts-enum);
94
75
  --color-ts-class: var(--dark-color-ts-class);
76
+ --color-ts-function: var(--dark-color-ts-function);
77
+ --color-ts-namespace: var(--dark-color-ts-namespace);
95
78
  --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);
79
+ --color-ts-variable: var(--dark-color-ts-variable);
99
80
  --external-icon: var(--dark-external-icon);
81
+ --color-scheme: var(--dark-color-scheme);
100
82
  }
101
83
  }
102
84
 
85
+ html {
86
+ color-scheme: var(--color-scheme);
87
+ }
88
+
103
89
  body {
104
90
  margin: 0;
105
91
  }
106
92
 
107
- body.light {
93
+ :root[data-theme="light"] {
108
94
  --color-background: var(--light-color-background);
109
- --color-secondary-background: var(--light-color-secondary-background);
95
+ --color-background-secondary: var(--light-color-background-secondary);
96
+ --color-icon-background: var(--light-color-icon-background);
97
+ --color-accent: var(--light-color-accent);
110
98
  --color-text: var(--light-color-text);
111
99
  --color-text-aside: var(--light-color-text-aside);
112
100
  --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
101
  --color-ts: var(--light-color-ts);
121
102
  --color-ts-interface: var(--light-color-ts-interface);
122
103
  --color-ts-enum: var(--light-color-ts-enum);
123
104
  --color-ts-class: var(--light-color-ts-class);
105
+ --color-ts-function: var(--light-color-ts-function);
106
+ --color-ts-namespace: var(--light-color-ts-namespace);
124
107
  --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);
108
+ --color-ts-variable: var(--light-color-ts-variable);
128
109
  --external-icon: var(--light-external-icon);
110
+ --color-scheme: var(--light-color-scheme);
129
111
  }
130
112
 
131
- body.dark {
113
+ :root[data-theme="dark"] {
132
114
  --color-background: var(--dark-color-background);
133
- --color-secondary-background: var(--dark-color-secondary-background);
115
+ --color-background-secondary: var(--dark-color-background-secondary);
116
+ --color-icon-background: var(--dark-color-icon-background);
117
+ --color-accent: var(--dark-color-accent);
134
118
  --color-text: var(--dark-color-text);
135
119
  --color-text-aside: var(--dark-color-text-aside);
136
120
  --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
121
  --color-ts: var(--dark-color-ts);
145
122
  --color-ts-interface: var(--dark-color-ts-interface);
146
123
  --color-ts-enum: var(--dark-color-ts-enum);
147
124
  --color-ts-class: var(--dark-color-ts-class);
125
+ --color-ts-function: var(--dark-color-ts-function);
126
+ --color-ts-namespace: var(--dark-color-ts-namespace);
148
127
  --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);
128
+ --color-ts-variable: var(--dark-color-ts-variable);
152
129
  --external-icon: var(--dark-external-icon);
130
+ --color-scheme: var(--dark-color-scheme);
153
131
  }
154
132
 
155
133
  h1,
@@ -162,34 +140,37 @@ h6 {
162
140
  }
163
141
 
164
142
  h1 {
165
- font-size: 2em;
166
- margin: 0.67em 0;
143
+ font-size: 1.875rem;
144
+ margin: 0.67rem 0;
167
145
  }
168
146
 
169
147
  h2 {
170
- font-size: 1.5em;
171
- margin: 0.83em 0;
148
+ font-size: 1.5rem;
149
+ margin: 0.83rem 0;
172
150
  }
173
151
 
174
152
  h3 {
175
- font-size: 1.17em;
176
- margin: 1em 0;
153
+ font-size: 1.25rem;
154
+ margin: 1rem 0;
177
155
  }
178
156
 
179
- h4,
180
- .tsd-index-panel h3 {
181
- font-size: 1em;
182
- margin: 1.33em 0;
157
+ h4 {
158
+ font-size: 1.05rem;
159
+ margin: 1.33rem 0;
183
160
  }
184
161
 
185
162
  h5 {
186
- font-size: 0.83em;
187
- margin: 1.67em 0;
163
+ font-size: 1rem;
164
+ margin: 1.5rem 0;
188
165
  }
189
166
 
190
167
  h6 {
191
- font-size: 0.67em;
192
- margin: 2.33em 0;
168
+ font-size: 0.875rem;
169
+ margin: 2.33rem 0;
170
+ }
171
+
172
+ .uppercase {
173
+ text-transform: uppercase;
193
174
  }
194
175
 
195
176
  pre {
@@ -210,45 +191,61 @@ dd {
210
191
  }
211
192
 
212
193
  .container {
213
- max-width: 1200px;
214
- margin: 0 auto;
215
- padding: 0 40px;
194
+ max-width: 1600px;
195
+ padding: 0 2rem;
196
+ }
197
+
198
+ @media (min-width: 640px) {
199
+ .container {
200
+ padding: 0 4rem;
201
+ }
202
+ }
203
+ @media (min-width: 1200px) {
204
+ .container {
205
+ padding: 0 8rem;
206
+ }
216
207
  }
217
- @media (max-width: 640px) {
208
+ @media (min-width: 1600px) {
218
209
  .container {
219
- padding: 0 20px;
210
+ padding: 0 12rem;
220
211
  }
221
212
  }
222
213
 
223
- .container-main {
224
- padding-bottom: 200px;
214
+ /* Footer */
215
+ .tsd-generator {
216
+ border-top: 1px solid var(--color-accent);
217
+ padding-top: 1rem;
218
+ padding-bottom: 1rem;
219
+ max-height: 3.5rem;
220
+ }
221
+
222
+ .tsd-generator > p {
223
+ margin-top: 0;
224
+ margin-bottom: 0;
225
+ padding: 0 1rem;
225
226
  }
226
227
 
227
- .row {
228
+ .container-main {
228
229
  display: flex;
230
+ justify-content: space-between;
229
231
  position: relative;
230
- margin: 0 -10px;
231
- }
232
- .row:after {
233
- visibility: hidden;
234
- display: block;
235
- content: "";
236
- clear: both;
237
- height: 0;
232
+ margin: 0 auto;
238
233
  }
239
234
 
240
235
  .col-4,
241
236
  .col-8 {
242
237
  box-sizing: border-box;
243
238
  float: left;
244
- padding: 0 10px;
239
+ padding: 2rem 1rem;
245
240
  }
246
241
 
247
242
  .col-4 {
248
- width: 33.3333333333%;
243
+ flex: 0 0 25%;
249
244
  }
250
245
  .col-8 {
251
- width: 66.6666666667%;
246
+ flex: 1 0;
247
+ flex-wrap: wrap;
248
+ padding-left: 0;
252
249
  }
253
250
 
254
251
  ul.tsd-descriptions > li > :first-child,
@@ -379,11 +376,13 @@ pre {
379
376
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
380
377
  padding: 0.2em;
381
378
  margin: 0;
382
- font-size: 14px;
379
+ font-size: 0.875rem;
380
+ border-radius: 0.8em;
383
381
  }
384
382
 
385
383
  pre {
386
384
  padding: 10px;
385
+ border: 0.1em solid var(--color-accent);
387
386
  }
388
387
  pre code {
389
388
  padding: 0;
@@ -422,36 +421,26 @@ blockquote {
422
421
  margin: 1em 0;
423
422
  }
424
423
 
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) {
424
+ @media (max-width: 1024px) {
437
425
  html .col-content {
438
426
  float: none;
427
+ max-width: 100%;
439
428
  width: 100%;
429
+ padding-top: 3rem;
440
430
  }
441
431
  html .col-menu {
442
432
  position: fixed !important;
443
- overflow: auto;
433
+ overflow-y: auto;
444
434
  -webkit-overflow-scrolling: touch;
445
435
  z-index: 1024;
446
436
  top: 0 !important;
447
437
  bottom: 0 !important;
448
438
  left: auto !important;
449
439
  right: 0 !important;
450
- width: 100%;
451
- padding: 20px 20px 0 0;
452
- max-width: 450px;
440
+ padding: 1.5rem 1.5rem 0 0;
441
+ max-width: 25rem;
453
442
  visibility: hidden;
454
- background-color: var(--color-panel);
443
+ background-color: var(--color-background);
455
444
  transform: translate(100%, 0);
456
445
  }
457
446
  html .col-menu > *:last-child {
@@ -507,24 +496,17 @@ blockquote {
507
496
  visibility: visible;
508
497
  transform: translate(0, 0);
509
498
  display: grid;
499
+ align-items: center;
510
500
  grid-template-rows: auto 1fr;
501
+ grid-gap: 1.5rem;
511
502
  max-height: 100vh;
503
+ padding: 1rem 2rem;
512
504
  }
513
505
  .has-menu .tsd-navigation {
514
506
  max-height: 100%;
515
507
  }
516
508
  }
517
509
 
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
510
  .tsd-breadcrumb {
529
511
  margin: 0;
530
512
  padding: 0;
@@ -544,32 +526,44 @@ blockquote {
544
526
  content: " / ";
545
527
  }
546
528
 
547
- dl.tsd-comment-tags {
529
+ .tsd-comment-tags {
530
+ display: flex;
531
+ flex-direction: column;
532
+ }
533
+ dl.tsd-comment-tag-group {
534
+ display: flex;
535
+ align-items: center;
548
536
  overflow: hidden;
537
+ margin: 0.5em 0;
549
538
  }
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;
539
+ dl.tsd-comment-tag-group dt {
540
+ display: flex;
541
+ margin-right: 0.5em;
542
+ font-size: 0.875em;
558
543
  font-weight: normal;
559
544
  }
560
- dl.tsd-comment-tags dd {
561
- margin: 0 0 10px 0;
545
+ dl.tsd-comment-tag-group dd {
546
+ margin: 0;
547
+ }
548
+ code.tsd-tag {
549
+ padding: 0.25em 0.4em;
550
+ border: 0.1em solid var(--color-accent);
551
+ margin-right: 0.25em;
552
+ font-size: 70%;
562
553
  }
563
- dl.tsd-comment-tags dd:before,
564
- dl.tsd-comment-tags dd:after {
565
- display: table;
554
+ h1 code.tsd-tag:first-of-type {
555
+ margin-left: 0.25em;
556
+ }
557
+
558
+ dl.tsd-comment-tag-group dd:before,
559
+ dl.tsd-comment-tag-group dd:after {
566
560
  content: " ";
567
561
  }
568
- dl.tsd-comment-tags dd pre,
569
- dl.tsd-comment-tags dd:after {
562
+ dl.tsd-comment-tag-group dd pre,
563
+ dl.tsd-comment-tag-group dd:after {
570
564
  clear: both;
571
565
  }
572
- dl.tsd-comment-tags p {
566
+ dl.tsd-comment-tag-group p {
573
567
  margin: 0;
574
568
  }
575
569
 
@@ -582,153 +576,109 @@ dl.tsd-comment-tags p {
582
576
  margin-bottom: 0;
583
577
  }
584
578
 
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;
579
+ .tsd-filter-visibility h4 {
580
+ font-size: 1rem;
581
+ padding-top: 0.75rem;
582
+ padding-bottom: 0.5rem;
583
+ margin: 0;
593
584
  }
594
-
595
- .toggle-inherited .tsd-is-inherited {
596
- display: none;
585
+ .tsd-filter-item:not(:last-child) {
586
+ margin-bottom: 0.5rem;
597
587
  }
598
-
599
- .toggle-externals .tsd-is-external {
600
- display: none;
588
+ .tsd-filter-input {
589
+ display: flex;
590
+ width: fit-content;
591
+ width: -moz-fit-content;
592
+ align-items: center;
593
+ user-select: none;
594
+ -webkit-user-select: none;
595
+ -moz-user-select: none;
596
+ -ms-user-select: none;
597
+ cursor: pointer;
601
598
  }
602
-
603
- #tsd-filter {
604
- position: relative;
605
- display: inline-block;
606
- height: 40px;
607
- vertical-align: bottom;
599
+ .tsd-filter-input input[type="checkbox"] {
600
+ cursor: pointer;
601
+ position: absolute;
602
+ width: 1.5em;
603
+ height: 1.5em;
604
+ opacity: 0;
608
605
  }
609
- .no-filter #tsd-filter {
610
- display: none;
606
+ .tsd-filter-input input[type="checkbox"]:disabled {
607
+ pointer-events: none;
611
608
  }
612
- #tsd-filter .tsd-filter-group {
613
- display: inline-block;
614
- height: 40px;
615
- vertical-align: bottom;
616
- white-space: nowrap;
609
+ .tsd-filter-input svg {
610
+ cursor: pointer;
611
+ width: 1.5em;
612
+ height: 1.5em;
613
+ margin-right: 0.5em;
614
+ border-radius: 0.33em;
615
+ /* Leaving this at full opacity breaks event listeners on Firefox.
616
+ Don't remove unless you know what you're doing. */
617
+ opacity: 0.99;
617
618
  }
618
- #tsd-filter input {
619
- display: none;
619
+ .tsd-filter-input input[type="checkbox"]:focus + svg {
620
+ transform: scale(0.95);
620
621
  }
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
- }
622
+ .tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
623
+ transform: scale(1);
647
624
  }
648
-
649
- footer {
650
- border-top: 1px solid var(--color-panel-divider);
651
- background-color: var(--color-panel);
625
+ .tsd-checkbox-background {
626
+ fill: var(--color-accent);
652
627
  }
653
- footer:after {
654
- content: "";
655
- display: table;
628
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
629
+ stroke: var(--color-text);
656
630
  }
657
- footer.with-border-bottom {
658
- border-bottom: 1px solid var(--color-panel-divider);
631
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
632
+ fill: var(--color-background);
633
+ stroke: var(--color-accent);
634
+ stroke-width: 0.25rem;
659
635
  }
660
- footer .tsd-legend-group {
661
- font-size: 0;
636
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
637
+ stroke: var(--color-accent);
662
638
  }
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;
639
+
640
+ .tsd-theme-toggle {
641
+ padding-top: 0.75rem;
671
642
  }
672
- @media (max-width: 900px) {
673
- footer .tsd-legend {
674
- width: 50%;
675
- }
643
+ .tsd-theme-toggle > h4 {
644
+ display: inline;
645
+ vertical-align: middle;
646
+ margin-right: 0.75rem;
676
647
  }
677
648
 
678
649
  .tsd-hierarchy {
679
650
  list-style: square;
680
- padding: 0 0 0 20px;
681
651
  margin: 0;
682
652
  }
683
653
  .tsd-hierarchy .target {
684
654
  font-weight: bold;
685
655
  }
686
656
 
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;
657
+ .tsd-panel-group.tsd-index-group {
658
+ margin-bottom: 0;
659
+ }
660
+ .tsd-index-panel .tsd-index-list {
710
661
  list-style: none;
711
662
  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;
663
+ margin: 0;
664
+ padding: 0.25rem 0 0 0;
665
+ overflow: hidden;
666
+ display: grid;
667
+ grid-template-columns: repeat(3, 1fr);
668
+ column-gap: 1rem;
669
+ grid-template-rows: auto;
670
+ }
671
+ @media (max-width: 1024px) {
672
+ .tsd-index-panel .tsd-index-list {
673
+ grid-template-columns: repeat(2, 1fr);
720
674
  }
721
675
  }
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;
676
+ @media (max-width: 768px) {
677
+ .tsd-index-panel .tsd-index-list {
678
+ grid-template-columns: repeat(1, 1fr);
729
679
  }
730
680
  }
731
- .tsd-index-panel ul.tsd-index-list li {
681
+ .tsd-index-panel .tsd-index-list li {
732
682
  -webkit-page-break-inside: avoid;
733
683
  -moz-page-break-inside: avoid;
734
684
  -ms-page-break-inside: avoid;
@@ -736,31 +686,40 @@ footer .tsd-legend {
736
686
  page-break-inside: avoid;
737
687
  }
738
688
  .tsd-index-panel a,
739
- .tsd-index-panel .tsd-parent-kind-module a {
689
+ .tsd-index-panel a.tsd-parent-kind-module {
740
690
  color: var(--color-ts);
741
691
  }
742
- .tsd-index-panel .tsd-parent-kind-interface a {
692
+ .tsd-index-panel a.tsd-parent-kind-interface {
743
693
  color: var(--color-ts-interface);
744
694
  }
745
- .tsd-index-panel .tsd-parent-kind-enum a {
695
+ .tsd-index-panel a.tsd-parent-kind-enum {
746
696
  color: var(--color-ts-enum);
747
697
  }
748
- .tsd-index-panel .tsd-parent-kind-class a {
698
+ .tsd-index-panel a.tsd-parent-kind-class {
749
699
  color: var(--color-ts-class);
750
700
  }
751
- .tsd-index-panel .tsd-kind-module a {
752
- color: var(--color-ts);
701
+ .tsd-index-panel a.tsd-kind-module {
702
+ color: var(--color-ts-namespace);
753
703
  }
754
- .tsd-index-panel .tsd-kind-interface a {
704
+ .tsd-index-panel a.tsd-kind-interface {
755
705
  color: var(--color-ts-interface);
756
706
  }
757
- .tsd-index-panel .tsd-kind-enum a {
707
+ .tsd-index-panel a.tsd-kind-enum {
758
708
  color: var(--color-ts-enum);
759
709
  }
760
- .tsd-index-panel .tsd-kind-class a {
710
+ .tsd-index-panel a.tsd-kind-class {
761
711
  color: var(--color-ts-class);
762
712
  }
763
- .tsd-index-panel .tsd-is-private a {
713
+ .tsd-index-panel a.tsd-kind-function {
714
+ color: var(--color-ts-function);
715
+ }
716
+ .tsd-index-panel a.tsd-kind-namespace {
717
+ color: var(--color-ts-namespace);
718
+ }
719
+ .tsd-index-panel a.tsd-kind-variable {
720
+ color: var(--color-ts-variable);
721
+ }
722
+ .tsd-index-panel a.tsd-is-private {
764
723
  color: var(--color-ts-private);
765
724
  }
766
725
 
@@ -785,6 +744,8 @@ footer .tsd-legend {
785
744
  position: relative;
786
745
  }
787
746
  .tsd-member .tsd-anchor + h3 {
747
+ display: flex;
748
+ align-items: center;
788
749
  margin-top: 0;
789
750
  margin-bottom: 0;
790
751
  border-bottom: none;
@@ -805,13 +766,9 @@ footer .tsd-legend {
805
766
  color: var(--color-ts-private);
806
767
  }
807
768
 
808
- .tsd-navigation {
809
- margin: 0 0 0 40px;
810
- }
811
769
  .tsd-navigation a {
812
770
  display: block;
813
- padding-top: 2px;
814
- padding-bottom: 2px;
771
+ margin: 0.4rem 0;
815
772
  border-left: 2px solid transparent;
816
773
  color: var(--color-text);
817
774
  text-decoration: none;
@@ -829,110 +786,167 @@ footer .tsd-legend {
829
786
  padding: 0;
830
787
  }
831
788
 
832
- .tsd-navigation.primary {
833
- padding-bottom: 40px;
789
+ .tsd-navigation.primary .tsd-accordion-details > ul {
790
+ margin-top: 0.75rem;
834
791
  }
835
792
  .tsd-navigation.primary a {
836
- display: block;
837
- padding-top: 6px;
838
- padding-bottom: 6px;
793
+ padding: 0.75rem 0.5rem;
794
+ margin: 0;
839
795
  }
840
796
  .tsd-navigation.primary ul li a {
841
- padding-left: 5px;
797
+ margin-left: 0.5rem;
842
798
  }
843
799
  .tsd-navigation.primary ul li li a {
844
- padding-left: 25px;
800
+ margin-left: 1.5rem;
845
801
  }
846
802
  .tsd-navigation.primary ul li li li a {
847
- padding-left: 45px;
803
+ margin-left: 2.5rem;
848
804
  }
849
805
  .tsd-navigation.primary ul li li li li a {
850
- padding-left: 65px;
806
+ margin-left: 3.5rem;
851
807
  }
852
808
  .tsd-navigation.primary ul li li li li li a {
853
- padding-left: 85px;
809
+ margin-left: 4.5rem;
854
810
  }
855
811
  .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);
812
+ margin-left: 5.5rem;
863
813
  }
864
814
  .tsd-navigation.primary li.current > a {
815
+ border-left: 0.15rem var(--color-text) solid;
816
+ }
817
+ .tsd-navigation.primary li.selected > a {
865
818
  font-weight: bold;
819
+ border-left: 0.2rem var(--color-text) solid;
866
820
  }
867
- .tsd-navigation.primary li.label span {
868
- display: block;
869
- padding: 20px 0 6px 5px;
870
- color: var(--color-menu-label);
821
+ .tsd-navigation.primary ul li a:hover {
822
+ border-left: 0.2rem var(--color-text-aside) solid;
871
823
  }
872
824
  .tsd-navigation.primary li.globals + li > span,
873
825
  .tsd-navigation.primary li.globals + li > a {
874
826
  padding-top: 20px;
875
827
  }
876
828
 
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
829
  .tsd-navigation.secondary.tsd-navigation--toolbar-hide {
885
830
  max-height: calc(100vh - 1rem);
886
831
  top: 0.5rem;
887
832
  }
888
- .tsd-navigation.secondary ul {
833
+ .tsd-navigation.secondary > ul {
834
+ display: inline;
835
+ padding-right: 0.5rem;
889
836
  transition: opacity 0.2s;
890
837
  }
891
838
  .tsd-navigation.secondary ul li a {
892
- padding-left: 25px;
839
+ padding-left: 0;
893
840
  }
894
841
  .tsd-navigation.secondary ul li li a {
895
- padding-left: 45px;
842
+ padding-left: 1.1rem;
896
843
  }
897
844
  .tsd-navigation.secondary ul li li li a {
898
- padding-left: 65px;
845
+ padding-left: 2.2rem;
899
846
  }
900
847
  .tsd-navigation.secondary ul li li li li a {
901
- padding-left: 85px;
848
+ padding-left: 3.3rem;
902
849
  }
903
850
  .tsd-navigation.secondary ul li li li li li a {
904
- padding-left: 105px;
851
+ padding-left: 4.4rem;
905
852
  }
906
853
  .tsd-navigation.secondary ul li li li li li li a {
907
- padding-left: 125px;
854
+ padding-left: 5.5rem;
855
+ }
856
+
857
+ a.tsd-index-link {
858
+ margin: 0.25rem 0;
859
+ font-size: 1rem;
860
+ line-height: 1.25rem;
861
+ display: inline-flex;
862
+ align-items: center;
863
+ }
864
+ .tsd-accordion-summary > h1,
865
+ .tsd-accordion-summary > h2,
866
+ .tsd-accordion-summary > h3,
867
+ .tsd-accordion-summary > h4,
868
+ .tsd-accordion-summary > h5 {
869
+ display: inline-flex;
870
+ align-items: center;
871
+ vertical-align: middle;
872
+ margin-bottom: 0;
873
+ user-select: none;
874
+ -moz-user-select: none;
875
+ -webkit-user-select: none;
876
+ -ms-user-select: none;
908
877
  }
909
- .tsd-navigation.secondary ul.current a {
910
- border-left-color: var(--color-panel-divider);
878
+ .tsd-accordion-summary {
879
+ display: block;
880
+ cursor: pointer;
911
881
  }
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);
882
+ .tsd-accordion-summary > * {
883
+ margin-top: 0;
884
+ margin-bottom: 0;
885
+ padding-top: 0;
886
+ padding-bottom: 0;
915
887
  }
916
- .tsd-navigation.secondary li.current {
917
- margin-top: 20px;
918
- margin-bottom: 20px;
919
- border-left-color: var(--color-panel-divider);
888
+ .tsd-accordion-summary::-webkit-details-marker {
889
+ display: none;
920
890
  }
921
- .tsd-navigation.secondary li.current > a {
922
- font-weight: bold;
891
+ .tsd-index-accordion .tsd-accordion-summary svg {
892
+ margin-right: 0.25rem;
893
+ }
894
+ .tsd-index-content > :not(:first-child) {
895
+ margin-top: 0.75rem;
896
+ }
897
+ .tsd-index-heading {
898
+ margin-top: 1.5rem;
899
+ margin-bottom: 0.75rem;
900
+ }
901
+
902
+ .tsd-kind-icon {
903
+ margin-right: 0.5rem;
904
+ width: 1.25rem;
905
+ height: 1.25rem;
906
+ min-width: 1.25rem;
907
+ min-height: 1.25rem;
908
+ }
909
+ .tsd-kind-icon path {
910
+ transform-origin: center;
911
+ transform: scale(1.1);
912
+ }
913
+ .tsd-signature > .tsd-kind-icon {
914
+ margin-right: 0.8rem;
923
915
  }
924
916
 
925
- @media (min-width: 901px) {
917
+ @media (min-width: 1024px) {
918
+ .col-content {
919
+ margin: 2rem auto;
920
+ }
921
+
926
922
  .menu-sticky-wrap {
927
- position: static;
923
+ position: sticky;
924
+ height: calc(100vh - 2rem);
925
+ top: 4rem;
926
+ right: 0;
927
+ padding: 0 1.5rem;
928
+ padding-top: 1rem;
929
+ margin-top: 3rem;
930
+ transition: 0.3s ease-in-out;
931
+ transition-property: top, padding-top, padding, height;
932
+ overflow-y: auto;
933
+ }
934
+ .col-menu {
935
+ border-left: 1px solid var(--color-accent);
936
+ }
937
+ .col-menu--hide {
938
+ top: 1rem;
939
+ }
940
+ .col-menu .tsd-navigation:not(:last-child) {
941
+ padding-bottom: 1.75rem;
928
942
  }
929
943
  }
930
944
 
931
945
  .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);
946
+ margin-bottom: 2.5rem;
947
+ }
948
+ .tsd-panel.tsd-member {
949
+ margin-bottom: 4rem;
936
950
  }
937
951
  .tsd-panel:empty {
938
952
  display: none;
@@ -940,48 +954,24 @@ footer .tsd-legend {
940
954
  .tsd-panel > h1,
941
955
  .tsd-panel > h2,
942
956
  .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);
957
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
958
+ padding: 0 1.5rem 0.75rem 1.5rem;
946
959
  }
947
960
  .tsd-panel > h1.tsd-before-signature,
948
961
  .tsd-panel > h2.tsd-before-signature,
949
962
  .tsd-panel > h3.tsd-before-signature {
950
963
  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);
964
+ border-bottom: none;
975
965
  }
976
966
 
977
967
  .tsd-panel-group {
978
- margin: 60px 0;
968
+ margin: 4rem 0;
979
969
  }
980
- .tsd-panel-group > h1,
981
- .tsd-panel-group > h2,
982
- .tsd-panel-group > h3 {
983
- padding-left: 20px;
984
- padding-right: 20px;
970
+ .tsd-panel-group.tsd-index-group {
971
+ margin: 2rem 0;
972
+ }
973
+ .tsd-panel-group.tsd-index-group details {
974
+ margin: 4rem 0;
985
975
  }
986
976
 
987
977
  #tsd-search {
@@ -995,8 +985,8 @@ footer .tsd-legend {
995
985
  position: absolute;
996
986
  left: 0;
997
987
  top: 0;
998
- right: 40px;
999
- height: 40px;
988
+ right: 2.5rem;
989
+ height: 100%;
1000
990
  }
1001
991
  #tsd-search .field input {
1002
992
  box-sizing: border-box;
@@ -1035,14 +1025,14 @@ footer .tsd-legend {
1035
1025
  background-color: var(--color-background);
1036
1026
  }
1037
1027
  #tsd-search .results li:nth-child(even) {
1038
- background-color: var(--color-panel);
1028
+ background-color: var(--color-background-secondary);
1039
1029
  }
1040
1030
  #tsd-search .results li.state {
1041
1031
  display: none;
1042
1032
  }
1043
1033
  #tsd-search .results li.current,
1044
1034
  #tsd-search .results li:hover {
1045
- background-color: var(--color-panel-divider);
1035
+ background-color: var(--color-accent);
1046
1036
  }
1047
1037
  #tsd-search .results a {
1048
1038
  display: block;
@@ -1055,7 +1045,7 @@ footer .tsd-legend {
1055
1045
  font-weight: normal;
1056
1046
  }
1057
1047
  #tsd-search.has-focus {
1058
- background-color: var(--color-panel-divider);
1048
+ background-color: var(--color-accent);
1059
1049
  }
1060
1050
  #tsd-search.has-focus .field input {
1061
1051
  top: 0;
@@ -1076,31 +1066,16 @@ footer .tsd-legend {
1076
1066
  }
1077
1067
 
1078
1068
  .tsd-signature {
1079
- margin: 0 0 1em 0;
1080
- padding: 10px;
1081
- border: 1px solid var(--color-panel-divider);
1069
+ margin: 0 0 1rem 0;
1070
+ padding: 1rem 0.5rem;
1071
+ border: 1px solid var(--color-accent);
1082
1072
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1083
1073
  font-size: 14px;
1084
1074
  overflow-x: auto;
1085
1075
  }
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
1076
  .tsd-panel > .tsd-signature {
1094
- margin-left: -20px;
1095
- margin-right: -20px;
1096
1077
  border-width: 1px 0;
1097
1078
  }
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
1079
 
1105
1080
  .tsd-signature-symbol {
1106
1081
  color: var(--color-text-aside);
@@ -1115,7 +1090,7 @@ footer .tsd-legend {
1115
1090
  .tsd-signatures {
1116
1091
  padding: 0;
1117
1092
  margin: 0 0 1em 0;
1118
- border: 1px solid var(--color-panel-divider);
1093
+ border: 1px solid var(--color-accent);
1119
1094
  }
1120
1095
  .tsd-signatures .tsd-signature {
1121
1096
  margin: 0;
@@ -1126,22 +1101,14 @@ footer .tsd-legend {
1126
1101
  border-top-width: 0;
1127
1102
  }
1128
1103
  .tsd-signatures .tsd-signature.current {
1129
- background-color: var(--color-panel-divider);
1104
+ background-color: var(--color-background-secondary);
1130
1105
  }
1131
1106
  .tsd-signatures.active > .tsd-signature {
1132
1107
  cursor: pointer;
1133
1108
  }
1134
1109
  .tsd-panel > .tsd-signatures {
1135
- margin-left: -20px;
1136
- margin-right: -20px;
1137
1110
  border-width: 1px 0;
1138
1111
  }
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
1112
  .tsd-panel > a.anchor + .tsd-signatures {
1146
1113
  border-top-width: 0;
1147
1114
  margin-top: -20px;
@@ -1179,40 +1146,30 @@ ul.tsd-descriptions .tsd-index-panel h3,
1179
1146
  margin: 1em 0 0.5em 0;
1180
1147
  }
1181
1148
 
1182
- ul.tsd-parameters,
1183
- ul.tsd-type-parameters {
1149
+ ul.tsd-parameter-list,
1150
+ ul.tsd-type-parameter-list {
1184
1151
  list-style: square;
1185
1152
  margin: 0;
1186
1153
  padding-left: 20px;
1187
1154
  }
1188
- ul.tsd-parameters > li.tsd-parameter-signature,
1189
- ul.tsd-type-parameters > li.tsd-parameter-signature {
1155
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
1156
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
1190
1157
  list-style: none;
1191
1158
  margin-left: -20px;
1192
1159
  }
1193
- ul.tsd-parameters h5,
1194
- ul.tsd-type-parameters h5 {
1160
+ ul.tsd-parameter-list h5,
1161
+ ul.tsd-type-parameter-list h5 {
1195
1162
  font-size: 16px;
1196
1163
  margin: 1em 0 0.5em 0;
1197
1164
  }
1198
- ul.tsd-parameters .tsd-comment,
1199
- ul.tsd-type-parameters .tsd-comment {
1200
- margin-top: -0.5em;
1201
- }
1202
-
1203
1165
  .tsd-sources {
1204
- font-size: 14px;
1205
- color: var(--color-text-aside);
1206
- margin: 0 0 1em 0;
1166
+ margin-top: 1rem;
1167
+ font-size: 0.875em;
1207
1168
  }
1208
1169
  .tsd-sources a {
1209
1170
  color: var(--color-text-aside);
1210
1171
  text-decoration: underline;
1211
1172
  }
1212
- .tsd-sources ul,
1213
- .tsd-sources p {
1214
- margin: 0 !important;
1215
- }
1216
1173
  .tsd-sources ul {
1217
1174
  list-style: none;
1218
1175
  padding: 0;
@@ -1224,14 +1181,13 @@ ul.tsd-type-parameters .tsd-comment {
1224
1181
  top: 0;
1225
1182
  left: 0;
1226
1183
  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;
1184
+ color: var(--color-text);
1185
+ background: var(--color-background-secondary);
1186
+ border-bottom: 1px var(--color-accent) solid;
1187
+ transition: transform 0.3s ease-in-out;
1232
1188
  }
1233
1189
  .tsd-page-toolbar a {
1234
- color: var(--color-toolbar-text);
1190
+ color: var(--color-text);
1235
1191
  text-decoration: none;
1236
1192
  }
1237
1193
  .tsd-page-toolbar a.title {
@@ -1240,13 +1196,12 @@ ul.tsd-type-parameters .tsd-comment {
1240
1196
  .tsd-page-toolbar a.title:hover {
1241
1197
  text-decoration: underline;
1242
1198
  }
1243
- .tsd-page-toolbar .table-wrap {
1244
- display: table;
1245
- width: 100%;
1246
- height: 40px;
1199
+ .tsd-page-toolbar .tsd-toolbar-contents {
1200
+ display: flex;
1201
+ justify-content: space-between;
1202
+ height: 2.5rem;
1247
1203
  }
1248
1204
  .tsd-page-toolbar .table-cell {
1249
- display: table-cell;
1250
1205
  position: relative;
1251
1206
  white-space: nowrap;
1252
1207
  line-height: 40px;
@@ -1259,29 +1214,6 @@ ul.tsd-type-parameters .tsd-comment {
1259
1214
  transform: translateY(-100%);
1260
1215
  }
1261
1216
 
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
1217
  .tsd-widget {
1286
1218
  display: inline-block;
1287
1219
  overflow: hidden;
@@ -1296,7 +1228,7 @@ ul.tsd-type-parameters .tsd-comment {
1296
1228
  }
1297
1229
  .tsd-widget.active {
1298
1230
  opacity: 1;
1299
- background-color: var(--color-panel-divider);
1231
+ background-color: var(--color-accent);
1300
1232
  }
1301
1233
  .tsd-widget.no-caption {
1302
1234
  width: 40px;
@@ -1304,20 +1236,12 @@ ul.tsd-type-parameters .tsd-comment {
1304
1236
  .tsd-widget.no-caption:before {
1305
1237
  margin: 0;
1306
1238
  }
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
- }
1239
+
1316
1240
  .tsd-widget.options,
1317
1241
  .tsd-widget.menu {
1318
1242
  display: none;
1319
1243
  }
1320
- @media (max-width: 900px) {
1244
+ @media (max-width: 1024px) {
1321
1245
  .tsd-widget.options,
1322
1246
  .tsd-widget.menu {
1323
1247
  display: inline-block;
@@ -1330,75 +1254,14 @@ input[type="checkbox"]:checked + .tsd-widget:before {
1330
1254
  background-position: -160px 0;
1331
1255
  }
1332
1256
 
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
1257
  img {
1397
1258
  max-width: 100%;
1398
1259
  }
1399
1260
 
1400
1261
  .tsd-anchor-icon {
1401
- margin-left: 10px;
1262
+ display: inline-flex;
1263
+ align-items: center;
1264
+ margin-left: 0.5rem;
1402
1265
  vertical-align: middle;
1403
1266
  color: var(--color-text);
1404
1267
  }
@@ -1412,3 +1275,26 @@ img {
1412
1275
  .tsd-anchor-link:hover > .tsd-anchor-icon svg {
1413
1276
  visibility: visible;
1414
1277
  }
1278
+
1279
+ .deprecated {
1280
+ text-decoration: line-through;
1281
+ }
1282
+
1283
+ * {
1284
+ scrollbar-width: thin;
1285
+ scrollbar-color: var(--color-accent) var(--color-icon-background);
1286
+ }
1287
+
1288
+ *::-webkit-scrollbar {
1289
+ width: 0.75rem;
1290
+ }
1291
+
1292
+ *::-webkit-scrollbar-track {
1293
+ background: var(--color-icon-background);
1294
+ }
1295
+
1296
+ *::-webkit-scrollbar-thumb {
1297
+ background-color: var(--color-accent);
1298
+ border-radius: 999rem;
1299
+ border: 0.25rem solid var(--color-icon-background);
1300
+ }