@economic/taco 0.0.25-alpha.0 → 0.0.26-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/components/Combobox/Combobox.d.ts +16 -38
  2. package/dist/components/Combobox/useCombobox.d.ts +5 -2
  3. package/dist/components/Datepicker/Datepicker.d.ts +1 -1
  4. package/dist/components/Field/Field.d.ts +13 -24
  5. package/dist/components/Input/Input.d.ts +2 -5
  6. package/dist/components/Input/util.d.ts +1 -3
  7. package/dist/components/Listbox/Listbox.d.ts +3 -7
  8. package/dist/components/Listbox/ScrollableList.d.ts +2 -5
  9. package/dist/components/Listbox/useListbox.d.ts +1 -1
  10. package/dist/components/Provider/Provider.d.ts +6 -0
  11. package/dist/components/SearchInput/SearchInput.d.ts +1 -1
  12. package/dist/components/Select/Select.d.ts +2 -10
  13. package/dist/components/Textarea/Textarea.d.ts +2 -5
  14. package/dist/esm/components/Checkbox/Checkbox.js +2 -2
  15. package/dist/esm/components/Checkbox/Checkbox.js.map +1 -1
  16. package/dist/esm/components/Combobox/Combobox.js +21 -2
  17. package/dist/esm/components/Combobox/Combobox.js.map +1 -1
  18. package/dist/esm/components/Combobox/useCombobox.js +18 -3
  19. package/dist/esm/components/Combobox/useCombobox.js.map +1 -1
  20. package/dist/esm/components/Field/Field.js +37 -18
  21. package/dist/esm/components/Field/Field.js.map +1 -1
  22. package/dist/esm/components/IconButton/IconButton.js +1 -1
  23. package/dist/esm/components/IconButton/IconButton.js.map +1 -1
  24. package/dist/esm/components/Input/Input.js +5 -4
  25. package/dist/esm/components/Input/Input.js.map +1 -1
  26. package/dist/esm/components/Input/util.js +12 -39
  27. package/dist/esm/components/Input/util.js.map +1 -1
  28. package/dist/esm/components/Listbox/Listbox.js.map +1 -1
  29. package/dist/esm/components/Listbox/ScrollableList.js +1 -1
  30. package/dist/esm/components/Listbox/ScrollableList.js.map +1 -1
  31. package/dist/esm/components/Listbox/useListbox.js +3 -1
  32. package/dist/esm/components/Listbox/useListbox.js.map +1 -1
  33. package/dist/esm/components/Provider/Provider.js +3 -0
  34. package/dist/esm/components/Provider/Provider.js.map +1 -1
  35. package/dist/esm/components/Select/Select.js +2 -0
  36. package/dist/esm/components/Select/Select.js.map +1 -1
  37. package/dist/esm/components/Select/useSelect.js +3 -4
  38. package/dist/esm/components/Select/useSelect.js.map +1 -1
  39. package/dist/esm/components/Switch/Switch.js +2 -2
  40. package/dist/esm/components/Switch/Switch.js.map +1 -1
  41. package/dist/esm/components/Textarea/Textarea.js +1 -1
  42. package/dist/esm/components/Textarea/Textarea.js.map +1 -1
  43. package/dist/taco.cjs.development.js +107 -76
  44. package/dist/taco.cjs.development.js.map +1 -1
  45. package/dist/taco.cjs.production.min.js +1 -1
  46. package/dist/taco.cjs.production.min.js.map +1 -1
  47. package/package.json +2 -2
  48. package/types.json +543 -710
  49. package/dist/utils/tailwind.d.ts +0 -1
package/types.json CHANGED
@@ -173,12 +173,12 @@
173
173
  },
174
174
  "BaseSelectProps": {
175
175
  "intersections": [
176
- "ListboxProps",
176
+ "Omit<ListboxProps, [object Object]>",
177
177
  "Omit<ComboboxProps, [object Object]>"
178
178
  ],
179
179
  "props": [
180
180
  {
181
- "id": 739,
181
+ "id": 724,
182
182
  "name": "multiselect",
183
183
  "kind": 1024,
184
184
  "kindString": "Property",
@@ -279,7 +279,7 @@
279
279
  "typeArguments": [
280
280
  {
281
281
  "type": "reference",
282
- "id": 231,
282
+ "id": 208,
283
283
  "name": "DialogProps"
284
284
  }
285
285
  ],
@@ -328,7 +328,7 @@
328
328
  "typeArguments": [
329
329
  {
330
330
  "type": "reference",
331
- "id": 291,
331
+ "id": 272,
332
332
  "name": "HangerProps"
333
333
  }
334
334
  ],
@@ -377,7 +377,7 @@
377
377
  "typeArguments": [
378
378
  {
379
379
  "type": "reference",
380
- "id": 405,
380
+ "id": 386,
381
381
  "name": "MenuProps"
382
382
  }
383
383
  ],
@@ -426,7 +426,7 @@
426
426
  "typeArguments": [
427
427
  {
428
428
  "type": "reference",
429
- "id": 585,
429
+ "id": 566,
430
430
  "name": "PopoverProps"
431
431
  }
432
432
  ],
@@ -668,227 +668,22 @@
668
668
  "ControlledCheckboxProps"
669
669
  ],
670
670
  "ComboboxItem": "ScrollableListItem",
671
- "ComboboxProps": {
672
- "intersections": [
673
- "Omit<InputProps, [object Object] | [object Object] | [object Object]>"
674
- ],
671
+ "ComboboxProps": [
672
+ "InlineComboboxProps",
673
+ "DialogComboboxProps"
674
+ ],
675
+ "ComboboxTexts": {
675
676
  "props": [
676
677
  {
677
- "id": 153,
678
- "name": "data",
679
- "kind": 1024,
680
- "kindString": "Property",
681
- "flags": {
682
- "isOptional": true
683
- },
684
- "comment": {
685
- "shortText": "Array of options in combobox"
686
- },
687
- "type": {
688
- "type": "array",
689
- "elementType": {
690
- "type": "reference",
691
- "id": 149,
692
- "name": "ComboboxItem"
693
- }
694
- }
695
- },
696
- {
697
- "id": 154,
698
- "name": "defaultValue",
699
- "kind": 1024,
700
- "kindString": "Property",
701
- "flags": {
702
- "isOptional": true
703
- },
704
- "comment": {
705
- "shortText": "Initial value of the input in combobox.\nThis is used when combobox is mounted, if no value is provided.\n*Note* that combobox is a controlled component, setting this will also trigger the `onChange` event"
706
- },
707
- "type": {
708
- "type": "reference",
709
- "id": 150,
710
- "name": "ComboboxValue"
711
- }
712
- },
713
- {
714
- "id": 155,
715
- "name": "emptyValue",
716
- "kind": 1024,
717
- "kindString": "Property",
718
- "flags": {
719
- "isOptional": true
720
- },
721
- "comment": {
722
- "shortText": "Set what value should have an empty option in combobox"
723
- },
724
- "type": {
725
- "type": "reference",
726
- "id": 150,
727
- "name": "ComboboxValue"
728
- }
729
- },
730
- {
731
- "id": 156,
732
- "name": "highlighted",
733
- "kind": 1024,
734
- "kindString": "Property",
735
- "flags": {
736
- "isOptional": true
737
- },
738
- "comment": {
739
- "shortText": "Draws attention to the combobox by changing its style and making it visually prominent"
740
- },
741
- "type": {
742
- "type": "intrinsic",
743
- "name": "boolean"
744
- }
745
- },
746
- {
747
- "id": 157,
748
- "name": "inline",
749
- "kind": 1024,
750
- "kindString": "Property",
751
- "flags": {
752
- "isOptional": true
753
- },
754
- "comment": {
755
- "shortText": "Combobox will display its data when input is clicked/focused, even if the input is empty.\n*Note* that default combobox will display matching data only when user starts typing in input."
756
- },
757
- "type": {
758
- "type": "intrinsic",
759
- "name": "boolean"
760
- }
761
- },
762
- {
763
- "id": 158,
764
- "name": "loading",
678
+ "id": 151,
679
+ "name": "tooltip",
765
680
  "kind": 1024,
766
681
  "kindString": "Property",
767
- "flags": {
768
- "isOptional": true
769
- },
770
- "comment": {
771
- "shortText": "Displays loading state in listbox"
772
- },
682
+ "flags": {},
773
683
  "type": {
774
684
  "type": "intrinsic",
775
- "name": "boolean"
776
- }
777
- },
778
- {
779
- "id": 159,
780
- "name": "onChange",
781
- "kind": 1024,
782
- "kindString": "Property",
783
- "flags": {
784
- "isOptional": true
785
- },
786
- "comment": {
787
- "shortText": "Handler called when user chooses an option from the provided suggestions.\nSuggestions will be calculated based on the input value.\nThere are two ways to choose an option: either click on it, or navigate using keyboard and press `enter`"
788
- },
789
- "type": {
790
- "type": "reference",
791
- "typeArguments": [
792
- {
793
- "type": "reference",
794
- "qualifiedName": "HTMLInputElement",
795
- "package": "typescript",
796
- "name": "HTMLInputElement"
797
- }
798
- ],
799
- "qualifiedName": "React.ChangeEventHandler",
800
- "package": "@types/react",
801
- "name": "React.ChangeEventHandler"
802
- }
803
- },
804
- {
805
- "id": 163,
806
- "name": "state",
807
- "kind": 1024,
808
- "kindString": "Property",
809
- "flags": {
810
- "isOptional": true
811
- },
812
- "comment": {
813
- "shortText": "State will change the style of the combobox"
814
- },
815
- "type": {
816
- "type": "reference",
817
- "id": 4,
818
- "name": "State"
819
- }
820
- },
821
- {
822
- "id": 164,
823
- "name": "value",
824
- "kind": 1024,
825
- "kindString": "Property",
826
- "flags": {
827
- "isOptional": true
828
- },
829
- "comment": {
830
- "shortText": "Value of the input in combobox"
831
- },
832
- "type": {
833
- "type": "reference",
834
- "id": 150,
835
- "name": "ComboboxValue"
685
+ "name": "string"
836
686
  }
837
- },
838
- {
839
- "id": 160,
840
- "name": "onSearch",
841
- "kind": 2048,
842
- "kindString": "Method",
843
- "flags": {
844
- "isOptional": true
845
- },
846
- "signatures": [
847
- {
848
- "id": 161,
849
- "name": "onSearch",
850
- "kind": 4096,
851
- "kindString": "Call signature",
852
- "flags": {},
853
- "comment": {
854
- "shortText": "Handler called when the user enters a query"
855
- },
856
- "parameters": [
857
- {
858
- "id": 162,
859
- "name": "query",
860
- "kind": 32768,
861
- "kindString": "Parameter",
862
- "flags": {},
863
- "type": {
864
- "type": "intrinsic",
865
- "name": "string"
866
- }
867
- }
868
- ],
869
- "type": {
870
- "type": "union",
871
- "types": [
872
- {
873
- "type": "intrinsic",
874
- "name": "void"
875
- },
876
- {
877
- "type": "reference",
878
- "typeArguments": [
879
- {
880
- "type": "intrinsic",
881
- "name": "void"
882
- }
883
- ],
884
- "qualifiedName": "Promise",
885
- "package": "typescript",
886
- "name": "Promise"
887
- }
888
- ]
889
- }
890
- }
891
- ]
892
687
  }
893
688
  ]
894
689
  },
@@ -899,7 +694,7 @@
899
694
  ],
900
695
  "props": [
901
696
  {
902
- "id": 187,
697
+ "id": 164,
903
698
  "name": "calendar",
904
699
  "kind": 1024,
905
700
  "kindString": "Property",
@@ -916,7 +711,7 @@
916
711
  }
917
712
  },
918
713
  {
919
- "id": 188,
714
+ "id": 165,
920
715
  "name": "shortcuts",
921
716
  "kind": 1024,
922
717
  "kindString": "Property",
@@ -932,7 +727,7 @@
932
727
  }
933
728
  },
934
729
  {
935
- "id": 189,
730
+ "id": 166,
936
731
  "name": "shortcutsText",
937
732
  "kind": 1024,
938
733
  "kindString": "Property",
@@ -948,7 +743,7 @@
948
743
  }
949
744
  },
950
745
  {
951
- "id": 193,
746
+ "id": 170,
952
747
  "name": "value",
953
748
  "kind": 1024,
954
749
  "kindString": "Property",
@@ -966,7 +761,7 @@
966
761
  }
967
762
  },
968
763
  {
969
- "id": 190,
764
+ "id": 167,
970
765
  "name": "onReset",
971
766
  "kind": 2048,
972
767
  "kindString": "Method",
@@ -975,7 +770,7 @@
975
770
  },
976
771
  "signatures": [
977
772
  {
978
- "id": 191,
773
+ "id": 168,
979
774
  "name": "onReset",
980
775
  "kind": 4096,
981
776
  "kindString": "Call signature",
@@ -985,7 +780,7 @@
985
780
  },
986
781
  "parameters": [
987
782
  {
988
- "id": 192,
783
+ "id": 169,
989
784
  "name": "event",
990
785
  "kind": 32768,
991
786
  "kindString": "Parameter",
@@ -1024,7 +819,7 @@
1024
819
  "DatepickerTexts": {
1025
820
  "props": [
1026
821
  {
1027
- "id": 181,
822
+ "id": 158,
1028
823
  "name": "calendar",
1029
824
  "kind": 1024,
1030
825
  "kindString": "Property",
@@ -1038,7 +833,7 @@
1038
833
  }
1039
834
  },
1040
835
  {
1041
- "id": 182,
836
+ "id": 159,
1042
837
  "name": "clear",
1043
838
  "kind": 1024,
1044
839
  "kindString": "Property",
@@ -1052,7 +847,7 @@
1052
847
  }
1053
848
  },
1054
849
  {
1055
- "id": 183,
850
+ "id": 160,
1056
851
  "name": "expand",
1057
852
  "kind": 1024,
1058
853
  "kindString": "Property",
@@ -1066,7 +861,7 @@
1066
861
  }
1067
862
  },
1068
863
  {
1069
- "id": 184,
864
+ "id": 161,
1070
865
  "name": "shortcuts",
1071
866
  "kind": 1024,
1072
867
  "kindString": "Property",
@@ -1099,7 +894,7 @@
1099
894
  ],
1100
895
  "props": [
1101
896
  {
1102
- "id": 207,
897
+ "id": 184,
1103
898
  "name": "aria-label",
1104
899
  "kind": 1024,
1105
900
  "kindString": "Property",
@@ -1113,7 +908,7 @@
1113
908
  }
1114
909
  },
1115
910
  {
1116
- "id": 208,
911
+ "id": 185,
1117
912
  "name": "children",
1118
913
  "kind": 1024,
1119
914
  "kindString": "Property",
@@ -1142,28 +937,28 @@
1142
937
  {
1143
938
  "type": "reflection",
1144
939
  "declaration": {
1145
- "id": 209,
940
+ "id": 186,
1146
941
  "name": "__type",
1147
942
  "kind": 65536,
1148
943
  "kindString": "Type literal",
1149
944
  "flags": {},
1150
945
  "signatures": [
1151
946
  {
1152
- "id": 210,
947
+ "id": 187,
1153
948
  "name": "__type",
1154
949
  "kind": 4096,
1155
950
  "kindString": "Call signature",
1156
951
  "flags": {},
1157
952
  "parameters": [
1158
953
  {
1159
- "id": 211,
954
+ "id": 188,
1160
955
  "name": "props",
1161
956
  "kind": 32768,
1162
957
  "kindString": "Parameter",
1163
958
  "flags": {},
1164
959
  "type": {
1165
960
  "type": "reference",
1166
- "id": 212,
961
+ "id": 189,
1167
962
  "name": "DialogContentRenderProps"
1168
963
  }
1169
964
  }
@@ -1186,7 +981,7 @@
1186
981
  "DialogContentRenderProps": {
1187
982
  "props": [
1188
983
  {
1189
- "id": 216,
984
+ "id": 193,
1190
985
  "name": "drawer",
1191
986
  "kind": 1024,
1192
987
  "kindString": "Property",
@@ -1195,19 +990,19 @@
1195
990
  },
1196
991
  "type": {
1197
992
  "type": "reference",
1198
- "id": 204,
993
+ "id": 181,
1199
994
  "name": "DialogContentDrawerRenderProps"
1200
995
  }
1201
996
  },
1202
997
  {
1203
- "id": 214,
998
+ "id": 191,
1204
999
  "name": "close",
1205
1000
  "kind": 2048,
1206
1001
  "kindString": "Method",
1207
1002
  "flags": {},
1208
1003
  "signatures": [
1209
1004
  {
1210
- "id": 215,
1005
+ "id": 192,
1211
1006
  "name": "close",
1212
1007
  "kind": 4096,
1213
1008
  "kindString": "Call signature",
@@ -1227,7 +1022,7 @@
1227
1022
  ],
1228
1023
  "props": [
1229
1024
  {
1230
- "id": 219,
1025
+ "id": 196,
1231
1026
  "name": "children",
1232
1027
  "kind": 1024,
1233
1028
  "kindString": "Property",
@@ -1256,28 +1051,28 @@
1256
1051
  {
1257
1052
  "type": "reflection",
1258
1053
  "declaration": {
1259
- "id": 220,
1054
+ "id": 197,
1260
1055
  "name": "__type",
1261
1056
  "kind": 65536,
1262
1057
  "kindString": "Type literal",
1263
1058
  "flags": {},
1264
1059
  "signatures": [
1265
1060
  {
1266
- "id": 221,
1061
+ "id": 198,
1267
1062
  "name": "__type",
1268
1063
  "kind": 4096,
1269
1064
  "kindString": "Call signature",
1270
1065
  "flags": {},
1271
1066
  "parameters": [
1272
1067
  {
1273
- "id": 222,
1068
+ "id": 199,
1274
1069
  "name": "props",
1275
1070
  "kind": 32768,
1276
1071
  "kindString": "Parameter",
1277
1072
  "flags": {},
1278
1073
  "type": {
1279
1074
  "type": "reference",
1280
- "id": 223,
1075
+ "id": 200,
1281
1076
  "name": "DialogDrawerRenderProps"
1282
1077
  }
1283
1078
  }
@@ -1312,7 +1107,7 @@
1312
1107
  "DialogProps": {
1313
1108
  "props": [
1314
1109
  {
1315
- "id": 233,
1110
+ "id": 210,
1316
1111
  "name": "children",
1317
1112
  "kind": 1024,
1318
1113
  "kindString": "Property",
@@ -1339,7 +1134,7 @@
1339
1134
  }
1340
1135
  },
1341
1136
  {
1342
- "id": 234,
1137
+ "id": 211,
1343
1138
  "name": "closeOnEscape",
1344
1139
  "kind": 1024,
1345
1140
  "kindString": "Property",
@@ -1355,7 +1150,7 @@
1355
1150
  }
1356
1151
  },
1357
1152
  {
1358
- "id": 235,
1153
+ "id": 212,
1359
1154
  "name": "defaultOpen",
1360
1155
  "kind": 1024,
1361
1156
  "kindString": "Property",
@@ -1371,7 +1166,7 @@
1371
1166
  }
1372
1167
  },
1373
1168
  {
1374
- "id": 236,
1169
+ "id": 213,
1375
1170
  "name": "draggable",
1376
1171
  "kind": 1024,
1377
1172
  "kindString": "Property",
@@ -1387,7 +1182,7 @@
1387
1182
  }
1388
1183
  },
1389
1184
  {
1390
- "id": 242,
1185
+ "id": 219,
1391
1186
  "name": "open",
1392
1187
  "kind": 1024,
1393
1188
  "kindString": "Property",
@@ -1403,7 +1198,7 @@
1403
1198
  }
1404
1199
  },
1405
1200
  {
1406
- "id": 243,
1201
+ "id": 220,
1407
1202
  "name": "showCloseButton",
1408
1203
  "kind": 1024,
1409
1204
  "kindString": "Property",
@@ -1419,7 +1214,7 @@
1419
1214
  }
1420
1215
  },
1421
1216
  {
1422
- "id": 244,
1217
+ "id": 221,
1423
1218
  "name": "size",
1424
1219
  "kind": 1024,
1425
1220
  "kindString": "Property",
@@ -1431,12 +1226,12 @@
1431
1226
  },
1432
1227
  "type": {
1433
1228
  "type": "reference",
1434
- "id": 225,
1229
+ "id": 202,
1435
1230
  "name": "DialogSize"
1436
1231
  }
1437
1232
  },
1438
1233
  {
1439
- "id": 245,
1234
+ "id": 222,
1440
1235
  "name": "trigger",
1441
1236
  "kind": 1024,
1442
1237
  "kindString": "Property",
@@ -1454,7 +1249,7 @@
1454
1249
  }
1455
1250
  },
1456
1251
  {
1457
- "id": 239,
1252
+ "id": 216,
1458
1253
  "name": "onChange",
1459
1254
  "kind": 2048,
1460
1255
  "kindString": "Method",
@@ -1463,7 +1258,7 @@
1463
1258
  },
1464
1259
  "signatures": [
1465
1260
  {
1466
- "id": 240,
1261
+ "id": 217,
1467
1262
  "name": "onChange",
1468
1263
  "kind": 4096,
1469
1264
  "kindString": "Call signature",
@@ -1473,7 +1268,7 @@
1473
1268
  },
1474
1269
  "parameters": [
1475
1270
  {
1476
- "id": 241,
1271
+ "id": 218,
1477
1272
  "name": "open",
1478
1273
  "kind": 32768,
1479
1274
  "kindString": "Parameter",
@@ -1492,7 +1287,7 @@
1492
1287
  ]
1493
1288
  },
1494
1289
  {
1495
- "id": 237,
1290
+ "id": 214,
1496
1291
  "name": "onClose",
1497
1292
  "kind": 2048,
1498
1293
  "kindString": "Method",
@@ -1501,7 +1296,7 @@
1501
1296
  },
1502
1297
  "signatures": [
1503
1298
  {
1504
- "id": 238,
1299
+ "id": 215,
1505
1300
  "name": "onClose",
1506
1301
  "kind": 4096,
1507
1302
  "kindString": "Call signature",
@@ -1543,7 +1338,7 @@
1543
1338
  "DialogTexts": {
1544
1339
  "props": [
1545
1340
  {
1546
- "id": 229,
1341
+ "id": 206,
1547
1342
  "name": "close",
1548
1343
  "kind": 1024,
1549
1344
  "kindString": "Property",
@@ -1557,7 +1352,7 @@
1557
1352
  }
1558
1353
  },
1559
1354
  {
1560
- "id": 230,
1355
+ "id": 207,
1561
1356
  "name": "drag",
1562
1357
  "kind": 1024,
1563
1358
  "kindString": "Property",
@@ -1572,72 +1367,107 @@
1572
1367
  "DialogTitleProps": "React.HTMLAttributes<HTMLHeadingElement>",
1573
1368
  "FieldProps": {
1574
1369
  "intersections": [
1575
- "React.LabelHTMLAttributes<HTMLLabelElement>"
1370
+ "Omit<React.HTMLAttributes<HTMLDivElement>, [object Object]>"
1576
1371
  ],
1577
1372
  "props": [
1578
1373
  {
1579
- "id": 258,
1374
+ "id": 235,
1580
1375
  "name": "children",
1581
1376
  "kind": 1024,
1582
1377
  "kindString": "Property",
1583
1378
  "flags": {},
1584
- "comment": {
1585
- "shortText": "Content of the field"
1586
- },
1587
1379
  "type": {
1588
1380
  "type": "reference",
1589
- "qualifiedName": "React.ReactNode",
1381
+ "qualifiedName": "global.JSX.Element",
1590
1382
  "package": "@types/react",
1591
- "name": "React.ReactNode"
1383
+ "name": "JSX.Element"
1592
1384
  }
1593
1385
  },
1594
1386
  {
1595
- "id": 259,
1387
+ "id": 236,
1596
1388
  "name": "disabled",
1597
1389
  "kind": 1024,
1598
1390
  "kindString": "Property",
1599
1391
  "flags": {
1600
1392
  "isOptional": true
1601
1393
  },
1602
- "comment": {
1603
- "shortText": "Changes the style to indicate the element is disabled"
1604
- },
1605
1394
  "type": {
1606
1395
  "type": "intrinsic",
1607
1396
  "name": "boolean"
1608
1397
  }
1609
1398
  },
1610
1399
  {
1611
- "id": 260,
1612
- "name": "message",
1400
+ "id": 237,
1401
+ "name": "invalid",
1613
1402
  "kind": 1024,
1614
1403
  "kindString": "Property",
1615
1404
  "flags": {
1616
1405
  "isOptional": true
1617
1406
  },
1618
- "comment": {
1619
- "shortText": "Text displayed below the children of Field.\nShould be a short text that indicates feedback for user."
1620
- },
1621
1407
  "type": {
1622
1408
  "type": "intrinsic",
1623
- "name": "string"
1409
+ "name": "boolean"
1624
1410
  }
1625
1411
  },
1626
1412
  {
1627
- "id": 261,
1628
- "name": "state",
1413
+ "id": 238,
1414
+ "name": "label",
1629
1415
  "kind": 1024,
1630
1416
  "kindString": "Property",
1631
1417
  "flags": {
1632
1418
  "isOptional": true
1633
1419
  },
1634
- "comment": {
1635
- "shortText": "State will change the style of the field"
1420
+ "type": {
1421
+ "type": "union",
1422
+ "types": [
1423
+ {
1424
+ "type": "intrinsic",
1425
+ "name": "string"
1426
+ },
1427
+ {
1428
+ "type": "reference",
1429
+ "qualifiedName": "global.JSX.Element",
1430
+ "package": "@types/react",
1431
+ "name": "JSX.Element"
1432
+ }
1433
+ ]
1434
+ }
1435
+ },
1436
+ {
1437
+ "id": 239,
1438
+ "name": "message",
1439
+ "kind": 1024,
1440
+ "kindString": "Property",
1441
+ "flags": {
1442
+ "isOptional": true
1636
1443
  },
1637
1444
  "type": {
1638
- "type": "reference",
1639
- "id": 4,
1640
- "name": "State"
1445
+ "type": "union",
1446
+ "types": [
1447
+ {
1448
+ "type": "intrinsic",
1449
+ "name": "string"
1450
+ },
1451
+ {
1452
+ "type": "reference",
1453
+ "qualifiedName": "global.JSX.Element",
1454
+ "package": "@types/react",
1455
+ "name": "JSX.Element"
1456
+ }
1457
+ ]
1458
+ }
1459
+ },
1460
+ {
1461
+ "id": 240,
1462
+ "name": "required",
1463
+ "kind": 1024,
1464
+ "kindString": "Property",
1465
+ "flags": {
1466
+ "isOptional": true
1467
+ },
1468
+ "type": {
1469
+ "type": "intrinsic",
1470
+ "name": "boolean"
1641
1471
  }
1642
1472
  }
1643
1473
  ]
@@ -1648,7 +1478,7 @@
1648
1478
  ],
1649
1479
  "props": [
1650
1480
  {
1651
- "id": 270,
1481
+ "id": 251,
1652
1482
  "name": "children",
1653
1483
  "kind": 1024,
1654
1484
  "kindString": "Property",
@@ -1664,7 +1494,7 @@
1664
1494
  }
1665
1495
  },
1666
1496
  {
1667
- "id": 271,
1497
+ "id": 252,
1668
1498
  "name": "horizontal",
1669
1499
  "kind": 1024,
1670
1500
  "kindString": "Property",
@@ -1687,7 +1517,7 @@
1687
1517
  ],
1688
1518
  "props": [
1689
1519
  {
1690
- "id": 254,
1520
+ "id": 231,
1691
1521
  "name": "Close",
1692
1522
  "kind": 1024,
1693
1523
  "kindString": "Property",
@@ -1700,7 +1530,7 @@
1700
1530
  "types": [
1701
1531
  {
1702
1532
  "type": "reference",
1703
- "id": 203,
1533
+ "id": 180,
1704
1534
  "name": "DialogCloseProps"
1705
1535
  },
1706
1536
  {
@@ -1726,7 +1556,7 @@
1726
1556
  }
1727
1557
  },
1728
1558
  {
1729
- "id": 249,
1559
+ "id": 226,
1730
1560
  "name": "Content",
1731
1561
  "kind": 1024,
1732
1562
  "kindString": "Property",
@@ -1739,7 +1569,7 @@
1739
1569
  "types": [
1740
1570
  {
1741
1571
  "type": "reference",
1742
- "id": 205,
1572
+ "id": 182,
1743
1573
  "name": "DialogContentProps"
1744
1574
  },
1745
1575
  {
@@ -1765,7 +1595,7 @@
1765
1595
  }
1766
1596
  },
1767
1597
  {
1768
- "id": 253,
1598
+ "id": 230,
1769
1599
  "name": "Drawer",
1770
1600
  "kind": 1024,
1771
1601
  "kindString": "Property",
@@ -1778,7 +1608,7 @@
1778
1608
  "types": [
1779
1609
  {
1780
1610
  "type": "reference",
1781
- "id": 217,
1611
+ "id": 194,
1782
1612
  "name": "DialogDrawerProps"
1783
1613
  },
1784
1614
  {
@@ -1804,7 +1634,7 @@
1804
1634
  }
1805
1635
  },
1806
1636
  {
1807
- "id": 252,
1637
+ "id": 229,
1808
1638
  "name": "Extra",
1809
1639
  "kind": 1024,
1810
1640
  "kindString": "Property",
@@ -1842,7 +1672,7 @@
1842
1672
  }
1843
1673
  },
1844
1674
  {
1845
- "id": 251,
1675
+ "id": 228,
1846
1676
  "name": "Footer",
1847
1677
  "kind": 1024,
1848
1678
  "kindString": "Property",
@@ -1855,7 +1685,7 @@
1855
1685
  "types": [
1856
1686
  {
1857
1687
  "type": "reference",
1858
- "id": 224,
1688
+ "id": 201,
1859
1689
  "name": "DialogFooterProps"
1860
1690
  },
1861
1691
  {
@@ -1881,7 +1711,7 @@
1881
1711
  }
1882
1712
  },
1883
1713
  {
1884
- "id": 250,
1714
+ "id": 227,
1885
1715
  "name": "Title",
1886
1716
  "kind": 1024,
1887
1717
  "kindString": "Property",
@@ -1894,7 +1724,7 @@
1894
1724
  "types": [
1895
1725
  {
1896
1726
  "type": "reference",
1897
- "id": 226,
1727
+ "id": 203,
1898
1728
  "name": "DialogTitleProps"
1899
1729
  },
1900
1730
  {
@@ -1920,7 +1750,7 @@
1920
1750
  }
1921
1751
  },
1922
1752
  {
1923
- "id": 248,
1753
+ "id": 225,
1924
1754
  "name": "Trigger",
1925
1755
  "kind": 1024,
1926
1756
  "kindString": "Property",
@@ -1965,7 +1795,7 @@
1965
1795
  ],
1966
1796
  "props": [
1967
1797
  {
1968
- "id": 299,
1798
+ "id": 280,
1969
1799
  "name": "Anchor",
1970
1800
  "kind": 1024,
1971
1801
  "kindString": "Property",
@@ -1975,7 +1805,7 @@
1975
1805
  "typeArguments": [
1976
1806
  {
1977
1807
  "type": "reference",
1978
- "id": 287,
1808
+ "id": 268,
1979
1809
  "name": "HangerAnchorProps"
1980
1810
  }
1981
1811
  ],
@@ -1985,7 +1815,7 @@
1985
1815
  }
1986
1816
  },
1987
1817
  {
1988
- "id": 300,
1818
+ "id": 281,
1989
1819
  "name": "Content",
1990
1820
  "kind": 1024,
1991
1821
  "kindString": "Property",
@@ -1995,7 +1825,7 @@
1995
1825
  "typeArguments": [
1996
1826
  {
1997
1827
  "type": "reference",
1998
- "id": 288,
1828
+ "id": 269,
1999
1829
  "name": "HangerContentProps"
2000
1830
  }
2001
1831
  ],
@@ -2012,7 +1842,7 @@
2012
1842
  ],
2013
1843
  "props": [
2014
1844
  {
2015
- "id": 517,
1845
+ "id": 498,
2016
1846
  "name": "Group",
2017
1847
  "kind": 1024,
2018
1848
  "kindString": "Property",
@@ -2028,7 +1858,7 @@
2028
1858
  "types": [
2029
1859
  {
2030
1860
  "type": "reference",
2031
- "id": 513,
1861
+ "id": 494,
2032
1862
  "name": "NavigationMenuGroupProps"
2033
1863
  },
2034
1864
  {
@@ -2061,7 +1891,7 @@
2061
1891
  ],
2062
1892
  "props": [
2063
1893
  {
2064
- "id": 521,
1894
+ "id": 502,
2065
1895
  "name": "Item",
2066
1896
  "kind": 1024,
2067
1897
  "kindString": "Property",
@@ -2077,7 +1907,7 @@
2077
1907
  "types": [
2078
1908
  {
2079
1909
  "type": "reference",
2080
- "id": 505,
1910
+ "id": 486,
2081
1911
  "name": "NavigationItemProps"
2082
1912
  },
2083
1913
  {
@@ -2103,7 +1933,7 @@
2103
1933
  }
2104
1934
  },
2105
1935
  {
2106
- "id": 522,
1936
+ "id": 503,
2107
1937
  "name": "Menu",
2108
1938
  "kind": 1024,
2109
1939
  "kindString": "Property",
@@ -2113,12 +1943,12 @@
2113
1943
  },
2114
1944
  "type": {
2115
1945
  "type": "reference",
2116
- "id": 515,
1946
+ "id": 496,
2117
1947
  "name": "ForwardedNavigationMenuWithStatics"
2118
1948
  }
2119
1949
  },
2120
1950
  {
2121
- "id": 523,
1951
+ "id": 504,
2122
1952
  "name": "Panel",
2123
1953
  "kind": 1024,
2124
1954
  "kindString": "Property",
@@ -2134,7 +1964,7 @@
2134
1964
  "types": [
2135
1965
  {
2136
1966
  "type": "reference",
2137
- "id": 512,
1967
+ "id": 493,
2138
1968
  "name": "NavigationPanelProps"
2139
1969
  },
2140
1970
  {
@@ -2167,7 +1997,7 @@
2167
1997
  ],
2168
1998
  "props": [
2169
1999
  {
2170
- "id": 592,
2000
+ "id": 573,
2171
2001
  "name": "Close",
2172
2002
  "kind": 1024,
2173
2003
  "kindString": "Property",
@@ -2177,7 +2007,7 @@
2177
2007
  "typeArguments": [
2178
2008
  {
2179
2009
  "type": "reference",
2180
- "id": 584,
2010
+ "id": 565,
2181
2011
  "name": "PopoverCloseProps"
2182
2012
  }
2183
2013
  ],
@@ -2187,7 +2017,7 @@
2187
2017
  }
2188
2018
  },
2189
2019
  {
2190
- "id": 591,
2020
+ "id": 572,
2191
2021
  "name": "Content",
2192
2022
  "kind": 1024,
2193
2023
  "kindString": "Property",
@@ -2197,7 +2027,7 @@
2197
2027
  "typeArguments": [
2198
2028
  {
2199
2029
  "type": "reference",
2200
- "id": 577,
2030
+ "id": 558,
2201
2031
  "name": "PopoverContentProps"
2202
2032
  }
2203
2033
  ],
@@ -2207,7 +2037,7 @@
2207
2037
  }
2208
2038
  },
2209
2039
  {
2210
- "id": 590,
2040
+ "id": 571,
2211
2041
  "name": "Trigger",
2212
2042
  "kind": 1024,
2213
2043
  "kindString": "Property",
@@ -2217,7 +2047,7 @@
2217
2047
  "typeArguments": [
2218
2048
  {
2219
2049
  "type": "reference",
2220
- "id": 572,
2050
+ "id": 553,
2221
2051
  "name": "PopoverTriggerProps"
2222
2052
  }
2223
2053
  ],
@@ -2234,7 +2064,7 @@
2234
2064
  ],
2235
2065
  "props": [
2236
2066
  {
2237
- "id": 723,
2067
+ "id": 708,
2238
2068
  "name": "Item",
2239
2069
  "kind": 1024,
2240
2070
  "kindString": "Property",
@@ -2247,7 +2077,7 @@
2247
2077
  "typeArguments": [
2248
2078
  {
2249
2079
  "type": "reference",
2250
- "id": 714,
2080
+ "id": 699,
2251
2081
  "name": "RadioGroupItemProps"
2252
2082
  }
2253
2083
  ],
@@ -2264,7 +2094,7 @@
2264
2094
  ],
2265
2095
  "props": [
2266
2096
  {
2267
- "id": 1004,
2097
+ "id": 981,
2268
2098
  "name": "Content",
2269
2099
  "kind": 1024,
2270
2100
  "kindString": "Property",
@@ -2280,7 +2110,7 @@
2280
2110
  "types": [
2281
2111
  {
2282
2112
  "type": "reference",
2283
- "id": 997,
2113
+ "id": 974,
2284
2114
  "name": "TabContentProps"
2285
2115
  },
2286
2116
  {
@@ -2306,7 +2136,7 @@
2306
2136
  }
2307
2137
  },
2308
2138
  {
2309
- "id": 1002,
2139
+ "id": 979,
2310
2140
  "name": "List",
2311
2141
  "kind": 1024,
2312
2142
  "kindString": "Property",
@@ -2322,7 +2152,7 @@
2322
2152
  "types": [
2323
2153
  {
2324
2154
  "type": "reference",
2325
- "id": 992,
2155
+ "id": 969,
2326
2156
  "name": "TabListProps"
2327
2157
  },
2328
2158
  {
@@ -2348,7 +2178,7 @@
2348
2178
  }
2349
2179
  },
2350
2180
  {
2351
- "id": 1003,
2181
+ "id": 980,
2352
2182
  "name": "Trigger",
2353
2183
  "kind": 1024,
2354
2184
  "kindString": "Property",
@@ -2364,7 +2194,7 @@
2364
2194
  "types": [
2365
2195
  {
2366
2196
  "type": "reference",
2367
- "id": 993,
2197
+ "id": 970,
2368
2198
  "name": "TabTriggerProps"
2369
2199
  },
2370
2200
  {
@@ -2397,7 +2227,7 @@
2397
2227
  ],
2398
2228
  "props": [
2399
2229
  {
2400
- "id": 1127,
2230
+ "id": 1104,
2401
2231
  "name": "Group",
2402
2232
  "kind": 1024,
2403
2233
  "kindString": "Property",
@@ -2413,7 +2243,7 @@
2413
2243
  "types": [
2414
2244
  {
2415
2245
  "type": "reference",
2416
- "id": 1107,
2246
+ "id": 1084,
2417
2247
  "name": "TreeviewGroupProps"
2418
2248
  },
2419
2249
  {
@@ -2439,7 +2269,7 @@
2439
2269
  }
2440
2270
  },
2441
2271
  {
2442
- "id": 1126,
2272
+ "id": 1103,
2443
2273
  "name": "Item",
2444
2274
  "kind": 1024,
2445
2275
  "kindString": "Property",
@@ -2455,7 +2285,7 @@
2455
2285
  "types": [
2456
2286
  {
2457
2287
  "type": "reference",
2458
- "id": 1106,
2288
+ "id": 1083,
2459
2289
  "name": "TreeviewItemProps"
2460
2290
  },
2461
2291
  {
@@ -2488,7 +2318,7 @@
2488
2318
  ],
2489
2319
  "props": [
2490
2320
  {
2491
- "id": 278,
2321
+ "id": 259,
2492
2322
  "name": "as",
2493
2323
  "kind": 1024,
2494
2324
  "kindString": "Property",
@@ -2517,7 +2347,7 @@
2517
2347
  }
2518
2348
  },
2519
2349
  {
2520
- "id": 279,
2350
+ "id": 260,
2521
2351
  "name": "children",
2522
2352
  "kind": 1024,
2523
2353
  "kindString": "Property",
@@ -2541,7 +2371,7 @@
2541
2371
  ],
2542
2372
  "props": [
2543
2373
  {
2544
- "id": 290,
2374
+ "id": 271,
2545
2375
  "name": "placement",
2546
2376
  "kind": 1024,
2547
2377
  "kindString": "Property",
@@ -2563,7 +2393,7 @@
2563
2393
  "HangerTexts": {
2564
2394
  "props": [
2565
2395
  {
2566
- "id": 286,
2396
+ "id": 267,
2567
2397
  "name": "close",
2568
2398
  "kind": 1024,
2569
2399
  "kindString": "Property",
@@ -2584,7 +2414,7 @@
2584
2414
  ],
2585
2415
  "props": [
2586
2416
  {
2587
- "id": 312,
2417
+ "id": 293,
2588
2418
  "name": "appearance",
2589
2419
  "kind": 1024,
2590
2420
  "kindString": "Property",
@@ -2601,7 +2431,7 @@
2601
2431
  }
2602
2432
  },
2603
2433
  {
2604
- "id": 319,
2434
+ "id": 300,
2605
2435
  "name": "icon",
2606
2436
  "kind": 1024,
2607
2437
  "kindString": "Property",
@@ -2611,12 +2441,12 @@
2611
2441
  },
2612
2442
  "type": {
2613
2443
  "type": "reference",
2614
- "id": 303,
2444
+ "id": 284,
2615
2445
  "name": "IconName"
2616
2446
  }
2617
2447
  },
2618
2448
  {
2619
- "id": 326,
2449
+ "id": 307,
2620
2450
  "name": "rounded",
2621
2451
  "kind": 1024,
2622
2452
  "kindString": "Property",
@@ -2632,7 +2462,7 @@
2632
2462
  }
2633
2463
  },
2634
2464
  {
2635
- "id": 327,
2465
+ "id": 308,
2636
2466
  "name": "tooltip",
2637
2467
  "kind": 1024,
2638
2468
  "kindString": "Property",
@@ -2648,7 +2478,7 @@
2648
2478
  }
2649
2479
  },
2650
2480
  {
2651
- "id": 313,
2481
+ "id": 294,
2652
2482
  "name": "dialog",
2653
2483
  "kind": 2048,
2654
2484
  "kindString": "Method",
@@ -2657,7 +2487,7 @@
2657
2487
  },
2658
2488
  "signatures": [
2659
2489
  {
2660
- "id": 314,
2490
+ "id": 295,
2661
2491
  "name": "dialog",
2662
2492
  "kind": 4096,
2663
2493
  "kindString": "Call signature",
@@ -2667,7 +2497,7 @@
2667
2497
  },
2668
2498
  "parameters": [
2669
2499
  {
2670
- "id": 315,
2500
+ "id": 296,
2671
2501
  "name": "props",
2672
2502
  "kind": 32768,
2673
2503
  "kindString": "Parameter",
@@ -2677,7 +2507,7 @@
2677
2507
  "typeArguments": [
2678
2508
  {
2679
2509
  "type": "reference",
2680
- "id": 231,
2510
+ "id": 208,
2681
2511
  "name": "DialogProps"
2682
2512
  }
2683
2513
  ],
@@ -2697,7 +2527,7 @@
2697
2527
  ]
2698
2528
  },
2699
2529
  {
2700
- "id": 316,
2530
+ "id": 297,
2701
2531
  "name": "hanger",
2702
2532
  "kind": 2048,
2703
2533
  "kindString": "Method",
@@ -2706,7 +2536,7 @@
2706
2536
  },
2707
2537
  "signatures": [
2708
2538
  {
2709
- "id": 317,
2539
+ "id": 298,
2710
2540
  "name": "hanger",
2711
2541
  "kind": 4096,
2712
2542
  "kindString": "Call signature",
@@ -2716,7 +2546,7 @@
2716
2546
  },
2717
2547
  "parameters": [
2718
2548
  {
2719
- "id": 318,
2549
+ "id": 299,
2720
2550
  "name": "props",
2721
2551
  "kind": 32768,
2722
2552
  "kindString": "Parameter",
@@ -2726,7 +2556,7 @@
2726
2556
  "typeArguments": [
2727
2557
  {
2728
2558
  "type": "reference",
2729
- "id": 291,
2559
+ "id": 272,
2730
2560
  "name": "HangerProps"
2731
2561
  }
2732
2562
  ],
@@ -2746,7 +2576,7 @@
2746
2576
  ]
2747
2577
  },
2748
2578
  {
2749
- "id": 320,
2579
+ "id": 301,
2750
2580
  "name": "menu",
2751
2581
  "kind": 2048,
2752
2582
  "kindString": "Method",
@@ -2755,7 +2585,7 @@
2755
2585
  },
2756
2586
  "signatures": [
2757
2587
  {
2758
- "id": 321,
2588
+ "id": 302,
2759
2589
  "name": "menu",
2760
2590
  "kind": 4096,
2761
2591
  "kindString": "Call signature",
@@ -2765,7 +2595,7 @@
2765
2595
  },
2766
2596
  "parameters": [
2767
2597
  {
2768
- "id": 322,
2598
+ "id": 303,
2769
2599
  "name": "props",
2770
2600
  "kind": 32768,
2771
2601
  "kindString": "Parameter",
@@ -2775,7 +2605,7 @@
2775
2605
  "typeArguments": [
2776
2606
  {
2777
2607
  "type": "reference",
2778
- "id": 405,
2608
+ "id": 386,
2779
2609
  "name": "MenuProps"
2780
2610
  }
2781
2611
  ],
@@ -2795,7 +2625,7 @@
2795
2625
  ]
2796
2626
  },
2797
2627
  {
2798
- "id": 323,
2628
+ "id": 304,
2799
2629
  "name": "popover",
2800
2630
  "kind": 2048,
2801
2631
  "kindString": "Method",
@@ -2804,7 +2634,7 @@
2804
2634
  },
2805
2635
  "signatures": [
2806
2636
  {
2807
- "id": 324,
2637
+ "id": 305,
2808
2638
  "name": "popover",
2809
2639
  "kind": 4096,
2810
2640
  "kindString": "Call signature",
@@ -2814,7 +2644,7 @@
2814
2644
  },
2815
2645
  "parameters": [
2816
2646
  {
2817
- "id": 325,
2647
+ "id": 306,
2818
2648
  "name": "props",
2819
2649
  "kind": 32768,
2820
2650
  "kindString": "Parameter",
@@ -2824,7 +2654,7 @@
2824
2654
  "typeArguments": [
2825
2655
  {
2826
2656
  "type": "reference",
2827
- "id": 585,
2657
+ "id": 566,
2828
2658
  "name": "PopoverProps"
2829
2659
  }
2830
2660
  ],
@@ -3665,7 +3495,7 @@
3665
3495
  ],
3666
3496
  "props": [
3667
3497
  {
3668
- "id": 306,
3498
+ "id": 287,
3669
3499
  "name": "name",
3670
3500
  "kind": 1024,
3671
3501
  "kindString": "Property",
@@ -3675,7 +3505,7 @@
3675
3505
  },
3676
3506
  "type": {
3677
3507
  "type": "reference",
3678
- "id": 303,
3508
+ "id": 284,
3679
3509
  "name": "IconName"
3680
3510
  }
3681
3511
  }
@@ -3687,7 +3517,7 @@
3687
3517
  ],
3688
3518
  "props": [
3689
3519
  {
3690
- "id": 348,
3520
+ "id": 329,
3691
3521
  "name": "button",
3692
3522
  "kind": 1024,
3693
3523
  "kindString": "Property",
@@ -3705,7 +3535,7 @@
3705
3535
  }
3706
3536
  },
3707
3537
  {
3708
- "id": 350,
3538
+ "id": 331,
3709
3539
  "name": "highlighted",
3710
3540
  "kind": 1024,
3711
3541
  "kindString": "Property",
@@ -3721,7 +3551,7 @@
3721
3551
  }
3722
3552
  },
3723
3553
  {
3724
- "id": 349,
3554
+ "id": 330,
3725
3555
  "name": "icon",
3726
3556
  "kind": 1024,
3727
3557
  "kindString": "Property",
@@ -3736,7 +3566,7 @@
3736
3566
  "types": [
3737
3567
  {
3738
3568
  "type": "reference",
3739
- "id": 303,
3569
+ "id": 284,
3740
3570
  "name": "IconName"
3741
3571
  },
3742
3572
  {
@@ -3749,20 +3579,16 @@
3749
3579
  }
3750
3580
  },
3751
3581
  {
3752
- "id": 351,
3753
- "name": "state",
3582
+ "id": 332,
3583
+ "name": "invalid",
3754
3584
  "kind": 1024,
3755
3585
  "kindString": "Property",
3756
3586
  "flags": {
3757
3587
  "isOptional": true
3758
3588
  },
3759
- "comment": {
3760
- "shortText": "State will change the style of the input"
3761
- },
3762
3589
  "type": {
3763
- "type": "reference",
3764
- "id": 4,
3765
- "name": "State"
3590
+ "type": "intrinsic",
3591
+ "name": "boolean"
3766
3592
  }
3767
3593
  }
3768
3594
  ]
@@ -3775,7 +3601,7 @@
3775
3601
  ],
3776
3602
  "props": [
3777
3603
  {
3778
- "id": 380,
3604
+ "id": 361,
3779
3605
  "name": "data",
3780
3606
  "kind": 1024,
3781
3607
  "kindString": "Property",
@@ -3789,13 +3615,13 @@
3789
3615
  "type": "array",
3790
3616
  "elementType": {
3791
3617
  "type": "reference",
3792
- "id": 371,
3618
+ "id": 352,
3793
3619
  "name": "ListboxItem"
3794
3620
  }
3795
3621
  }
3796
3622
  },
3797
3623
  {
3798
- "id": 381,
3624
+ "id": 362,
3799
3625
  "name": "defaultValue",
3800
3626
  "kind": 1024,
3801
3627
  "kindString": "Property",
@@ -3807,12 +3633,12 @@
3807
3633
  },
3808
3634
  "type": {
3809
3635
  "type": "reference",
3810
- "id": 372,
3636
+ "id": 353,
3811
3637
  "name": "ListboxValue"
3812
3638
  }
3813
3639
  },
3814
3640
  {
3815
- "id": 382,
3641
+ "id": 363,
3816
3642
  "name": "emptyValue",
3817
3643
  "kind": 1024,
3818
3644
  "kindString": "Property",
@@ -3824,12 +3650,12 @@
3824
3650
  },
3825
3651
  "type": {
3826
3652
  "type": "reference",
3827
- "id": 372,
3653
+ "id": 353,
3828
3654
  "name": "ListboxValue"
3829
3655
  }
3830
3656
  },
3831
3657
  {
3832
- "id": 383,
3658
+ "id": 364,
3833
3659
  "name": "highlighted",
3834
3660
  "kind": 1024,
3835
3661
  "kindString": "Property",
@@ -3845,40 +3671,36 @@
3845
3671
  }
3846
3672
  },
3847
3673
  {
3848
- "id": 384,
3849
- "name": "loading",
3674
+ "id": 365,
3675
+ "name": "invalid",
3850
3676
  "kind": 1024,
3851
3677
  "kindString": "Property",
3852
3678
  "flags": {
3853
3679
  "isOptional": true
3854
3680
  },
3855
- "comment": {
3856
- "shortText": "Shows a loading indicator with a text next to it.\nRead more about how to provide the text in [Provider](component:provider) component"
3857
- },
3858
3681
  "type": {
3859
3682
  "type": "intrinsic",
3860
3683
  "name": "boolean"
3861
3684
  }
3862
3685
  },
3863
3686
  {
3864
- "id": 385,
3865
- "name": "state",
3687
+ "id": 366,
3688
+ "name": "loading",
3866
3689
  "kind": 1024,
3867
3690
  "kindString": "Property",
3868
3691
  "flags": {
3869
3692
  "isOptional": true
3870
3693
  },
3871
3694
  "comment": {
3872
- "shortText": "State will change the style of the listbox"
3695
+ "shortText": "Shows a loading indicator with a text next to it.\nRead more about how to provide the text in [Provider](component:provider) component"
3873
3696
  },
3874
3697
  "type": {
3875
- "type": "reference",
3876
- "id": 4,
3877
- "name": "State"
3698
+ "type": "intrinsic",
3699
+ "name": "boolean"
3878
3700
  }
3879
3701
  },
3880
3702
  {
3881
- "id": 386,
3703
+ "id": 367,
3882
3704
  "name": "value",
3883
3705
  "kind": 1024,
3884
3706
  "kindString": "Property",
@@ -3890,7 +3712,7 @@
3890
3712
  },
3891
3713
  "type": {
3892
3714
  "type": "reference",
3893
- "id": 372,
3715
+ "id": 353,
3894
3716
  "name": "ListboxValue"
3895
3717
  }
3896
3718
  }
@@ -3899,7 +3721,7 @@
3899
3721
  "ListboxTexts": {
3900
3722
  "props": [
3901
3723
  {
3902
- "id": 377,
3724
+ "id": 358,
3903
3725
  "name": "allOption",
3904
3726
  "kind": 1024,
3905
3727
  "kindString": "Property",
@@ -3913,7 +3735,7 @@
3913
3735
  }
3914
3736
  },
3915
3737
  {
3916
- "id": 375,
3738
+ "id": 356,
3917
3739
  "name": "empty",
3918
3740
  "kind": 1024,
3919
3741
  "kindString": "Property",
@@ -3927,7 +3749,7 @@
3927
3749
  }
3928
3750
  },
3929
3751
  {
3930
- "id": 376,
3752
+ "id": 357,
3931
3753
  "name": "loading",
3932
3754
  "kind": 1024,
3933
3755
  "kindString": "Property",
@@ -3946,7 +3768,7 @@
3946
3768
  "Localization": {
3947
3769
  "props": [
3948
3770
  {
3949
- "id": 617,
3771
+ "id": 599,
3950
3772
  "name": "formatting",
3951
3773
  "kind": 1024,
3952
3774
  "kindString": "Property",
@@ -3957,14 +3779,14 @@
3957
3779
  "type": {
3958
3780
  "type": "reflection",
3959
3781
  "declaration": {
3960
- "id": 618,
3782
+ "id": 600,
3961
3783
  "name": "__type",
3962
3784
  "kind": 65536,
3963
3785
  "kindString": "Type literal",
3964
3786
  "flags": {},
3965
3787
  "children": [
3966
3788
  {
3967
- "id": 619,
3789
+ "id": 601,
3968
3790
  "name": "date",
3969
3791
  "kind": 1024,
3970
3792
  "kindString": "Property",
@@ -3983,7 +3805,7 @@
3983
3805
  "title": "Properties",
3984
3806
  "kind": 1024,
3985
3807
  "children": [
3986
- 619
3808
+ 601
3987
3809
  ]
3988
3810
  }
3989
3811
  ]
@@ -3991,7 +3813,7 @@
3991
3813
  }
3992
3814
  },
3993
3815
  {
3994
- "id": 615,
3816
+ "id": 597,
3995
3817
  "name": "locale",
3996
3818
  "kind": 1024,
3997
3819
  "kindString": "Property",
@@ -4006,7 +3828,7 @@
4006
3828
  }
4007
3829
  },
4008
3830
  {
4009
- "id": 616,
3831
+ "id": 598,
4010
3832
  "name": "texts",
4011
3833
  "kind": 1024,
4012
3834
  "kindString": "Property",
@@ -4016,7 +3838,7 @@
4016
3838
  },
4017
3839
  "type": {
4018
3840
  "type": "reference",
4019
- "id": 600,
3841
+ "id": 581,
4020
3842
  "name": "LocalizationTexts"
4021
3843
  }
4022
3844
  }
@@ -4025,7 +3847,7 @@
4025
3847
  "LocalizationTexts": {
4026
3848
  "props": [
4027
3849
  {
4028
- "id": 602,
3850
+ "id": 583,
4029
3851
  "name": "calendar",
4030
3852
  "kind": 1024,
4031
3853
  "kindString": "Property",
@@ -4040,7 +3862,22 @@
4040
3862
  }
4041
3863
  },
4042
3864
  {
4043
- "id": 603,
3865
+ "id": 584,
3866
+ "name": "combobox",
3867
+ "kind": 1024,
3868
+ "kindString": "Property",
3869
+ "flags": {},
3870
+ "comment": {
3871
+ "shortText": "Localized texts and aria-labels for [Combobox](component:combobox) component"
3872
+ },
3873
+ "type": {
3874
+ "type": "reference",
3875
+ "id": 149,
3876
+ "name": "ComboboxTexts"
3877
+ }
3878
+ },
3879
+ {
3880
+ "id": 585,
4044
3881
  "name": "datepicker",
4045
3882
  "kind": 1024,
4046
3883
  "kindString": "Property",
@@ -4050,12 +3887,12 @@
4050
3887
  },
4051
3888
  "type": {
4052
3889
  "type": "reference",
4053
- "id": 179,
3890
+ "id": 156,
4054
3891
  "name": "DatepickerTexts"
4055
3892
  }
4056
3893
  },
4057
3894
  {
4058
- "id": 606,
3895
+ "id": 588,
4059
3896
  "name": "dialog",
4060
3897
  "kind": 1024,
4061
3898
  "kindString": "Property",
@@ -4065,12 +3902,12 @@
4065
3902
  },
4066
3903
  "type": {
4067
3904
  "type": "reference",
4068
- "id": 227,
3905
+ "id": 204,
4069
3906
  "name": "DialogTexts"
4070
3907
  }
4071
3908
  },
4072
3909
  {
4073
- "id": 604,
3910
+ "id": 586,
4074
3911
  "name": "hanger",
4075
3912
  "kind": 1024,
4076
3913
  "kindString": "Property",
@@ -4080,12 +3917,12 @@
4080
3917
  },
4081
3918
  "type": {
4082
3919
  "type": "reference",
4083
- "id": 284,
3920
+ "id": 265,
4084
3921
  "name": "HangerTexts"
4085
3922
  }
4086
3923
  },
4087
3924
  {
4088
- "id": 605,
3925
+ "id": 587,
4089
3926
  "name": "listbox",
4090
3927
  "kind": 1024,
4091
3928
  "kindString": "Property",
@@ -4095,12 +3932,12 @@
4095
3932
  },
4096
3933
  "type": {
4097
3934
  "type": "reference",
4098
- "id": 373,
3935
+ "id": 354,
4099
3936
  "name": "ListboxTexts"
4100
3937
  }
4101
3938
  },
4102
3939
  {
4103
- "id": 607,
3940
+ "id": 589,
4104
3941
  "name": "pagination",
4105
3942
  "kind": 1024,
4106
3943
  "kindString": "Property",
@@ -4110,12 +3947,12 @@
4110
3947
  },
4111
3948
  "type": {
4112
3949
  "type": "reference",
4113
- "id": 536,
3950
+ "id": 517,
4114
3951
  "name": "PaginationTexts"
4115
3952
  }
4116
3953
  },
4117
3954
  {
4118
- "id": 612,
3955
+ "id": 594,
4119
3956
  "name": "searchInput",
4120
3957
  "kind": 1024,
4121
3958
  "kindString": "Property",
@@ -4125,12 +3962,12 @@
4125
3962
  },
4126
3963
  "type": {
4127
3964
  "type": "reference",
4128
- "id": 358,
3965
+ "id": 339,
4129
3966
  "name": "SearchInputTexts"
4130
3967
  }
4131
3968
  },
4132
3969
  {
4133
- "id": 609,
3970
+ "id": 591,
4134
3971
  "name": "select",
4135
3972
  "kind": 1024,
4136
3973
  "kindString": "Property",
@@ -4140,12 +3977,12 @@
4140
3977
  },
4141
3978
  "type": {
4142
3979
  "type": "reference",
4143
- "id": 734,
3980
+ "id": 719,
4144
3981
  "name": "SelectTexts"
4145
3982
  }
4146
3983
  },
4147
3984
  {
4148
- "id": 608,
3985
+ "id": 590,
4149
3986
  "name": "table",
4150
3987
  "kind": 1024,
4151
3988
  "kindString": "Property",
@@ -4155,12 +3992,12 @@
4155
3992
  },
4156
3993
  "type": {
4157
3994
  "type": "reference",
4158
- "id": 927,
3995
+ "id": 904,
4159
3996
  "name": "TableTexts"
4160
3997
  }
4161
3998
  },
4162
3999
  {
4163
- "id": 610,
4000
+ "id": 592,
4164
4001
  "name": "toasts",
4165
4002
  "kind": 1024,
4166
4003
  "kindString": "Property",
@@ -4174,7 +4011,7 @@
4174
4011
  }
4175
4012
  },
4176
4013
  {
4177
- "id": 611,
4014
+ "id": 593,
4178
4015
  "name": "tour",
4179
4016
  "kind": 1024,
4180
4017
  "kindString": "Property",
@@ -4184,7 +4021,7 @@
4184
4021
  },
4185
4022
  "type": {
4186
4023
  "type": "reference",
4187
- "id": 1058,
4024
+ "id": 1035,
4188
4025
  "name": "TourTexts"
4189
4026
  }
4190
4027
  }
@@ -4193,7 +4030,7 @@
4193
4030
  "MenuProps": {
4194
4031
  "props": [
4195
4032
  {
4196
- "id": 407,
4033
+ "id": 388,
4197
4034
  "name": "children",
4198
4035
  "kind": 1024,
4199
4036
  "kindString": "Property",
@@ -4206,7 +4043,7 @@
4206
4043
  }
4207
4044
  },
4208
4045
  {
4209
- "id": 408,
4046
+ "id": 389,
4210
4047
  "name": "id",
4211
4048
  "kind": 1024,
4212
4049
  "kindString": "Property",
@@ -4219,7 +4056,7 @@
4219
4056
  }
4220
4057
  },
4221
4058
  {
4222
- "id": 409,
4059
+ "id": 390,
4223
4060
  "name": "trigger",
4224
4061
  "kind": 1024,
4225
4062
  "kindString": "Property",
@@ -4244,7 +4081,7 @@
4244
4081
  ],
4245
4082
  "props": [
4246
4083
  {
4247
- "id": 507,
4084
+ "id": 488,
4248
4085
  "name": "active",
4249
4086
  "kind": 1024,
4250
4087
  "kindString": "Property",
@@ -4260,7 +4097,7 @@
4260
4097
  }
4261
4098
  },
4262
4099
  {
4263
- "id": 508,
4100
+ "id": 489,
4264
4101
  "name": "onDrop",
4265
4102
  "kind": 1024,
4266
4103
  "kindString": "Property",
@@ -4278,7 +4115,7 @@
4278
4115
  }
4279
4116
  },
4280
4117
  {
4281
- "id": 509,
4118
+ "id": 490,
4282
4119
  "name": "postfix",
4283
4120
  "kind": 1024,
4284
4121
  "kindString": "Property",
@@ -4296,7 +4133,7 @@
4296
4133
  }
4297
4134
  },
4298
4135
  {
4299
- "id": 510,
4136
+ "id": 491,
4300
4137
  "name": "prefix",
4301
4138
  "kind": 1024,
4302
4139
  "kindString": "Property",
@@ -4314,7 +4151,7 @@
4314
4151
  }
4315
4152
  },
4316
4153
  {
4317
- "id": 511,
4154
+ "id": 492,
4318
4155
  "name": "target",
4319
4156
  "kind": 1024,
4320
4157
  "kindString": "Property",
@@ -4349,7 +4186,7 @@
4349
4186
  ],
4350
4187
  "props": [
4351
4188
  {
4352
- "id": 549,
4189
+ "id": 530,
4353
4190
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
4354
4191
  "kind": 1024,
4355
4192
  "kindString": "Property",
@@ -4365,7 +4202,7 @@
4365
4202
  }
4366
4203
  },
4367
4204
  {
4368
- "id": 544,
4205
+ "id": 525,
4369
4206
  "name": "length",
4370
4207
  "kind": 1024,
4371
4208
  "kindString": "Property",
@@ -4379,7 +4216,7 @@
4379
4216
  }
4380
4217
  },
4381
4218
  {
4382
- "id": 545,
4219
+ "id": 526,
4383
4220
  "name": "pageSizes",
4384
4221
  "kind": 1024,
4385
4222
  "kindString": "Property",
@@ -4398,7 +4235,7 @@
4398
4235
  }
4399
4236
  },
4400
4237
  {
4401
- "id": 546,
4238
+ "id": 527,
4402
4239
  "name": "showPageControls",
4403
4240
  "kind": 1024,
4404
4241
  "kindString": "Property",
@@ -4414,7 +4251,7 @@
4414
4251
  }
4415
4252
  },
4416
4253
  {
4417
- "id": 547,
4254
+ "id": 528,
4418
4255
  "name": "showPageNumbers",
4419
4256
  "kind": 1024,
4420
4257
  "kindString": "Property",
@@ -4430,7 +4267,7 @@
4430
4267
  }
4431
4268
  },
4432
4269
  {
4433
- "id": 548,
4270
+ "id": 529,
4434
4271
  "name": "showPageSize",
4435
4272
  "kind": 1024,
4436
4273
  "kindString": "Property",
@@ -4450,7 +4287,7 @@
4450
4287
  "PaginationTexts": {
4451
4288
  "props": [
4452
4289
  {
4453
- "id": 541,
4290
+ "id": 522,
4454
4291
  "name": "actions",
4455
4292
  "kind": 1024,
4456
4293
  "kindString": "Property",
@@ -4460,12 +4297,12 @@
4460
4297
  },
4461
4298
  "type": {
4462
4299
  "type": "reference",
4463
- "id": 525,
4300
+ "id": 506,
4464
4301
  "name": "PaginationTextsActions"
4465
4302
  }
4466
4303
  },
4467
4304
  {
4468
- "id": 538,
4305
+ "id": 519,
4469
4306
  "name": "label",
4470
4307
  "kind": 1024,
4471
4308
  "kindString": "Property",
@@ -4479,7 +4316,7 @@
4479
4316
  }
4480
4317
  },
4481
4318
  {
4482
- "id": 539,
4319
+ "id": 520,
4483
4320
  "name": "pageSize",
4484
4321
  "kind": 1024,
4485
4322
  "kindString": "Property",
@@ -4493,7 +4330,7 @@
4493
4330
  }
4494
4331
  },
4495
4332
  {
4496
- "id": 540,
4333
+ "id": 521,
4497
4334
  "name": "showingXofYofTotal",
4498
4335
  "kind": 1024,
4499
4336
  "kindString": "Property",
@@ -4511,7 +4348,7 @@
4511
4348
  "PaginationTextsActions": {
4512
4349
  "props": [
4513
4350
  {
4514
- "id": 527,
4351
+ "id": 508,
4515
4352
  "name": "firstPage",
4516
4353
  "kind": 1024,
4517
4354
  "kindString": "Property",
@@ -4525,7 +4362,7 @@
4525
4362
  }
4526
4363
  },
4527
4364
  {
4528
- "id": 528,
4365
+ "id": 509,
4529
4366
  "name": "firstPageWithShortcut",
4530
4367
  "kind": 1024,
4531
4368
  "kindString": "Property",
@@ -4539,7 +4376,7 @@
4539
4376
  }
4540
4377
  },
4541
4378
  {
4542
- "id": 533,
4379
+ "id": 514,
4543
4380
  "name": "lastPage",
4544
4381
  "kind": 1024,
4545
4382
  "kindString": "Property",
@@ -4553,7 +4390,7 @@
4553
4390
  }
4554
4391
  },
4555
4392
  {
4556
- "id": 534,
4393
+ "id": 515,
4557
4394
  "name": "lastPageWithShortcut",
4558
4395
  "kind": 1024,
4559
4396
  "kindString": "Property",
@@ -4567,7 +4404,7 @@
4567
4404
  }
4568
4405
  },
4569
4406
  {
4570
- "id": 529,
4407
+ "id": 510,
4571
4408
  "name": "nextPage",
4572
4409
  "kind": 1024,
4573
4410
  "kindString": "Property",
@@ -4581,7 +4418,7 @@
4581
4418
  }
4582
4419
  },
4583
4420
  {
4584
- "id": 530,
4421
+ "id": 511,
4585
4422
  "name": "nextPageWithShortcut",
4586
4423
  "kind": 1024,
4587
4424
  "kindString": "Property",
@@ -4595,7 +4432,7 @@
4595
4432
  }
4596
4433
  },
4597
4434
  {
4598
- "id": 535,
4435
+ "id": 516,
4599
4436
  "name": "pageX",
4600
4437
  "kind": 1024,
4601
4438
  "kindString": "Property",
@@ -4609,7 +4446,7 @@
4609
4446
  }
4610
4447
  },
4611
4448
  {
4612
- "id": 531,
4449
+ "id": 512,
4613
4450
  "name": "previousPage",
4614
4451
  "kind": 1024,
4615
4452
  "kindString": "Property",
@@ -4623,7 +4460,7 @@
4623
4460
  }
4624
4461
  },
4625
4462
  {
4626
- "id": 532,
4463
+ "id": 513,
4627
4464
  "name": "previousPageWithShortcut",
4628
4465
  "kind": 1024,
4629
4466
  "kindString": "Property",
@@ -4645,7 +4482,7 @@
4645
4482
  ],
4646
4483
  "props": [
4647
4484
  {
4648
- "id": 579,
4485
+ "id": 560,
4649
4486
  "name": "children",
4650
4487
  "kind": 1024,
4651
4488
  "kindString": "Property",
@@ -4662,28 +4499,28 @@
4662
4499
  {
4663
4500
  "type": "reflection",
4664
4501
  "declaration": {
4665
- "id": 580,
4502
+ "id": 561,
4666
4503
  "name": "__type",
4667
4504
  "kind": 65536,
4668
4505
  "kindString": "Type literal",
4669
4506
  "flags": {},
4670
4507
  "signatures": [
4671
4508
  {
4672
- "id": 581,
4509
+ "id": 562,
4673
4510
  "name": "__type",
4674
4511
  "kind": 4096,
4675
4512
  "kindString": "Call signature",
4676
4513
  "flags": {},
4677
4514
  "parameters": [
4678
4515
  {
4679
- "id": 582,
4516
+ "id": 563,
4680
4517
  "name": "props",
4681
4518
  "kind": 32768,
4682
4519
  "kindString": "Parameter",
4683
4520
  "flags": {},
4684
4521
  "type": {
4685
4522
  "type": "reference",
4686
- "id": 573,
4523
+ "id": 554,
4687
4524
  "name": "PopoverContentRenderProps"
4688
4525
  }
4689
4526
  }
@@ -4702,7 +4539,7 @@
4702
4539
  }
4703
4540
  },
4704
4541
  {
4705
- "id": 583,
4542
+ "id": 564,
4706
4543
  "name": "placement",
4707
4544
  "kind": 1024,
4708
4545
  "kindString": "Property",
@@ -4723,14 +4560,14 @@
4723
4560
  "PopoverContentRenderProps": {
4724
4561
  "props": [
4725
4562
  {
4726
- "id": 575,
4563
+ "id": 556,
4727
4564
  "name": "close",
4728
4565
  "kind": 2048,
4729
4566
  "kindString": "Method",
4730
4567
  "flags": {},
4731
4568
  "signatures": [
4732
4569
  {
4733
- "id": 576,
4570
+ "id": 557,
4734
4571
  "name": "close",
4735
4572
  "kind": 4096,
4736
4573
  "kindString": "Call signature",
@@ -4752,7 +4589,7 @@
4752
4589
  ],
4753
4590
  "props": [
4754
4591
  {
4755
- "id": 596,
4592
+ "id": 577,
4756
4593
  "name": "duration",
4757
4594
  "kind": 1024,
4758
4595
  "kindString": "Property",
@@ -4772,7 +4609,7 @@
4772
4609
  "ProviderProps": {
4773
4610
  "props": [
4774
4611
  {
4775
- "id": 697,
4612
+ "id": 682,
4776
4613
  "name": "children",
4777
4614
  "kind": 1024,
4778
4615
  "kindString": "Property",
@@ -4788,7 +4625,7 @@
4788
4625
  }
4789
4626
  },
4790
4627
  {
4791
- "id": 698,
4628
+ "id": 683,
4792
4629
  "name": "localization",
4793
4630
  "kind": 1024,
4794
4631
  "kindString": "Property",
@@ -4800,7 +4637,7 @@
4800
4637
  },
4801
4638
  "type": {
4802
4639
  "type": "reference",
4803
- "id": 613,
4640
+ "id": 595,
4804
4641
  "name": "Localization"
4805
4642
  }
4806
4643
  }
@@ -4812,7 +4649,7 @@
4812
4649
  ],
4813
4650
  "props": [
4814
4651
  {
4815
- "id": 716,
4652
+ "id": 701,
4816
4653
  "name": "children",
4817
4654
  "kind": 1024,
4818
4655
  "kindString": "Property",
@@ -4828,7 +4665,7 @@
4828
4665
  }
4829
4666
  },
4830
4667
  {
4831
- "id": 717,
4668
+ "id": 702,
4832
4669
  "name": "disabled",
4833
4670
  "kind": 1024,
4834
4671
  "kindString": "Property",
@@ -4841,7 +4678,7 @@
4841
4678
  }
4842
4679
  },
4843
4680
  {
4844
- "id": 718,
4681
+ "id": 703,
4845
4682
  "name": "value",
4846
4683
  "kind": 1024,
4847
4684
  "kindString": "Property",
@@ -4851,7 +4688,7 @@
4851
4688
  },
4852
4689
  "type": {
4853
4690
  "type": "reference",
4854
- "id": 706,
4691
+ "id": 691,
4855
4692
  "name": "RadioGroupItemValue"
4856
4693
  }
4857
4694
  }
@@ -4876,7 +4713,7 @@
4876
4713
  ],
4877
4714
  "props": [
4878
4715
  {
4879
- "id": 771,
4716
+ "id": 748,
4880
4717
  "name": "subRows",
4881
4718
  "kind": 1024,
4882
4719
  "kindString": "Property",
@@ -4887,11 +4724,11 @@
4887
4724
  "type": "array",
4888
4725
  "elementType": {
4889
4726
  "type": "reference",
4890
- "id": 769,
4727
+ "id": 746,
4891
4728
  "typeArguments": [
4892
4729
  {
4893
4730
  "type": "reference",
4894
- "id": 773,
4731
+ "id": 750,
4895
4732
  "name": "TRow"
4896
4733
  }
4897
4734
  ],
@@ -4961,7 +4798,7 @@
4961
4798
  ],
4962
4799
  "props": [
4963
4800
  {
4964
- "id": 363,
4801
+ "id": 344,
4965
4802
  "name": "onSearch",
4966
4803
  "kind": 2048,
4967
4804
  "kindString": "Method",
@@ -4970,7 +4807,7 @@
4970
4807
  },
4971
4808
  "signatures": [
4972
4809
  {
4973
- "id": 364,
4810
+ "id": 345,
4974
4811
  "name": "onSearch",
4975
4812
  "kind": 4096,
4976
4813
  "kindString": "Call signature",
@@ -4980,7 +4817,7 @@
4980
4817
  },
4981
4818
  "parameters": [
4982
4819
  {
4983
- "id": 365,
4820
+ "id": 346,
4984
4821
  "name": "value",
4985
4822
  "kind": 32768,
4986
4823
  "kindString": "Parameter",
@@ -5027,7 +4864,7 @@
5027
4864
  "SearchInputTexts": {
5028
4865
  "props": [
5029
4866
  {
5030
- "id": 360,
4867
+ "id": 341,
5031
4868
  "name": "inputLabel",
5032
4869
  "kind": 1024,
5033
4870
  "kindString": "Property",
@@ -5048,7 +4885,7 @@
5048
4885
  ],
5049
4886
  "props": [
5050
4887
  {
5051
- "id": 742,
4888
+ "id": 727,
5052
4889
  "name": "editable",
5053
4890
  "kind": 1024,
5054
4891
  "kindString": "Property",
@@ -5068,7 +4905,7 @@
5068
4905
  "SelectTexts": {
5069
4906
  "props": [
5070
4907
  {
5071
- "id": 736,
4908
+ "id": 721,
5072
4909
  "name": "allOptionsSelected",
5073
4910
  "kind": 1024,
5074
4911
  "kindString": "Property",
@@ -5108,7 +4945,7 @@
5108
4945
  "SortRule": {
5109
4946
  "props": [
5110
4947
  {
5111
- "id": 822,
4948
+ "id": 799,
5112
4949
  "name": "accessor",
5113
4950
  "kind": 1024,
5114
4951
  "kindString": "Property",
@@ -5121,7 +4958,7 @@
5121
4958
  "typeArguments": [
5122
4959
  {
5123
4960
  "type": "reference",
5124
- "id": 824,
4961
+ "id": 801,
5125
4962
  "name": "T"
5126
4963
  }
5127
4964
  ],
@@ -5131,7 +4968,7 @@
5131
4968
  }
5132
4969
  },
5133
4970
  {
5134
- "id": 823,
4971
+ "id": 800,
5135
4972
  "name": "desc",
5136
4973
  "kind": 1024,
5137
4974
  "kindString": "Property",
@@ -5176,7 +5013,7 @@
5176
5013
  ],
5177
5014
  "props": [
5178
5015
  {
5179
- "id": 758,
5016
+ "id": 735,
5180
5017
  "name": "delay",
5181
5018
  "kind": 1024,
5182
5019
  "kindString": "Property",
@@ -5192,7 +5029,7 @@
5192
5029
  }
5193
5030
  },
5194
5031
  {
5195
- "id": 759,
5032
+ "id": 736,
5196
5033
  "name": "label",
5197
5034
  "kind": 1024,
5198
5035
  "kindString": "Property",
@@ -5219,7 +5056,7 @@
5219
5056
  ],
5220
5057
  "props": [
5221
5058
  {
5222
- "id": 999,
5059
+ "id": 976,
5223
5060
  "name": "id",
5224
5061
  "kind": 1024,
5225
5062
  "kindString": "Property",
@@ -5241,7 +5078,7 @@
5241
5078
  ],
5242
5079
  "props": [
5243
5080
  {
5244
- "id": 996,
5081
+ "id": 973,
5245
5082
  "name": "disabled",
5246
5083
  "kind": 1024,
5247
5084
  "kindString": "Property",
@@ -5257,7 +5094,7 @@
5257
5094
  }
5258
5095
  },
5259
5096
  {
5260
- "id": 995,
5097
+ "id": 972,
5261
5098
  "name": "id",
5262
5099
  "kind": 1024,
5263
5100
  "kindString": "Property",
@@ -5275,7 +5112,7 @@
5275
5112
  "TableCell": {
5276
5113
  "props": [
5277
5114
  {
5278
- "id": 828,
5115
+ "id": 805,
5279
5116
  "name": "accessor",
5280
5117
  "kind": 1024,
5281
5118
  "kindString": "Property",
@@ -5286,7 +5123,7 @@
5286
5123
  }
5287
5124
  },
5288
5125
  {
5289
- "id": 829,
5126
+ "id": 806,
5290
5127
  "name": "row",
5291
5128
  "kind": 1024,
5292
5129
  "kindString": "Property",
@@ -5296,11 +5133,11 @@
5296
5133
  },
5297
5134
  "type": {
5298
5135
  "type": "reference",
5299
- "id": 902,
5136
+ "id": 879,
5300
5137
  "typeArguments": [
5301
5138
  {
5302
5139
  "type": "reference",
5303
- "id": 831,
5140
+ "id": 808,
5304
5141
  "name": "TRow"
5305
5142
  }
5306
5143
  ],
@@ -5308,7 +5145,7 @@
5308
5145
  }
5309
5146
  },
5310
5147
  {
5311
- "id": 830,
5148
+ "id": 807,
5312
5149
  "name": "value",
5313
5150
  "kind": 1024,
5314
5151
  "kindString": "Property",
@@ -5326,7 +5163,7 @@
5326
5163
  "TableColumnProps": {
5327
5164
  "props": [
5328
5165
  {
5329
- "id": 834,
5166
+ "id": 811,
5330
5167
  "name": "accessor",
5331
5168
  "kind": 1024,
5332
5169
  "kindString": "Property",
@@ -5340,7 +5177,7 @@
5340
5177
  }
5341
5178
  },
5342
5179
  {
5343
- "id": 835,
5180
+ "id": 812,
5344
5181
  "name": "align",
5345
5182
  "kind": 1024,
5346
5183
  "kindString": "Property",
@@ -5369,7 +5206,7 @@
5369
5206
  }
5370
5207
  },
5371
5208
  {
5372
- "id": 836,
5209
+ "id": 813,
5373
5210
  "name": "className",
5374
5211
  "kind": 1024,
5375
5212
  "kindString": "Property",
@@ -5385,7 +5222,7 @@
5385
5222
  }
5386
5223
  },
5387
5224
  {
5388
- "id": 840,
5225
+ "id": 817,
5389
5226
  "name": "disableSorting",
5390
5227
  "kind": 1024,
5391
5228
  "kindString": "Property",
@@ -5401,7 +5238,7 @@
5401
5238
  }
5402
5239
  },
5403
5240
  {
5404
- "id": 844,
5241
+ "id": 821,
5405
5242
  "name": "flex",
5406
5243
  "kind": 1024,
5407
5244
  "kindString": "Property",
@@ -5421,28 +5258,28 @@
5421
5258
  {
5422
5259
  "type": "reflection",
5423
5260
  "declaration": {
5424
- "id": 845,
5261
+ "id": 822,
5425
5262
  "name": "__type",
5426
5263
  "kind": 65536,
5427
5264
  "kindString": "Type literal",
5428
5265
  "flags": {},
5429
5266
  "signatures": [
5430
5267
  {
5431
- "id": 846,
5268
+ "id": 823,
5432
5269
  "name": "__type",
5433
5270
  "kind": 4096,
5434
5271
  "kindString": "Call signature",
5435
5272
  "flags": {},
5436
5273
  "parameters": [
5437
5274
  {
5438
- "id": 847,
5275
+ "id": 824,
5439
5276
  "name": "row",
5440
5277
  "kind": 32768,
5441
5278
  "kindString": "Parameter",
5442
5279
  "flags": {},
5443
5280
  "type": {
5444
5281
  "type": "reference",
5445
- "id": 854,
5282
+ "id": 831,
5446
5283
  "name": "TRow"
5447
5284
  }
5448
5285
  }
@@ -5459,7 +5296,7 @@
5459
5296
  }
5460
5297
  },
5461
5298
  {
5462
- "id": 848,
5299
+ "id": 825,
5463
5300
  "name": "headRenderer",
5464
5301
  "kind": 1024,
5465
5302
  "kindString": "Property",
@@ -5477,7 +5314,7 @@
5477
5314
  }
5478
5315
  },
5479
5316
  {
5480
- "id": 849,
5317
+ "id": 826,
5481
5318
  "name": "hidden",
5482
5319
  "kind": 1024,
5483
5320
  "kindString": "Property",
@@ -5493,7 +5330,7 @@
5493
5330
  }
5494
5331
  },
5495
5332
  {
5496
- "id": 850,
5333
+ "id": 827,
5497
5334
  "name": "hiddenOnSubRows",
5498
5335
  "kind": 1024,
5499
5336
  "kindString": "Property",
@@ -5509,7 +5346,7 @@
5509
5346
  }
5510
5347
  },
5511
5348
  {
5512
- "id": 851,
5349
+ "id": 828,
5513
5350
  "name": "sort",
5514
5351
  "kind": 1024,
5515
5352
  "kindString": "Property",
@@ -5521,12 +5358,12 @@
5521
5358
  },
5522
5359
  "type": {
5523
5360
  "type": "reference",
5524
- "id": 813,
5361
+ "id": 790,
5525
5362
  "name": "SortDirection"
5526
5363
  }
5527
5364
  },
5528
5365
  {
5529
- "id": 852,
5366
+ "id": 829,
5530
5367
  "name": "sortType",
5531
5368
  "kind": 1024,
5532
5369
  "kindString": "Property",
@@ -5538,12 +5375,12 @@
5538
5375
  },
5539
5376
  "type": {
5540
5377
  "type": "reference",
5541
- "id": 825,
5378
+ "id": 802,
5542
5379
  "name": "SortTypes"
5543
5380
  }
5544
5381
  },
5545
5382
  {
5546
- "id": 853,
5383
+ "id": 830,
5547
5384
  "name": "style",
5548
5385
  "kind": 1024,
5549
5386
  "kindString": "Property",
@@ -5559,7 +5396,7 @@
5559
5396
  }
5560
5397
  },
5561
5398
  {
5562
- "id": 837,
5399
+ "id": 814,
5563
5400
  "name": "cellRenderer",
5564
5401
  "kind": 2048,
5565
5402
  "kindString": "Method",
@@ -5568,7 +5405,7 @@
5568
5405
  },
5569
5406
  "signatures": [
5570
5407
  {
5571
- "id": 838,
5408
+ "id": 815,
5572
5409
  "name": "cellRenderer",
5573
5410
  "kind": 4096,
5574
5411
  "kindString": "Call signature",
@@ -5578,18 +5415,18 @@
5578
5415
  },
5579
5416
  "parameters": [
5580
5417
  {
5581
- "id": 839,
5418
+ "id": 816,
5582
5419
  "name": "cellProps",
5583
5420
  "kind": 32768,
5584
5421
  "kindString": "Parameter",
5585
5422
  "flags": {},
5586
5423
  "type": {
5587
5424
  "type": "reference",
5588
- "id": 826,
5425
+ "id": 803,
5589
5426
  "typeArguments": [
5590
5427
  {
5591
5428
  "type": "reference",
5592
- "id": 854,
5429
+ "id": 831,
5593
5430
  "name": "TRow"
5594
5431
  }
5595
5432
  ],
@@ -5607,7 +5444,7 @@
5607
5444
  ]
5608
5445
  },
5609
5446
  {
5610
- "id": 841,
5447
+ "id": 818,
5611
5448
  "name": "editRenderer",
5612
5449
  "kind": 2048,
5613
5450
  "kindString": "Method",
@@ -5616,25 +5453,25 @@
5616
5453
  },
5617
5454
  "signatures": [
5618
5455
  {
5619
- "id": 842,
5456
+ "id": 819,
5620
5457
  "name": "editRenderer",
5621
5458
  "kind": 4096,
5622
5459
  "kindString": "Call signature",
5623
5460
  "flags": {},
5624
5461
  "parameters": [
5625
5462
  {
5626
- "id": 843,
5463
+ "id": 820,
5627
5464
  "name": "cellProps",
5628
5465
  "kind": 32768,
5629
5466
  "kindString": "Parameter",
5630
5467
  "flags": {},
5631
5468
  "type": {
5632
5469
  "type": "reference",
5633
- "id": 826,
5470
+ "id": 803,
5634
5471
  "typeArguments": [
5635
5472
  {
5636
5473
  "type": "reference",
5637
- "id": 854,
5474
+ "id": 831,
5638
5475
  "name": "TRow"
5639
5476
  }
5640
5477
  ],
@@ -5656,7 +5493,7 @@
5656
5493
  "TableGroupProps": {
5657
5494
  "props": [
5658
5495
  {
5659
- "id": 857,
5496
+ "id": 834,
5660
5497
  "name": "children",
5661
5498
  "kind": 1024,
5662
5499
  "kindString": "Property",
@@ -5672,11 +5509,11 @@
5672
5509
  "typeArguments": [
5673
5510
  {
5674
5511
  "type": "reference",
5675
- "id": 832,
5512
+ "id": 809,
5676
5513
  "typeArguments": [
5677
5514
  {
5678
5515
  "type": "reference",
5679
- "id": 860,
5516
+ "id": 837,
5680
5517
  "name": "TRow"
5681
5518
  }
5682
5519
  ],
@@ -5694,11 +5531,11 @@
5694
5531
  "typeArguments": [
5695
5532
  {
5696
5533
  "type": "reference",
5697
- "id": 832,
5534
+ "id": 809,
5698
5535
  "typeArguments": [
5699
5536
  {
5700
5537
  "type": "reference",
5701
- "id": 860,
5538
+ "id": 837,
5702
5539
  "name": "TRow"
5703
5540
  }
5704
5541
  ],
@@ -5714,7 +5551,7 @@
5714
5551
  }
5715
5552
  },
5716
5553
  {
5717
- "id": 858,
5554
+ "id": 835,
5718
5555
  "name": "hidden",
5719
5556
  "kind": 1024,
5720
5557
  "kindString": "Property",
@@ -5730,7 +5567,7 @@
5730
5567
  }
5731
5568
  },
5732
5569
  {
5733
- "id": 859,
5570
+ "id": 836,
5734
5571
  "name": "title",
5735
5572
  "kind": 1024,
5736
5573
  "kindString": "Property",
@@ -5751,7 +5588,7 @@
5751
5588
  ],
5752
5589
  "props": [
5753
5590
  {
5754
- "id": 896,
5591
+ "id": 873,
5755
5592
  "name": "actions",
5756
5593
  "kind": 1024,
5757
5594
  "kindString": "Property",
@@ -5765,11 +5602,11 @@
5765
5602
  "type": "array",
5766
5603
  "elementType": {
5767
5604
  "type": "reference",
5768
- "id": 809,
5605
+ "id": 786,
5769
5606
  "typeArguments": [
5770
5607
  {
5771
5608
  "type": "reference",
5772
- "id": 901,
5609
+ "id": 878,
5773
5610
  "name": "TRow"
5774
5611
  }
5775
5612
  ],
@@ -5778,7 +5615,7 @@
5778
5615
  }
5779
5616
  },
5780
5617
  {
5781
- "id": 863,
5618
+ "id": 840,
5782
5619
  "name": "autoFocus",
5783
5620
  "kind": 1024,
5784
5621
  "kindString": "Property",
@@ -5794,7 +5631,7 @@
5794
5631
  }
5795
5632
  },
5796
5633
  {
5797
- "id": 864,
5634
+ "id": 841,
5798
5635
  "name": "children",
5799
5636
  "kind": 1024,
5800
5637
  "kindString": "Property",
@@ -5807,7 +5644,7 @@
5807
5644
  "typeArguments": [
5808
5645
  {
5809
5646
  "type": "reference",
5810
- "id": 901,
5647
+ "id": 878,
5811
5648
  "name": "TRow"
5812
5649
  }
5813
5650
  ],
@@ -5815,7 +5652,7 @@
5815
5652
  }
5816
5653
  },
5817
5654
  {
5818
- "id": 866,
5655
+ "id": 843,
5819
5656
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
5820
5657
  "kind": 1024,
5821
5658
  "kindString": "Property",
@@ -5831,7 +5668,7 @@
5831
5668
  }
5832
5669
  },
5833
5670
  {
5834
- "id": 865,
5671
+ "id": 842,
5835
5672
  "name": "data",
5836
5673
  "kind": 1024,
5837
5674
  "kindString": "Property",
@@ -5843,11 +5680,11 @@
5843
5680
  "type": "array",
5844
5681
  "elementType": {
5845
5682
  "type": "reference",
5846
- "id": 769,
5683
+ "id": 746,
5847
5684
  "typeArguments": [
5848
5685
  {
5849
5686
  "type": "reference",
5850
- "id": 901,
5687
+ "id": 878,
5851
5688
  "name": "TRow"
5852
5689
  }
5853
5690
  ],
@@ -5856,7 +5693,7 @@
5856
5693
  }
5857
5694
  },
5858
5695
  {
5859
- "id": 885,
5696
+ "id": 862,
5860
5697
  "name": "disablePagination",
5861
5698
  "kind": 1024,
5862
5699
  "kindString": "Property",
@@ -5869,7 +5706,7 @@
5869
5706
  }
5870
5707
  },
5871
5708
  {
5872
- "id": 881,
5709
+ "id": 858,
5873
5710
  "name": "disableSorting",
5874
5711
  "kind": 1024,
5875
5712
  "kindString": "Property",
@@ -5885,7 +5722,7 @@
5885
5722
  }
5886
5723
  },
5887
5724
  {
5888
- "id": 894,
5725
+ "id": 871,
5889
5726
  "name": "inlineEditingUniqueId",
5890
5727
  "kind": 1024,
5891
5728
  "kindString": "Property",
@@ -5900,13 +5737,13 @@
5900
5737
  "operator": "keyof",
5901
5738
  "target": {
5902
5739
  "type": "reference",
5903
- "id": 901,
5740
+ "id": 878,
5904
5741
  "name": "TRow"
5905
5742
  }
5906
5743
  }
5907
5744
  },
5908
5745
  {
5909
- "id": 886,
5746
+ "id": 863,
5910
5747
  "name": "length",
5911
5748
  "kind": 1024,
5912
5749
  "kindString": "Property",
@@ -5919,7 +5756,7 @@
5919
5756
  }
5920
5757
  },
5921
5758
  {
5922
- "id": 883,
5759
+ "id": 860,
5923
5760
  "name": "manualSorting",
5924
5761
  "kind": 1024,
5925
5762
  "kindString": "Property",
@@ -5935,7 +5772,7 @@
5935
5772
  }
5936
5773
  },
5937
5774
  {
5938
- "id": 887,
5775
+ "id": 864,
5939
5776
  "name": "onPaginate",
5940
5777
  "kind": 1024,
5941
5778
  "kindString": "Property",
@@ -5947,12 +5784,12 @@
5947
5784
  },
5948
5785
  "type": {
5949
5786
  "type": "reference",
5950
- "id": 764,
5787
+ "id": 741,
5951
5788
  "name": "PaginationHandler"
5952
5789
  }
5953
5790
  },
5954
5791
  {
5955
- "id": 900,
5792
+ "id": 877,
5956
5793
  "name": "onRowActive",
5957
5794
  "kind": 1024,
5958
5795
  "kindString": "Property",
@@ -5967,7 +5804,7 @@
5967
5804
  "typeArguments": [
5968
5805
  {
5969
5806
  "type": "reference",
5970
- "id": 901,
5807
+ "id": 878,
5971
5808
  "name": "TRow"
5972
5809
  }
5973
5810
  ],
@@ -5975,7 +5812,7 @@
5975
5812
  }
5976
5813
  },
5977
5814
  {
5978
- "id": 869,
5815
+ "id": 846,
5979
5816
  "name": "onRowClick",
5980
5817
  "kind": 1024,
5981
5818
  "kindString": "Property",
@@ -5987,11 +5824,11 @@
5987
5824
  },
5988
5825
  "type": {
5989
5826
  "type": "reference",
5990
- "id": 775,
5827
+ "id": 752,
5991
5828
  "typeArguments": [
5992
5829
  {
5993
5830
  "type": "reference",
5994
- "id": 901,
5831
+ "id": 878,
5995
5832
  "name": "TRow"
5996
5833
  }
5997
5834
  ],
@@ -5999,7 +5836,7 @@
5999
5836
  }
6000
5837
  },
6001
5838
  {
6002
- "id": 898,
5839
+ "id": 875,
6003
5840
  "name": "onRowCopy",
6004
5841
  "kind": 1024,
6005
5842
  "kindString": "Property",
@@ -6011,11 +5848,11 @@
6011
5848
  },
6012
5849
  "type": {
6013
5850
  "type": "reference",
6014
- "id": 797,
5851
+ "id": 774,
6015
5852
  "typeArguments": [
6016
5853
  {
6017
5854
  "type": "reference",
6018
- "id": 901,
5855
+ "id": 878,
6019
5856
  "name": "TRow"
6020
5857
  }
6021
5858
  ],
@@ -6023,7 +5860,7 @@
6023
5860
  }
6024
5861
  },
6025
5862
  {
6026
- "id": 895,
5863
+ "id": 872,
6027
5864
  "name": "onRowCreate",
6028
5865
  "kind": 1024,
6029
5866
  "kindString": "Property",
@@ -6035,11 +5872,11 @@
6035
5872
  },
6036
5873
  "type": {
6037
5874
  "type": "reference",
6038
- "id": 791,
5875
+ "id": 768,
6039
5876
  "typeArguments": [
6040
5877
  {
6041
5878
  "type": "reference",
6042
- "id": 901,
5879
+ "id": 878,
6043
5880
  "name": "TRow"
6044
5881
  }
6045
5882
  ],
@@ -6047,7 +5884,7 @@
6047
5884
  }
6048
5885
  },
6049
5886
  {
6050
- "id": 899,
5887
+ "id": 876,
6051
5888
  "name": "onRowDelete",
6052
5889
  "kind": 1024,
6053
5890
  "kindString": "Property",
@@ -6059,11 +5896,11 @@
6059
5896
  },
6060
5897
  "type": {
6061
5898
  "type": "reference",
6062
- "id": 803,
5899
+ "id": 780,
6063
5900
  "typeArguments": [
6064
5901
  {
6065
5902
  "type": "reference",
6066
- "id": 901,
5903
+ "id": 878,
6067
5904
  "name": "TRow"
6068
5905
  }
6069
5906
  ],
@@ -6071,7 +5908,7 @@
6071
5908
  }
6072
5909
  },
6073
5910
  {
6074
- "id": 870,
5911
+ "id": 847,
6075
5912
  "name": "onRowDrag",
6076
5913
  "kind": 1024,
6077
5914
  "kindString": "Property",
@@ -6083,11 +5920,11 @@
6083
5920
  },
6084
5921
  "type": {
6085
5922
  "type": "reference",
6086
- "id": 781,
5923
+ "id": 758,
6087
5924
  "typeArguments": [
6088
5925
  {
6089
5926
  "type": "reference",
6090
- "id": 901,
5927
+ "id": 878,
6091
5928
  "name": "TRow"
6092
5929
  }
6093
5930
  ],
@@ -6095,7 +5932,7 @@
6095
5932
  }
6096
5933
  },
6097
5934
  {
6098
- "id": 897,
5935
+ "id": 874,
6099
5936
  "name": "onRowEdit",
6100
5937
  "kind": 1024,
6101
5938
  "kindString": "Property",
@@ -6110,7 +5947,7 @@
6110
5947
  "typeArguments": [
6111
5948
  {
6112
5949
  "type": "reference",
6113
- "id": 901,
5950
+ "id": 878,
6114
5951
  "name": "TRow"
6115
5952
  }
6116
5953
  ],
@@ -6118,7 +5955,7 @@
6118
5955
  }
6119
5956
  },
6120
5957
  {
6121
- "id": 871,
5958
+ "id": 848,
6122
5959
  "name": "onSelectedRows",
6123
5960
  "kind": 1024,
6124
5961
  "kindString": "Property",
@@ -6130,12 +5967,12 @@
6130
5967
  },
6131
5968
  "type": {
6132
5969
  "type": "reference",
6133
- "id": 811,
5970
+ "id": 788,
6134
5971
  "name": "SelectedRowsHandler"
6135
5972
  }
6136
5973
  },
6137
5974
  {
6138
- "id": 882,
5975
+ "id": 859,
6139
5976
  "name": "onSort",
6140
5977
  "kind": 1024,
6141
5978
  "kindString": "Property",
@@ -6147,11 +5984,11 @@
6147
5984
  },
6148
5985
  "type": {
6149
5986
  "type": "reference",
6150
- "id": 814,
5987
+ "id": 791,
6151
5988
  "typeArguments": [
6152
5989
  {
6153
5990
  "type": "reference",
6154
- "id": 901,
5991
+ "id": 878,
6155
5992
  "name": "TRow"
6156
5993
  }
6157
5994
  ],
@@ -6159,7 +5996,7 @@
6159
5996
  }
6160
5997
  },
6161
5998
  {
6162
- "id": 888,
5999
+ "id": 865,
6163
6000
  "name": "pageIndex",
6164
6001
  "kind": 1024,
6165
6002
  "kindString": "Property",
@@ -6175,7 +6012,7 @@
6175
6012
  }
6176
6013
  },
6177
6014
  {
6178
- "id": 889,
6015
+ "id": 866,
6179
6016
  "name": "pageSize",
6180
6017
  "kind": 1024,
6181
6018
  "kindString": "Property",
@@ -6191,7 +6028,7 @@
6191
6028
  }
6192
6029
  },
6193
6030
  {
6194
- "id": 872,
6031
+ "id": 849,
6195
6032
  "name": "rowClassName",
6196
6033
  "kind": 1024,
6197
6034
  "kindString": "Property",
@@ -6211,32 +6048,32 @@
6211
6048
  {
6212
6049
  "type": "reflection",
6213
6050
  "declaration": {
6214
- "id": 873,
6051
+ "id": 850,
6215
6052
  "name": "__type",
6216
6053
  "kind": 65536,
6217
6054
  "kindString": "Type literal",
6218
6055
  "flags": {},
6219
6056
  "signatures": [
6220
6057
  {
6221
- "id": 874,
6058
+ "id": 851,
6222
6059
  "name": "__type",
6223
6060
  "kind": 4096,
6224
6061
  "kindString": "Call signature",
6225
6062
  "flags": {},
6226
6063
  "parameters": [
6227
6064
  {
6228
- "id": 875,
6065
+ "id": 852,
6229
6066
  "name": "row",
6230
6067
  "kind": 32768,
6231
6068
  "kindString": "Parameter",
6232
6069
  "flags": {},
6233
6070
  "type": {
6234
6071
  "type": "reference",
6235
- "id": 902,
6072
+ "id": 879,
6236
6073
  "typeArguments": [
6237
6074
  {
6238
6075
  "type": "reference",
6239
- "id": 901,
6076
+ "id": 878,
6240
6077
  "name": "TRow"
6241
6078
  }
6242
6079
  ],
@@ -6265,7 +6102,7 @@
6265
6102
  }
6266
6103
  },
6267
6104
  {
6268
- "id": 879,
6105
+ "id": 856,
6269
6106
  "name": "rowHeight",
6270
6107
  "kind": 1024,
6271
6108
  "kindString": "Property",
@@ -6281,7 +6118,7 @@
6281
6118
  }
6282
6119
  },
6283
6120
  {
6284
- "id": 880,
6121
+ "id": 857,
6285
6122
  "name": "selectedRows",
6286
6123
  "kind": 1024,
6287
6124
  "kindString": "Property",
@@ -6293,12 +6130,12 @@
6293
6130
  },
6294
6131
  "type": {
6295
6132
  "type": "reference",
6296
- "id": 812,
6133
+ "id": 789,
6297
6134
  "name": "SelectedRowsState"
6298
6135
  }
6299
6136
  },
6300
6137
  {
6301
- "id": 884,
6138
+ "id": 861,
6302
6139
  "name": "sortRules",
6303
6140
  "kind": 1024,
6304
6141
  "kindString": "Property",
@@ -6312,11 +6149,11 @@
6312
6149
  "type": "array",
6313
6150
  "elementType": {
6314
6151
  "type": "reference",
6315
- "id": 820,
6152
+ "id": 797,
6316
6153
  "typeArguments": [
6317
6154
  {
6318
6155
  "type": "reference",
6319
- "id": 901,
6156
+ "id": 878,
6320
6157
  "name": "TRow"
6321
6158
  }
6322
6159
  ],
@@ -6325,7 +6162,7 @@
6325
6162
  }
6326
6163
  },
6327
6164
  {
6328
- "id": 867,
6165
+ "id": 844,
6329
6166
  "name": "emptyStateRenderer",
6330
6167
  "kind": 2048,
6331
6168
  "kindString": "Method",
@@ -6334,7 +6171,7 @@
6334
6171
  },
6335
6172
  "signatures": [
6336
6173
  {
6337
- "id": 868,
6174
+ "id": 845,
6338
6175
  "name": "emptyStateRenderer",
6339
6176
  "kind": 4096,
6340
6177
  "kindString": "Call signature",
@@ -6352,7 +6189,7 @@
6352
6189
  ]
6353
6190
  },
6354
6191
  {
6355
- "id": 890,
6192
+ "id": 867,
6356
6193
  "name": "loadMore",
6357
6194
  "kind": 2048,
6358
6195
  "kindString": "Method",
@@ -6361,7 +6198,7 @@
6361
6198
  },
6362
6199
  "signatures": [
6363
6200
  {
6364
- "id": 891,
6201
+ "id": 868,
6365
6202
  "name": "loadMore",
6366
6203
  "kind": 4096,
6367
6204
  "kindString": "Call signature",
@@ -6371,7 +6208,7 @@
6371
6208
  },
6372
6209
  "parameters": [
6373
6210
  {
6374
- "id": 892,
6211
+ "id": 869,
6375
6212
  "name": "startIndex",
6376
6213
  "kind": 32768,
6377
6214
  "kindString": "Parameter",
@@ -6382,7 +6219,7 @@
6382
6219
  }
6383
6220
  },
6384
6221
  {
6385
- "id": 893,
6222
+ "id": 870,
6386
6223
  "name": "endIndex",
6387
6224
  "kind": 32768,
6388
6225
  "kindString": "Parameter",
@@ -6401,7 +6238,7 @@
6401
6238
  ]
6402
6239
  },
6403
6240
  {
6404
- "id": 876,
6241
+ "id": 853,
6405
6242
  "name": "rowExpansionRenderer",
6406
6243
  "kind": 2048,
6407
6244
  "kindString": "Method",
@@ -6410,7 +6247,7 @@
6410
6247
  },
6411
6248
  "signatures": [
6412
6249
  {
6413
- "id": 877,
6250
+ "id": 854,
6414
6251
  "name": "rowExpansionRenderer",
6415
6252
  "kind": 4096,
6416
6253
  "kindString": "Call signature",
@@ -6420,18 +6257,18 @@
6420
6257
  },
6421
6258
  "parameters": [
6422
6259
  {
6423
- "id": 878,
6260
+ "id": 855,
6424
6261
  "name": "row",
6425
6262
  "kind": 32768,
6426
6263
  "kindString": "Parameter",
6427
6264
  "flags": {},
6428
6265
  "type": {
6429
6266
  "type": "reference",
6430
- "id": 902,
6267
+ "id": 879,
6431
6268
  "typeArguments": [
6432
6269
  {
6433
6270
  "type": "reference",
6434
- "id": 901,
6271
+ "id": 878,
6435
6272
  "name": "TRow"
6436
6273
  }
6437
6274
  ],
@@ -6456,7 +6293,7 @@
6456
6293
  ],
6457
6294
  "props": [
6458
6295
  {
6459
- "id": 917,
6296
+ "id": 894,
6460
6297
  "name": "instance",
6461
6298
  "kind": 1024,
6462
6299
  "kindString": "Property",
@@ -6464,14 +6301,14 @@
6464
6301
  "type": {
6465
6302
  "type": "reflection",
6466
6303
  "declaration": {
6467
- "id": 918,
6304
+ "id": 895,
6468
6305
  "name": "__type",
6469
6306
  "kind": 65536,
6470
6307
  "kindString": "Type literal",
6471
6308
  "flags": {},
6472
6309
  "children": [
6473
6310
  {
6474
- "id": 924,
6311
+ "id": 901,
6475
6312
  "name": "resetRowEditing",
6476
6313
  "kind": 1024,
6477
6314
  "kindString": "Property",
@@ -6482,7 +6319,7 @@
6482
6319
  }
6483
6320
  },
6484
6321
  {
6485
- "id": 919,
6322
+ "id": 896,
6486
6323
  "name": "toggleAllRowsExpanded",
6487
6324
  "kind": 1024,
6488
6325
  "kindString": "Property",
@@ -6493,7 +6330,7 @@
6493
6330
  }
6494
6331
  },
6495
6332
  {
6496
- "id": 922,
6333
+ "id": 899,
6497
6334
  "name": "toggleEditing",
6498
6335
  "kind": 1024,
6499
6336
  "kindString": "Property",
@@ -6504,7 +6341,7 @@
6504
6341
  }
6505
6342
  },
6506
6343
  {
6507
- "id": 920,
6344
+ "id": 897,
6508
6345
  "name": "toggleHideAllColumns",
6509
6346
  "kind": 1024,
6510
6347
  "kindString": "Property",
@@ -6515,7 +6352,7 @@
6515
6352
  }
6516
6353
  },
6517
6354
  {
6518
- "id": 921,
6355
+ "id": 898,
6519
6356
  "name": "toggleHideColumn",
6520
6357
  "kind": 1024,
6521
6358
  "kindString": "Property",
@@ -6526,7 +6363,7 @@
6526
6363
  }
6527
6364
  },
6528
6365
  {
6529
- "id": 923,
6366
+ "id": 900,
6530
6367
  "name": "toggleRowEditing",
6531
6368
  "kind": 1024,
6532
6369
  "kindString": "Property",
@@ -6537,7 +6374,7 @@
6537
6374
  }
6538
6375
  },
6539
6376
  {
6540
- "id": 925,
6377
+ "id": 902,
6541
6378
  "name": "toggleRowExpanded",
6542
6379
  "kind": 1024,
6543
6380
  "kindString": "Property",
@@ -6548,7 +6385,7 @@
6548
6385
  }
6549
6386
  },
6550
6387
  {
6551
- "id": 926,
6388
+ "id": 903,
6552
6389
  "name": "toggleSortBy",
6553
6390
  "kind": 1024,
6554
6391
  "kindString": "Property",
@@ -6564,14 +6401,14 @@
6564
6401
  "title": "Properties",
6565
6402
  "kind": 1024,
6566
6403
  "children": [
6567
- 924,
6568
- 919,
6569
- 922,
6570
- 920,
6571
- 921,
6572
- 923,
6573
- 925,
6574
- 926
6404
+ 901,
6405
+ 896,
6406
+ 899,
6407
+ 897,
6408
+ 898,
6409
+ 900,
6410
+ 902,
6411
+ 903
6575
6412
  ]
6576
6413
  }
6577
6414
  ]
@@ -6583,7 +6420,7 @@
6583
6420
  "TableRow": {
6584
6421
  "props": [
6585
6422
  {
6586
- "id": 906,
6423
+ "id": 883,
6587
6424
  "name": "depth",
6588
6425
  "kind": 1024,
6589
6426
  "kindString": "Property",
@@ -6596,7 +6433,7 @@
6596
6433
  }
6597
6434
  },
6598
6435
  {
6599
- "id": 904,
6436
+ "id": 881,
6600
6437
  "name": "index",
6601
6438
  "kind": 1024,
6602
6439
  "kindString": "Property",
@@ -6610,7 +6447,7 @@
6610
6447
  }
6611
6448
  },
6612
6449
  {
6613
- "id": 905,
6450
+ "id": 882,
6614
6451
  "name": "indexPath",
6615
6452
  "kind": 1024,
6616
6453
  "kindString": "Property",
@@ -6624,7 +6461,7 @@
6624
6461
  }
6625
6462
  },
6626
6463
  {
6627
- "id": 911,
6464
+ "id": 888,
6628
6465
  "name": "isEditing",
6629
6466
  "kind": 1024,
6630
6467
  "kindString": "Property",
@@ -6637,7 +6474,7 @@
6637
6474
  }
6638
6475
  },
6639
6476
  {
6640
- "id": 907,
6477
+ "id": 884,
6641
6478
  "name": "isExpanded",
6642
6479
  "kind": 1024,
6643
6480
  "kindString": "Property",
@@ -6653,7 +6490,7 @@
6653
6490
  }
6654
6491
  },
6655
6492
  {
6656
- "id": 910,
6493
+ "id": 887,
6657
6494
  "name": "values",
6658
6495
  "kind": 1024,
6659
6496
  "kindString": "Property",
@@ -6663,11 +6500,11 @@
6663
6500
  },
6664
6501
  "type": {
6665
6502
  "type": "reference",
6666
- "id": 769,
6503
+ "id": 746,
6667
6504
  "typeArguments": [
6668
6505
  {
6669
6506
  "type": "reference",
6670
- "id": 914,
6507
+ "id": 891,
6671
6508
  "name": "TRow"
6672
6509
  }
6673
6510
  ],
@@ -6675,7 +6512,7 @@
6675
6512
  }
6676
6513
  },
6677
6514
  {
6678
- "id": 912,
6515
+ "id": 889,
6679
6516
  "name": "toggleRowEditing",
6680
6517
  "kind": 2048,
6681
6518
  "kindString": "Method",
@@ -6684,7 +6521,7 @@
6684
6521
  },
6685
6522
  "signatures": [
6686
6523
  {
6687
- "id": 913,
6524
+ "id": 890,
6688
6525
  "name": "toggleRowEditing",
6689
6526
  "kind": 4096,
6690
6527
  "kindString": "Call signature",
@@ -6697,7 +6534,7 @@
6697
6534
  ]
6698
6535
  },
6699
6536
  {
6700
- "id": 908,
6537
+ "id": 885,
6701
6538
  "name": "toggleRowExpanded",
6702
6539
  "kind": 2048,
6703
6540
  "kindString": "Method",
@@ -6706,7 +6543,7 @@
6706
6543
  },
6707
6544
  "signatures": [
6708
6545
  {
6709
- "id": 909,
6546
+ "id": 886,
6710
6547
  "name": "toggleRowExpanded",
6711
6548
  "kind": 4096,
6712
6549
  "kindString": "Call signature",
@@ -6726,7 +6563,7 @@
6726
6563
  "TableTexts": {
6727
6564
  "props": [
6728
6565
  {
6729
- "id": 929,
6566
+ "id": 906,
6730
6567
  "name": "actions",
6731
6568
  "kind": 1024,
6732
6569
  "kindString": "Property",
@@ -6737,7 +6574,7 @@
6737
6574
  }
6738
6575
  },
6739
6576
  {
6740
- "id": 931,
6577
+ "id": 908,
6741
6578
  "name": "copy",
6742
6579
  "kind": 1024,
6743
6580
  "kindString": "Property",
@@ -6748,7 +6585,7 @@
6748
6585
  }
6749
6586
  },
6750
6587
  {
6751
- "id": 932,
6588
+ "id": 909,
6752
6589
  "name": "del",
6753
6590
  "kind": 1024,
6754
6591
  "kindString": "Property",
@@ -6759,7 +6596,7 @@
6759
6596
  }
6760
6597
  },
6761
6598
  {
6762
- "id": 930,
6599
+ "id": 907,
6763
6600
  "name": "edit",
6764
6601
  "kind": 1024,
6765
6602
  "kindString": "Property",
@@ -6770,7 +6607,7 @@
6770
6607
  }
6771
6608
  },
6772
6609
  {
6773
- "id": 934,
6610
+ "id": 911,
6774
6611
  "name": "loading",
6775
6612
  "kind": 1024,
6776
6613
  "kindString": "Property",
@@ -6781,7 +6618,7 @@
6781
6618
  }
6782
6619
  },
6783
6620
  {
6784
- "id": 933,
6621
+ "id": 910,
6785
6622
  "name": "newSubRow",
6786
6623
  "kind": 1024,
6787
6624
  "kindString": "Property",
@@ -6799,7 +6636,7 @@
6799
6636
  ],
6800
6637
  "props": [
6801
6638
  {
6802
- "id": 987,
6639
+ "id": 964,
6803
6640
  "name": "children",
6804
6641
  "kind": 1024,
6805
6642
  "kindString": "Property",
@@ -6815,7 +6652,7 @@
6815
6652
  }
6816
6653
  },
6817
6654
  {
6818
- "id": 986,
6655
+ "id": 963,
6819
6656
  "name": "defaultId",
6820
6657
  "kind": 1024,
6821
6658
  "kindString": "Property",
@@ -6831,7 +6668,7 @@
6831
6668
  }
6832
6669
  },
6833
6670
  {
6834
- "id": 985,
6671
+ "id": 962,
6835
6672
  "name": "id",
6836
6673
  "kind": 1024,
6837
6674
  "kindString": "Property",
@@ -6847,7 +6684,7 @@
6847
6684
  }
6848
6685
  },
6849
6686
  {
6850
- "id": 988,
6687
+ "id": 965,
6851
6688
  "name": "orientation",
6852
6689
  "kind": 1024,
6853
6690
  "kindString": "Property",
@@ -6870,7 +6707,7 @@
6870
6707
  }
6871
6708
  },
6872
6709
  {
6873
- "id": 989,
6710
+ "id": 966,
6874
6711
  "name": "onChange",
6875
6712
  "kind": 2048,
6876
6713
  "kindString": "Method",
@@ -6879,7 +6716,7 @@
6879
6716
  },
6880
6717
  "signatures": [
6881
6718
  {
6882
- "id": 990,
6719
+ "id": 967,
6883
6720
  "name": "onChange",
6884
6721
  "kind": 4096,
6885
6722
  "kindString": "Call signature",
@@ -6889,7 +6726,7 @@
6889
6726
  },
6890
6727
  "parameters": [
6891
6728
  {
6892
- "id": 991,
6729
+ "id": 968,
6893
6730
  "name": "id",
6894
6731
  "kind": 32768,
6895
6732
  "kindString": "Parameter",
@@ -6912,7 +6749,7 @@
6912
6749
  "Taco": {
6913
6750
  "props": [
6914
6751
  {
6915
- "id": 622,
6752
+ "id": 604,
6916
6753
  "name": "localization",
6917
6754
  "kind": 1024,
6918
6755
  "kindString": "Property",
@@ -6922,7 +6759,7 @@
6922
6759
  },
6923
6760
  "type": {
6924
6761
  "type": "reference",
6925
- "id": 613,
6762
+ "id": 595,
6926
6763
  "name": "Localization"
6927
6764
  }
6928
6765
  }
@@ -6934,7 +6771,7 @@
6934
6771
  ],
6935
6772
  "props": [
6936
6773
  {
6937
- "id": 1008,
6774
+ "id": 985,
6938
6775
  "name": "highlighted",
6939
6776
  "kind": 1024,
6940
6777
  "kindString": "Property",
@@ -6950,24 +6787,20 @@
6950
6787
  }
6951
6788
  },
6952
6789
  {
6953
- "id": 1009,
6954
- "name": "state",
6790
+ "id": 986,
6791
+ "name": "invalid",
6955
6792
  "kind": 1024,
6956
6793
  "kindString": "Property",
6957
6794
  "flags": {
6958
6795
  "isOptional": true
6959
6796
  },
6960
- "comment": {
6961
- "shortText": "State will change the style of the textarea"
6962
- },
6963
6797
  "type": {
6964
- "type": "reference",
6965
- "id": 4,
6966
- "name": "State"
6798
+ "type": "intrinsic",
6799
+ "name": "boolean"
6967
6800
  }
6968
6801
  },
6969
6802
  {
6970
- "id": 1010,
6803
+ "id": 987,
6971
6804
  "name": "value",
6972
6805
  "kind": 1024,
6973
6806
  "kindString": "Property",
@@ -6990,7 +6823,7 @@
6990
6823
  ],
6991
6824
  "props": [
6992
6825
  {
6993
- "id": 1050,
6826
+ "id": 1027,
6994
6827
  "name": "children",
6995
6828
  "kind": 1024,
6996
6829
  "kindString": "Property",
@@ -7015,7 +6848,7 @@
7015
6848
  }
7016
6849
  },
7017
6850
  {
7018
- "id": 1052,
6851
+ "id": 1029,
7019
6852
  "name": "placement",
7020
6853
  "kind": 1024,
7021
6854
  "kindString": "Property",
@@ -7054,7 +6887,7 @@
7054
6887
  }
7055
6888
  },
7056
6889
  {
7057
- "id": 1051,
6890
+ "id": 1028,
7058
6891
  "name": "title",
7059
6892
  "kind": 1024,
7060
6893
  "kindString": "Property",
@@ -7072,7 +6905,7 @@
7072
6905
  "TourProps": {
7073
6906
  "props": [
7074
6907
  {
7075
- "id": 1078,
6908
+ "id": 1055,
7076
6909
  "name": "autoStart",
7077
6910
  "kind": 1024,
7078
6911
  "kindString": "Property",
@@ -7088,7 +6921,7 @@
7088
6921
  }
7089
6922
  },
7090
6923
  {
7091
- "id": 1079,
6924
+ "id": 1056,
7092
6925
  "name": "children",
7093
6926
  "kind": 1024,
7094
6927
  "kindString": "Property",
@@ -7102,7 +6935,7 @@
7102
6935
  }
7103
6936
  },
7104
6937
  {
7105
- "id": 1080,
6938
+ "id": 1057,
7106
6939
  "name": "continuous",
7107
6940
  "kind": 1024,
7108
6941
  "kindString": "Property",
@@ -7118,7 +6951,7 @@
7118
6951
  }
7119
6952
  },
7120
6953
  {
7121
- "id": 1081,
6954
+ "id": 1058,
7122
6955
  "name": "disableCloseOnEsc",
7123
6956
  "kind": 1024,
7124
6957
  "kindString": "Property",
@@ -7134,7 +6967,7 @@
7134
6967
  }
7135
6968
  },
7136
6969
  {
7137
- "id": 1082,
6970
+ "id": 1059,
7138
6971
  "name": "disableOverlayClose",
7139
6972
  "kind": 1024,
7140
6973
  "kindString": "Property",
@@ -7150,7 +6983,7 @@
7150
6983
  }
7151
6984
  },
7152
6985
  {
7153
- "id": 1092,
6986
+ "id": 1069,
7154
6987
  "name": "disableScrollParentFix",
7155
6988
  "kind": 1024,
7156
6989
  "kindString": "Property",
@@ -7163,7 +6996,7 @@
7163
6996
  }
7164
6997
  },
7165
6998
  {
7166
- "id": 1083,
6999
+ "id": 1060,
7167
7000
  "name": "disableScrolling",
7168
7001
  "kind": 1024,
7169
7002
  "kindString": "Property",
@@ -7179,7 +7012,7 @@
7179
7012
  }
7180
7013
  },
7181
7014
  {
7182
- "id": 1087,
7015
+ "id": 1064,
7183
7016
  "name": "onComplete",
7184
7017
  "kind": 1024,
7185
7018
  "kindString": "Property",
@@ -7194,7 +7027,7 @@
7194
7027
  }
7195
7028
  },
7196
7029
  {
7197
- "id": 1091,
7030
+ "id": 1068,
7198
7031
  "name": "spotlightClicks",
7199
7032
  "kind": 1024,
7200
7033
  "kindString": "Property",
@@ -7207,7 +7040,7 @@
7207
7040
  }
7208
7041
  },
7209
7042
  {
7210
- "id": 1084,
7043
+ "id": 1061,
7211
7044
  "name": "onClose",
7212
7045
  "kind": 2048,
7213
7046
  "kindString": "Method",
@@ -7216,21 +7049,21 @@
7216
7049
  },
7217
7050
  "signatures": [
7218
7051
  {
7219
- "id": 1085,
7052
+ "id": 1062,
7220
7053
  "name": "onClose",
7221
7054
  "kind": 4096,
7222
7055
  "kindString": "Call signature",
7223
7056
  "flags": {},
7224
7057
  "parameters": [
7225
7058
  {
7226
- "id": 1086,
7059
+ "id": 1063,
7227
7060
  "name": "step",
7228
7061
  "kind": 32768,
7229
7062
  "kindString": "Parameter",
7230
7063
  "flags": {},
7231
7064
  "type": {
7232
7065
  "type": "reference",
7233
- "id": 1066,
7066
+ "id": 1043,
7234
7067
  "name": "TourStepProps"
7235
7068
  }
7236
7069
  }
@@ -7243,7 +7076,7 @@
7243
7076
  ]
7244
7077
  },
7245
7078
  {
7246
- "id": 1088,
7079
+ "id": 1065,
7247
7080
  "name": "onReady",
7248
7081
  "kind": 2048,
7249
7082
  "kindString": "Method",
@@ -7252,7 +7085,7 @@
7252
7085
  },
7253
7086
  "signatures": [
7254
7087
  {
7255
- "id": 1089,
7088
+ "id": 1066,
7256
7089
  "name": "onReady",
7257
7090
  "kind": 4096,
7258
7091
  "kindString": "Call signature",
@@ -7262,14 +7095,14 @@
7262
7095
  },
7263
7096
  "parameters": [
7264
7097
  {
7265
- "id": 1090,
7098
+ "id": 1067,
7266
7099
  "name": "step",
7267
7100
  "kind": 32768,
7268
7101
  "kindString": "Parameter",
7269
7102
  "flags": {},
7270
7103
  "type": {
7271
7104
  "type": "reference",
7272
- "id": 1066,
7105
+ "id": 1043,
7273
7106
  "name": "TourStepProps"
7274
7107
  }
7275
7108
  }
@@ -7286,7 +7119,7 @@
7286
7119
  "TourStepProps": {
7287
7120
  "props": [
7288
7121
  {
7289
- "id": 1068,
7122
+ "id": 1045,
7290
7123
  "name": "children",
7291
7124
  "kind": 1024,
7292
7125
  "kindString": "Property",
@@ -7302,7 +7135,7 @@
7302
7135
  }
7303
7136
  },
7304
7137
  {
7305
- "id": 1069,
7138
+ "id": 1046,
7306
7139
  "name": "position",
7307
7140
  "kind": 1024,
7308
7141
  "kindString": "Property",
@@ -7320,7 +7153,7 @@
7320
7153
  }
7321
7154
  },
7322
7155
  {
7323
- "id": 1070,
7156
+ "id": 1047,
7324
7157
  "name": "selector",
7325
7158
  "kind": 1024,
7326
7159
  "kindString": "Property",
@@ -7334,7 +7167,7 @@
7334
7167
  }
7335
7168
  },
7336
7169
  {
7337
- "id": 1071,
7170
+ "id": 1048,
7338
7171
  "name": "showBeacon",
7339
7172
  "kind": 1024,
7340
7173
  "kindString": "Property",
@@ -7350,7 +7183,7 @@
7350
7183
  }
7351
7184
  },
7352
7185
  {
7353
- "id": 1072,
7186
+ "id": 1049,
7354
7187
  "name": "title",
7355
7188
  "kind": 1024,
7356
7189
  "kindString": "Property",
@@ -7368,7 +7201,7 @@
7368
7201
  "TourTexts": {
7369
7202
  "props": [
7370
7203
  {
7371
- "id": 1060,
7204
+ "id": 1037,
7372
7205
  "name": "back",
7373
7206
  "kind": 1024,
7374
7207
  "kindString": "Property",
@@ -7382,7 +7215,7 @@
7382
7215
  }
7383
7216
  },
7384
7217
  {
7385
- "id": 1061,
7218
+ "id": 1038,
7386
7219
  "name": "close",
7387
7220
  "kind": 1024,
7388
7221
  "kindString": "Property",
@@ -7396,7 +7229,7 @@
7396
7229
  }
7397
7230
  },
7398
7231
  {
7399
- "id": 1063,
7232
+ "id": 1040,
7400
7233
  "name": "last",
7401
7234
  "kind": 1024,
7402
7235
  "kindString": "Property",
@@ -7410,7 +7243,7 @@
7410
7243
  }
7411
7244
  },
7412
7245
  {
7413
- "id": 1064,
7246
+ "id": 1041,
7414
7247
  "name": "next",
7415
7248
  "kind": 1024,
7416
7249
  "kindString": "Property",
@@ -7424,7 +7257,7 @@
7424
7257
  }
7425
7258
  },
7426
7259
  {
7427
- "id": 1065,
7260
+ "id": 1042,
7428
7261
  "name": "open",
7429
7262
  "kind": 1024,
7430
7263
  "kindString": "Property",
@@ -7438,7 +7271,7 @@
7438
7271
  }
7439
7272
  },
7440
7273
  {
7441
- "id": 1062,
7274
+ "id": 1039,
7442
7275
  "name": "skip",
7443
7276
  "kind": 1024,
7444
7277
  "kindString": "Property",
@@ -7459,7 +7292,7 @@
7459
7292
  ],
7460
7293
  "props": [
7461
7294
  {
7462
- "id": 1109,
7295
+ "id": 1086,
7463
7296
  "name": "className",
7464
7297
  "kind": 1024,
7465
7298
  "kindString": "Property",
@@ -7479,21 +7312,21 @@
7479
7312
  {
7480
7313
  "type": "reflection",
7481
7314
  "declaration": {
7482
- "id": 1110,
7315
+ "id": 1087,
7483
7316
  "name": "__type",
7484
7317
  "kind": 65536,
7485
7318
  "kindString": "Type literal",
7486
7319
  "flags": {},
7487
7320
  "signatures": [
7488
7321
  {
7489
- "id": 1111,
7322
+ "id": 1088,
7490
7323
  "name": "__type",
7491
7324
  "kind": 4096,
7492
7325
  "kindString": "Call signature",
7493
7326
  "flags": {},
7494
7327
  "parameters": [
7495
7328
  {
7496
- "id": 1112,
7329
+ "id": 1089,
7497
7330
  "name": "expanded",
7498
7331
  "kind": 32768,
7499
7332
  "kindString": "Parameter",
@@ -7516,7 +7349,7 @@
7516
7349
  }
7517
7350
  },
7518
7351
  {
7519
- "id": 1113,
7352
+ "id": 1090,
7520
7353
  "name": "expanded",
7521
7354
  "kind": 1024,
7522
7355
  "kindString": "Property",
@@ -7532,7 +7365,7 @@
7532
7365
  }
7533
7366
  },
7534
7367
  {
7535
- "id": 1114,
7368
+ "id": 1091,
7536
7369
  "name": "fixed",
7537
7370
  "kind": 1024,
7538
7371
  "kindString": "Property",
@@ -7548,7 +7381,7 @@
7548
7381
  }
7549
7382
  },
7550
7383
  {
7551
- "id": 1119,
7384
+ "id": 1096,
7552
7385
  "name": "title",
7553
7386
  "kind": 1024,
7554
7387
  "kindString": "Property",
@@ -7568,21 +7401,21 @@
7568
7401
  {
7569
7402
  "type": "reflection",
7570
7403
  "declaration": {
7571
- "id": 1120,
7404
+ "id": 1097,
7572
7405
  "name": "__type",
7573
7406
  "kind": 65536,
7574
7407
  "kindString": "Type literal",
7575
7408
  "flags": {},
7576
7409
  "signatures": [
7577
7410
  {
7578
- "id": 1121,
7411
+ "id": 1098,
7579
7412
  "name": "__type",
7580
7413
  "kind": 4096,
7581
7414
  "kindString": "Call signature",
7582
7415
  "flags": {},
7583
7416
  "parameters": [
7584
7417
  {
7585
- "id": 1122,
7418
+ "id": 1099,
7586
7419
  "name": "expanded",
7587
7420
  "kind": 32768,
7588
7421
  "kindString": "Parameter",
@@ -7607,7 +7440,7 @@
7607
7440
  }
7608
7441
  },
7609
7442
  {
7610
- "id": 1115,
7443
+ "id": 1092,
7611
7444
  "name": "onClick",
7612
7445
  "kind": 2048,
7613
7446
  "kindString": "Method",
@@ -7616,7 +7449,7 @@
7616
7449
  },
7617
7450
  "signatures": [
7618
7451
  {
7619
- "id": 1116,
7452
+ "id": 1093,
7620
7453
  "name": "onClick",
7621
7454
  "kind": 4096,
7622
7455
  "kindString": "Call signature",
@@ -7626,7 +7459,7 @@
7626
7459
  },
7627
7460
  "parameters": [
7628
7461
  {
7629
- "id": 1117,
7462
+ "id": 1094,
7630
7463
  "name": "event",
7631
7464
  "kind": 32768,
7632
7465
  "kindString": "Parameter",
@@ -7653,7 +7486,7 @@
7653
7486
  }
7654
7487
  },
7655
7488
  {
7656
- "id": 1118,
7489
+ "id": 1095,
7657
7490
  "name": "expanded",
7658
7491
  "kind": 32768,
7659
7492
  "kindString": "Parameter",
@@ -7678,7 +7511,7 @@
7678
7511
  "useListKeyboardNavigationOptions": {
7679
7512
  "props": [
7680
7513
  {
7681
- "id": 1152,
7514
+ "id": 1129,
7682
7515
  "name": "direction",
7683
7516
  "kind": 1024,
7684
7517
  "kindString": "Property",
@@ -7692,7 +7525,7 @@
7692
7525
  }
7693
7526
  },
7694
7527
  {
7695
- "id": 1153,
7528
+ "id": 1130,
7696
7529
  "name": "initialIndex",
7697
7530
  "kind": 1024,
7698
7531
  "kindString": "Property",
@@ -7709,7 +7542,7 @@
7709
7542
  "usePaginationValues": {
7710
7543
  "props": [
7711
7544
  {
7712
- "id": 560,
7545
+ "id": 541,
7713
7546
  "name": "pageIndex",
7714
7547
  "kind": 1024,
7715
7548
  "kindString": "Property",
@@ -7723,7 +7556,7 @@
7723
7556
  }
7724
7557
  },
7725
7558
  {
7726
- "id": 561,
7559
+ "id": 542,
7727
7560
  "name": "pageSize",
7728
7561
  "kind": 1024,
7729
7562
  "kindString": "Property",
@@ -7737,14 +7570,14 @@
7737
7570
  }
7738
7571
  },
7739
7572
  {
7740
- "id": 562,
7573
+ "id": 543,
7741
7574
  "name": "setPageIndex",
7742
7575
  "kind": 2048,
7743
7576
  "kindString": "Method",
7744
7577
  "flags": {},
7745
7578
  "signatures": [
7746
7579
  {
7747
- "id": 563,
7580
+ "id": 544,
7748
7581
  "name": "setPageIndex",
7749
7582
  "kind": 4096,
7750
7583
  "kindString": "Call signature",
@@ -7754,7 +7587,7 @@
7754
7587
  },
7755
7588
  "parameters": [
7756
7589
  {
7757
- "id": 564,
7590
+ "id": 545,
7758
7591
  "name": "pageIndex",
7759
7592
  "kind": 32768,
7760
7593
  "kindString": "Parameter",
@@ -7773,14 +7606,14 @@
7773
7606
  ]
7774
7607
  },
7775
7608
  {
7776
- "id": 565,
7609
+ "id": 546,
7777
7610
  "name": "setPageSize",
7778
7611
  "kind": 2048,
7779
7612
  "kindString": "Method",
7780
7613
  "flags": {},
7781
7614
  "signatures": [
7782
7615
  {
7783
- "id": 566,
7616
+ "id": 547,
7784
7617
  "name": "setPageSize",
7785
7618
  "kind": 4096,
7786
7619
  "kindString": "Call signature",
@@ -7790,7 +7623,7 @@
7790
7623
  },
7791
7624
  "parameters": [
7792
7625
  {
7793
- "id": 567,
7626
+ "id": 548,
7794
7627
  "name": "size",
7795
7628
  "kind": 32768,
7796
7629
  "kindString": "Parameter",
@@ -7813,7 +7646,7 @@
7813
7646
  "useTableRowCreation": {
7814
7647
  "props": [
7815
7648
  {
7816
- "id": 973,
7649
+ "id": 950,
7817
7650
  "name": "data",
7818
7651
  "kind": 1024,
7819
7652
  "kindString": "Property",
@@ -7822,11 +7655,11 @@
7822
7655
  "type": "array",
7823
7656
  "elementType": {
7824
7657
  "type": "reference",
7825
- "id": 769,
7658
+ "id": 746,
7826
7659
  "typeArguments": [
7827
7660
  {
7828
7661
  "type": "reference",
7829
- "id": 982,
7662
+ "id": 959,
7830
7663
  "name": "TRow"
7831
7664
  }
7832
7665
  ],
@@ -7835,7 +7668,7 @@
7835
7668
  }
7836
7669
  },
7837
7670
  {
7838
- "id": 981,
7671
+ "id": 958,
7839
7672
  "name": "isCreating",
7840
7673
  "kind": 1024,
7841
7674
  "kindString": "Property",
@@ -7846,33 +7679,33 @@
7846
7679
  }
7847
7680
  },
7848
7681
  {
7849
- "id": 974,
7682
+ "id": 951,
7850
7683
  "name": "create",
7851
7684
  "kind": 2048,
7852
7685
  "kindString": "Method",
7853
7686
  "flags": {},
7854
7687
  "signatures": [
7855
7688
  {
7856
- "id": 975,
7689
+ "id": 952,
7857
7690
  "name": "create",
7858
7691
  "kind": 4096,
7859
7692
  "kindString": "Call signature",
7860
7693
  "flags": {},
7861
7694
  "parameters": [
7862
7695
  {
7863
- "id": 976,
7696
+ "id": 953,
7864
7697
  "name": "rowIndexPath",
7865
7698
  "kind": 32768,
7866
7699
  "kindString": "Parameter",
7867
7700
  "flags": {},
7868
7701
  "type": {
7869
7702
  "type": "reference",
7870
- "id": 774,
7703
+ "id": 751,
7871
7704
  "name": "RowIndexPath"
7872
7705
  }
7873
7706
  },
7874
7707
  {
7875
- "id": 977,
7708
+ "id": 954,
7876
7709
  "name": "values",
7877
7710
  "kind": 32768,
7878
7711
  "kindString": "Parameter",
@@ -7887,35 +7720,35 @@
7887
7720
  ],
7888
7721
  "type": {
7889
7722
  "type": "reference",
7890
- "id": 774,
7723
+ "id": 751,
7891
7724
  "name": "RowIndexPath"
7892
7725
  }
7893
7726
  }
7894
7727
  ]
7895
7728
  },
7896
7729
  {
7897
- "id": 978,
7730
+ "id": 955,
7898
7731
  "name": "remove",
7899
7732
  "kind": 2048,
7900
7733
  "kindString": "Method",
7901
7734
  "flags": {},
7902
7735
  "signatures": [
7903
7736
  {
7904
- "id": 979,
7737
+ "id": 956,
7905
7738
  "name": "remove",
7906
7739
  "kind": 4096,
7907
7740
  "kindString": "Call signature",
7908
7741
  "flags": {},
7909
7742
  "parameters": [
7910
7743
  {
7911
- "id": 980,
7744
+ "id": 957,
7912
7745
  "name": "rowIndexPath",
7913
7746
  "kind": 32768,
7914
7747
  "kindString": "Parameter",
7915
7748
  "flags": {},
7916
7749
  "type": {
7917
7750
  "type": "reference",
7918
- "id": 774,
7751
+ "id": 751,
7919
7752
  "name": "RowIndexPath"
7920
7753
  }
7921
7754
  }