@economic/taco 0.0.8-alpha.0 → 0.0.12-alpha.0
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/dist/components/Accordion/Accordion.d.ts +9 -9
- package/dist/components/Backdrop/Backdrop.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +8 -12
- package/dist/components/Dialog/Context.d.ts +0 -1
- package/dist/components/Dialog/Dialog.d.ts +7 -1
- package/dist/components/Hanger/Hanger.d.ts +4 -1
- package/dist/components/IconButton/IconButton.d.ts +13 -13
- package/dist/components/Menu/Menu.d.ts +3 -1
- package/dist/components/Menu/components/Item.d.ts +3 -0
- package/dist/components/Popover/Popover.d.ts +4 -1
- package/dist/esm/components/Accordion/Accordion.js +14 -9
- package/dist/esm/components/Accordion/Accordion.js.map +1 -1
- package/dist/esm/components/Backdrop/Backdrop.js +5 -4
- package/dist/esm/components/Backdrop/Backdrop.js.map +1 -1
- package/dist/esm/components/Button/Button.js.map +1 -1
- package/dist/esm/components/Button/util.js +16 -16
- package/dist/esm/components/Button/util.js.map +1 -1
- package/dist/esm/components/Calendar/Calendar.js +1 -1
- package/dist/esm/components/Combobox/Combobox.js +1 -1
- package/dist/esm/components/Datepicker/Datepicker.js +2 -2
- package/dist/esm/components/Dialog/Context.js +0 -1
- package/dist/esm/components/Dialog/Context.js.map +1 -1
- package/dist/esm/components/Dialog/Dialog.js +11 -15
- package/dist/esm/components/Dialog/Dialog.js.map +1 -1
- package/dist/esm/components/Dialog/components/Content.js +28 -11
- package/dist/esm/components/Dialog/components/Content.js.map +1 -1
- package/dist/esm/components/Hanger/Hanger.js +6 -6
- package/dist/esm/components/Hanger/Hanger.js.map +1 -1
- package/dist/esm/components/IconButton/IconButton.js.map +1 -1
- package/dist/esm/components/Listbox/ScrollableList.js +1 -1
- package/dist/esm/components/Menu/Menu.js +9 -3
- package/dist/esm/components/Menu/Menu.js.map +1 -1
- package/dist/esm/components/Menu/components/Content.js +2 -2
- package/dist/esm/components/Menu/components/Header.js +1 -1
- package/dist/esm/components/Menu/components/Item.js +34 -17
- package/dist/esm/components/Menu/components/Item.js.map +1 -1
- package/dist/esm/components/Menu/components/Separator.js +1 -1
- package/dist/esm/components/Menu/components/Trigger.js +2 -2
- package/dist/esm/components/Pagination/PageNumbers.js +1 -1
- package/dist/esm/components/Pagination/Pagination.js +1 -1
- package/dist/esm/components/Popover/Popover.js +3 -4
- package/dist/esm/components/Popover/Popover.js.map +1 -1
- package/dist/esm/components/SearchInput/SearchInput.js +8 -8
- package/dist/esm/components/Table/hooks/plugins/useRowActions.js +1 -1
- package/dist/esm/components/Toast/Toast.js +1 -1
- package/dist/esm/components/Tour/Tour.js +1 -1
- package/dist/esm/index.css +37 -37
- package/dist/esm/index.js +8 -8
- package/dist/index.css +37 -37
- package/dist/taco.cjs.development.js +2612 -2569
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +2 -2
- package/types.json +963 -623
package/types.json
CHANGED
@@ -1,10 +1,43 @@
|
|
1
1
|
{
|
2
2
|
"index": {
|
3
|
+
"AccordionContentProps": "React.HTMLAttributes<HTMLElement>",
|
4
|
+
"AccordionItemProps": {
|
5
|
+
"intersections": [
|
6
|
+
"React.HTMLAttributes<HTMLDivElement>"
|
7
|
+
],
|
8
|
+
"props": [
|
9
|
+
{
|
10
|
+
"id": 13,
|
11
|
+
"name": "disabled",
|
12
|
+
"kind": 1024,
|
13
|
+
"kindString": "Property",
|
14
|
+
"flags": {
|
15
|
+
"isOptional": true
|
16
|
+
},
|
17
|
+
"type": {
|
18
|
+
"type": "intrinsic",
|
19
|
+
"name": "boolean"
|
20
|
+
}
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"id": 12,
|
24
|
+
"name": "id",
|
25
|
+
"kind": 1024,
|
26
|
+
"kindString": "Property",
|
27
|
+
"flags": {},
|
28
|
+
"type": {
|
29
|
+
"type": "intrinsic",
|
30
|
+
"name": "string"
|
31
|
+
}
|
32
|
+
}
|
33
|
+
]
|
34
|
+
},
|
3
35
|
"AccordionProps": [
|
4
36
|
"AccordionUncontrolledProps",
|
5
37
|
"AccordionMultipleControlledProps",
|
6
38
|
"AccordionSingleControlledProps"
|
7
39
|
],
|
40
|
+
"AccordionTriggerProps": "React.HTMLAttributes<HTMLElement>",
|
8
41
|
"BackdropProps": "React.HTMLAttributes<HTMLDivElement>",
|
9
42
|
"BadgeProps": {
|
10
43
|
"intersections": [
|
@@ -12,7 +45,7 @@
|
|
12
45
|
],
|
13
46
|
"props": [
|
14
47
|
{
|
15
|
-
"id":
|
48
|
+
"id": 61,
|
16
49
|
"name": "children",
|
17
50
|
"kind": 1024,
|
18
51
|
"kindString": "Property",
|
@@ -28,7 +61,7 @@
|
|
28
61
|
}
|
29
62
|
},
|
30
63
|
{
|
31
|
-
"id":
|
64
|
+
"id": 62,
|
32
65
|
"name": "compact",
|
33
66
|
"kind": 1024,
|
34
67
|
"kindString": "Property",
|
@@ -44,7 +77,7 @@
|
|
44
77
|
}
|
45
78
|
},
|
46
79
|
{
|
47
|
-
"id":
|
80
|
+
"id": 63,
|
48
81
|
"name": "outline",
|
49
82
|
"kind": 1024,
|
50
83
|
"kindString": "Property",
|
@@ -60,7 +93,7 @@
|
|
60
93
|
}
|
61
94
|
},
|
62
95
|
{
|
63
|
-
"id":
|
96
|
+
"id": 64,
|
64
97
|
"name": "state",
|
65
98
|
"kind": 1024,
|
66
99
|
"kindString": "Property",
|
@@ -84,7 +117,7 @@
|
|
84
117
|
],
|
85
118
|
"props": [
|
86
119
|
{
|
87
|
-
"id":
|
120
|
+
"id": 73,
|
88
121
|
"name": "children",
|
89
122
|
"kind": 1024,
|
90
123
|
"kindString": "Property",
|
@@ -100,7 +133,7 @@
|
|
100
133
|
}
|
101
134
|
},
|
102
135
|
{
|
103
|
-
"id":
|
136
|
+
"id": 74,
|
104
137
|
"name": "state",
|
105
138
|
"kind": 1024,
|
106
139
|
"kindString": "Property",
|
@@ -115,7 +148,7 @@
|
|
115
148
|
}
|
116
149
|
},
|
117
150
|
{
|
118
|
-
"id":
|
151
|
+
"id": 75,
|
119
152
|
"name": "onClose",
|
120
153
|
"kind": 2048,
|
121
154
|
"kindString": "Method",
|
@@ -124,7 +157,7 @@
|
|
124
157
|
},
|
125
158
|
"signatures": [
|
126
159
|
{
|
127
|
-
"id":
|
160
|
+
"id": 76,
|
128
161
|
"name": "onClose",
|
129
162
|
"kind": 4096,
|
130
163
|
"kindString": "Call signature",
|
@@ -145,7 +178,7 @@
|
|
145
178
|
],
|
146
179
|
"props": [
|
147
180
|
{
|
148
|
-
"id":
|
181
|
+
"id": 738,
|
149
182
|
"name": "multiselect",
|
150
183
|
"kind": 1024,
|
151
184
|
"kindString": "Property",
|
@@ -168,7 +201,7 @@
|
|
168
201
|
],
|
169
202
|
"props": [
|
170
203
|
{
|
171
|
-
"id":
|
204
|
+
"id": 85,
|
172
205
|
"name": "appearance",
|
173
206
|
"kind": 1024,
|
174
207
|
"kindString": "Property",
|
@@ -185,136 +218,232 @@
|
|
185
218
|
}
|
186
219
|
},
|
187
220
|
{
|
188
|
-
"id":
|
189
|
-
"name": "
|
221
|
+
"id": 89,
|
222
|
+
"name": "fluid",
|
190
223
|
"kind": 1024,
|
191
224
|
"kindString": "Property",
|
192
225
|
"flags": {
|
193
226
|
"isOptional": true
|
194
227
|
},
|
195
228
|
"comment": {
|
196
|
-
"shortText": "
|
229
|
+
"shortText": "If fluid, button expands to the width of it's container"
|
197
230
|
},
|
198
231
|
"type": {
|
199
|
-
"type": "
|
200
|
-
"
|
201
|
-
{
|
202
|
-
"type": "reference",
|
203
|
-
"id": 204,
|
204
|
-
"name": "DialogProps"
|
205
|
-
}
|
206
|
-
],
|
207
|
-
"qualifiedName": "React.ReactElement",
|
208
|
-
"package": "@types/react",
|
209
|
-
"name": "React.ReactElement"
|
232
|
+
"type": "intrinsic",
|
233
|
+
"name": "boolean"
|
210
234
|
}
|
211
235
|
},
|
212
236
|
{
|
213
|
-
"id":
|
214
|
-
"name": "
|
237
|
+
"id": 99,
|
238
|
+
"name": "tooltip",
|
215
239
|
"kind": 1024,
|
216
240
|
"kindString": "Property",
|
217
241
|
"flags": {
|
218
242
|
"isOptional": true
|
219
243
|
},
|
220
244
|
"comment": {
|
221
|
-
"shortText": "
|
245
|
+
"shortText": "A tooltip to show when hovering over the button"
|
222
246
|
},
|
223
247
|
"type": {
|
224
248
|
"type": "intrinsic",
|
225
|
-
"name": "
|
249
|
+
"name": "string"
|
226
250
|
}
|
227
251
|
},
|
228
252
|
{
|
229
|
-
"id":
|
230
|
-
"name": "
|
231
|
-
"kind":
|
232
|
-
"kindString": "
|
253
|
+
"id": 86,
|
254
|
+
"name": "dialog",
|
255
|
+
"kind": 2048,
|
256
|
+
"kindString": "Method",
|
233
257
|
"flags": {
|
234
258
|
"isOptional": true
|
235
259
|
},
|
236
|
-
"
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
{
|
260
|
+
"signatures": [
|
261
|
+
{
|
262
|
+
"id": 87,
|
263
|
+
"name": "dialog",
|
264
|
+
"kind": 4096,
|
265
|
+
"kindString": "Call signature",
|
266
|
+
"flags": {},
|
267
|
+
"comment": {
|
268
|
+
"shortText": "Dialog component associated with the button, clicking the button will open the dialog.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated dialog when clicked."
|
269
|
+
},
|
270
|
+
"parameters": [
|
271
|
+
{
|
272
|
+
"id": 88,
|
273
|
+
"name": "props",
|
274
|
+
"kind": 32768,
|
275
|
+
"kindString": "Parameter",
|
276
|
+
"flags": {},
|
277
|
+
"type": {
|
278
|
+
"type": "reference",
|
279
|
+
"typeArguments": [
|
280
|
+
{
|
281
|
+
"type": "reference",
|
282
|
+
"id": 228,
|
283
|
+
"name": "DialogProps"
|
284
|
+
}
|
285
|
+
],
|
286
|
+
"qualifiedName": "Partial",
|
287
|
+
"package": "typescript",
|
288
|
+
"name": "Partial"
|
289
|
+
}
|
290
|
+
}
|
291
|
+
],
|
292
|
+
"type": {
|
243
293
|
"type": "reference",
|
244
|
-
"
|
245
|
-
"
|
294
|
+
"qualifiedName": "global.JSX.Element",
|
295
|
+
"package": "@types/react",
|
296
|
+
"name": "Element"
|
246
297
|
}
|
247
|
-
|
248
|
-
|
249
|
-
"package": "@types/react",
|
250
|
-
"name": "React.ReactElement"
|
251
|
-
}
|
298
|
+
}
|
299
|
+
]
|
252
300
|
},
|
253
301
|
{
|
254
|
-
"id":
|
255
|
-
"name": "
|
256
|
-
"kind":
|
257
|
-
"kindString": "
|
302
|
+
"id": 90,
|
303
|
+
"name": "hanger",
|
304
|
+
"kind": 2048,
|
305
|
+
"kindString": "Method",
|
258
306
|
"flags": {
|
259
307
|
"isOptional": true
|
260
308
|
},
|
261
|
-
"
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
{
|
309
|
+
"signatures": [
|
310
|
+
{
|
311
|
+
"id": 91,
|
312
|
+
"name": "hanger",
|
313
|
+
"kind": 4096,
|
314
|
+
"kindString": "Call signature",
|
315
|
+
"flags": {},
|
316
|
+
"comment": {
|
317
|
+
"shortText": "Hanger component associated with the button."
|
318
|
+
},
|
319
|
+
"parameters": [
|
320
|
+
{
|
321
|
+
"id": 92,
|
322
|
+
"name": "props",
|
323
|
+
"kind": 32768,
|
324
|
+
"kindString": "Parameter",
|
325
|
+
"flags": {},
|
326
|
+
"type": {
|
327
|
+
"type": "reference",
|
328
|
+
"typeArguments": [
|
329
|
+
{
|
330
|
+
"type": "reference",
|
331
|
+
"id": 281,
|
332
|
+
"name": "HangerProps"
|
333
|
+
}
|
334
|
+
],
|
335
|
+
"qualifiedName": "Partial",
|
336
|
+
"package": "typescript",
|
337
|
+
"name": "Partial"
|
338
|
+
}
|
339
|
+
}
|
340
|
+
],
|
341
|
+
"type": {
|
268
342
|
"type": "reference",
|
269
|
-
"
|
270
|
-
"
|
343
|
+
"qualifiedName": "global.JSX.Element",
|
344
|
+
"package": "@types/react",
|
345
|
+
"name": "Element"
|
271
346
|
}
|
272
|
-
|
273
|
-
|
274
|
-
"package": "@types/react",
|
275
|
-
"name": "React.ReactElement"
|
276
|
-
}
|
347
|
+
}
|
348
|
+
]
|
277
349
|
},
|
278
350
|
{
|
279
|
-
"id":
|
280
|
-
"name": "
|
281
|
-
"kind":
|
282
|
-
"kindString": "
|
351
|
+
"id": 93,
|
352
|
+
"name": "menu",
|
353
|
+
"kind": 2048,
|
354
|
+
"kindString": "Method",
|
283
355
|
"flags": {
|
284
356
|
"isOptional": true
|
285
357
|
},
|
286
|
-
"
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
{
|
358
|
+
"signatures": [
|
359
|
+
{
|
360
|
+
"id": 94,
|
361
|
+
"name": "menu",
|
362
|
+
"kind": 4096,
|
363
|
+
"kindString": "Call signature",
|
364
|
+
"flags": {},
|
365
|
+
"comment": {
|
366
|
+
"shortText": "Menu component associated with the button."
|
367
|
+
},
|
368
|
+
"parameters": [
|
369
|
+
{
|
370
|
+
"id": 95,
|
371
|
+
"name": "props",
|
372
|
+
"kind": 32768,
|
373
|
+
"kindString": "Parameter",
|
374
|
+
"flags": {},
|
375
|
+
"type": {
|
376
|
+
"type": "reference",
|
377
|
+
"typeArguments": [
|
378
|
+
{
|
379
|
+
"type": "reference",
|
380
|
+
"id": 404,
|
381
|
+
"name": "MenuProps"
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"qualifiedName": "Partial",
|
385
|
+
"package": "typescript",
|
386
|
+
"name": "Partial"
|
387
|
+
}
|
388
|
+
}
|
389
|
+
],
|
390
|
+
"type": {
|
293
391
|
"type": "reference",
|
294
|
-
"
|
295
|
-
"
|
392
|
+
"qualifiedName": "global.JSX.Element",
|
393
|
+
"package": "@types/react",
|
394
|
+
"name": "Element"
|
296
395
|
}
|
297
|
-
|
298
|
-
|
299
|
-
"package": "@types/react",
|
300
|
-
"name": "React.ReactElement"
|
301
|
-
}
|
396
|
+
}
|
397
|
+
]
|
302
398
|
},
|
303
399
|
{
|
304
|
-
"id":
|
305
|
-
"name": "
|
306
|
-
"kind":
|
307
|
-
"kindString": "
|
400
|
+
"id": 96,
|
401
|
+
"name": "popover",
|
402
|
+
"kind": 2048,
|
403
|
+
"kindString": "Method",
|
308
404
|
"flags": {
|
309
405
|
"isOptional": true
|
310
406
|
},
|
311
|
-
"
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
407
|
+
"signatures": [
|
408
|
+
{
|
409
|
+
"id": 97,
|
410
|
+
"name": "popover",
|
411
|
+
"kind": 4096,
|
412
|
+
"kindString": "Call signature",
|
413
|
+
"flags": {},
|
414
|
+
"comment": {
|
415
|
+
"shortText": "Popover component associated with the button, clicking the button will open the popover.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated popover when clicked."
|
416
|
+
},
|
417
|
+
"parameters": [
|
418
|
+
{
|
419
|
+
"id": 98,
|
420
|
+
"name": "props",
|
421
|
+
"kind": 32768,
|
422
|
+
"kindString": "Parameter",
|
423
|
+
"flags": {},
|
424
|
+
"type": {
|
425
|
+
"type": "reference",
|
426
|
+
"typeArguments": [
|
427
|
+
{
|
428
|
+
"type": "reference",
|
429
|
+
"id": 584,
|
430
|
+
"name": "PopoverProps"
|
431
|
+
}
|
432
|
+
],
|
433
|
+
"qualifiedName": "Partial",
|
434
|
+
"package": "typescript",
|
435
|
+
"name": "Partial"
|
436
|
+
}
|
437
|
+
}
|
438
|
+
],
|
439
|
+
"type": {
|
440
|
+
"type": "reference",
|
441
|
+
"qualifiedName": "global.JSX.Element",
|
442
|
+
"package": "@types/react",
|
443
|
+
"name": "Element"
|
444
|
+
}
|
445
|
+
}
|
446
|
+
]
|
318
447
|
}
|
319
448
|
]
|
320
449
|
},
|
@@ -324,7 +453,7 @@
|
|
324
453
|
],
|
325
454
|
"props": [
|
326
455
|
{
|
327
|
-
"id":
|
456
|
+
"id": 139,
|
328
457
|
"name": "value",
|
329
458
|
"kind": 1024,
|
330
459
|
"kindString": "Property",
|
@@ -339,14 +468,14 @@
|
|
339
468
|
}
|
340
469
|
},
|
341
470
|
{
|
342
|
-
"id":
|
471
|
+
"id": 135,
|
343
472
|
"name": "onChange",
|
344
473
|
"kind": 2048,
|
345
474
|
"kindString": "Method",
|
346
475
|
"flags": {},
|
347
476
|
"signatures": [
|
348
477
|
{
|
349
|
-
"id":
|
478
|
+
"id": 136,
|
350
479
|
"name": "onChange",
|
351
480
|
"kind": 4096,
|
352
481
|
"kindString": "Call signature",
|
@@ -356,7 +485,7 @@
|
|
356
485
|
},
|
357
486
|
"parameters": [
|
358
487
|
{
|
359
|
-
"id":
|
488
|
+
"id": 137,
|
360
489
|
"name": "date",
|
361
490
|
"kind": 32768,
|
362
491
|
"kindString": "Parameter",
|
@@ -369,7 +498,7 @@
|
|
369
498
|
}
|
370
499
|
},
|
371
500
|
{
|
372
|
-
"id":
|
501
|
+
"id": 138,
|
373
502
|
"name": "event",
|
374
503
|
"kind": 32768,
|
375
504
|
"kindString": "Parameter",
|
@@ -410,7 +539,7 @@
|
|
410
539
|
"CalendarTexts": {
|
411
540
|
"props": [
|
412
541
|
{
|
413
|
-
"id":
|
542
|
+
"id": 130,
|
414
543
|
"name": "actions",
|
415
544
|
"kind": 1024,
|
416
545
|
"kindString": "Property",
|
@@ -420,12 +549,12 @@
|
|
420
549
|
},
|
421
550
|
"type": {
|
422
551
|
"type": "reference",
|
423
|
-
"id":
|
552
|
+
"id": 121,
|
424
553
|
"name": "CalendarTextsActions"
|
425
554
|
}
|
426
555
|
},
|
427
556
|
{
|
428
|
-
"id":
|
557
|
+
"id": 131,
|
429
558
|
"name": "months",
|
430
559
|
"kind": 1024,
|
431
560
|
"kindString": "Property",
|
@@ -442,7 +571,7 @@
|
|
442
571
|
}
|
443
572
|
},
|
444
573
|
{
|
445
|
-
"id":
|
574
|
+
"id": 132,
|
446
575
|
"name": "weekdaysShort",
|
447
576
|
"kind": 1024,
|
448
577
|
"kindString": "Property",
|
@@ -463,7 +592,7 @@
|
|
463
592
|
"CalendarTextsActions": {
|
464
593
|
"props": [
|
465
594
|
{
|
466
|
-
"id":
|
595
|
+
"id": 124,
|
467
596
|
"name": "nextMonth",
|
468
597
|
"kind": 1024,
|
469
598
|
"kindString": "Property",
|
@@ -477,7 +606,7 @@
|
|
477
606
|
}
|
478
607
|
},
|
479
608
|
{
|
480
|
-
"id":
|
609
|
+
"id": 126,
|
481
610
|
"name": "nextYear",
|
482
611
|
"kind": 1024,
|
483
612
|
"kindString": "Property",
|
@@ -491,7 +620,7 @@
|
|
491
620
|
}
|
492
621
|
},
|
493
622
|
{
|
494
|
-
"id":
|
623
|
+
"id": 123,
|
495
624
|
"name": "previousMonth",
|
496
625
|
"kind": 1024,
|
497
626
|
"kindString": "Property",
|
@@ -505,7 +634,7 @@
|
|
505
634
|
}
|
506
635
|
},
|
507
636
|
{
|
508
|
-
"id":
|
637
|
+
"id": 125,
|
509
638
|
"name": "previousYear",
|
510
639
|
"kind": 1024,
|
511
640
|
"kindString": "Property",
|
@@ -519,7 +648,7 @@
|
|
519
648
|
}
|
520
649
|
},
|
521
650
|
{
|
522
|
-
"id":
|
651
|
+
"id": 127,
|
523
652
|
"name": "today",
|
524
653
|
"kind": 1024,
|
525
654
|
"kindString": "Property",
|
@@ -554,7 +683,7 @@
|
|
554
683
|
],
|
555
684
|
"props": [
|
556
685
|
{
|
557
|
-
"id":
|
686
|
+
"id": 153,
|
558
687
|
"name": "data",
|
559
688
|
"kind": 1024,
|
560
689
|
"kindString": "Property",
|
@@ -568,13 +697,13 @@
|
|
568
697
|
"type": "array",
|
569
698
|
"elementType": {
|
570
699
|
"type": "reference",
|
571
|
-
"id":
|
700
|
+
"id": 149,
|
572
701
|
"name": "ComboboxItem"
|
573
702
|
}
|
574
703
|
}
|
575
704
|
},
|
576
705
|
{
|
577
|
-
"id":
|
706
|
+
"id": 154,
|
578
707
|
"name": "defaultValue",
|
579
708
|
"kind": 1024,
|
580
709
|
"kindString": "Property",
|
@@ -586,12 +715,12 @@
|
|
586
715
|
},
|
587
716
|
"type": {
|
588
717
|
"type": "reference",
|
589
|
-
"id":
|
718
|
+
"id": 150,
|
590
719
|
"name": "ComboboxValue"
|
591
720
|
}
|
592
721
|
},
|
593
722
|
{
|
594
|
-
"id":
|
723
|
+
"id": 155,
|
595
724
|
"name": "emptyValue",
|
596
725
|
"kind": 1024,
|
597
726
|
"kindString": "Property",
|
@@ -603,12 +732,12 @@
|
|
603
732
|
},
|
604
733
|
"type": {
|
605
734
|
"type": "reference",
|
606
|
-
"id":
|
735
|
+
"id": 150,
|
607
736
|
"name": "ComboboxValue"
|
608
737
|
}
|
609
738
|
},
|
610
739
|
{
|
611
|
-
"id":
|
740
|
+
"id": 156,
|
612
741
|
"name": "highlighted",
|
613
742
|
"kind": 1024,
|
614
743
|
"kindString": "Property",
|
@@ -624,7 +753,7 @@
|
|
624
753
|
}
|
625
754
|
},
|
626
755
|
{
|
627
|
-
"id":
|
756
|
+
"id": 157,
|
628
757
|
"name": "inline",
|
629
758
|
"kind": 1024,
|
630
759
|
"kindString": "Property",
|
@@ -640,7 +769,7 @@
|
|
640
769
|
}
|
641
770
|
},
|
642
771
|
{
|
643
|
-
"id":
|
772
|
+
"id": 158,
|
644
773
|
"name": "loading",
|
645
774
|
"kind": 1024,
|
646
775
|
"kindString": "Property",
|
@@ -656,7 +785,7 @@
|
|
656
785
|
}
|
657
786
|
},
|
658
787
|
{
|
659
|
-
"id":
|
788
|
+
"id": 159,
|
660
789
|
"name": "onChange",
|
661
790
|
"kind": 1024,
|
662
791
|
"kindString": "Property",
|
@@ -682,7 +811,7 @@
|
|
682
811
|
}
|
683
812
|
},
|
684
813
|
{
|
685
|
-
"id":
|
814
|
+
"id": 163,
|
686
815
|
"name": "state",
|
687
816
|
"kind": 1024,
|
688
817
|
"kindString": "Property",
|
@@ -699,7 +828,7 @@
|
|
699
828
|
}
|
700
829
|
},
|
701
830
|
{
|
702
|
-
"id":
|
831
|
+
"id": 164,
|
703
832
|
"name": "value",
|
704
833
|
"kind": 1024,
|
705
834
|
"kindString": "Property",
|
@@ -711,12 +840,12 @@
|
|
711
840
|
},
|
712
841
|
"type": {
|
713
842
|
"type": "reference",
|
714
|
-
"id":
|
843
|
+
"id": 150,
|
715
844
|
"name": "ComboboxValue"
|
716
845
|
}
|
717
846
|
},
|
718
847
|
{
|
719
|
-
"id":
|
848
|
+
"id": 160,
|
720
849
|
"name": "onSearch",
|
721
850
|
"kind": 2048,
|
722
851
|
"kindString": "Method",
|
@@ -725,7 +854,7 @@
|
|
725
854
|
},
|
726
855
|
"signatures": [
|
727
856
|
{
|
728
|
-
"id":
|
857
|
+
"id": 161,
|
729
858
|
"name": "onSearch",
|
730
859
|
"kind": 4096,
|
731
860
|
"kindString": "Call signature",
|
@@ -735,7 +864,7 @@
|
|
735
864
|
},
|
736
865
|
"parameters": [
|
737
866
|
{
|
738
|
-
"id":
|
867
|
+
"id": 162,
|
739
868
|
"name": "query",
|
740
869
|
"kind": 32768,
|
741
870
|
"kindString": "Parameter",
|
@@ -779,7 +908,7 @@
|
|
779
908
|
],
|
780
909
|
"props": [
|
781
910
|
{
|
782
|
-
"id":
|
911
|
+
"id": 187,
|
783
912
|
"name": "calendar",
|
784
913
|
"kind": 1024,
|
785
914
|
"kindString": "Property",
|
@@ -791,12 +920,12 @@
|
|
791
920
|
},
|
792
921
|
"type": {
|
793
922
|
"type": "reference",
|
794
|
-
"id":
|
923
|
+
"id": 133,
|
795
924
|
"name": "CalendarProps"
|
796
925
|
}
|
797
926
|
},
|
798
927
|
{
|
799
|
-
"id":
|
928
|
+
"id": 188,
|
800
929
|
"name": "shortcuts",
|
801
930
|
"kind": 1024,
|
802
931
|
"kindString": "Property",
|
@@ -812,7 +941,7 @@
|
|
812
941
|
}
|
813
942
|
},
|
814
943
|
{
|
815
|
-
"id":
|
944
|
+
"id": 189,
|
816
945
|
"name": "shortcutsText",
|
817
946
|
"kind": 1024,
|
818
947
|
"kindString": "Property",
|
@@ -828,7 +957,7 @@
|
|
828
957
|
}
|
829
958
|
},
|
830
959
|
{
|
831
|
-
"id":
|
960
|
+
"id": 193,
|
832
961
|
"name": "value",
|
833
962
|
"kind": 1024,
|
834
963
|
"kindString": "Property",
|
@@ -846,7 +975,7 @@
|
|
846
975
|
}
|
847
976
|
},
|
848
977
|
{
|
849
|
-
"id":
|
978
|
+
"id": 190,
|
850
979
|
"name": "onReset",
|
851
980
|
"kind": 2048,
|
852
981
|
"kindString": "Method",
|
@@ -855,7 +984,7 @@
|
|
855
984
|
},
|
856
985
|
"signatures": [
|
857
986
|
{
|
858
|
-
"id":
|
987
|
+
"id": 191,
|
859
988
|
"name": "onReset",
|
860
989
|
"kind": 4096,
|
861
990
|
"kindString": "Call signature",
|
@@ -865,7 +994,7 @@
|
|
865
994
|
},
|
866
995
|
"parameters": [
|
867
996
|
{
|
868
|
-
"id":
|
997
|
+
"id": 192,
|
869
998
|
"name": "event",
|
870
999
|
"kind": 32768,
|
871
1000
|
"kindString": "Parameter",
|
@@ -904,7 +1033,7 @@
|
|
904
1033
|
"DatepickerTexts": {
|
905
1034
|
"props": [
|
906
1035
|
{
|
907
|
-
"id":
|
1036
|
+
"id": 181,
|
908
1037
|
"name": "calendar",
|
909
1038
|
"kind": 1024,
|
910
1039
|
"kindString": "Property",
|
@@ -918,7 +1047,7 @@
|
|
918
1047
|
}
|
919
1048
|
},
|
920
1049
|
{
|
921
|
-
"id":
|
1050
|
+
"id": 182,
|
922
1051
|
"name": "clear",
|
923
1052
|
"kind": 1024,
|
924
1053
|
"kindString": "Property",
|
@@ -932,7 +1061,7 @@
|
|
932
1061
|
}
|
933
1062
|
},
|
934
1063
|
{
|
935
|
-
"id":
|
1064
|
+
"id": 183,
|
936
1065
|
"name": "expand",
|
937
1066
|
"kind": 1024,
|
938
1067
|
"kindString": "Property",
|
@@ -946,7 +1075,7 @@
|
|
946
1075
|
}
|
947
1076
|
},
|
948
1077
|
{
|
949
|
-
"id":
|
1078
|
+
"id": 184,
|
950
1079
|
"name": "shortcuts",
|
951
1080
|
"kind": 1024,
|
952
1081
|
"kindString": "Property",
|
@@ -965,7 +1094,7 @@
|
|
965
1094
|
"DialogContentDrawerRenderProps": {
|
966
1095
|
"props": [
|
967
1096
|
{
|
968
|
-
"id":
|
1097
|
+
"id": 217,
|
969
1098
|
"name": "open",
|
970
1099
|
"kind": 1024,
|
971
1100
|
"kindString": "Property",
|
@@ -976,14 +1105,14 @@
|
|
976
1105
|
}
|
977
1106
|
},
|
978
1107
|
{
|
979
|
-
"id":
|
1108
|
+
"id": 218,
|
980
1109
|
"name": "toggle",
|
981
1110
|
"kind": 2048,
|
982
1111
|
"kindString": "Method",
|
983
1112
|
"flags": {},
|
984
1113
|
"signatures": [
|
985
1114
|
{
|
986
|
-
"id":
|
1115
|
+
"id": 219,
|
987
1116
|
"name": "toggle",
|
988
1117
|
"kind": 4096,
|
989
1118
|
"kindString": "Call signature",
|
@@ -1003,7 +1132,7 @@
|
|
1003
1132
|
],
|
1004
1133
|
"props": [
|
1005
1134
|
{
|
1006
|
-
"id":
|
1135
|
+
"id": 205,
|
1007
1136
|
"name": "aria-label",
|
1008
1137
|
"kind": 1024,
|
1009
1138
|
"kindString": "Property",
|
@@ -1017,7 +1146,7 @@
|
|
1017
1146
|
}
|
1018
1147
|
},
|
1019
1148
|
{
|
1020
|
-
"id":
|
1149
|
+
"id": 206,
|
1021
1150
|
"name": "children",
|
1022
1151
|
"kind": 1024,
|
1023
1152
|
"kindString": "Property",
|
@@ -1046,28 +1175,28 @@
|
|
1046
1175
|
{
|
1047
1176
|
"type": "reflection",
|
1048
1177
|
"declaration": {
|
1049
|
-
"id":
|
1178
|
+
"id": 207,
|
1050
1179
|
"name": "__type",
|
1051
1180
|
"kind": 65536,
|
1052
1181
|
"kindString": "Type literal",
|
1053
1182
|
"flags": {},
|
1054
1183
|
"signatures": [
|
1055
1184
|
{
|
1056
|
-
"id":
|
1185
|
+
"id": 208,
|
1057
1186
|
"name": "__type",
|
1058
1187
|
"kind": 4096,
|
1059
1188
|
"kindString": "Call signature",
|
1060
1189
|
"flags": {},
|
1061
1190
|
"parameters": [
|
1062
1191
|
{
|
1063
|
-
"id":
|
1192
|
+
"id": 209,
|
1064
1193
|
"name": "props",
|
1065
1194
|
"kind": 32768,
|
1066
1195
|
"kindString": "Parameter",
|
1067
1196
|
"flags": {},
|
1068
1197
|
"type": {
|
1069
1198
|
"type": "reference",
|
1070
|
-
"id":
|
1199
|
+
"id": 210,
|
1071
1200
|
"name": "DialogContentRenderProps"
|
1072
1201
|
}
|
1073
1202
|
}
|
@@ -1090,7 +1219,7 @@
|
|
1090
1219
|
"DialogContentRenderProps": {
|
1091
1220
|
"props": [
|
1092
1221
|
{
|
1093
|
-
"id":
|
1222
|
+
"id": 214,
|
1094
1223
|
"name": "drawer",
|
1095
1224
|
"kind": 1024,
|
1096
1225
|
"kindString": "Property",
|
@@ -1099,19 +1228,19 @@
|
|
1099
1228
|
},
|
1100
1229
|
"type": {
|
1101
1230
|
"type": "reference",
|
1102
|
-
"id":
|
1231
|
+
"id": 215,
|
1103
1232
|
"name": "DialogContentDrawerRenderProps"
|
1104
1233
|
}
|
1105
1234
|
},
|
1106
1235
|
{
|
1107
|
-
"id":
|
1236
|
+
"id": 212,
|
1108
1237
|
"name": "close",
|
1109
1238
|
"kind": 2048,
|
1110
1239
|
"kindString": "Method",
|
1111
1240
|
"flags": {},
|
1112
1241
|
"signatures": [
|
1113
1242
|
{
|
1114
|
-
"id":
|
1243
|
+
"id": 213,
|
1115
1244
|
"name": "close",
|
1116
1245
|
"kind": 4096,
|
1117
1246
|
"kindString": "Call signature",
|
@@ -1129,7 +1258,7 @@
|
|
1129
1258
|
"DialogProps": {
|
1130
1259
|
"props": [
|
1131
1260
|
{
|
1132
|
-
"id":
|
1261
|
+
"id": 230,
|
1133
1262
|
"name": "children",
|
1134
1263
|
"kind": 1024,
|
1135
1264
|
"kindString": "Property",
|
@@ -1156,7 +1285,7 @@
|
|
1156
1285
|
}
|
1157
1286
|
},
|
1158
1287
|
{
|
1159
|
-
"id":
|
1288
|
+
"id": 231,
|
1160
1289
|
"name": "closeOnEscape",
|
1161
1290
|
"kind": 1024,
|
1162
1291
|
"kindString": "Property",
|
@@ -1172,7 +1301,23 @@
|
|
1172
1301
|
}
|
1173
1302
|
},
|
1174
1303
|
{
|
1175
|
-
"id":
|
1304
|
+
"id": 232,
|
1305
|
+
"name": "defaultOpen",
|
1306
|
+
"kind": 1024,
|
1307
|
+
"kindString": "Property",
|
1308
|
+
"flags": {
|
1309
|
+
"isOptional": true
|
1310
|
+
},
|
1311
|
+
"comment": {
|
1312
|
+
"shortText": "Set whether the dialog is open by default or not, use when not providing a trigger"
|
1313
|
+
},
|
1314
|
+
"type": {
|
1315
|
+
"type": "intrinsic",
|
1316
|
+
"name": "boolean"
|
1317
|
+
}
|
1318
|
+
},
|
1319
|
+
{
|
1320
|
+
"id": 233,
|
1176
1321
|
"name": "draggable",
|
1177
1322
|
"kind": 1024,
|
1178
1323
|
"kindString": "Property",
|
@@ -1188,7 +1333,7 @@
|
|
1188
1333
|
}
|
1189
1334
|
},
|
1190
1335
|
{
|
1191
|
-
"id":
|
1336
|
+
"id": 239,
|
1192
1337
|
"name": "open",
|
1193
1338
|
"kind": 1024,
|
1194
1339
|
"kindString": "Property",
|
@@ -1196,7 +1341,7 @@
|
|
1196
1341
|
"isOptional": true
|
1197
1342
|
},
|
1198
1343
|
"comment": {
|
1199
|
-
"shortText": "
|
1344
|
+
"shortText": "Control the open state of the dialog from outside the component"
|
1200
1345
|
},
|
1201
1346
|
"type": {
|
1202
1347
|
"type": "intrinsic",
|
@@ -1204,7 +1349,7 @@
|
|
1204
1349
|
}
|
1205
1350
|
},
|
1206
1351
|
{
|
1207
|
-
"id":
|
1352
|
+
"id": 240,
|
1208
1353
|
"name": "showCloseButton",
|
1209
1354
|
"kind": 1024,
|
1210
1355
|
"kindString": "Property",
|
@@ -1220,7 +1365,7 @@
|
|
1220
1365
|
}
|
1221
1366
|
},
|
1222
1367
|
{
|
1223
|
-
"id":
|
1368
|
+
"id": 241,
|
1224
1369
|
"name": "size",
|
1225
1370
|
"kind": 1024,
|
1226
1371
|
"kindString": "Property",
|
@@ -1232,12 +1377,68 @@
|
|
1232
1377
|
},
|
1233
1378
|
"type": {
|
1234
1379
|
"type": "reference",
|
1235
|
-
"id":
|
1380
|
+
"id": 223,
|
1236
1381
|
"name": "DialogSize"
|
1237
1382
|
}
|
1238
1383
|
},
|
1239
1384
|
{
|
1240
|
-
"id":
|
1385
|
+
"id": 242,
|
1386
|
+
"name": "trigger",
|
1387
|
+
"kind": 1024,
|
1388
|
+
"kindString": "Property",
|
1389
|
+
"flags": {
|
1390
|
+
"isOptional": true
|
1391
|
+
},
|
1392
|
+
"comment": {
|
1393
|
+
"shortText": "A trigger to be used for the dialog, should not be set if `children` already contains a trigger"
|
1394
|
+
},
|
1395
|
+
"type": {
|
1396
|
+
"type": "reference",
|
1397
|
+
"qualifiedName": "global.JSX.Element",
|
1398
|
+
"package": "@types/react",
|
1399
|
+
"name": "JSX.Element"
|
1400
|
+
}
|
1401
|
+
},
|
1402
|
+
{
|
1403
|
+
"id": 236,
|
1404
|
+
"name": "onChange",
|
1405
|
+
"kind": 2048,
|
1406
|
+
"kindString": "Method",
|
1407
|
+
"flags": {
|
1408
|
+
"isOptional": true
|
1409
|
+
},
|
1410
|
+
"signatures": [
|
1411
|
+
{
|
1412
|
+
"id": 237,
|
1413
|
+
"name": "onChange",
|
1414
|
+
"kind": 4096,
|
1415
|
+
"kindString": "Call signature",
|
1416
|
+
"flags": {},
|
1417
|
+
"comment": {
|
1418
|
+
"shortText": "Called when the dialog opens or closes, must be used in conjunction with open"
|
1419
|
+
},
|
1420
|
+
"parameters": [
|
1421
|
+
{
|
1422
|
+
"id": 238,
|
1423
|
+
"name": "open",
|
1424
|
+
"kind": 32768,
|
1425
|
+
"kindString": "Parameter",
|
1426
|
+
"flags": {},
|
1427
|
+
"type": {
|
1428
|
+
"type": "intrinsic",
|
1429
|
+
"name": "boolean"
|
1430
|
+
}
|
1431
|
+
}
|
1432
|
+
],
|
1433
|
+
"type": {
|
1434
|
+
"type": "intrinsic",
|
1435
|
+
"name": "void"
|
1436
|
+
}
|
1437
|
+
}
|
1438
|
+
]
|
1439
|
+
},
|
1440
|
+
{
|
1441
|
+
"id": 234,
|
1241
1442
|
"name": "onClose",
|
1242
1443
|
"kind": 2048,
|
1243
1444
|
"kindString": "Method",
|
@@ -1246,7 +1447,7 @@
|
|
1246
1447
|
},
|
1247
1448
|
"signatures": [
|
1248
1449
|
{
|
1249
|
-
"id":
|
1450
|
+
"id": 235,
|
1250
1451
|
"name": "onClose",
|
1251
1452
|
"kind": 4096,
|
1252
1453
|
"kindString": "Call signature",
|
@@ -1288,7 +1489,7 @@
|
|
1288
1489
|
"DialogTexts": {
|
1289
1490
|
"props": [
|
1290
1491
|
{
|
1291
|
-
"id":
|
1492
|
+
"id": 226,
|
1292
1493
|
"name": "close",
|
1293
1494
|
"kind": 1024,
|
1294
1495
|
"kindString": "Property",
|
@@ -1302,7 +1503,7 @@
|
|
1302
1503
|
}
|
1303
1504
|
},
|
1304
1505
|
{
|
1305
|
-
"id":
|
1506
|
+
"id": 227,
|
1306
1507
|
"name": "drag",
|
1307
1508
|
"kind": 1024,
|
1308
1509
|
"kindString": "Property",
|
@@ -1321,7 +1522,7 @@
|
|
1321
1522
|
],
|
1322
1523
|
"props": [
|
1323
1524
|
{
|
1324
|
-
"id":
|
1525
|
+
"id": 255,
|
1325
1526
|
"name": "children",
|
1326
1527
|
"kind": 1024,
|
1327
1528
|
"kindString": "Property",
|
@@ -1337,7 +1538,7 @@
|
|
1337
1538
|
}
|
1338
1539
|
},
|
1339
1540
|
{
|
1340
|
-
"id":
|
1541
|
+
"id": 256,
|
1341
1542
|
"name": "horizontal",
|
1342
1543
|
"kind": 1024,
|
1343
1544
|
"kindString": "Property",
|
@@ -1360,7 +1561,7 @@
|
|
1360
1561
|
],
|
1361
1562
|
"props": [
|
1362
1563
|
{
|
1363
|
-
"id":
|
1564
|
+
"id": 251,
|
1364
1565
|
"name": "Close",
|
1365
1566
|
"kind": 1024,
|
1366
1567
|
"kindString": "Property",
|
@@ -1373,7 +1574,7 @@
|
|
1373
1574
|
"types": [
|
1374
1575
|
{
|
1375
1576
|
"type": "reference",
|
1376
|
-
"id":
|
1577
|
+
"id": 222,
|
1377
1578
|
"name": "DialogCloseProps"
|
1378
1579
|
},
|
1379
1580
|
{
|
@@ -1399,7 +1600,7 @@
|
|
1399
1600
|
}
|
1400
1601
|
},
|
1401
1602
|
{
|
1402
|
-
"id":
|
1603
|
+
"id": 246,
|
1403
1604
|
"name": "Content",
|
1404
1605
|
"kind": 1024,
|
1405
1606
|
"kindString": "Property",
|
@@ -1412,7 +1613,7 @@
|
|
1412
1613
|
"types": [
|
1413
1614
|
{
|
1414
1615
|
"type": "reference",
|
1415
|
-
"id":
|
1616
|
+
"id": 203,
|
1416
1617
|
"name": "DialogContentProps"
|
1417
1618
|
},
|
1418
1619
|
{
|
@@ -1438,7 +1639,7 @@
|
|
1438
1639
|
}
|
1439
1640
|
},
|
1440
1641
|
{
|
1441
|
-
"id":
|
1642
|
+
"id": 250,
|
1442
1643
|
"name": "Drawer",
|
1443
1644
|
"kind": 1024,
|
1444
1645
|
"kindString": "Property",
|
@@ -1476,7 +1677,7 @@
|
|
1476
1677
|
}
|
1477
1678
|
},
|
1478
1679
|
{
|
1479
|
-
"id":
|
1680
|
+
"id": 249,
|
1480
1681
|
"name": "Extra",
|
1481
1682
|
"kind": 1024,
|
1482
1683
|
"kindString": "Property",
|
@@ -1514,7 +1715,7 @@
|
|
1514
1715
|
}
|
1515
1716
|
},
|
1516
1717
|
{
|
1517
|
-
"id":
|
1718
|
+
"id": 248,
|
1518
1719
|
"name": "Footer",
|
1519
1720
|
"kind": 1024,
|
1520
1721
|
"kindString": "Property",
|
@@ -1527,7 +1728,7 @@
|
|
1527
1728
|
"types": [
|
1528
1729
|
{
|
1529
1730
|
"type": "reference",
|
1530
|
-
"id":
|
1731
|
+
"id": 221,
|
1531
1732
|
"name": "DialogFooterProps"
|
1532
1733
|
},
|
1533
1734
|
{
|
@@ -1553,7 +1754,7 @@
|
|
1553
1754
|
}
|
1554
1755
|
},
|
1555
1756
|
{
|
1556
|
-
"id":
|
1757
|
+
"id": 247,
|
1557
1758
|
"name": "Title",
|
1558
1759
|
"kind": 1024,
|
1559
1760
|
"kindString": "Property",
|
@@ -1566,7 +1767,7 @@
|
|
1566
1767
|
"types": [
|
1567
1768
|
{
|
1568
1769
|
"type": "reference",
|
1569
|
-
"id":
|
1770
|
+
"id": 220,
|
1570
1771
|
"name": "DialogTitleProps"
|
1571
1772
|
},
|
1572
1773
|
{
|
@@ -1592,7 +1793,7 @@
|
|
1592
1793
|
}
|
1593
1794
|
},
|
1594
1795
|
{
|
1595
|
-
"id":
|
1796
|
+
"id": 245,
|
1596
1797
|
"name": "Trigger",
|
1597
1798
|
"kind": 1024,
|
1598
1799
|
"kindString": "Property",
|
@@ -1637,7 +1838,7 @@
|
|
1637
1838
|
],
|
1638
1839
|
"props": [
|
1639
1840
|
{
|
1640
|
-
"id":
|
1841
|
+
"id": 286,
|
1641
1842
|
"name": "Anchor",
|
1642
1843
|
"kind": 1024,
|
1643
1844
|
"kindString": "Property",
|
@@ -1647,7 +1848,7 @@
|
|
1647
1848
|
"typeArguments": [
|
1648
1849
|
{
|
1649
1850
|
"type": "reference",
|
1650
|
-
"id":
|
1851
|
+
"id": 272,
|
1651
1852
|
"name": "HangerAnchorProps"
|
1652
1853
|
}
|
1653
1854
|
],
|
@@ -1657,7 +1858,7 @@
|
|
1657
1858
|
}
|
1658
1859
|
},
|
1659
1860
|
{
|
1660
|
-
"id":
|
1861
|
+
"id": 287,
|
1661
1862
|
"name": "Content",
|
1662
1863
|
"kind": 1024,
|
1663
1864
|
"kindString": "Property",
|
@@ -1667,7 +1868,7 @@
|
|
1667
1868
|
"typeArguments": [
|
1668
1869
|
{
|
1669
1870
|
"type": "reference",
|
1670
|
-
"id":
|
1871
|
+
"id": 277,
|
1671
1872
|
"name": "HangerContentProps"
|
1672
1873
|
}
|
1673
1874
|
],
|
@@ -1684,7 +1885,7 @@
|
|
1684
1885
|
],
|
1685
1886
|
"props": [
|
1686
1887
|
{
|
1687
|
-
"id":
|
1888
|
+
"id": 516,
|
1688
1889
|
"name": "Group",
|
1689
1890
|
"kind": 1024,
|
1690
1891
|
"kindString": "Property",
|
@@ -1700,7 +1901,7 @@
|
|
1700
1901
|
"types": [
|
1701
1902
|
{
|
1702
1903
|
"type": "reference",
|
1703
|
-
"id":
|
1904
|
+
"id": 512,
|
1704
1905
|
"name": "NavigationMenuGroupProps"
|
1705
1906
|
},
|
1706
1907
|
{
|
@@ -1733,7 +1934,7 @@
|
|
1733
1934
|
],
|
1734
1935
|
"props": [
|
1735
1936
|
{
|
1736
|
-
"id":
|
1937
|
+
"id": 520,
|
1737
1938
|
"name": "Item",
|
1738
1939
|
"kind": 1024,
|
1739
1940
|
"kindString": "Property",
|
@@ -1749,7 +1950,7 @@
|
|
1749
1950
|
"types": [
|
1750
1951
|
{
|
1751
1952
|
"type": "reference",
|
1752
|
-
"id":
|
1953
|
+
"id": 504,
|
1753
1954
|
"name": "NavigationItemProps"
|
1754
1955
|
},
|
1755
1956
|
{
|
@@ -1775,7 +1976,7 @@
|
|
1775
1976
|
}
|
1776
1977
|
},
|
1777
1978
|
{
|
1778
|
-
"id":
|
1979
|
+
"id": 521,
|
1779
1980
|
"name": "Menu",
|
1780
1981
|
"kind": 1024,
|
1781
1982
|
"kindString": "Property",
|
@@ -1785,12 +1986,12 @@
|
|
1785
1986
|
},
|
1786
1987
|
"type": {
|
1787
1988
|
"type": "reference",
|
1788
|
-
"id":
|
1989
|
+
"id": 514,
|
1789
1990
|
"name": "ForwardedNavigationMenuWithStatics"
|
1790
1991
|
}
|
1791
1992
|
},
|
1792
1993
|
{
|
1793
|
-
"id":
|
1994
|
+
"id": 522,
|
1794
1995
|
"name": "Panel",
|
1795
1996
|
"kind": 1024,
|
1796
1997
|
"kindString": "Property",
|
@@ -1806,7 +2007,7 @@
|
|
1806
2007
|
"types": [
|
1807
2008
|
{
|
1808
2009
|
"type": "reference",
|
1809
|
-
"id":
|
2010
|
+
"id": 511,
|
1810
2011
|
"name": "NavigationPanelProps"
|
1811
2012
|
},
|
1812
2013
|
{
|
@@ -1839,7 +2040,7 @@
|
|
1839
2040
|
],
|
1840
2041
|
"props": [
|
1841
2042
|
{
|
1842
|
-
"id":
|
2043
|
+
"id": 591,
|
1843
2044
|
"name": "Close",
|
1844
2045
|
"kind": 1024,
|
1845
2046
|
"kindString": "Property",
|
@@ -1849,7 +2050,7 @@
|
|
1849
2050
|
"typeArguments": [
|
1850
2051
|
{
|
1851
2052
|
"type": "reference",
|
1852
|
-
"id":
|
2053
|
+
"id": 583,
|
1853
2054
|
"name": "PopoverCloseProps"
|
1854
2055
|
}
|
1855
2056
|
],
|
@@ -1859,7 +2060,7 @@
|
|
1859
2060
|
}
|
1860
2061
|
},
|
1861
2062
|
{
|
1862
|
-
"id":
|
2063
|
+
"id": 590,
|
1863
2064
|
"name": "Content",
|
1864
2065
|
"kind": 1024,
|
1865
2066
|
"kindString": "Property",
|
@@ -1869,7 +2070,7 @@
|
|
1869
2070
|
"typeArguments": [
|
1870
2071
|
{
|
1871
2072
|
"type": "reference",
|
1872
|
-
"id":
|
2073
|
+
"id": 576,
|
1873
2074
|
"name": "PopoverContentProps"
|
1874
2075
|
}
|
1875
2076
|
],
|
@@ -1879,7 +2080,7 @@
|
|
1879
2080
|
}
|
1880
2081
|
},
|
1881
2082
|
{
|
1882
|
-
"id":
|
2083
|
+
"id": 589,
|
1883
2084
|
"name": "Trigger",
|
1884
2085
|
"kind": 1024,
|
1885
2086
|
"kindString": "Property",
|
@@ -1889,7 +2090,7 @@
|
|
1889
2090
|
"typeArguments": [
|
1890
2091
|
{
|
1891
2092
|
"type": "reference",
|
1892
|
-
"id":
|
2093
|
+
"id": 571,
|
1893
2094
|
"name": "PopoverTriggerProps"
|
1894
2095
|
}
|
1895
2096
|
],
|
@@ -1906,7 +2107,7 @@
|
|
1906
2107
|
],
|
1907
2108
|
"props": [
|
1908
2109
|
{
|
1909
|
-
"id":
|
2110
|
+
"id": 722,
|
1910
2111
|
"name": "Item",
|
1911
2112
|
"kind": 1024,
|
1912
2113
|
"kindString": "Property",
|
@@ -1919,7 +2120,7 @@
|
|
1919
2120
|
"typeArguments": [
|
1920
2121
|
{
|
1921
2122
|
"type": "reference",
|
1922
|
-
"id":
|
2123
|
+
"id": 713,
|
1923
2124
|
"name": "RadioGroupItemProps"
|
1924
2125
|
}
|
1925
2126
|
],
|
@@ -1936,7 +2137,7 @@
|
|
1936
2137
|
],
|
1937
2138
|
"props": [
|
1938
2139
|
{
|
1939
|
-
"id":
|
2140
|
+
"id": 1003,
|
1940
2141
|
"name": "Content",
|
1941
2142
|
"kind": 1024,
|
1942
2143
|
"kindString": "Property",
|
@@ -1952,7 +2153,7 @@
|
|
1952
2153
|
"types": [
|
1953
2154
|
{
|
1954
2155
|
"type": "reference",
|
1955
|
-
"id":
|
2156
|
+
"id": 996,
|
1956
2157
|
"name": "TabContentProps"
|
1957
2158
|
},
|
1958
2159
|
{
|
@@ -1978,7 +2179,7 @@
|
|
1978
2179
|
}
|
1979
2180
|
},
|
1980
2181
|
{
|
1981
|
-
"id":
|
2182
|
+
"id": 1001,
|
1982
2183
|
"name": "List",
|
1983
2184
|
"kind": 1024,
|
1984
2185
|
"kindString": "Property",
|
@@ -1994,7 +2195,7 @@
|
|
1994
2195
|
"types": [
|
1995
2196
|
{
|
1996
2197
|
"type": "reference",
|
1997
|
-
"id":
|
2198
|
+
"id": 991,
|
1998
2199
|
"name": "TabListProps"
|
1999
2200
|
},
|
2000
2201
|
{
|
@@ -2020,7 +2221,7 @@
|
|
2020
2221
|
}
|
2021
2222
|
},
|
2022
2223
|
{
|
2023
|
-
"id":
|
2224
|
+
"id": 1002,
|
2024
2225
|
"name": "Trigger",
|
2025
2226
|
"kind": 1024,
|
2026
2227
|
"kindString": "Property",
|
@@ -2036,7 +2237,7 @@
|
|
2036
2237
|
"types": [
|
2037
2238
|
{
|
2038
2239
|
"type": "reference",
|
2039
|
-
"id":
|
2240
|
+
"id": 992,
|
2040
2241
|
"name": "TabTriggerProps"
|
2041
2242
|
},
|
2042
2243
|
{
|
@@ -2069,7 +2270,7 @@
|
|
2069
2270
|
],
|
2070
2271
|
"props": [
|
2071
2272
|
{
|
2072
|
-
"id":
|
2273
|
+
"id": 1126,
|
2073
2274
|
"name": "Group",
|
2074
2275
|
"kind": 1024,
|
2075
2276
|
"kindString": "Property",
|
@@ -2085,7 +2286,7 @@
|
|
2085
2286
|
"types": [
|
2086
2287
|
{
|
2087
2288
|
"type": "reference",
|
2088
|
-
"id":
|
2289
|
+
"id": 1106,
|
2089
2290
|
"name": "TreeviewGroupProps"
|
2090
2291
|
},
|
2091
2292
|
{
|
@@ -2111,7 +2312,7 @@
|
|
2111
2312
|
}
|
2112
2313
|
},
|
2113
2314
|
{
|
2114
|
-
"id":
|
2315
|
+
"id": 1125,
|
2115
2316
|
"name": "Item",
|
2116
2317
|
"kind": 1024,
|
2117
2318
|
"kindString": "Property",
|
@@ -2127,7 +2328,7 @@
|
|
2127
2328
|
"types": [
|
2128
2329
|
{
|
2129
2330
|
"type": "reference",
|
2130
|
-
"id":
|
2331
|
+
"id": 1105,
|
2131
2332
|
"name": "TreeviewItemProps"
|
2132
2333
|
},
|
2133
2334
|
{
|
@@ -2160,7 +2361,7 @@
|
|
2160
2361
|
],
|
2161
2362
|
"props": [
|
2162
2363
|
{
|
2163
|
-
"id":
|
2364
|
+
"id": 263,
|
2164
2365
|
"name": "as",
|
2165
2366
|
"kind": 1024,
|
2166
2367
|
"kindString": "Property",
|
@@ -2189,7 +2390,7 @@
|
|
2189
2390
|
}
|
2190
2391
|
},
|
2191
2392
|
{
|
2192
|
-
"id":
|
2393
|
+
"id": 264,
|
2193
2394
|
"name": "children",
|
2194
2395
|
"kind": 1024,
|
2195
2396
|
"kindString": "Property",
|
@@ -2213,7 +2414,7 @@
|
|
2213
2414
|
],
|
2214
2415
|
"props": [
|
2215
2416
|
{
|
2216
|
-
"id":
|
2417
|
+
"id": 279,
|
2217
2418
|
"name": "onClose",
|
2218
2419
|
"kind": 1024,
|
2219
2420
|
"kindString": "Property",
|
@@ -2225,12 +2426,12 @@
|
|
2225
2426
|
},
|
2226
2427
|
"type": {
|
2227
2428
|
"type": "reference",
|
2228
|
-
"id":
|
2429
|
+
"id": 273,
|
2229
2430
|
"name": "CloseHandler"
|
2230
2431
|
}
|
2231
2432
|
},
|
2232
2433
|
{
|
2233
|
-
"id":
|
2434
|
+
"id": 280,
|
2234
2435
|
"name": "placement",
|
2235
2436
|
"kind": 1024,
|
2236
2437
|
"kindString": "Property",
|
@@ -2252,7 +2453,7 @@
|
|
2252
2453
|
"HangerTexts": {
|
2253
2454
|
"props": [
|
2254
2455
|
{
|
2255
|
-
"id":
|
2456
|
+
"id": 271,
|
2256
2457
|
"name": "close",
|
2257
2458
|
"kind": 1024,
|
2258
2459
|
"kindString": "Property",
|
@@ -2273,7 +2474,7 @@
|
|
2273
2474
|
],
|
2274
2475
|
"props": [
|
2275
2476
|
{
|
2276
|
-
"id":
|
2477
|
+
"id": 299,
|
2277
2478
|
"name": "appearance",
|
2278
2479
|
"kind": 1024,
|
2279
2480
|
"kindString": "Property",
|
@@ -2290,126 +2491,247 @@
|
|
2290
2491
|
}
|
2291
2492
|
},
|
2292
2493
|
{
|
2293
|
-
"id":
|
2294
|
-
"name": "
|
2494
|
+
"id": 306,
|
2495
|
+
"name": "icon",
|
2295
2496
|
"kind": 1024,
|
2296
2497
|
"kindString": "Property",
|
2297
|
-
"flags": {
|
2298
|
-
"isOptional": true
|
2299
|
-
},
|
2498
|
+
"flags": {},
|
2300
2499
|
"comment": {
|
2301
|
-
"shortText": "
|
2500
|
+
"shortText": "Set which icon should be rendered within button"
|
2302
2501
|
},
|
2303
2502
|
"type": {
|
2304
2503
|
"type": "reference",
|
2305
|
-
"
|
2306
|
-
|
2307
|
-
"type": "reference",
|
2308
|
-
"id": 204,
|
2309
|
-
"name": "DialogProps"
|
2310
|
-
}
|
2311
|
-
],
|
2312
|
-
"qualifiedName": "React.ReactElement",
|
2313
|
-
"package": "@types/react",
|
2314
|
-
"name": "React.ReactElement"
|
2504
|
+
"id": 290,
|
2505
|
+
"name": "IconName"
|
2315
2506
|
}
|
2316
2507
|
},
|
2317
2508
|
{
|
2318
|
-
"id":
|
2319
|
-
"name": "
|
2509
|
+
"id": 313,
|
2510
|
+
"name": "rounded",
|
2320
2511
|
"kind": 1024,
|
2321
2512
|
"kindString": "Property",
|
2322
2513
|
"flags": {
|
2323
2514
|
"isOptional": true
|
2324
2515
|
},
|
2325
2516
|
"comment": {
|
2326
|
-
"shortText": "
|
2517
|
+
"shortText": "Set whether the button is rounded.\nDefault value is `false`"
|
2327
2518
|
},
|
2328
2519
|
"type": {
|
2329
|
-
"type": "
|
2330
|
-
"
|
2331
|
-
{
|
2332
|
-
"type": "reference",
|
2333
|
-
"id": 252,
|
2334
|
-
"name": "HangerProps"
|
2335
|
-
}
|
2336
|
-
],
|
2337
|
-
"qualifiedName": "React.ReactElement",
|
2338
|
-
"package": "@types/react",
|
2339
|
-
"name": "React.ReactElement"
|
2520
|
+
"type": "intrinsic",
|
2521
|
+
"name": "boolean"
|
2340
2522
|
}
|
2341
2523
|
},
|
2342
2524
|
{
|
2343
|
-
"id":
|
2344
|
-
"name": "
|
2525
|
+
"id": 314,
|
2526
|
+
"name": "tooltip",
|
2345
2527
|
"kind": 1024,
|
2346
2528
|
"kindString": "Property",
|
2347
|
-
"flags": {
|
2529
|
+
"flags": {
|
2530
|
+
"isOptional": true
|
2531
|
+
},
|
2348
2532
|
"comment": {
|
2349
|
-
"shortText": "
|
2533
|
+
"shortText": "A tooltip to show when hovering over the button"
|
2350
2534
|
},
|
2351
2535
|
"type": {
|
2352
|
-
"type": "
|
2353
|
-
"
|
2354
|
-
"name": "IconName"
|
2536
|
+
"type": "intrinsic",
|
2537
|
+
"name": "string"
|
2355
2538
|
}
|
2356
2539
|
},
|
2357
2540
|
{
|
2358
|
-
"id":
|
2359
|
-
"name": "
|
2360
|
-
"kind":
|
2361
|
-
"kindString": "
|
2541
|
+
"id": 300,
|
2542
|
+
"name": "dialog",
|
2543
|
+
"kind": 2048,
|
2544
|
+
"kindString": "Method",
|
2545
|
+
"flags": {
|
2546
|
+
"isOptional": true
|
2547
|
+
},
|
2548
|
+
"signatures": [
|
2549
|
+
{
|
2550
|
+
"id": 301,
|
2551
|
+
"name": "dialog",
|
2552
|
+
"kind": 4096,
|
2553
|
+
"kindString": "Call signature",
|
2554
|
+
"flags": {},
|
2555
|
+
"comment": {
|
2556
|
+
"shortText": "Dialog component associated with the button, clicking the button will open the dialog.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated dialog when clicked."
|
2557
|
+
},
|
2558
|
+
"parameters": [
|
2559
|
+
{
|
2560
|
+
"id": 302,
|
2561
|
+
"name": "props",
|
2562
|
+
"kind": 32768,
|
2563
|
+
"kindString": "Parameter",
|
2564
|
+
"flags": {},
|
2565
|
+
"type": {
|
2566
|
+
"type": "reference",
|
2567
|
+
"typeArguments": [
|
2568
|
+
{
|
2569
|
+
"type": "reference",
|
2570
|
+
"id": 228,
|
2571
|
+
"name": "DialogProps"
|
2572
|
+
}
|
2573
|
+
],
|
2574
|
+
"qualifiedName": "Partial",
|
2575
|
+
"package": "typescript",
|
2576
|
+
"name": "Partial"
|
2577
|
+
}
|
2578
|
+
}
|
2579
|
+
],
|
2580
|
+
"type": {
|
2581
|
+
"type": "reference",
|
2582
|
+
"qualifiedName": "global.JSX.Element",
|
2583
|
+
"package": "@types/react",
|
2584
|
+
"name": "Element"
|
2585
|
+
}
|
2586
|
+
}
|
2587
|
+
]
|
2588
|
+
},
|
2589
|
+
{
|
2590
|
+
"id": 303,
|
2591
|
+
"name": "hanger",
|
2592
|
+
"kind": 2048,
|
2593
|
+
"kindString": "Method",
|
2362
2594
|
"flags": {
|
2363
2595
|
"isOptional": true
|
2364
2596
|
},
|
2365
|
-
"
|
2366
|
-
|
2367
|
-
|
2368
|
-
|
2369
|
-
|
2370
|
-
|
2371
|
-
{
|
2597
|
+
"signatures": [
|
2598
|
+
{
|
2599
|
+
"id": 304,
|
2600
|
+
"name": "hanger",
|
2601
|
+
"kind": 4096,
|
2602
|
+
"kindString": "Call signature",
|
2603
|
+
"flags": {},
|
2604
|
+
"comment": {
|
2605
|
+
"shortText": "Hanger component associated with the button."
|
2606
|
+
},
|
2607
|
+
"parameters": [
|
2608
|
+
{
|
2609
|
+
"id": 305,
|
2610
|
+
"name": "props",
|
2611
|
+
"kind": 32768,
|
2612
|
+
"kindString": "Parameter",
|
2613
|
+
"flags": {},
|
2614
|
+
"type": {
|
2615
|
+
"type": "reference",
|
2616
|
+
"typeArguments": [
|
2617
|
+
{
|
2618
|
+
"type": "reference",
|
2619
|
+
"id": 281,
|
2620
|
+
"name": "HangerProps"
|
2621
|
+
}
|
2622
|
+
],
|
2623
|
+
"qualifiedName": "Partial",
|
2624
|
+
"package": "typescript",
|
2625
|
+
"name": "Partial"
|
2626
|
+
}
|
2627
|
+
}
|
2628
|
+
],
|
2629
|
+
"type": {
|
2372
2630
|
"type": "reference",
|
2373
|
-
"
|
2374
|
-
"
|
2631
|
+
"qualifiedName": "global.JSX.Element",
|
2632
|
+
"package": "@types/react",
|
2633
|
+
"name": "Element"
|
2375
2634
|
}
|
2376
|
-
|
2377
|
-
|
2378
|
-
"package": "@types/react",
|
2379
|
-
"name": "React.ReactElement"
|
2380
|
-
}
|
2635
|
+
}
|
2636
|
+
]
|
2381
2637
|
},
|
2382
2638
|
{
|
2383
|
-
"id":
|
2384
|
-
"name": "
|
2385
|
-
"kind":
|
2386
|
-
"kindString": "
|
2639
|
+
"id": 307,
|
2640
|
+
"name": "menu",
|
2641
|
+
"kind": 2048,
|
2642
|
+
"kindString": "Method",
|
2387
2643
|
"flags": {
|
2388
2644
|
"isOptional": true
|
2389
2645
|
},
|
2390
|
-
"
|
2391
|
-
|
2392
|
-
|
2393
|
-
|
2394
|
-
|
2395
|
-
|
2396
|
-
|
2646
|
+
"signatures": [
|
2647
|
+
{
|
2648
|
+
"id": 308,
|
2649
|
+
"name": "menu",
|
2650
|
+
"kind": 4096,
|
2651
|
+
"kindString": "Call signature",
|
2652
|
+
"flags": {},
|
2653
|
+
"comment": {
|
2654
|
+
"shortText": "Menu component associated with the button."
|
2655
|
+
},
|
2656
|
+
"parameters": [
|
2657
|
+
{
|
2658
|
+
"id": 309,
|
2659
|
+
"name": "props",
|
2660
|
+
"kind": 32768,
|
2661
|
+
"kindString": "Parameter",
|
2662
|
+
"flags": {},
|
2663
|
+
"type": {
|
2664
|
+
"type": "reference",
|
2665
|
+
"typeArguments": [
|
2666
|
+
{
|
2667
|
+
"type": "reference",
|
2668
|
+
"id": 404,
|
2669
|
+
"name": "MenuProps"
|
2670
|
+
}
|
2671
|
+
],
|
2672
|
+
"qualifiedName": "Partial",
|
2673
|
+
"package": "typescript",
|
2674
|
+
"name": "Partial"
|
2675
|
+
}
|
2676
|
+
}
|
2677
|
+
],
|
2678
|
+
"type": {
|
2679
|
+
"type": "reference",
|
2680
|
+
"qualifiedName": "global.JSX.Element",
|
2681
|
+
"package": "@types/react",
|
2682
|
+
"name": "Element"
|
2683
|
+
}
|
2684
|
+
}
|
2685
|
+
]
|
2397
2686
|
},
|
2398
2687
|
{
|
2399
|
-
"id":
|
2400
|
-
"name": "
|
2401
|
-
"kind":
|
2402
|
-
"kindString": "
|
2688
|
+
"id": 310,
|
2689
|
+
"name": "popover",
|
2690
|
+
"kind": 2048,
|
2691
|
+
"kindString": "Method",
|
2403
2692
|
"flags": {
|
2404
2693
|
"isOptional": true
|
2405
2694
|
},
|
2406
|
-
"
|
2407
|
-
|
2408
|
-
|
2409
|
-
|
2410
|
-
|
2411
|
-
|
2412
|
-
|
2695
|
+
"signatures": [
|
2696
|
+
{
|
2697
|
+
"id": 311,
|
2698
|
+
"name": "popover",
|
2699
|
+
"kind": 4096,
|
2700
|
+
"kindString": "Call signature",
|
2701
|
+
"flags": {},
|
2702
|
+
"comment": {
|
2703
|
+
"shortText": "Popover component associated with the button, clicking the button will open the popover.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated popover when clicked."
|
2704
|
+
},
|
2705
|
+
"parameters": [
|
2706
|
+
{
|
2707
|
+
"id": 312,
|
2708
|
+
"name": "props",
|
2709
|
+
"kind": 32768,
|
2710
|
+
"kindString": "Parameter",
|
2711
|
+
"flags": {},
|
2712
|
+
"type": {
|
2713
|
+
"type": "reference",
|
2714
|
+
"typeArguments": [
|
2715
|
+
{
|
2716
|
+
"type": "reference",
|
2717
|
+
"id": 584,
|
2718
|
+
"name": "PopoverProps"
|
2719
|
+
}
|
2720
|
+
],
|
2721
|
+
"qualifiedName": "Partial",
|
2722
|
+
"package": "typescript",
|
2723
|
+
"name": "Partial"
|
2724
|
+
}
|
2725
|
+
}
|
2726
|
+
],
|
2727
|
+
"type": {
|
2728
|
+
"type": "reference",
|
2729
|
+
"qualifiedName": "global.JSX.Element",
|
2730
|
+
"package": "@types/react",
|
2731
|
+
"name": "Element"
|
2732
|
+
}
|
2733
|
+
}
|
2734
|
+
]
|
2413
2735
|
}
|
2414
2736
|
]
|
2415
2737
|
},
|
@@ -3225,7 +3547,7 @@
|
|
3225
3547
|
],
|
3226
3548
|
"props": [
|
3227
3549
|
{
|
3228
|
-
"id":
|
3550
|
+
"id": 293,
|
3229
3551
|
"name": "name",
|
3230
3552
|
"kind": 1024,
|
3231
3553
|
"kindString": "Property",
|
@@ -3235,7 +3557,7 @@
|
|
3235
3557
|
},
|
3236
3558
|
"type": {
|
3237
3559
|
"type": "reference",
|
3238
|
-
"id":
|
3560
|
+
"id": 290,
|
3239
3561
|
"name": "IconName"
|
3240
3562
|
}
|
3241
3563
|
}
|
@@ -3247,7 +3569,7 @@
|
|
3247
3569
|
],
|
3248
3570
|
"props": [
|
3249
3571
|
{
|
3250
|
-
"id":
|
3572
|
+
"id": 335,
|
3251
3573
|
"name": "button",
|
3252
3574
|
"kind": 1024,
|
3253
3575
|
"kindString": "Property",
|
@@ -3265,7 +3587,7 @@
|
|
3265
3587
|
}
|
3266
3588
|
},
|
3267
3589
|
{
|
3268
|
-
"id":
|
3590
|
+
"id": 337,
|
3269
3591
|
"name": "highlighted",
|
3270
3592
|
"kind": 1024,
|
3271
3593
|
"kindString": "Property",
|
@@ -3281,7 +3603,7 @@
|
|
3281
3603
|
}
|
3282
3604
|
},
|
3283
3605
|
{
|
3284
|
-
"id":
|
3606
|
+
"id": 336,
|
3285
3607
|
"name": "icon",
|
3286
3608
|
"kind": 1024,
|
3287
3609
|
"kindString": "Property",
|
@@ -3296,7 +3618,7 @@
|
|
3296
3618
|
"types": [
|
3297
3619
|
{
|
3298
3620
|
"type": "reference",
|
3299
|
-
"id":
|
3621
|
+
"id": 290,
|
3300
3622
|
"name": "IconName"
|
3301
3623
|
},
|
3302
3624
|
{
|
@@ -3309,7 +3631,7 @@
|
|
3309
3631
|
}
|
3310
3632
|
},
|
3311
3633
|
{
|
3312
|
-
"id":
|
3634
|
+
"id": 338,
|
3313
3635
|
"name": "state",
|
3314
3636
|
"kind": 1024,
|
3315
3637
|
"kindString": "Property",
|
@@ -3333,7 +3655,7 @@
|
|
3333
3655
|
],
|
3334
3656
|
"props": [
|
3335
3657
|
{
|
3336
|
-
"id":
|
3658
|
+
"id": 360,
|
3337
3659
|
"name": "children",
|
3338
3660
|
"kind": 1024,
|
3339
3661
|
"kindString": "Property",
|
@@ -3349,7 +3671,7 @@
|
|
3349
3671
|
}
|
3350
3672
|
},
|
3351
3673
|
{
|
3352
|
-
"id":
|
3674
|
+
"id": 361,
|
3353
3675
|
"name": "disabled",
|
3354
3676
|
"kind": 1024,
|
3355
3677
|
"kindString": "Property",
|
@@ -3365,7 +3687,7 @@
|
|
3365
3687
|
}
|
3366
3688
|
},
|
3367
3689
|
{
|
3368
|
-
"id":
|
3690
|
+
"id": 362,
|
3369
3691
|
"name": "message",
|
3370
3692
|
"kind": 1024,
|
3371
3693
|
"kindString": "Property",
|
@@ -3381,7 +3703,7 @@
|
|
3381
3703
|
}
|
3382
3704
|
},
|
3383
3705
|
{
|
3384
|
-
"id":
|
3706
|
+
"id": 363,
|
3385
3707
|
"name": "state",
|
3386
3708
|
"kind": 1024,
|
3387
3709
|
"kindString": "Property",
|
@@ -3407,7 +3729,7 @@
|
|
3407
3729
|
],
|
3408
3730
|
"props": [
|
3409
3731
|
{
|
3410
|
-
"id":
|
3732
|
+
"id": 379,
|
3411
3733
|
"name": "data",
|
3412
3734
|
"kind": 1024,
|
3413
3735
|
"kindString": "Property",
|
@@ -3421,13 +3743,13 @@
|
|
3421
3743
|
"type": "array",
|
3422
3744
|
"elementType": {
|
3423
3745
|
"type": "reference",
|
3424
|
-
"id":
|
3746
|
+
"id": 370,
|
3425
3747
|
"name": "ListboxItem"
|
3426
3748
|
}
|
3427
3749
|
}
|
3428
3750
|
},
|
3429
3751
|
{
|
3430
|
-
"id":
|
3752
|
+
"id": 380,
|
3431
3753
|
"name": "defaultValue",
|
3432
3754
|
"kind": 1024,
|
3433
3755
|
"kindString": "Property",
|
@@ -3439,12 +3761,12 @@
|
|
3439
3761
|
},
|
3440
3762
|
"type": {
|
3441
3763
|
"type": "reference",
|
3442
|
-
"id":
|
3764
|
+
"id": 371,
|
3443
3765
|
"name": "ListboxValue"
|
3444
3766
|
}
|
3445
3767
|
},
|
3446
3768
|
{
|
3447
|
-
"id":
|
3769
|
+
"id": 381,
|
3448
3770
|
"name": "emptyValue",
|
3449
3771
|
"kind": 1024,
|
3450
3772
|
"kindString": "Property",
|
@@ -3456,12 +3778,12 @@
|
|
3456
3778
|
},
|
3457
3779
|
"type": {
|
3458
3780
|
"type": "reference",
|
3459
|
-
"id":
|
3781
|
+
"id": 371,
|
3460
3782
|
"name": "ListboxValue"
|
3461
3783
|
}
|
3462
3784
|
},
|
3463
3785
|
{
|
3464
|
-
"id":
|
3786
|
+
"id": 382,
|
3465
3787
|
"name": "highlighted",
|
3466
3788
|
"kind": 1024,
|
3467
3789
|
"kindString": "Property",
|
@@ -3477,7 +3799,7 @@
|
|
3477
3799
|
}
|
3478
3800
|
},
|
3479
3801
|
{
|
3480
|
-
"id":
|
3802
|
+
"id": 383,
|
3481
3803
|
"name": "loading",
|
3482
3804
|
"kind": 1024,
|
3483
3805
|
"kindString": "Property",
|
@@ -3493,7 +3815,7 @@
|
|
3493
3815
|
}
|
3494
3816
|
},
|
3495
3817
|
{
|
3496
|
-
"id":
|
3818
|
+
"id": 384,
|
3497
3819
|
"name": "state",
|
3498
3820
|
"kind": 1024,
|
3499
3821
|
"kindString": "Property",
|
@@ -3510,7 +3832,7 @@
|
|
3510
3832
|
}
|
3511
3833
|
},
|
3512
3834
|
{
|
3513
|
-
"id":
|
3835
|
+
"id": 385,
|
3514
3836
|
"name": "value",
|
3515
3837
|
"kind": 1024,
|
3516
3838
|
"kindString": "Property",
|
@@ -3522,7 +3844,7 @@
|
|
3522
3844
|
},
|
3523
3845
|
"type": {
|
3524
3846
|
"type": "reference",
|
3525
|
-
"id":
|
3847
|
+
"id": 371,
|
3526
3848
|
"name": "ListboxValue"
|
3527
3849
|
}
|
3528
3850
|
}
|
@@ -3531,7 +3853,7 @@
|
|
3531
3853
|
"ListboxTexts": {
|
3532
3854
|
"props": [
|
3533
3855
|
{
|
3534
|
-
"id":
|
3856
|
+
"id": 376,
|
3535
3857
|
"name": "allOption",
|
3536
3858
|
"kind": 1024,
|
3537
3859
|
"kindString": "Property",
|
@@ -3545,7 +3867,7 @@
|
|
3545
3867
|
}
|
3546
3868
|
},
|
3547
3869
|
{
|
3548
|
-
"id":
|
3870
|
+
"id": 374,
|
3549
3871
|
"name": "empty",
|
3550
3872
|
"kind": 1024,
|
3551
3873
|
"kindString": "Property",
|
@@ -3559,7 +3881,7 @@
|
|
3559
3881
|
}
|
3560
3882
|
},
|
3561
3883
|
{
|
3562
|
-
"id":
|
3884
|
+
"id": 375,
|
3563
3885
|
"name": "loading",
|
3564
3886
|
"kind": 1024,
|
3565
3887
|
"kindString": "Property",
|
@@ -3578,7 +3900,7 @@
|
|
3578
3900
|
"Localization": {
|
3579
3901
|
"props": [
|
3580
3902
|
{
|
3581
|
-
"id":
|
3903
|
+
"id": 616,
|
3582
3904
|
"name": "formatting",
|
3583
3905
|
"kind": 1024,
|
3584
3906
|
"kindString": "Property",
|
@@ -3589,14 +3911,14 @@
|
|
3589
3911
|
"type": {
|
3590
3912
|
"type": "reflection",
|
3591
3913
|
"declaration": {
|
3592
|
-
"id":
|
3914
|
+
"id": 617,
|
3593
3915
|
"name": "__type",
|
3594
3916
|
"kind": 65536,
|
3595
3917
|
"kindString": "Type literal",
|
3596
3918
|
"flags": {},
|
3597
3919
|
"children": [
|
3598
3920
|
{
|
3599
|
-
"id":
|
3921
|
+
"id": 618,
|
3600
3922
|
"name": "date",
|
3601
3923
|
"kind": 1024,
|
3602
3924
|
"kindString": "Property",
|
@@ -3615,7 +3937,7 @@
|
|
3615
3937
|
"title": "Properties",
|
3616
3938
|
"kind": 1024,
|
3617
3939
|
"children": [
|
3618
|
-
|
3940
|
+
618
|
3619
3941
|
]
|
3620
3942
|
}
|
3621
3943
|
]
|
@@ -3623,7 +3945,7 @@
|
|
3623
3945
|
}
|
3624
3946
|
},
|
3625
3947
|
{
|
3626
|
-
"id":
|
3948
|
+
"id": 614,
|
3627
3949
|
"name": "locale",
|
3628
3950
|
"kind": 1024,
|
3629
3951
|
"kindString": "Property",
|
@@ -3638,7 +3960,7 @@
|
|
3638
3960
|
}
|
3639
3961
|
},
|
3640
3962
|
{
|
3641
|
-
"id":
|
3963
|
+
"id": 615,
|
3642
3964
|
"name": "texts",
|
3643
3965
|
"kind": 1024,
|
3644
3966
|
"kindString": "Property",
|
@@ -3648,7 +3970,7 @@
|
|
3648
3970
|
},
|
3649
3971
|
"type": {
|
3650
3972
|
"type": "reference",
|
3651
|
-
"id":
|
3973
|
+
"id": 599,
|
3652
3974
|
"name": "LocalizationTexts"
|
3653
3975
|
}
|
3654
3976
|
}
|
@@ -3657,7 +3979,7 @@
|
|
3657
3979
|
"LocalizationTexts": {
|
3658
3980
|
"props": [
|
3659
3981
|
{
|
3660
|
-
"id":
|
3982
|
+
"id": 601,
|
3661
3983
|
"name": "calendar",
|
3662
3984
|
"kind": 1024,
|
3663
3985
|
"kindString": "Property",
|
@@ -3667,12 +3989,12 @@
|
|
3667
3989
|
},
|
3668
3990
|
"type": {
|
3669
3991
|
"type": "reference",
|
3670
|
-
"id":
|
3992
|
+
"id": 128,
|
3671
3993
|
"name": "CalendarTexts"
|
3672
3994
|
}
|
3673
3995
|
},
|
3674
3996
|
{
|
3675
|
-
"id":
|
3997
|
+
"id": 602,
|
3676
3998
|
"name": "datepicker",
|
3677
3999
|
"kind": 1024,
|
3678
4000
|
"kindString": "Property",
|
@@ -3682,12 +4004,12 @@
|
|
3682
4004
|
},
|
3683
4005
|
"type": {
|
3684
4006
|
"type": "reference",
|
3685
|
-
"id":
|
4007
|
+
"id": 179,
|
3686
4008
|
"name": "DatepickerTexts"
|
3687
4009
|
}
|
3688
4010
|
},
|
3689
4011
|
{
|
3690
|
-
"id":
|
4012
|
+
"id": 605,
|
3691
4013
|
"name": "dialog",
|
3692
4014
|
"kind": 1024,
|
3693
4015
|
"kindString": "Property",
|
@@ -3697,12 +4019,12 @@
|
|
3697
4019
|
},
|
3698
4020
|
"type": {
|
3699
4021
|
"type": "reference",
|
3700
|
-
"id":
|
4022
|
+
"id": 224,
|
3701
4023
|
"name": "DialogTexts"
|
3702
4024
|
}
|
3703
4025
|
},
|
3704
4026
|
{
|
3705
|
-
"id":
|
4027
|
+
"id": 603,
|
3706
4028
|
"name": "hanger",
|
3707
4029
|
"kind": 1024,
|
3708
4030
|
"kindString": "Property",
|
@@ -3712,12 +4034,12 @@
|
|
3712
4034
|
},
|
3713
4035
|
"type": {
|
3714
4036
|
"type": "reference",
|
3715
|
-
"id":
|
4037
|
+
"id": 269,
|
3716
4038
|
"name": "HangerTexts"
|
3717
4039
|
}
|
3718
4040
|
},
|
3719
4041
|
{
|
3720
|
-
"id":
|
4042
|
+
"id": 604,
|
3721
4043
|
"name": "listbox",
|
3722
4044
|
"kind": 1024,
|
3723
4045
|
"kindString": "Property",
|
@@ -3727,12 +4049,12 @@
|
|
3727
4049
|
},
|
3728
4050
|
"type": {
|
3729
4051
|
"type": "reference",
|
3730
|
-
"id":
|
4052
|
+
"id": 372,
|
3731
4053
|
"name": "ListboxTexts"
|
3732
4054
|
}
|
3733
4055
|
},
|
3734
4056
|
{
|
3735
|
-
"id":
|
4057
|
+
"id": 606,
|
3736
4058
|
"name": "pagination",
|
3737
4059
|
"kind": 1024,
|
3738
4060
|
"kindString": "Property",
|
@@ -3742,12 +4064,12 @@
|
|
3742
4064
|
},
|
3743
4065
|
"type": {
|
3744
4066
|
"type": "reference",
|
3745
|
-
"id":
|
4067
|
+
"id": 535,
|
3746
4068
|
"name": "PaginationTexts"
|
3747
4069
|
}
|
3748
4070
|
},
|
3749
4071
|
{
|
3750
|
-
"id":
|
4072
|
+
"id": 611,
|
3751
4073
|
"name": "searchInput",
|
3752
4074
|
"kind": 1024,
|
3753
4075
|
"kindString": "Property",
|
@@ -3757,12 +4079,12 @@
|
|
3757
4079
|
},
|
3758
4080
|
"type": {
|
3759
4081
|
"type": "reference",
|
3760
|
-
"id":
|
4082
|
+
"id": 345,
|
3761
4083
|
"name": "SearchInputTexts"
|
3762
4084
|
}
|
3763
4085
|
},
|
3764
4086
|
{
|
3765
|
-
"id":
|
4087
|
+
"id": 608,
|
3766
4088
|
"name": "select",
|
3767
4089
|
"kind": 1024,
|
3768
4090
|
"kindString": "Property",
|
@@ -3772,12 +4094,12 @@
|
|
3772
4094
|
},
|
3773
4095
|
"type": {
|
3774
4096
|
"type": "reference",
|
3775
|
-
"id":
|
4097
|
+
"id": 733,
|
3776
4098
|
"name": "SelectTexts"
|
3777
4099
|
}
|
3778
4100
|
},
|
3779
4101
|
{
|
3780
|
-
"id":
|
4102
|
+
"id": 607,
|
3781
4103
|
"name": "table",
|
3782
4104
|
"kind": 1024,
|
3783
4105
|
"kindString": "Property",
|
@@ -3787,12 +4109,12 @@
|
|
3787
4109
|
},
|
3788
4110
|
"type": {
|
3789
4111
|
"type": "reference",
|
3790
|
-
"id":
|
4112
|
+
"id": 926,
|
3791
4113
|
"name": "TableTexts"
|
3792
4114
|
}
|
3793
4115
|
},
|
3794
4116
|
{
|
3795
|
-
"id":
|
4117
|
+
"id": 609,
|
3796
4118
|
"name": "toasts",
|
3797
4119
|
"kind": 1024,
|
3798
4120
|
"kindString": "Property",
|
@@ -3806,7 +4128,7 @@
|
|
3806
4128
|
}
|
3807
4129
|
},
|
3808
4130
|
{
|
3809
|
-
"id":
|
4131
|
+
"id": 610,
|
3810
4132
|
"name": "tour",
|
3811
4133
|
"kind": 1024,
|
3812
4134
|
"kindString": "Property",
|
@@ -3816,7 +4138,7 @@
|
|
3816
4138
|
},
|
3817
4139
|
"type": {
|
3818
4140
|
"type": "reference",
|
3819
|
-
"id":
|
4141
|
+
"id": 1057,
|
3820
4142
|
"name": "TourTexts"
|
3821
4143
|
}
|
3822
4144
|
}
|
@@ -3825,7 +4147,7 @@
|
|
3825
4147
|
"MenuProps": {
|
3826
4148
|
"props": [
|
3827
4149
|
{
|
3828
|
-
"id":
|
4150
|
+
"id": 406,
|
3829
4151
|
"name": "children",
|
3830
4152
|
"kind": 1024,
|
3831
4153
|
"kindString": "Property",
|
@@ -3838,7 +4160,7 @@
|
|
3838
4160
|
}
|
3839
4161
|
},
|
3840
4162
|
{
|
3841
|
-
"id":
|
4163
|
+
"id": 407,
|
3842
4164
|
"name": "id",
|
3843
4165
|
"kind": 1024,
|
3844
4166
|
"kindString": "Property",
|
@@ -3849,6 +4171,24 @@
|
|
3849
4171
|
"type": "intrinsic",
|
3850
4172
|
"name": "string"
|
3851
4173
|
}
|
4174
|
+
},
|
4175
|
+
{
|
4176
|
+
"id": 408,
|
4177
|
+
"name": "trigger",
|
4178
|
+
"kind": 1024,
|
4179
|
+
"kindString": "Property",
|
4180
|
+
"flags": {
|
4181
|
+
"isOptional": true
|
4182
|
+
},
|
4183
|
+
"comment": {
|
4184
|
+
"shortText": "A trigger to be used for the menu, should not be set if `children` already contains a trigger"
|
4185
|
+
},
|
4186
|
+
"type": {
|
4187
|
+
"type": "reference",
|
4188
|
+
"qualifiedName": "global.JSX.Element",
|
4189
|
+
"package": "@types/react",
|
4190
|
+
"name": "JSX.Element"
|
4191
|
+
}
|
3852
4192
|
}
|
3853
4193
|
]
|
3854
4194
|
},
|
@@ -3858,7 +4198,7 @@
|
|
3858
4198
|
],
|
3859
4199
|
"props": [
|
3860
4200
|
{
|
3861
|
-
"id":
|
4201
|
+
"id": 506,
|
3862
4202
|
"name": "active",
|
3863
4203
|
"kind": 1024,
|
3864
4204
|
"kindString": "Property",
|
@@ -3874,7 +4214,7 @@
|
|
3874
4214
|
}
|
3875
4215
|
},
|
3876
4216
|
{
|
3877
|
-
"id":
|
4217
|
+
"id": 507,
|
3878
4218
|
"name": "onDrop",
|
3879
4219
|
"kind": 1024,
|
3880
4220
|
"kindString": "Property",
|
@@ -3892,7 +4232,7 @@
|
|
3892
4232
|
}
|
3893
4233
|
},
|
3894
4234
|
{
|
3895
|
-
"id":
|
4235
|
+
"id": 508,
|
3896
4236
|
"name": "postfix",
|
3897
4237
|
"kind": 1024,
|
3898
4238
|
"kindString": "Property",
|
@@ -3910,7 +4250,7 @@
|
|
3910
4250
|
}
|
3911
4251
|
},
|
3912
4252
|
{
|
3913
|
-
"id":
|
4253
|
+
"id": 509,
|
3914
4254
|
"name": "prefix",
|
3915
4255
|
"kind": 1024,
|
3916
4256
|
"kindString": "Property",
|
@@ -3928,7 +4268,7 @@
|
|
3928
4268
|
}
|
3929
4269
|
},
|
3930
4270
|
{
|
3931
|
-
"id":
|
4271
|
+
"id": 510,
|
3932
4272
|
"name": "target",
|
3933
4273
|
"kind": 1024,
|
3934
4274
|
"kindString": "Property",
|
@@ -3963,7 +4303,7 @@
|
|
3963
4303
|
],
|
3964
4304
|
"props": [
|
3965
4305
|
{
|
3966
|
-
"id":
|
4306
|
+
"id": 548,
|
3967
4307
|
"name": "dangerouslyHijackGlobalKeyboardNavigation",
|
3968
4308
|
"kind": 1024,
|
3969
4309
|
"kindString": "Property",
|
@@ -3979,7 +4319,7 @@
|
|
3979
4319
|
}
|
3980
4320
|
},
|
3981
4321
|
{
|
3982
|
-
"id":
|
4322
|
+
"id": 543,
|
3983
4323
|
"name": "length",
|
3984
4324
|
"kind": 1024,
|
3985
4325
|
"kindString": "Property",
|
@@ -3993,7 +4333,7 @@
|
|
3993
4333
|
}
|
3994
4334
|
},
|
3995
4335
|
{
|
3996
|
-
"id":
|
4336
|
+
"id": 544,
|
3997
4337
|
"name": "pageSizes",
|
3998
4338
|
"kind": 1024,
|
3999
4339
|
"kindString": "Property",
|
@@ -4012,7 +4352,7 @@
|
|
4012
4352
|
}
|
4013
4353
|
},
|
4014
4354
|
{
|
4015
|
-
"id":
|
4355
|
+
"id": 545,
|
4016
4356
|
"name": "showPageControls",
|
4017
4357
|
"kind": 1024,
|
4018
4358
|
"kindString": "Property",
|
@@ -4028,7 +4368,7 @@
|
|
4028
4368
|
}
|
4029
4369
|
},
|
4030
4370
|
{
|
4031
|
-
"id":
|
4371
|
+
"id": 546,
|
4032
4372
|
"name": "showPageNumbers",
|
4033
4373
|
"kind": 1024,
|
4034
4374
|
"kindString": "Property",
|
@@ -4044,7 +4384,7 @@
|
|
4044
4384
|
}
|
4045
4385
|
},
|
4046
4386
|
{
|
4047
|
-
"id":
|
4387
|
+
"id": 547,
|
4048
4388
|
"name": "showPageSize",
|
4049
4389
|
"kind": 1024,
|
4050
4390
|
"kindString": "Property",
|
@@ -4064,7 +4404,7 @@
|
|
4064
4404
|
"PaginationTexts": {
|
4065
4405
|
"props": [
|
4066
4406
|
{
|
4067
|
-
"id":
|
4407
|
+
"id": 540,
|
4068
4408
|
"name": "actions",
|
4069
4409
|
"kind": 1024,
|
4070
4410
|
"kindString": "Property",
|
@@ -4074,12 +4414,12 @@
|
|
4074
4414
|
},
|
4075
4415
|
"type": {
|
4076
4416
|
"type": "reference",
|
4077
|
-
"id":
|
4417
|
+
"id": 524,
|
4078
4418
|
"name": "PaginationTextsActions"
|
4079
4419
|
}
|
4080
4420
|
},
|
4081
4421
|
{
|
4082
|
-
"id":
|
4422
|
+
"id": 537,
|
4083
4423
|
"name": "label",
|
4084
4424
|
"kind": 1024,
|
4085
4425
|
"kindString": "Property",
|
@@ -4093,7 +4433,7 @@
|
|
4093
4433
|
}
|
4094
4434
|
},
|
4095
4435
|
{
|
4096
|
-
"id":
|
4436
|
+
"id": 538,
|
4097
4437
|
"name": "pageSize",
|
4098
4438
|
"kind": 1024,
|
4099
4439
|
"kindString": "Property",
|
@@ -4107,7 +4447,7 @@
|
|
4107
4447
|
}
|
4108
4448
|
},
|
4109
4449
|
{
|
4110
|
-
"id":
|
4450
|
+
"id": 539,
|
4111
4451
|
"name": "showingXofYofTotal",
|
4112
4452
|
"kind": 1024,
|
4113
4453
|
"kindString": "Property",
|
@@ -4125,7 +4465,7 @@
|
|
4125
4465
|
"PaginationTextsActions": {
|
4126
4466
|
"props": [
|
4127
4467
|
{
|
4128
|
-
"id":
|
4468
|
+
"id": 526,
|
4129
4469
|
"name": "firstPage",
|
4130
4470
|
"kind": 1024,
|
4131
4471
|
"kindString": "Property",
|
@@ -4139,7 +4479,7 @@
|
|
4139
4479
|
}
|
4140
4480
|
},
|
4141
4481
|
{
|
4142
|
-
"id":
|
4482
|
+
"id": 527,
|
4143
4483
|
"name": "firstPageWithShortcut",
|
4144
4484
|
"kind": 1024,
|
4145
4485
|
"kindString": "Property",
|
@@ -4153,7 +4493,7 @@
|
|
4153
4493
|
}
|
4154
4494
|
},
|
4155
4495
|
{
|
4156
|
-
"id":
|
4496
|
+
"id": 532,
|
4157
4497
|
"name": "lastPage",
|
4158
4498
|
"kind": 1024,
|
4159
4499
|
"kindString": "Property",
|
@@ -4167,7 +4507,7 @@
|
|
4167
4507
|
}
|
4168
4508
|
},
|
4169
4509
|
{
|
4170
|
-
"id":
|
4510
|
+
"id": 533,
|
4171
4511
|
"name": "lastPageWithShortcut",
|
4172
4512
|
"kind": 1024,
|
4173
4513
|
"kindString": "Property",
|
@@ -4181,7 +4521,7 @@
|
|
4181
4521
|
}
|
4182
4522
|
},
|
4183
4523
|
{
|
4184
|
-
"id":
|
4524
|
+
"id": 528,
|
4185
4525
|
"name": "nextPage",
|
4186
4526
|
"kind": 1024,
|
4187
4527
|
"kindString": "Property",
|
@@ -4195,7 +4535,7 @@
|
|
4195
4535
|
}
|
4196
4536
|
},
|
4197
4537
|
{
|
4198
|
-
"id":
|
4538
|
+
"id": 529,
|
4199
4539
|
"name": "nextPageWithShortcut",
|
4200
4540
|
"kind": 1024,
|
4201
4541
|
"kindString": "Property",
|
@@ -4209,7 +4549,7 @@
|
|
4209
4549
|
}
|
4210
4550
|
},
|
4211
4551
|
{
|
4212
|
-
"id":
|
4552
|
+
"id": 534,
|
4213
4553
|
"name": "pageX",
|
4214
4554
|
"kind": 1024,
|
4215
4555
|
"kindString": "Property",
|
@@ -4223,7 +4563,7 @@
|
|
4223
4563
|
}
|
4224
4564
|
},
|
4225
4565
|
{
|
4226
|
-
"id":
|
4566
|
+
"id": 530,
|
4227
4567
|
"name": "previousPage",
|
4228
4568
|
"kind": 1024,
|
4229
4569
|
"kindString": "Property",
|
@@ -4237,7 +4577,7 @@
|
|
4237
4577
|
}
|
4238
4578
|
},
|
4239
4579
|
{
|
4240
|
-
"id":
|
4580
|
+
"id": 531,
|
4241
4581
|
"name": "previousPageWithShortcut",
|
4242
4582
|
"kind": 1024,
|
4243
4583
|
"kindString": "Property",
|
@@ -4259,7 +4599,7 @@
|
|
4259
4599
|
],
|
4260
4600
|
"props": [
|
4261
4601
|
{
|
4262
|
-
"id":
|
4602
|
+
"id": 578,
|
4263
4603
|
"name": "children",
|
4264
4604
|
"kind": 1024,
|
4265
4605
|
"kindString": "Property",
|
@@ -4276,28 +4616,28 @@
|
|
4276
4616
|
{
|
4277
4617
|
"type": "reflection",
|
4278
4618
|
"declaration": {
|
4279
|
-
"id":
|
4619
|
+
"id": 579,
|
4280
4620
|
"name": "__type",
|
4281
4621
|
"kind": 65536,
|
4282
4622
|
"kindString": "Type literal",
|
4283
4623
|
"flags": {},
|
4284
4624
|
"signatures": [
|
4285
4625
|
{
|
4286
|
-
"id":
|
4626
|
+
"id": 580,
|
4287
4627
|
"name": "__type",
|
4288
4628
|
"kind": 4096,
|
4289
4629
|
"kindString": "Call signature",
|
4290
4630
|
"flags": {},
|
4291
4631
|
"parameters": [
|
4292
4632
|
{
|
4293
|
-
"id":
|
4633
|
+
"id": 581,
|
4294
4634
|
"name": "props",
|
4295
4635
|
"kind": 32768,
|
4296
4636
|
"kindString": "Parameter",
|
4297
4637
|
"flags": {},
|
4298
4638
|
"type": {
|
4299
4639
|
"type": "reference",
|
4300
|
-
"id":
|
4640
|
+
"id": 572,
|
4301
4641
|
"name": "PopoverContentRenderProps"
|
4302
4642
|
}
|
4303
4643
|
}
|
@@ -4316,7 +4656,7 @@
|
|
4316
4656
|
}
|
4317
4657
|
},
|
4318
4658
|
{
|
4319
|
-
"id":
|
4659
|
+
"id": 582,
|
4320
4660
|
"name": "placement",
|
4321
4661
|
"kind": 1024,
|
4322
4662
|
"kindString": "Property",
|
@@ -4337,14 +4677,14 @@
|
|
4337
4677
|
"PopoverContentRenderProps": {
|
4338
4678
|
"props": [
|
4339
4679
|
{
|
4340
|
-
"id":
|
4680
|
+
"id": 574,
|
4341
4681
|
"name": "close",
|
4342
4682
|
"kind": 2048,
|
4343
4683
|
"kindString": "Method",
|
4344
4684
|
"flags": {},
|
4345
4685
|
"signatures": [
|
4346
4686
|
{
|
4347
|
-
"id":
|
4687
|
+
"id": 575,
|
4348
4688
|
"name": "close",
|
4349
4689
|
"kind": 4096,
|
4350
4690
|
"kindString": "Call signature",
|
@@ -4366,7 +4706,7 @@
|
|
4366
4706
|
],
|
4367
4707
|
"props": [
|
4368
4708
|
{
|
4369
|
-
"id":
|
4709
|
+
"id": 595,
|
4370
4710
|
"name": "duration",
|
4371
4711
|
"kind": 1024,
|
4372
4712
|
"kindString": "Property",
|
@@ -4386,7 +4726,7 @@
|
|
4386
4726
|
"ProviderProps": {
|
4387
4727
|
"props": [
|
4388
4728
|
{
|
4389
|
-
"id":
|
4729
|
+
"id": 696,
|
4390
4730
|
"name": "children",
|
4391
4731
|
"kind": 1024,
|
4392
4732
|
"kindString": "Property",
|
@@ -4402,7 +4742,7 @@
|
|
4402
4742
|
}
|
4403
4743
|
},
|
4404
4744
|
{
|
4405
|
-
"id":
|
4745
|
+
"id": 697,
|
4406
4746
|
"name": "localization",
|
4407
4747
|
"kind": 1024,
|
4408
4748
|
"kindString": "Property",
|
@@ -4414,7 +4754,7 @@
|
|
4414
4754
|
},
|
4415
4755
|
"type": {
|
4416
4756
|
"type": "reference",
|
4417
|
-
"id":
|
4757
|
+
"id": 612,
|
4418
4758
|
"name": "Localization"
|
4419
4759
|
}
|
4420
4760
|
}
|
@@ -4426,7 +4766,7 @@
|
|
4426
4766
|
],
|
4427
4767
|
"props": [
|
4428
4768
|
{
|
4429
|
-
"id":
|
4769
|
+
"id": 715,
|
4430
4770
|
"name": "children",
|
4431
4771
|
"kind": 1024,
|
4432
4772
|
"kindString": "Property",
|
@@ -4442,7 +4782,7 @@
|
|
4442
4782
|
}
|
4443
4783
|
},
|
4444
4784
|
{
|
4445
|
-
"id":
|
4785
|
+
"id": 716,
|
4446
4786
|
"name": "disabled",
|
4447
4787
|
"kind": 1024,
|
4448
4788
|
"kindString": "Property",
|
@@ -4455,7 +4795,7 @@
|
|
4455
4795
|
}
|
4456
4796
|
},
|
4457
4797
|
{
|
4458
|
-
"id":
|
4798
|
+
"id": 717,
|
4459
4799
|
"name": "value",
|
4460
4800
|
"kind": 1024,
|
4461
4801
|
"kindString": "Property",
|
@@ -4465,7 +4805,7 @@
|
|
4465
4805
|
},
|
4466
4806
|
"type": {
|
4467
4807
|
"type": "reference",
|
4468
|
-
"id":
|
4808
|
+
"id": 705,
|
4469
4809
|
"name": "RadioGroupItemValue"
|
4470
4810
|
}
|
4471
4811
|
}
|
@@ -4490,7 +4830,7 @@
|
|
4490
4830
|
],
|
4491
4831
|
"props": [
|
4492
4832
|
{
|
4493
|
-
"id":
|
4833
|
+
"id": 770,
|
4494
4834
|
"name": "subRows",
|
4495
4835
|
"kind": 1024,
|
4496
4836
|
"kindString": "Property",
|
@@ -4501,11 +4841,11 @@
|
|
4501
4841
|
"type": "array",
|
4502
4842
|
"elementType": {
|
4503
4843
|
"type": "reference",
|
4504
|
-
"id":
|
4844
|
+
"id": 768,
|
4505
4845
|
"typeArguments": [
|
4506
4846
|
{
|
4507
4847
|
"type": "reference",
|
4508
|
-
"id":
|
4848
|
+
"id": 772,
|
4509
4849
|
"name": "TRow"
|
4510
4850
|
}
|
4511
4851
|
],
|
@@ -4575,7 +4915,7 @@
|
|
4575
4915
|
],
|
4576
4916
|
"props": [
|
4577
4917
|
{
|
4578
|
-
"id":
|
4918
|
+
"id": 350,
|
4579
4919
|
"name": "onSearch",
|
4580
4920
|
"kind": 2048,
|
4581
4921
|
"kindString": "Method",
|
@@ -4584,7 +4924,7 @@
|
|
4584
4924
|
},
|
4585
4925
|
"signatures": [
|
4586
4926
|
{
|
4587
|
-
"id":
|
4927
|
+
"id": 351,
|
4588
4928
|
"name": "onSearch",
|
4589
4929
|
"kind": 4096,
|
4590
4930
|
"kindString": "Call signature",
|
@@ -4594,7 +4934,7 @@
|
|
4594
4934
|
},
|
4595
4935
|
"parameters": [
|
4596
4936
|
{
|
4597
|
-
"id":
|
4937
|
+
"id": 352,
|
4598
4938
|
"name": "value",
|
4599
4939
|
"kind": 32768,
|
4600
4940
|
"kindString": "Parameter",
|
@@ -4641,7 +4981,7 @@
|
|
4641
4981
|
"SearchInputTexts": {
|
4642
4982
|
"props": [
|
4643
4983
|
{
|
4644
|
-
"id":
|
4984
|
+
"id": 347,
|
4645
4985
|
"name": "inputLabel",
|
4646
4986
|
"kind": 1024,
|
4647
4987
|
"kindString": "Property",
|
@@ -4662,7 +5002,7 @@
|
|
4662
5002
|
],
|
4663
5003
|
"props": [
|
4664
5004
|
{
|
4665
|
-
"id":
|
5005
|
+
"id": 741,
|
4666
5006
|
"name": "editable",
|
4667
5007
|
"kind": 1024,
|
4668
5008
|
"kindString": "Property",
|
@@ -4682,7 +5022,7 @@
|
|
4682
5022
|
"SelectTexts": {
|
4683
5023
|
"props": [
|
4684
5024
|
{
|
4685
|
-
"id":
|
5025
|
+
"id": 735,
|
4686
5026
|
"name": "allOptionsSelected",
|
4687
5027
|
"kind": 1024,
|
4688
5028
|
"kindString": "Property",
|
@@ -4722,7 +5062,7 @@
|
|
4722
5062
|
"SortRule": {
|
4723
5063
|
"props": [
|
4724
5064
|
{
|
4725
|
-
"id":
|
5065
|
+
"id": 821,
|
4726
5066
|
"name": "accessor",
|
4727
5067
|
"kind": 1024,
|
4728
5068
|
"kindString": "Property",
|
@@ -4735,7 +5075,7 @@
|
|
4735
5075
|
"typeArguments": [
|
4736
5076
|
{
|
4737
5077
|
"type": "reference",
|
4738
|
-
"id":
|
5078
|
+
"id": 823,
|
4739
5079
|
"name": "T"
|
4740
5080
|
}
|
4741
5081
|
],
|
@@ -4745,7 +5085,7 @@
|
|
4745
5085
|
}
|
4746
5086
|
},
|
4747
5087
|
{
|
4748
|
-
"id":
|
5088
|
+
"id": 822,
|
4749
5089
|
"name": "desc",
|
4750
5090
|
"kind": 1024,
|
4751
5091
|
"kindString": "Property",
|
@@ -4790,7 +5130,7 @@
|
|
4790
5130
|
],
|
4791
5131
|
"props": [
|
4792
5132
|
{
|
4793
|
-
"id":
|
5133
|
+
"id": 757,
|
4794
5134
|
"name": "delay",
|
4795
5135
|
"kind": 1024,
|
4796
5136
|
"kindString": "Property",
|
@@ -4806,7 +5146,7 @@
|
|
4806
5146
|
}
|
4807
5147
|
},
|
4808
5148
|
{
|
4809
|
-
"id":
|
5149
|
+
"id": 758,
|
4810
5150
|
"name": "label",
|
4811
5151
|
"kind": 1024,
|
4812
5152
|
"kindString": "Property",
|
@@ -4833,7 +5173,7 @@
|
|
4833
5173
|
],
|
4834
5174
|
"props": [
|
4835
5175
|
{
|
4836
|
-
"id":
|
5176
|
+
"id": 998,
|
4837
5177
|
"name": "id",
|
4838
5178
|
"kind": 1024,
|
4839
5179
|
"kindString": "Property",
|
@@ -4855,7 +5195,7 @@
|
|
4855
5195
|
],
|
4856
5196
|
"props": [
|
4857
5197
|
{
|
4858
|
-
"id":
|
5198
|
+
"id": 995,
|
4859
5199
|
"name": "disabled",
|
4860
5200
|
"kind": 1024,
|
4861
5201
|
"kindString": "Property",
|
@@ -4871,7 +5211,7 @@
|
|
4871
5211
|
}
|
4872
5212
|
},
|
4873
5213
|
{
|
4874
|
-
"id":
|
5214
|
+
"id": 994,
|
4875
5215
|
"name": "id",
|
4876
5216
|
"kind": 1024,
|
4877
5217
|
"kindString": "Property",
|
@@ -4889,7 +5229,7 @@
|
|
4889
5229
|
"TableCell": {
|
4890
5230
|
"props": [
|
4891
5231
|
{
|
4892
|
-
"id":
|
5232
|
+
"id": 827,
|
4893
5233
|
"name": "accessor",
|
4894
5234
|
"kind": 1024,
|
4895
5235
|
"kindString": "Property",
|
@@ -4900,7 +5240,7 @@
|
|
4900
5240
|
}
|
4901
5241
|
},
|
4902
5242
|
{
|
4903
|
-
"id":
|
5243
|
+
"id": 828,
|
4904
5244
|
"name": "row",
|
4905
5245
|
"kind": 1024,
|
4906
5246
|
"kindString": "Property",
|
@@ -4910,11 +5250,11 @@
|
|
4910
5250
|
},
|
4911
5251
|
"type": {
|
4912
5252
|
"type": "reference",
|
4913
|
-
"id":
|
5253
|
+
"id": 901,
|
4914
5254
|
"typeArguments": [
|
4915
5255
|
{
|
4916
5256
|
"type": "reference",
|
4917
|
-
"id":
|
5257
|
+
"id": 830,
|
4918
5258
|
"name": "TRow"
|
4919
5259
|
}
|
4920
5260
|
],
|
@@ -4922,7 +5262,7 @@
|
|
4922
5262
|
}
|
4923
5263
|
},
|
4924
5264
|
{
|
4925
|
-
"id":
|
5265
|
+
"id": 829,
|
4926
5266
|
"name": "value",
|
4927
5267
|
"kind": 1024,
|
4928
5268
|
"kindString": "Property",
|
@@ -4940,7 +5280,7 @@
|
|
4940
5280
|
"TableColumnProps": {
|
4941
5281
|
"props": [
|
4942
5282
|
{
|
4943
|
-
"id":
|
5283
|
+
"id": 833,
|
4944
5284
|
"name": "accessor",
|
4945
5285
|
"kind": 1024,
|
4946
5286
|
"kindString": "Property",
|
@@ -4954,7 +5294,7 @@
|
|
4954
5294
|
}
|
4955
5295
|
},
|
4956
5296
|
{
|
4957
|
-
"id":
|
5297
|
+
"id": 834,
|
4958
5298
|
"name": "align",
|
4959
5299
|
"kind": 1024,
|
4960
5300
|
"kindString": "Property",
|
@@ -4983,7 +5323,7 @@
|
|
4983
5323
|
}
|
4984
5324
|
},
|
4985
5325
|
{
|
4986
|
-
"id":
|
5326
|
+
"id": 835,
|
4987
5327
|
"name": "className",
|
4988
5328
|
"kind": 1024,
|
4989
5329
|
"kindString": "Property",
|
@@ -4999,7 +5339,7 @@
|
|
4999
5339
|
}
|
5000
5340
|
},
|
5001
5341
|
{
|
5002
|
-
"id":
|
5342
|
+
"id": 839,
|
5003
5343
|
"name": "disableSorting",
|
5004
5344
|
"kind": 1024,
|
5005
5345
|
"kindString": "Property",
|
@@ -5015,7 +5355,7 @@
|
|
5015
5355
|
}
|
5016
5356
|
},
|
5017
5357
|
{
|
5018
|
-
"id":
|
5358
|
+
"id": 843,
|
5019
5359
|
"name": "flex",
|
5020
5360
|
"kind": 1024,
|
5021
5361
|
"kindString": "Property",
|
@@ -5035,28 +5375,28 @@
|
|
5035
5375
|
{
|
5036
5376
|
"type": "reflection",
|
5037
5377
|
"declaration": {
|
5038
|
-
"id":
|
5378
|
+
"id": 844,
|
5039
5379
|
"name": "__type",
|
5040
5380
|
"kind": 65536,
|
5041
5381
|
"kindString": "Type literal",
|
5042
5382
|
"flags": {},
|
5043
5383
|
"signatures": [
|
5044
5384
|
{
|
5045
|
-
"id":
|
5385
|
+
"id": 845,
|
5046
5386
|
"name": "__type",
|
5047
5387
|
"kind": 4096,
|
5048
5388
|
"kindString": "Call signature",
|
5049
5389
|
"flags": {},
|
5050
5390
|
"parameters": [
|
5051
5391
|
{
|
5052
|
-
"id":
|
5392
|
+
"id": 846,
|
5053
5393
|
"name": "row",
|
5054
5394
|
"kind": 32768,
|
5055
5395
|
"kindString": "Parameter",
|
5056
5396
|
"flags": {},
|
5057
5397
|
"type": {
|
5058
5398
|
"type": "reference",
|
5059
|
-
"id":
|
5399
|
+
"id": 853,
|
5060
5400
|
"name": "TRow"
|
5061
5401
|
}
|
5062
5402
|
}
|
@@ -5073,7 +5413,7 @@
|
|
5073
5413
|
}
|
5074
5414
|
},
|
5075
5415
|
{
|
5076
|
-
"id":
|
5416
|
+
"id": 847,
|
5077
5417
|
"name": "headRenderer",
|
5078
5418
|
"kind": 1024,
|
5079
5419
|
"kindString": "Property",
|
@@ -5091,7 +5431,7 @@
|
|
5091
5431
|
}
|
5092
5432
|
},
|
5093
5433
|
{
|
5094
|
-
"id":
|
5434
|
+
"id": 848,
|
5095
5435
|
"name": "hidden",
|
5096
5436
|
"kind": 1024,
|
5097
5437
|
"kindString": "Property",
|
@@ -5107,7 +5447,7 @@
|
|
5107
5447
|
}
|
5108
5448
|
},
|
5109
5449
|
{
|
5110
|
-
"id":
|
5450
|
+
"id": 849,
|
5111
5451
|
"name": "hiddenOnSubRows",
|
5112
5452
|
"kind": 1024,
|
5113
5453
|
"kindString": "Property",
|
@@ -5123,7 +5463,7 @@
|
|
5123
5463
|
}
|
5124
5464
|
},
|
5125
5465
|
{
|
5126
|
-
"id":
|
5466
|
+
"id": 850,
|
5127
5467
|
"name": "sort",
|
5128
5468
|
"kind": 1024,
|
5129
5469
|
"kindString": "Property",
|
@@ -5135,12 +5475,12 @@
|
|
5135
5475
|
},
|
5136
5476
|
"type": {
|
5137
5477
|
"type": "reference",
|
5138
|
-
"id":
|
5478
|
+
"id": 812,
|
5139
5479
|
"name": "SortDirection"
|
5140
5480
|
}
|
5141
5481
|
},
|
5142
5482
|
{
|
5143
|
-
"id":
|
5483
|
+
"id": 851,
|
5144
5484
|
"name": "sortType",
|
5145
5485
|
"kind": 1024,
|
5146
5486
|
"kindString": "Property",
|
@@ -5152,12 +5492,12 @@
|
|
5152
5492
|
},
|
5153
5493
|
"type": {
|
5154
5494
|
"type": "reference",
|
5155
|
-
"id":
|
5495
|
+
"id": 824,
|
5156
5496
|
"name": "SortTypes"
|
5157
5497
|
}
|
5158
5498
|
},
|
5159
5499
|
{
|
5160
|
-
"id":
|
5500
|
+
"id": 852,
|
5161
5501
|
"name": "style",
|
5162
5502
|
"kind": 1024,
|
5163
5503
|
"kindString": "Property",
|
@@ -5173,7 +5513,7 @@
|
|
5173
5513
|
}
|
5174
5514
|
},
|
5175
5515
|
{
|
5176
|
-
"id":
|
5516
|
+
"id": 836,
|
5177
5517
|
"name": "cellRenderer",
|
5178
5518
|
"kind": 2048,
|
5179
5519
|
"kindString": "Method",
|
@@ -5182,7 +5522,7 @@
|
|
5182
5522
|
},
|
5183
5523
|
"signatures": [
|
5184
5524
|
{
|
5185
|
-
"id":
|
5525
|
+
"id": 837,
|
5186
5526
|
"name": "cellRenderer",
|
5187
5527
|
"kind": 4096,
|
5188
5528
|
"kindString": "Call signature",
|
@@ -5192,18 +5532,18 @@
|
|
5192
5532
|
},
|
5193
5533
|
"parameters": [
|
5194
5534
|
{
|
5195
|
-
"id":
|
5535
|
+
"id": 838,
|
5196
5536
|
"name": "cellProps",
|
5197
5537
|
"kind": 32768,
|
5198
5538
|
"kindString": "Parameter",
|
5199
5539
|
"flags": {},
|
5200
5540
|
"type": {
|
5201
5541
|
"type": "reference",
|
5202
|
-
"id":
|
5542
|
+
"id": 825,
|
5203
5543
|
"typeArguments": [
|
5204
5544
|
{
|
5205
5545
|
"type": "reference",
|
5206
|
-
"id":
|
5546
|
+
"id": 853,
|
5207
5547
|
"name": "TRow"
|
5208
5548
|
}
|
5209
5549
|
],
|
@@ -5221,7 +5561,7 @@
|
|
5221
5561
|
]
|
5222
5562
|
},
|
5223
5563
|
{
|
5224
|
-
"id":
|
5564
|
+
"id": 840,
|
5225
5565
|
"name": "editRenderer",
|
5226
5566
|
"kind": 2048,
|
5227
5567
|
"kindString": "Method",
|
@@ -5230,25 +5570,25 @@
|
|
5230
5570
|
},
|
5231
5571
|
"signatures": [
|
5232
5572
|
{
|
5233
|
-
"id":
|
5573
|
+
"id": 841,
|
5234
5574
|
"name": "editRenderer",
|
5235
5575
|
"kind": 4096,
|
5236
5576
|
"kindString": "Call signature",
|
5237
5577
|
"flags": {},
|
5238
5578
|
"parameters": [
|
5239
5579
|
{
|
5240
|
-
"id":
|
5580
|
+
"id": 842,
|
5241
5581
|
"name": "cellProps",
|
5242
5582
|
"kind": 32768,
|
5243
5583
|
"kindString": "Parameter",
|
5244
5584
|
"flags": {},
|
5245
5585
|
"type": {
|
5246
5586
|
"type": "reference",
|
5247
|
-
"id":
|
5587
|
+
"id": 825,
|
5248
5588
|
"typeArguments": [
|
5249
5589
|
{
|
5250
5590
|
"type": "reference",
|
5251
|
-
"id":
|
5591
|
+
"id": 853,
|
5252
5592
|
"name": "TRow"
|
5253
5593
|
}
|
5254
5594
|
],
|
@@ -5270,7 +5610,7 @@
|
|
5270
5610
|
"TableGroupProps": {
|
5271
5611
|
"props": [
|
5272
5612
|
{
|
5273
|
-
"id":
|
5613
|
+
"id": 856,
|
5274
5614
|
"name": "children",
|
5275
5615
|
"kind": 1024,
|
5276
5616
|
"kindString": "Property",
|
@@ -5286,11 +5626,11 @@
|
|
5286
5626
|
"typeArguments": [
|
5287
5627
|
{
|
5288
5628
|
"type": "reference",
|
5289
|
-
"id":
|
5629
|
+
"id": 831,
|
5290
5630
|
"typeArguments": [
|
5291
5631
|
{
|
5292
5632
|
"type": "reference",
|
5293
|
-
"id":
|
5633
|
+
"id": 859,
|
5294
5634
|
"name": "TRow"
|
5295
5635
|
}
|
5296
5636
|
],
|
@@ -5308,11 +5648,11 @@
|
|
5308
5648
|
"typeArguments": [
|
5309
5649
|
{
|
5310
5650
|
"type": "reference",
|
5311
|
-
"id":
|
5651
|
+
"id": 831,
|
5312
5652
|
"typeArguments": [
|
5313
5653
|
{
|
5314
5654
|
"type": "reference",
|
5315
|
-
"id":
|
5655
|
+
"id": 859,
|
5316
5656
|
"name": "TRow"
|
5317
5657
|
}
|
5318
5658
|
],
|
@@ -5328,7 +5668,7 @@
|
|
5328
5668
|
}
|
5329
5669
|
},
|
5330
5670
|
{
|
5331
|
-
"id":
|
5671
|
+
"id": 857,
|
5332
5672
|
"name": "hidden",
|
5333
5673
|
"kind": 1024,
|
5334
5674
|
"kindString": "Property",
|
@@ -5344,7 +5684,7 @@
|
|
5344
5684
|
}
|
5345
5685
|
},
|
5346
5686
|
{
|
5347
|
-
"id":
|
5687
|
+
"id": 858,
|
5348
5688
|
"name": "title",
|
5349
5689
|
"kind": 1024,
|
5350
5690
|
"kindString": "Property",
|
@@ -5365,7 +5705,7 @@
|
|
5365
5705
|
],
|
5366
5706
|
"props": [
|
5367
5707
|
{
|
5368
|
-
"id":
|
5708
|
+
"id": 895,
|
5369
5709
|
"name": "actions",
|
5370
5710
|
"kind": 1024,
|
5371
5711
|
"kindString": "Property",
|
@@ -5379,11 +5719,11 @@
|
|
5379
5719
|
"type": "array",
|
5380
5720
|
"elementType": {
|
5381
5721
|
"type": "reference",
|
5382
|
-
"id":
|
5722
|
+
"id": 808,
|
5383
5723
|
"typeArguments": [
|
5384
5724
|
{
|
5385
5725
|
"type": "reference",
|
5386
|
-
"id":
|
5726
|
+
"id": 900,
|
5387
5727
|
"name": "TRow"
|
5388
5728
|
}
|
5389
5729
|
],
|
@@ -5392,7 +5732,7 @@
|
|
5392
5732
|
}
|
5393
5733
|
},
|
5394
5734
|
{
|
5395
|
-
"id":
|
5735
|
+
"id": 862,
|
5396
5736
|
"name": "autoFocus",
|
5397
5737
|
"kind": 1024,
|
5398
5738
|
"kindString": "Property",
|
@@ -5408,7 +5748,7 @@
|
|
5408
5748
|
}
|
5409
5749
|
},
|
5410
5750
|
{
|
5411
|
-
"id":
|
5751
|
+
"id": 863,
|
5412
5752
|
"name": "children",
|
5413
5753
|
"kind": 1024,
|
5414
5754
|
"kindString": "Property",
|
@@ -5421,7 +5761,7 @@
|
|
5421
5761
|
"typeArguments": [
|
5422
5762
|
{
|
5423
5763
|
"type": "reference",
|
5424
|
-
"id":
|
5764
|
+
"id": 900,
|
5425
5765
|
"name": "TRow"
|
5426
5766
|
}
|
5427
5767
|
],
|
@@ -5429,7 +5769,7 @@
|
|
5429
5769
|
}
|
5430
5770
|
},
|
5431
5771
|
{
|
5432
|
-
"id":
|
5772
|
+
"id": 865,
|
5433
5773
|
"name": "dangerouslyHijackGlobalKeyboardNavigation",
|
5434
5774
|
"kind": 1024,
|
5435
5775
|
"kindString": "Property",
|
@@ -5445,7 +5785,7 @@
|
|
5445
5785
|
}
|
5446
5786
|
},
|
5447
5787
|
{
|
5448
|
-
"id":
|
5788
|
+
"id": 864,
|
5449
5789
|
"name": "data",
|
5450
5790
|
"kind": 1024,
|
5451
5791
|
"kindString": "Property",
|
@@ -5457,11 +5797,11 @@
|
|
5457
5797
|
"type": "array",
|
5458
5798
|
"elementType": {
|
5459
5799
|
"type": "reference",
|
5460
|
-
"id":
|
5800
|
+
"id": 768,
|
5461
5801
|
"typeArguments": [
|
5462
5802
|
{
|
5463
5803
|
"type": "reference",
|
5464
|
-
"id":
|
5804
|
+
"id": 900,
|
5465
5805
|
"name": "TRow"
|
5466
5806
|
}
|
5467
5807
|
],
|
@@ -5470,7 +5810,7 @@
|
|
5470
5810
|
}
|
5471
5811
|
},
|
5472
5812
|
{
|
5473
|
-
"id":
|
5813
|
+
"id": 884,
|
5474
5814
|
"name": "disablePagination",
|
5475
5815
|
"kind": 1024,
|
5476
5816
|
"kindString": "Property",
|
@@ -5483,7 +5823,7 @@
|
|
5483
5823
|
}
|
5484
5824
|
},
|
5485
5825
|
{
|
5486
|
-
"id":
|
5826
|
+
"id": 880,
|
5487
5827
|
"name": "disableSorting",
|
5488
5828
|
"kind": 1024,
|
5489
5829
|
"kindString": "Property",
|
@@ -5499,7 +5839,7 @@
|
|
5499
5839
|
}
|
5500
5840
|
},
|
5501
5841
|
{
|
5502
|
-
"id":
|
5842
|
+
"id": 893,
|
5503
5843
|
"name": "inlineEditingUniqueId",
|
5504
5844
|
"kind": 1024,
|
5505
5845
|
"kindString": "Property",
|
@@ -5514,13 +5854,13 @@
|
|
5514
5854
|
"operator": "keyof",
|
5515
5855
|
"target": {
|
5516
5856
|
"type": "reference",
|
5517
|
-
"id":
|
5857
|
+
"id": 900,
|
5518
5858
|
"name": "TRow"
|
5519
5859
|
}
|
5520
5860
|
}
|
5521
5861
|
},
|
5522
5862
|
{
|
5523
|
-
"id":
|
5863
|
+
"id": 885,
|
5524
5864
|
"name": "length",
|
5525
5865
|
"kind": 1024,
|
5526
5866
|
"kindString": "Property",
|
@@ -5533,7 +5873,7 @@
|
|
5533
5873
|
}
|
5534
5874
|
},
|
5535
5875
|
{
|
5536
|
-
"id":
|
5876
|
+
"id": 882,
|
5537
5877
|
"name": "manualSorting",
|
5538
5878
|
"kind": 1024,
|
5539
5879
|
"kindString": "Property",
|
@@ -5549,7 +5889,7 @@
|
|
5549
5889
|
}
|
5550
5890
|
},
|
5551
5891
|
{
|
5552
|
-
"id":
|
5892
|
+
"id": 886,
|
5553
5893
|
"name": "onPaginate",
|
5554
5894
|
"kind": 1024,
|
5555
5895
|
"kindString": "Property",
|
@@ -5561,12 +5901,12 @@
|
|
5561
5901
|
},
|
5562
5902
|
"type": {
|
5563
5903
|
"type": "reference",
|
5564
|
-
"id":
|
5904
|
+
"id": 763,
|
5565
5905
|
"name": "PaginationHandler"
|
5566
5906
|
}
|
5567
5907
|
},
|
5568
5908
|
{
|
5569
|
-
"id":
|
5909
|
+
"id": 899,
|
5570
5910
|
"name": "onRowActive",
|
5571
5911
|
"kind": 1024,
|
5572
5912
|
"kindString": "Property",
|
@@ -5581,7 +5921,7 @@
|
|
5581
5921
|
"typeArguments": [
|
5582
5922
|
{
|
5583
5923
|
"type": "reference",
|
5584
|
-
"id":
|
5924
|
+
"id": 900,
|
5585
5925
|
"name": "TRow"
|
5586
5926
|
}
|
5587
5927
|
],
|
@@ -5589,7 +5929,7 @@
|
|
5589
5929
|
}
|
5590
5930
|
},
|
5591
5931
|
{
|
5592
|
-
"id":
|
5932
|
+
"id": 868,
|
5593
5933
|
"name": "onRowClick",
|
5594
5934
|
"kind": 1024,
|
5595
5935
|
"kindString": "Property",
|
@@ -5601,11 +5941,11 @@
|
|
5601
5941
|
},
|
5602
5942
|
"type": {
|
5603
5943
|
"type": "reference",
|
5604
|
-
"id":
|
5944
|
+
"id": 774,
|
5605
5945
|
"typeArguments": [
|
5606
5946
|
{
|
5607
5947
|
"type": "reference",
|
5608
|
-
"id":
|
5948
|
+
"id": 900,
|
5609
5949
|
"name": "TRow"
|
5610
5950
|
}
|
5611
5951
|
],
|
@@ -5613,7 +5953,7 @@
|
|
5613
5953
|
}
|
5614
5954
|
},
|
5615
5955
|
{
|
5616
|
-
"id":
|
5956
|
+
"id": 897,
|
5617
5957
|
"name": "onRowCopy",
|
5618
5958
|
"kind": 1024,
|
5619
5959
|
"kindString": "Property",
|
@@ -5625,11 +5965,11 @@
|
|
5625
5965
|
},
|
5626
5966
|
"type": {
|
5627
5967
|
"type": "reference",
|
5628
|
-
"id":
|
5968
|
+
"id": 796,
|
5629
5969
|
"typeArguments": [
|
5630
5970
|
{
|
5631
5971
|
"type": "reference",
|
5632
|
-
"id":
|
5972
|
+
"id": 900,
|
5633
5973
|
"name": "TRow"
|
5634
5974
|
}
|
5635
5975
|
],
|
@@ -5637,7 +5977,7 @@
|
|
5637
5977
|
}
|
5638
5978
|
},
|
5639
5979
|
{
|
5640
|
-
"id":
|
5980
|
+
"id": 894,
|
5641
5981
|
"name": "onRowCreate",
|
5642
5982
|
"kind": 1024,
|
5643
5983
|
"kindString": "Property",
|
@@ -5649,11 +5989,11 @@
|
|
5649
5989
|
},
|
5650
5990
|
"type": {
|
5651
5991
|
"type": "reference",
|
5652
|
-
"id":
|
5992
|
+
"id": 790,
|
5653
5993
|
"typeArguments": [
|
5654
5994
|
{
|
5655
5995
|
"type": "reference",
|
5656
|
-
"id":
|
5996
|
+
"id": 900,
|
5657
5997
|
"name": "TRow"
|
5658
5998
|
}
|
5659
5999
|
],
|
@@ -5661,7 +6001,7 @@
|
|
5661
6001
|
}
|
5662
6002
|
},
|
5663
6003
|
{
|
5664
|
-
"id":
|
6004
|
+
"id": 898,
|
5665
6005
|
"name": "onRowDelete",
|
5666
6006
|
"kind": 1024,
|
5667
6007
|
"kindString": "Property",
|
@@ -5673,11 +6013,11 @@
|
|
5673
6013
|
},
|
5674
6014
|
"type": {
|
5675
6015
|
"type": "reference",
|
5676
|
-
"id":
|
6016
|
+
"id": 802,
|
5677
6017
|
"typeArguments": [
|
5678
6018
|
{
|
5679
6019
|
"type": "reference",
|
5680
|
-
"id":
|
6020
|
+
"id": 900,
|
5681
6021
|
"name": "TRow"
|
5682
6022
|
}
|
5683
6023
|
],
|
@@ -5685,7 +6025,7 @@
|
|
5685
6025
|
}
|
5686
6026
|
},
|
5687
6027
|
{
|
5688
|
-
"id":
|
6028
|
+
"id": 869,
|
5689
6029
|
"name": "onRowDrag",
|
5690
6030
|
"kind": 1024,
|
5691
6031
|
"kindString": "Property",
|
@@ -5697,11 +6037,11 @@
|
|
5697
6037
|
},
|
5698
6038
|
"type": {
|
5699
6039
|
"type": "reference",
|
5700
|
-
"id":
|
6040
|
+
"id": 780,
|
5701
6041
|
"typeArguments": [
|
5702
6042
|
{
|
5703
6043
|
"type": "reference",
|
5704
|
-
"id":
|
6044
|
+
"id": 900,
|
5705
6045
|
"name": "TRow"
|
5706
6046
|
}
|
5707
6047
|
],
|
@@ -5709,7 +6049,7 @@
|
|
5709
6049
|
}
|
5710
6050
|
},
|
5711
6051
|
{
|
5712
|
-
"id":
|
6052
|
+
"id": 896,
|
5713
6053
|
"name": "onRowEdit",
|
5714
6054
|
"kind": 1024,
|
5715
6055
|
"kindString": "Property",
|
@@ -5724,7 +6064,7 @@
|
|
5724
6064
|
"typeArguments": [
|
5725
6065
|
{
|
5726
6066
|
"type": "reference",
|
5727
|
-
"id":
|
6067
|
+
"id": 900,
|
5728
6068
|
"name": "TRow"
|
5729
6069
|
}
|
5730
6070
|
],
|
@@ -5732,7 +6072,7 @@
|
|
5732
6072
|
}
|
5733
6073
|
},
|
5734
6074
|
{
|
5735
|
-
"id":
|
6075
|
+
"id": 870,
|
5736
6076
|
"name": "onSelectedRows",
|
5737
6077
|
"kind": 1024,
|
5738
6078
|
"kindString": "Property",
|
@@ -5744,12 +6084,12 @@
|
|
5744
6084
|
},
|
5745
6085
|
"type": {
|
5746
6086
|
"type": "reference",
|
5747
|
-
"id":
|
6087
|
+
"id": 810,
|
5748
6088
|
"name": "SelectedRowsHandler"
|
5749
6089
|
}
|
5750
6090
|
},
|
5751
6091
|
{
|
5752
|
-
"id":
|
6092
|
+
"id": 881,
|
5753
6093
|
"name": "onSort",
|
5754
6094
|
"kind": 1024,
|
5755
6095
|
"kindString": "Property",
|
@@ -5761,11 +6101,11 @@
|
|
5761
6101
|
},
|
5762
6102
|
"type": {
|
5763
6103
|
"type": "reference",
|
5764
|
-
"id":
|
6104
|
+
"id": 813,
|
5765
6105
|
"typeArguments": [
|
5766
6106
|
{
|
5767
6107
|
"type": "reference",
|
5768
|
-
"id":
|
6108
|
+
"id": 900,
|
5769
6109
|
"name": "TRow"
|
5770
6110
|
}
|
5771
6111
|
],
|
@@ -5773,7 +6113,7 @@
|
|
5773
6113
|
}
|
5774
6114
|
},
|
5775
6115
|
{
|
5776
|
-
"id":
|
6116
|
+
"id": 887,
|
5777
6117
|
"name": "pageIndex",
|
5778
6118
|
"kind": 1024,
|
5779
6119
|
"kindString": "Property",
|
@@ -5789,7 +6129,7 @@
|
|
5789
6129
|
}
|
5790
6130
|
},
|
5791
6131
|
{
|
5792
|
-
"id":
|
6132
|
+
"id": 888,
|
5793
6133
|
"name": "pageSize",
|
5794
6134
|
"kind": 1024,
|
5795
6135
|
"kindString": "Property",
|
@@ -5805,7 +6145,7 @@
|
|
5805
6145
|
}
|
5806
6146
|
},
|
5807
6147
|
{
|
5808
|
-
"id":
|
6148
|
+
"id": 871,
|
5809
6149
|
"name": "rowClassName",
|
5810
6150
|
"kind": 1024,
|
5811
6151
|
"kindString": "Property",
|
@@ -5825,32 +6165,32 @@
|
|
5825
6165
|
{
|
5826
6166
|
"type": "reflection",
|
5827
6167
|
"declaration": {
|
5828
|
-
"id":
|
6168
|
+
"id": 872,
|
5829
6169
|
"name": "__type",
|
5830
6170
|
"kind": 65536,
|
5831
6171
|
"kindString": "Type literal",
|
5832
6172
|
"flags": {},
|
5833
6173
|
"signatures": [
|
5834
6174
|
{
|
5835
|
-
"id":
|
6175
|
+
"id": 873,
|
5836
6176
|
"name": "__type",
|
5837
6177
|
"kind": 4096,
|
5838
6178
|
"kindString": "Call signature",
|
5839
6179
|
"flags": {},
|
5840
6180
|
"parameters": [
|
5841
6181
|
{
|
5842
|
-
"id":
|
6182
|
+
"id": 874,
|
5843
6183
|
"name": "row",
|
5844
6184
|
"kind": 32768,
|
5845
6185
|
"kindString": "Parameter",
|
5846
6186
|
"flags": {},
|
5847
6187
|
"type": {
|
5848
6188
|
"type": "reference",
|
5849
|
-
"id":
|
6189
|
+
"id": 901,
|
5850
6190
|
"typeArguments": [
|
5851
6191
|
{
|
5852
6192
|
"type": "reference",
|
5853
|
-
"id":
|
6193
|
+
"id": 900,
|
5854
6194
|
"name": "TRow"
|
5855
6195
|
}
|
5856
6196
|
],
|
@@ -5879,7 +6219,7 @@
|
|
5879
6219
|
}
|
5880
6220
|
},
|
5881
6221
|
{
|
5882
|
-
"id":
|
6222
|
+
"id": 878,
|
5883
6223
|
"name": "rowHeight",
|
5884
6224
|
"kind": 1024,
|
5885
6225
|
"kindString": "Property",
|
@@ -5895,7 +6235,7 @@
|
|
5895
6235
|
}
|
5896
6236
|
},
|
5897
6237
|
{
|
5898
|
-
"id":
|
6238
|
+
"id": 879,
|
5899
6239
|
"name": "selectedRows",
|
5900
6240
|
"kind": 1024,
|
5901
6241
|
"kindString": "Property",
|
@@ -5907,12 +6247,12 @@
|
|
5907
6247
|
},
|
5908
6248
|
"type": {
|
5909
6249
|
"type": "reference",
|
5910
|
-
"id":
|
6250
|
+
"id": 811,
|
5911
6251
|
"name": "SelectedRowsState"
|
5912
6252
|
}
|
5913
6253
|
},
|
5914
6254
|
{
|
5915
|
-
"id":
|
6255
|
+
"id": 883,
|
5916
6256
|
"name": "sortRules",
|
5917
6257
|
"kind": 1024,
|
5918
6258
|
"kindString": "Property",
|
@@ -5926,11 +6266,11 @@
|
|
5926
6266
|
"type": "array",
|
5927
6267
|
"elementType": {
|
5928
6268
|
"type": "reference",
|
5929
|
-
"id":
|
6269
|
+
"id": 819,
|
5930
6270
|
"typeArguments": [
|
5931
6271
|
{
|
5932
6272
|
"type": "reference",
|
5933
|
-
"id":
|
6273
|
+
"id": 900,
|
5934
6274
|
"name": "TRow"
|
5935
6275
|
}
|
5936
6276
|
],
|
@@ -5939,7 +6279,7 @@
|
|
5939
6279
|
}
|
5940
6280
|
},
|
5941
6281
|
{
|
5942
|
-
"id":
|
6282
|
+
"id": 866,
|
5943
6283
|
"name": "emptyStateRenderer",
|
5944
6284
|
"kind": 2048,
|
5945
6285
|
"kindString": "Method",
|
@@ -5948,7 +6288,7 @@
|
|
5948
6288
|
},
|
5949
6289
|
"signatures": [
|
5950
6290
|
{
|
5951
|
-
"id":
|
6291
|
+
"id": 867,
|
5952
6292
|
"name": "emptyStateRenderer",
|
5953
6293
|
"kind": 4096,
|
5954
6294
|
"kindString": "Call signature",
|
@@ -5966,7 +6306,7 @@
|
|
5966
6306
|
]
|
5967
6307
|
},
|
5968
6308
|
{
|
5969
|
-
"id":
|
6309
|
+
"id": 889,
|
5970
6310
|
"name": "loadMore",
|
5971
6311
|
"kind": 2048,
|
5972
6312
|
"kindString": "Method",
|
@@ -5975,7 +6315,7 @@
|
|
5975
6315
|
},
|
5976
6316
|
"signatures": [
|
5977
6317
|
{
|
5978
|
-
"id":
|
6318
|
+
"id": 890,
|
5979
6319
|
"name": "loadMore",
|
5980
6320
|
"kind": 4096,
|
5981
6321
|
"kindString": "Call signature",
|
@@ -5985,7 +6325,7 @@
|
|
5985
6325
|
},
|
5986
6326
|
"parameters": [
|
5987
6327
|
{
|
5988
|
-
"id":
|
6328
|
+
"id": 891,
|
5989
6329
|
"name": "startIndex",
|
5990
6330
|
"kind": 32768,
|
5991
6331
|
"kindString": "Parameter",
|
@@ -5996,7 +6336,7 @@
|
|
5996
6336
|
}
|
5997
6337
|
},
|
5998
6338
|
{
|
5999
|
-
"id":
|
6339
|
+
"id": 892,
|
6000
6340
|
"name": "endIndex",
|
6001
6341
|
"kind": 32768,
|
6002
6342
|
"kindString": "Parameter",
|
@@ -6015,7 +6355,7 @@
|
|
6015
6355
|
]
|
6016
6356
|
},
|
6017
6357
|
{
|
6018
|
-
"id":
|
6358
|
+
"id": 875,
|
6019
6359
|
"name": "rowExpansionRenderer",
|
6020
6360
|
"kind": 2048,
|
6021
6361
|
"kindString": "Method",
|
@@ -6024,7 +6364,7 @@
|
|
6024
6364
|
},
|
6025
6365
|
"signatures": [
|
6026
6366
|
{
|
6027
|
-
"id":
|
6367
|
+
"id": 876,
|
6028
6368
|
"name": "rowExpansionRenderer",
|
6029
6369
|
"kind": 4096,
|
6030
6370
|
"kindString": "Call signature",
|
@@ -6034,18 +6374,18 @@
|
|
6034
6374
|
},
|
6035
6375
|
"parameters": [
|
6036
6376
|
{
|
6037
|
-
"id":
|
6377
|
+
"id": 877,
|
6038
6378
|
"name": "row",
|
6039
6379
|
"kind": 32768,
|
6040
6380
|
"kindString": "Parameter",
|
6041
6381
|
"flags": {},
|
6042
6382
|
"type": {
|
6043
6383
|
"type": "reference",
|
6044
|
-
"id":
|
6384
|
+
"id": 901,
|
6045
6385
|
"typeArguments": [
|
6046
6386
|
{
|
6047
6387
|
"type": "reference",
|
6048
|
-
"id":
|
6388
|
+
"id": 900,
|
6049
6389
|
"name": "TRow"
|
6050
6390
|
}
|
6051
6391
|
],
|
@@ -6070,7 +6410,7 @@
|
|
6070
6410
|
],
|
6071
6411
|
"props": [
|
6072
6412
|
{
|
6073
|
-
"id":
|
6413
|
+
"id": 916,
|
6074
6414
|
"name": "instance",
|
6075
6415
|
"kind": 1024,
|
6076
6416
|
"kindString": "Property",
|
@@ -6078,14 +6418,14 @@
|
|
6078
6418
|
"type": {
|
6079
6419
|
"type": "reflection",
|
6080
6420
|
"declaration": {
|
6081
|
-
"id":
|
6421
|
+
"id": 917,
|
6082
6422
|
"name": "__type",
|
6083
6423
|
"kind": 65536,
|
6084
6424
|
"kindString": "Type literal",
|
6085
6425
|
"flags": {},
|
6086
6426
|
"children": [
|
6087
6427
|
{
|
6088
|
-
"id":
|
6428
|
+
"id": 923,
|
6089
6429
|
"name": "resetRowEditing",
|
6090
6430
|
"kind": 1024,
|
6091
6431
|
"kindString": "Property",
|
@@ -6096,7 +6436,7 @@
|
|
6096
6436
|
}
|
6097
6437
|
},
|
6098
6438
|
{
|
6099
|
-
"id":
|
6439
|
+
"id": 918,
|
6100
6440
|
"name": "toggleAllRowsExpanded",
|
6101
6441
|
"kind": 1024,
|
6102
6442
|
"kindString": "Property",
|
@@ -6107,7 +6447,7 @@
|
|
6107
6447
|
}
|
6108
6448
|
},
|
6109
6449
|
{
|
6110
|
-
"id":
|
6450
|
+
"id": 921,
|
6111
6451
|
"name": "toggleEditing",
|
6112
6452
|
"kind": 1024,
|
6113
6453
|
"kindString": "Property",
|
@@ -6118,7 +6458,7 @@
|
|
6118
6458
|
}
|
6119
6459
|
},
|
6120
6460
|
{
|
6121
|
-
"id":
|
6461
|
+
"id": 919,
|
6122
6462
|
"name": "toggleHideAllColumns",
|
6123
6463
|
"kind": 1024,
|
6124
6464
|
"kindString": "Property",
|
@@ -6129,7 +6469,7 @@
|
|
6129
6469
|
}
|
6130
6470
|
},
|
6131
6471
|
{
|
6132
|
-
"id":
|
6472
|
+
"id": 920,
|
6133
6473
|
"name": "toggleHideColumn",
|
6134
6474
|
"kind": 1024,
|
6135
6475
|
"kindString": "Property",
|
@@ -6140,7 +6480,7 @@
|
|
6140
6480
|
}
|
6141
6481
|
},
|
6142
6482
|
{
|
6143
|
-
"id":
|
6483
|
+
"id": 922,
|
6144
6484
|
"name": "toggleRowEditing",
|
6145
6485
|
"kind": 1024,
|
6146
6486
|
"kindString": "Property",
|
@@ -6151,7 +6491,7 @@
|
|
6151
6491
|
}
|
6152
6492
|
},
|
6153
6493
|
{
|
6154
|
-
"id":
|
6494
|
+
"id": 924,
|
6155
6495
|
"name": "toggleRowExpanded",
|
6156
6496
|
"kind": 1024,
|
6157
6497
|
"kindString": "Property",
|
@@ -6162,7 +6502,7 @@
|
|
6162
6502
|
}
|
6163
6503
|
},
|
6164
6504
|
{
|
6165
|
-
"id":
|
6505
|
+
"id": 925,
|
6166
6506
|
"name": "toggleSortBy",
|
6167
6507
|
"kind": 1024,
|
6168
6508
|
"kindString": "Property",
|
@@ -6178,14 +6518,14 @@
|
|
6178
6518
|
"title": "Properties",
|
6179
6519
|
"kind": 1024,
|
6180
6520
|
"children": [
|
6181
|
-
|
6182
|
-
|
6183
|
-
|
6184
|
-
|
6185
|
-
|
6186
|
-
|
6187
|
-
|
6188
|
-
|
6521
|
+
923,
|
6522
|
+
918,
|
6523
|
+
921,
|
6524
|
+
919,
|
6525
|
+
920,
|
6526
|
+
922,
|
6527
|
+
924,
|
6528
|
+
925
|
6189
6529
|
]
|
6190
6530
|
}
|
6191
6531
|
]
|
@@ -6197,7 +6537,7 @@
|
|
6197
6537
|
"TableRow": {
|
6198
6538
|
"props": [
|
6199
6539
|
{
|
6200
|
-
"id":
|
6540
|
+
"id": 905,
|
6201
6541
|
"name": "depth",
|
6202
6542
|
"kind": 1024,
|
6203
6543
|
"kindString": "Property",
|
@@ -6210,7 +6550,7 @@
|
|
6210
6550
|
}
|
6211
6551
|
},
|
6212
6552
|
{
|
6213
|
-
"id":
|
6553
|
+
"id": 903,
|
6214
6554
|
"name": "index",
|
6215
6555
|
"kind": 1024,
|
6216
6556
|
"kindString": "Property",
|
@@ -6224,7 +6564,7 @@
|
|
6224
6564
|
}
|
6225
6565
|
},
|
6226
6566
|
{
|
6227
|
-
"id":
|
6567
|
+
"id": 904,
|
6228
6568
|
"name": "indexPath",
|
6229
6569
|
"kind": 1024,
|
6230
6570
|
"kindString": "Property",
|
@@ -6238,7 +6578,7 @@
|
|
6238
6578
|
}
|
6239
6579
|
},
|
6240
6580
|
{
|
6241
|
-
"id":
|
6581
|
+
"id": 910,
|
6242
6582
|
"name": "isEditing",
|
6243
6583
|
"kind": 1024,
|
6244
6584
|
"kindString": "Property",
|
@@ -6251,7 +6591,7 @@
|
|
6251
6591
|
}
|
6252
6592
|
},
|
6253
6593
|
{
|
6254
|
-
"id":
|
6594
|
+
"id": 906,
|
6255
6595
|
"name": "isExpanded",
|
6256
6596
|
"kind": 1024,
|
6257
6597
|
"kindString": "Property",
|
@@ -6267,7 +6607,7 @@
|
|
6267
6607
|
}
|
6268
6608
|
},
|
6269
6609
|
{
|
6270
|
-
"id":
|
6610
|
+
"id": 909,
|
6271
6611
|
"name": "values",
|
6272
6612
|
"kind": 1024,
|
6273
6613
|
"kindString": "Property",
|
@@ -6277,11 +6617,11 @@
|
|
6277
6617
|
},
|
6278
6618
|
"type": {
|
6279
6619
|
"type": "reference",
|
6280
|
-
"id":
|
6620
|
+
"id": 768,
|
6281
6621
|
"typeArguments": [
|
6282
6622
|
{
|
6283
6623
|
"type": "reference",
|
6284
|
-
"id":
|
6624
|
+
"id": 913,
|
6285
6625
|
"name": "TRow"
|
6286
6626
|
}
|
6287
6627
|
],
|
@@ -6289,7 +6629,7 @@
|
|
6289
6629
|
}
|
6290
6630
|
},
|
6291
6631
|
{
|
6292
|
-
"id":
|
6632
|
+
"id": 911,
|
6293
6633
|
"name": "toggleRowEditing",
|
6294
6634
|
"kind": 2048,
|
6295
6635
|
"kindString": "Method",
|
@@ -6298,7 +6638,7 @@
|
|
6298
6638
|
},
|
6299
6639
|
"signatures": [
|
6300
6640
|
{
|
6301
|
-
"id":
|
6641
|
+
"id": 912,
|
6302
6642
|
"name": "toggleRowEditing",
|
6303
6643
|
"kind": 4096,
|
6304
6644
|
"kindString": "Call signature",
|
@@ -6311,7 +6651,7 @@
|
|
6311
6651
|
]
|
6312
6652
|
},
|
6313
6653
|
{
|
6314
|
-
"id":
|
6654
|
+
"id": 907,
|
6315
6655
|
"name": "toggleRowExpanded",
|
6316
6656
|
"kind": 2048,
|
6317
6657
|
"kindString": "Method",
|
@@ -6320,7 +6660,7 @@
|
|
6320
6660
|
},
|
6321
6661
|
"signatures": [
|
6322
6662
|
{
|
6323
|
-
"id":
|
6663
|
+
"id": 908,
|
6324
6664
|
"name": "toggleRowExpanded",
|
6325
6665
|
"kind": 4096,
|
6326
6666
|
"kindString": "Call signature",
|
@@ -6340,7 +6680,7 @@
|
|
6340
6680
|
"TableTexts": {
|
6341
6681
|
"props": [
|
6342
6682
|
{
|
6343
|
-
"id":
|
6683
|
+
"id": 928,
|
6344
6684
|
"name": "actions",
|
6345
6685
|
"kind": 1024,
|
6346
6686
|
"kindString": "Property",
|
@@ -6351,7 +6691,7 @@
|
|
6351
6691
|
}
|
6352
6692
|
},
|
6353
6693
|
{
|
6354
|
-
"id":
|
6694
|
+
"id": 930,
|
6355
6695
|
"name": "copy",
|
6356
6696
|
"kind": 1024,
|
6357
6697
|
"kindString": "Property",
|
@@ -6362,7 +6702,7 @@
|
|
6362
6702
|
}
|
6363
6703
|
},
|
6364
6704
|
{
|
6365
|
-
"id":
|
6705
|
+
"id": 931,
|
6366
6706
|
"name": "del",
|
6367
6707
|
"kind": 1024,
|
6368
6708
|
"kindString": "Property",
|
@@ -6373,7 +6713,7 @@
|
|
6373
6713
|
}
|
6374
6714
|
},
|
6375
6715
|
{
|
6376
|
-
"id":
|
6716
|
+
"id": 929,
|
6377
6717
|
"name": "edit",
|
6378
6718
|
"kind": 1024,
|
6379
6719
|
"kindString": "Property",
|
@@ -6384,7 +6724,7 @@
|
|
6384
6724
|
}
|
6385
6725
|
},
|
6386
6726
|
{
|
6387
|
-
"id":
|
6727
|
+
"id": 933,
|
6388
6728
|
"name": "loading",
|
6389
6729
|
"kind": 1024,
|
6390
6730
|
"kindString": "Property",
|
@@ -6395,7 +6735,7 @@
|
|
6395
6735
|
}
|
6396
6736
|
},
|
6397
6737
|
{
|
6398
|
-
"id":
|
6738
|
+
"id": 932,
|
6399
6739
|
"name": "newSubRow",
|
6400
6740
|
"kind": 1024,
|
6401
6741
|
"kindString": "Property",
|
@@ -6413,7 +6753,7 @@
|
|
6413
6753
|
],
|
6414
6754
|
"props": [
|
6415
6755
|
{
|
6416
|
-
"id":
|
6756
|
+
"id": 986,
|
6417
6757
|
"name": "children",
|
6418
6758
|
"kind": 1024,
|
6419
6759
|
"kindString": "Property",
|
@@ -6429,7 +6769,7 @@
|
|
6429
6769
|
}
|
6430
6770
|
},
|
6431
6771
|
{
|
6432
|
-
"id":
|
6772
|
+
"id": 985,
|
6433
6773
|
"name": "defaultId",
|
6434
6774
|
"kind": 1024,
|
6435
6775
|
"kindString": "Property",
|
@@ -6445,7 +6785,7 @@
|
|
6445
6785
|
}
|
6446
6786
|
},
|
6447
6787
|
{
|
6448
|
-
"id":
|
6788
|
+
"id": 984,
|
6449
6789
|
"name": "id",
|
6450
6790
|
"kind": 1024,
|
6451
6791
|
"kindString": "Property",
|
@@ -6461,7 +6801,7 @@
|
|
6461
6801
|
}
|
6462
6802
|
},
|
6463
6803
|
{
|
6464
|
-
"id":
|
6804
|
+
"id": 987,
|
6465
6805
|
"name": "orientation",
|
6466
6806
|
"kind": 1024,
|
6467
6807
|
"kindString": "Property",
|
@@ -6484,7 +6824,7 @@
|
|
6484
6824
|
}
|
6485
6825
|
},
|
6486
6826
|
{
|
6487
|
-
"id":
|
6827
|
+
"id": 988,
|
6488
6828
|
"name": "onChange",
|
6489
6829
|
"kind": 2048,
|
6490
6830
|
"kindString": "Method",
|
@@ -6493,7 +6833,7 @@
|
|
6493
6833
|
},
|
6494
6834
|
"signatures": [
|
6495
6835
|
{
|
6496
|
-
"id":
|
6836
|
+
"id": 989,
|
6497
6837
|
"name": "onChange",
|
6498
6838
|
"kind": 4096,
|
6499
6839
|
"kindString": "Call signature",
|
@@ -6503,7 +6843,7 @@
|
|
6503
6843
|
},
|
6504
6844
|
"parameters": [
|
6505
6845
|
{
|
6506
|
-
"id":
|
6846
|
+
"id": 990,
|
6507
6847
|
"name": "id",
|
6508
6848
|
"kind": 32768,
|
6509
6849
|
"kindString": "Parameter",
|
@@ -6526,7 +6866,7 @@
|
|
6526
6866
|
"Taco": {
|
6527
6867
|
"props": [
|
6528
6868
|
{
|
6529
|
-
"id":
|
6869
|
+
"id": 621,
|
6530
6870
|
"name": "localization",
|
6531
6871
|
"kind": 1024,
|
6532
6872
|
"kindString": "Property",
|
@@ -6536,7 +6876,7 @@
|
|
6536
6876
|
},
|
6537
6877
|
"type": {
|
6538
6878
|
"type": "reference",
|
6539
|
-
"id":
|
6879
|
+
"id": 612,
|
6540
6880
|
"name": "Localization"
|
6541
6881
|
}
|
6542
6882
|
}
|
@@ -6548,7 +6888,7 @@
|
|
6548
6888
|
],
|
6549
6889
|
"props": [
|
6550
6890
|
{
|
6551
|
-
"id":
|
6891
|
+
"id": 1007,
|
6552
6892
|
"name": "highlighted",
|
6553
6893
|
"kind": 1024,
|
6554
6894
|
"kindString": "Property",
|
@@ -6564,7 +6904,7 @@
|
|
6564
6904
|
}
|
6565
6905
|
},
|
6566
6906
|
{
|
6567
|
-
"id":
|
6907
|
+
"id": 1008,
|
6568
6908
|
"name": "state",
|
6569
6909
|
"kind": 1024,
|
6570
6910
|
"kindString": "Property",
|
@@ -6581,7 +6921,7 @@
|
|
6581
6921
|
}
|
6582
6922
|
},
|
6583
6923
|
{
|
6584
|
-
"id":
|
6924
|
+
"id": 1009,
|
6585
6925
|
"name": "value",
|
6586
6926
|
"kind": 1024,
|
6587
6927
|
"kindString": "Property",
|
@@ -6604,7 +6944,7 @@
|
|
6604
6944
|
],
|
6605
6945
|
"props": [
|
6606
6946
|
{
|
6607
|
-
"id":
|
6947
|
+
"id": 1049,
|
6608
6948
|
"name": "children",
|
6609
6949
|
"kind": 1024,
|
6610
6950
|
"kindString": "Property",
|
@@ -6629,7 +6969,7 @@
|
|
6629
6969
|
}
|
6630
6970
|
},
|
6631
6971
|
{
|
6632
|
-
"id":
|
6972
|
+
"id": 1051,
|
6633
6973
|
"name": "placement",
|
6634
6974
|
"kind": 1024,
|
6635
6975
|
"kindString": "Property",
|
@@ -6668,7 +7008,7 @@
|
|
6668
7008
|
}
|
6669
7009
|
},
|
6670
7010
|
{
|
6671
|
-
"id":
|
7011
|
+
"id": 1050,
|
6672
7012
|
"name": "title",
|
6673
7013
|
"kind": 1024,
|
6674
7014
|
"kindString": "Property",
|
@@ -6686,7 +7026,7 @@
|
|
6686
7026
|
"TourProps": {
|
6687
7027
|
"props": [
|
6688
7028
|
{
|
6689
|
-
"id":
|
7029
|
+
"id": 1077,
|
6690
7030
|
"name": "autoStart",
|
6691
7031
|
"kind": 1024,
|
6692
7032
|
"kindString": "Property",
|
@@ -6702,7 +7042,7 @@
|
|
6702
7042
|
}
|
6703
7043
|
},
|
6704
7044
|
{
|
6705
|
-
"id":
|
7045
|
+
"id": 1078,
|
6706
7046
|
"name": "children",
|
6707
7047
|
"kind": 1024,
|
6708
7048
|
"kindString": "Property",
|
@@ -6716,7 +7056,7 @@
|
|
6716
7056
|
}
|
6717
7057
|
},
|
6718
7058
|
{
|
6719
|
-
"id":
|
7059
|
+
"id": 1079,
|
6720
7060
|
"name": "continuous",
|
6721
7061
|
"kind": 1024,
|
6722
7062
|
"kindString": "Property",
|
@@ -6732,7 +7072,7 @@
|
|
6732
7072
|
}
|
6733
7073
|
},
|
6734
7074
|
{
|
6735
|
-
"id":
|
7075
|
+
"id": 1080,
|
6736
7076
|
"name": "disableCloseOnEsc",
|
6737
7077
|
"kind": 1024,
|
6738
7078
|
"kindString": "Property",
|
@@ -6748,7 +7088,7 @@
|
|
6748
7088
|
}
|
6749
7089
|
},
|
6750
7090
|
{
|
6751
|
-
"id":
|
7091
|
+
"id": 1081,
|
6752
7092
|
"name": "disableOverlayClose",
|
6753
7093
|
"kind": 1024,
|
6754
7094
|
"kindString": "Property",
|
@@ -6764,7 +7104,7 @@
|
|
6764
7104
|
}
|
6765
7105
|
},
|
6766
7106
|
{
|
6767
|
-
"id":
|
7107
|
+
"id": 1091,
|
6768
7108
|
"name": "disableScrollParentFix",
|
6769
7109
|
"kind": 1024,
|
6770
7110
|
"kindString": "Property",
|
@@ -6777,7 +7117,7 @@
|
|
6777
7117
|
}
|
6778
7118
|
},
|
6779
7119
|
{
|
6780
|
-
"id":
|
7120
|
+
"id": 1082,
|
6781
7121
|
"name": "disableScrolling",
|
6782
7122
|
"kind": 1024,
|
6783
7123
|
"kindString": "Property",
|
@@ -6793,7 +7133,7 @@
|
|
6793
7133
|
}
|
6794
7134
|
},
|
6795
7135
|
{
|
6796
|
-
"id":
|
7136
|
+
"id": 1086,
|
6797
7137
|
"name": "onComplete",
|
6798
7138
|
"kind": 1024,
|
6799
7139
|
"kindString": "Property",
|
@@ -6808,7 +7148,7 @@
|
|
6808
7148
|
}
|
6809
7149
|
},
|
6810
7150
|
{
|
6811
|
-
"id":
|
7151
|
+
"id": 1090,
|
6812
7152
|
"name": "spotlightClicks",
|
6813
7153
|
"kind": 1024,
|
6814
7154
|
"kindString": "Property",
|
@@ -6821,7 +7161,7 @@
|
|
6821
7161
|
}
|
6822
7162
|
},
|
6823
7163
|
{
|
6824
|
-
"id":
|
7164
|
+
"id": 1083,
|
6825
7165
|
"name": "onClose",
|
6826
7166
|
"kind": 2048,
|
6827
7167
|
"kindString": "Method",
|
@@ -6830,21 +7170,21 @@
|
|
6830
7170
|
},
|
6831
7171
|
"signatures": [
|
6832
7172
|
{
|
6833
|
-
"id":
|
7173
|
+
"id": 1084,
|
6834
7174
|
"name": "onClose",
|
6835
7175
|
"kind": 4096,
|
6836
7176
|
"kindString": "Call signature",
|
6837
7177
|
"flags": {},
|
6838
7178
|
"parameters": [
|
6839
7179
|
{
|
6840
|
-
"id":
|
7180
|
+
"id": 1085,
|
6841
7181
|
"name": "step",
|
6842
7182
|
"kind": 32768,
|
6843
7183
|
"kindString": "Parameter",
|
6844
7184
|
"flags": {},
|
6845
7185
|
"type": {
|
6846
7186
|
"type": "reference",
|
6847
|
-
"id":
|
7187
|
+
"id": 1065,
|
6848
7188
|
"name": "TourStepProps"
|
6849
7189
|
}
|
6850
7190
|
}
|
@@ -6857,7 +7197,7 @@
|
|
6857
7197
|
]
|
6858
7198
|
},
|
6859
7199
|
{
|
6860
|
-
"id":
|
7200
|
+
"id": 1087,
|
6861
7201
|
"name": "onReady",
|
6862
7202
|
"kind": 2048,
|
6863
7203
|
"kindString": "Method",
|
@@ -6866,7 +7206,7 @@
|
|
6866
7206
|
},
|
6867
7207
|
"signatures": [
|
6868
7208
|
{
|
6869
|
-
"id":
|
7209
|
+
"id": 1088,
|
6870
7210
|
"name": "onReady",
|
6871
7211
|
"kind": 4096,
|
6872
7212
|
"kindString": "Call signature",
|
@@ -6876,14 +7216,14 @@
|
|
6876
7216
|
},
|
6877
7217
|
"parameters": [
|
6878
7218
|
{
|
6879
|
-
"id":
|
7219
|
+
"id": 1089,
|
6880
7220
|
"name": "step",
|
6881
7221
|
"kind": 32768,
|
6882
7222
|
"kindString": "Parameter",
|
6883
7223
|
"flags": {},
|
6884
7224
|
"type": {
|
6885
7225
|
"type": "reference",
|
6886
|
-
"id":
|
7226
|
+
"id": 1065,
|
6887
7227
|
"name": "TourStepProps"
|
6888
7228
|
}
|
6889
7229
|
}
|
@@ -6900,7 +7240,7 @@
|
|
6900
7240
|
"TourStepProps": {
|
6901
7241
|
"props": [
|
6902
7242
|
{
|
6903
|
-
"id":
|
7243
|
+
"id": 1067,
|
6904
7244
|
"name": "children",
|
6905
7245
|
"kind": 1024,
|
6906
7246
|
"kindString": "Property",
|
@@ -6916,7 +7256,7 @@
|
|
6916
7256
|
}
|
6917
7257
|
},
|
6918
7258
|
{
|
6919
|
-
"id":
|
7259
|
+
"id": 1068,
|
6920
7260
|
"name": "position",
|
6921
7261
|
"kind": 1024,
|
6922
7262
|
"kindString": "Property",
|
@@ -6934,7 +7274,7 @@
|
|
6934
7274
|
}
|
6935
7275
|
},
|
6936
7276
|
{
|
6937
|
-
"id":
|
7277
|
+
"id": 1069,
|
6938
7278
|
"name": "selector",
|
6939
7279
|
"kind": 1024,
|
6940
7280
|
"kindString": "Property",
|
@@ -6948,7 +7288,7 @@
|
|
6948
7288
|
}
|
6949
7289
|
},
|
6950
7290
|
{
|
6951
|
-
"id":
|
7291
|
+
"id": 1070,
|
6952
7292
|
"name": "showBeacon",
|
6953
7293
|
"kind": 1024,
|
6954
7294
|
"kindString": "Property",
|
@@ -6964,7 +7304,7 @@
|
|
6964
7304
|
}
|
6965
7305
|
},
|
6966
7306
|
{
|
6967
|
-
"id":
|
7307
|
+
"id": 1071,
|
6968
7308
|
"name": "title",
|
6969
7309
|
"kind": 1024,
|
6970
7310
|
"kindString": "Property",
|
@@ -6982,7 +7322,7 @@
|
|
6982
7322
|
"TourTexts": {
|
6983
7323
|
"props": [
|
6984
7324
|
{
|
6985
|
-
"id":
|
7325
|
+
"id": 1059,
|
6986
7326
|
"name": "back",
|
6987
7327
|
"kind": 1024,
|
6988
7328
|
"kindString": "Property",
|
@@ -6996,7 +7336,7 @@
|
|
6996
7336
|
}
|
6997
7337
|
},
|
6998
7338
|
{
|
6999
|
-
"id":
|
7339
|
+
"id": 1060,
|
7000
7340
|
"name": "close",
|
7001
7341
|
"kind": 1024,
|
7002
7342
|
"kindString": "Property",
|
@@ -7010,7 +7350,7 @@
|
|
7010
7350
|
}
|
7011
7351
|
},
|
7012
7352
|
{
|
7013
|
-
"id":
|
7353
|
+
"id": 1062,
|
7014
7354
|
"name": "last",
|
7015
7355
|
"kind": 1024,
|
7016
7356
|
"kindString": "Property",
|
@@ -7024,7 +7364,7 @@
|
|
7024
7364
|
}
|
7025
7365
|
},
|
7026
7366
|
{
|
7027
|
-
"id":
|
7367
|
+
"id": 1063,
|
7028
7368
|
"name": "next",
|
7029
7369
|
"kind": 1024,
|
7030
7370
|
"kindString": "Property",
|
@@ -7038,7 +7378,7 @@
|
|
7038
7378
|
}
|
7039
7379
|
},
|
7040
7380
|
{
|
7041
|
-
"id":
|
7381
|
+
"id": 1064,
|
7042
7382
|
"name": "open",
|
7043
7383
|
"kind": 1024,
|
7044
7384
|
"kindString": "Property",
|
@@ -7052,7 +7392,7 @@
|
|
7052
7392
|
}
|
7053
7393
|
},
|
7054
7394
|
{
|
7055
|
-
"id":
|
7395
|
+
"id": 1061,
|
7056
7396
|
"name": "skip",
|
7057
7397
|
"kind": 1024,
|
7058
7398
|
"kindString": "Property",
|
@@ -7073,7 +7413,7 @@
|
|
7073
7413
|
],
|
7074
7414
|
"props": [
|
7075
7415
|
{
|
7076
|
-
"id":
|
7416
|
+
"id": 1108,
|
7077
7417
|
"name": "className",
|
7078
7418
|
"kind": 1024,
|
7079
7419
|
"kindString": "Property",
|
@@ -7093,21 +7433,21 @@
|
|
7093
7433
|
{
|
7094
7434
|
"type": "reflection",
|
7095
7435
|
"declaration": {
|
7096
|
-
"id":
|
7436
|
+
"id": 1109,
|
7097
7437
|
"name": "__type",
|
7098
7438
|
"kind": 65536,
|
7099
7439
|
"kindString": "Type literal",
|
7100
7440
|
"flags": {},
|
7101
7441
|
"signatures": [
|
7102
7442
|
{
|
7103
|
-
"id":
|
7443
|
+
"id": 1110,
|
7104
7444
|
"name": "__type",
|
7105
7445
|
"kind": 4096,
|
7106
7446
|
"kindString": "Call signature",
|
7107
7447
|
"flags": {},
|
7108
7448
|
"parameters": [
|
7109
7449
|
{
|
7110
|
-
"id":
|
7450
|
+
"id": 1111,
|
7111
7451
|
"name": "expanded",
|
7112
7452
|
"kind": 32768,
|
7113
7453
|
"kindString": "Parameter",
|
@@ -7130,7 +7470,7 @@
|
|
7130
7470
|
}
|
7131
7471
|
},
|
7132
7472
|
{
|
7133
|
-
"id":
|
7473
|
+
"id": 1112,
|
7134
7474
|
"name": "expanded",
|
7135
7475
|
"kind": 1024,
|
7136
7476
|
"kindString": "Property",
|
@@ -7146,7 +7486,7 @@
|
|
7146
7486
|
}
|
7147
7487
|
},
|
7148
7488
|
{
|
7149
|
-
"id":
|
7489
|
+
"id": 1113,
|
7150
7490
|
"name": "fixed",
|
7151
7491
|
"kind": 1024,
|
7152
7492
|
"kindString": "Property",
|
@@ -7162,7 +7502,7 @@
|
|
7162
7502
|
}
|
7163
7503
|
},
|
7164
7504
|
{
|
7165
|
-
"id":
|
7505
|
+
"id": 1118,
|
7166
7506
|
"name": "title",
|
7167
7507
|
"kind": 1024,
|
7168
7508
|
"kindString": "Property",
|
@@ -7182,21 +7522,21 @@
|
|
7182
7522
|
{
|
7183
7523
|
"type": "reflection",
|
7184
7524
|
"declaration": {
|
7185
|
-
"id":
|
7525
|
+
"id": 1119,
|
7186
7526
|
"name": "__type",
|
7187
7527
|
"kind": 65536,
|
7188
7528
|
"kindString": "Type literal",
|
7189
7529
|
"flags": {},
|
7190
7530
|
"signatures": [
|
7191
7531
|
{
|
7192
|
-
"id":
|
7532
|
+
"id": 1120,
|
7193
7533
|
"name": "__type",
|
7194
7534
|
"kind": 4096,
|
7195
7535
|
"kindString": "Call signature",
|
7196
7536
|
"flags": {},
|
7197
7537
|
"parameters": [
|
7198
7538
|
{
|
7199
|
-
"id":
|
7539
|
+
"id": 1121,
|
7200
7540
|
"name": "expanded",
|
7201
7541
|
"kind": 32768,
|
7202
7542
|
"kindString": "Parameter",
|
@@ -7221,7 +7561,7 @@
|
|
7221
7561
|
}
|
7222
7562
|
},
|
7223
7563
|
{
|
7224
|
-
"id":
|
7564
|
+
"id": 1114,
|
7225
7565
|
"name": "onClick",
|
7226
7566
|
"kind": 2048,
|
7227
7567
|
"kindString": "Method",
|
@@ -7230,7 +7570,7 @@
|
|
7230
7570
|
},
|
7231
7571
|
"signatures": [
|
7232
7572
|
{
|
7233
|
-
"id":
|
7573
|
+
"id": 1115,
|
7234
7574
|
"name": "onClick",
|
7235
7575
|
"kind": 4096,
|
7236
7576
|
"kindString": "Call signature",
|
@@ -7240,7 +7580,7 @@
|
|
7240
7580
|
},
|
7241
7581
|
"parameters": [
|
7242
7582
|
{
|
7243
|
-
"id":
|
7583
|
+
"id": 1116,
|
7244
7584
|
"name": "event",
|
7245
7585
|
"kind": 32768,
|
7246
7586
|
"kindString": "Parameter",
|
@@ -7267,7 +7607,7 @@
|
|
7267
7607
|
}
|
7268
7608
|
},
|
7269
7609
|
{
|
7270
|
-
"id":
|
7610
|
+
"id": 1117,
|
7271
7611
|
"name": "expanded",
|
7272
7612
|
"kind": 32768,
|
7273
7613
|
"kindString": "Parameter",
|
@@ -7292,7 +7632,7 @@
|
|
7292
7632
|
"useListKeyboardNavigationOptions": {
|
7293
7633
|
"props": [
|
7294
7634
|
{
|
7295
|
-
"id":
|
7635
|
+
"id": 1148,
|
7296
7636
|
"name": "direction",
|
7297
7637
|
"kind": 1024,
|
7298
7638
|
"kindString": "Property",
|
@@ -7306,7 +7646,7 @@
|
|
7306
7646
|
}
|
7307
7647
|
},
|
7308
7648
|
{
|
7309
|
-
"id":
|
7649
|
+
"id": 1149,
|
7310
7650
|
"name": "initialIndex",
|
7311
7651
|
"kind": 1024,
|
7312
7652
|
"kindString": "Property",
|
@@ -7323,7 +7663,7 @@
|
|
7323
7663
|
"usePaginationValues": {
|
7324
7664
|
"props": [
|
7325
7665
|
{
|
7326
|
-
"id":
|
7666
|
+
"id": 559,
|
7327
7667
|
"name": "pageIndex",
|
7328
7668
|
"kind": 1024,
|
7329
7669
|
"kindString": "Property",
|
@@ -7337,7 +7677,7 @@
|
|
7337
7677
|
}
|
7338
7678
|
},
|
7339
7679
|
{
|
7340
|
-
"id":
|
7680
|
+
"id": 560,
|
7341
7681
|
"name": "pageSize",
|
7342
7682
|
"kind": 1024,
|
7343
7683
|
"kindString": "Property",
|
@@ -7351,14 +7691,14 @@
|
|
7351
7691
|
}
|
7352
7692
|
},
|
7353
7693
|
{
|
7354
|
-
"id":
|
7694
|
+
"id": 561,
|
7355
7695
|
"name": "setPageIndex",
|
7356
7696
|
"kind": 2048,
|
7357
7697
|
"kindString": "Method",
|
7358
7698
|
"flags": {},
|
7359
7699
|
"signatures": [
|
7360
7700
|
{
|
7361
|
-
"id":
|
7701
|
+
"id": 562,
|
7362
7702
|
"name": "setPageIndex",
|
7363
7703
|
"kind": 4096,
|
7364
7704
|
"kindString": "Call signature",
|
@@ -7368,7 +7708,7 @@
|
|
7368
7708
|
},
|
7369
7709
|
"parameters": [
|
7370
7710
|
{
|
7371
|
-
"id":
|
7711
|
+
"id": 563,
|
7372
7712
|
"name": "pageIndex",
|
7373
7713
|
"kind": 32768,
|
7374
7714
|
"kindString": "Parameter",
|
@@ -7387,14 +7727,14 @@
|
|
7387
7727
|
]
|
7388
7728
|
},
|
7389
7729
|
{
|
7390
|
-
"id":
|
7730
|
+
"id": 564,
|
7391
7731
|
"name": "setPageSize",
|
7392
7732
|
"kind": 2048,
|
7393
7733
|
"kindString": "Method",
|
7394
7734
|
"flags": {},
|
7395
7735
|
"signatures": [
|
7396
7736
|
{
|
7397
|
-
"id":
|
7737
|
+
"id": 565,
|
7398
7738
|
"name": "setPageSize",
|
7399
7739
|
"kind": 4096,
|
7400
7740
|
"kindString": "Call signature",
|
@@ -7404,7 +7744,7 @@
|
|
7404
7744
|
},
|
7405
7745
|
"parameters": [
|
7406
7746
|
{
|
7407
|
-
"id":
|
7747
|
+
"id": 566,
|
7408
7748
|
"name": "size",
|
7409
7749
|
"kind": 32768,
|
7410
7750
|
"kindString": "Parameter",
|
@@ -7427,7 +7767,7 @@
|
|
7427
7767
|
"useTableRowCreation": {
|
7428
7768
|
"props": [
|
7429
7769
|
{
|
7430
|
-
"id":
|
7770
|
+
"id": 972,
|
7431
7771
|
"name": "data",
|
7432
7772
|
"kind": 1024,
|
7433
7773
|
"kindString": "Property",
|
@@ -7436,11 +7776,11 @@
|
|
7436
7776
|
"type": "array",
|
7437
7777
|
"elementType": {
|
7438
7778
|
"type": "reference",
|
7439
|
-
"id":
|
7779
|
+
"id": 768,
|
7440
7780
|
"typeArguments": [
|
7441
7781
|
{
|
7442
7782
|
"type": "reference",
|
7443
|
-
"id":
|
7783
|
+
"id": 981,
|
7444
7784
|
"name": "TRow"
|
7445
7785
|
}
|
7446
7786
|
],
|
@@ -7449,7 +7789,7 @@
|
|
7449
7789
|
}
|
7450
7790
|
},
|
7451
7791
|
{
|
7452
|
-
"id":
|
7792
|
+
"id": 980,
|
7453
7793
|
"name": "isCreating",
|
7454
7794
|
"kind": 1024,
|
7455
7795
|
"kindString": "Property",
|
@@ -7460,33 +7800,33 @@
|
|
7460
7800
|
}
|
7461
7801
|
},
|
7462
7802
|
{
|
7463
|
-
"id":
|
7803
|
+
"id": 973,
|
7464
7804
|
"name": "create",
|
7465
7805
|
"kind": 2048,
|
7466
7806
|
"kindString": "Method",
|
7467
7807
|
"flags": {},
|
7468
7808
|
"signatures": [
|
7469
7809
|
{
|
7470
|
-
"id":
|
7810
|
+
"id": 974,
|
7471
7811
|
"name": "create",
|
7472
7812
|
"kind": 4096,
|
7473
7813
|
"kindString": "Call signature",
|
7474
7814
|
"flags": {},
|
7475
7815
|
"parameters": [
|
7476
7816
|
{
|
7477
|
-
"id":
|
7817
|
+
"id": 975,
|
7478
7818
|
"name": "rowIndexPath",
|
7479
7819
|
"kind": 32768,
|
7480
7820
|
"kindString": "Parameter",
|
7481
7821
|
"flags": {},
|
7482
7822
|
"type": {
|
7483
7823
|
"type": "reference",
|
7484
|
-
"id":
|
7824
|
+
"id": 773,
|
7485
7825
|
"name": "RowIndexPath"
|
7486
7826
|
}
|
7487
7827
|
},
|
7488
7828
|
{
|
7489
|
-
"id":
|
7829
|
+
"id": 976,
|
7490
7830
|
"name": "values",
|
7491
7831
|
"kind": 32768,
|
7492
7832
|
"kindString": "Parameter",
|
@@ -7501,35 +7841,35 @@
|
|
7501
7841
|
],
|
7502
7842
|
"type": {
|
7503
7843
|
"type": "reference",
|
7504
|
-
"id":
|
7844
|
+
"id": 773,
|
7505
7845
|
"name": "RowIndexPath"
|
7506
7846
|
}
|
7507
7847
|
}
|
7508
7848
|
]
|
7509
7849
|
},
|
7510
7850
|
{
|
7511
|
-
"id":
|
7851
|
+
"id": 977,
|
7512
7852
|
"name": "remove",
|
7513
7853
|
"kind": 2048,
|
7514
7854
|
"kindString": "Method",
|
7515
7855
|
"flags": {},
|
7516
7856
|
"signatures": [
|
7517
7857
|
{
|
7518
|
-
"id":
|
7858
|
+
"id": 978,
|
7519
7859
|
"name": "remove",
|
7520
7860
|
"kind": 4096,
|
7521
7861
|
"kindString": "Call signature",
|
7522
7862
|
"flags": {},
|
7523
7863
|
"parameters": [
|
7524
7864
|
{
|
7525
|
-
"id":
|
7865
|
+
"id": 979,
|
7526
7866
|
"name": "rowIndexPath",
|
7527
7867
|
"kind": 32768,
|
7528
7868
|
"kindString": "Parameter",
|
7529
7869
|
"flags": {},
|
7530
7870
|
"type": {
|
7531
7871
|
"type": "reference",
|
7532
|
-
"id":
|
7872
|
+
"id": 773,
|
7533
7873
|
"name": "RowIndexPath"
|
7534
7874
|
}
|
7535
7875
|
}
|