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