@economic/taco 0.0.25-alpha.0 → 0.0.26-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Combobox/Combobox.d.ts +16 -35
- package/dist/components/Combobox/useCombobox.d.ts +5 -2
- package/dist/components/Provider/Provider.d.ts +6 -0
- package/dist/components/Select/Select.d.ts +2 -10
- package/dist/esm/components/Combobox/Combobox.js +21 -2
- package/dist/esm/components/Combobox/Combobox.js.map +1 -1
- package/dist/esm/components/Combobox/useCombobox.js +17 -2
- package/dist/esm/components/Combobox/useCombobox.js.map +1 -1
- package/dist/esm/components/Provider/Provider.js +3 -0
- package/dist/esm/components/Provider/Provider.js.map +1 -1
- package/dist/esm/components/Select/Select.js +1 -0
- package/dist/esm/components/Select/Select.js.map +1 -1
- package/dist/taco.cjs.development.js +41 -4
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +2 -2
- package/types.json +477 -667
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":
|
181
|
+
"id": 720,
|
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":
|
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":
|
331
|
+
"id": 268,
|
332
332
|
"name": "HangerProps"
|
333
333
|
}
|
334
334
|
],
|
@@ -377,7 +377,7 @@
|
|
377
377
|
"typeArguments": [
|
378
378
|
{
|
379
379
|
"type": "reference",
|
380
|
-
"id":
|
380
|
+
"id": 382,
|
381
381
|
"name": "MenuProps"
|
382
382
|
}
|
383
383
|
],
|
@@ -426,7 +426,7 @@
|
|
426
426
|
"typeArguments": [
|
427
427
|
{
|
428
428
|
"type": "reference",
|
429
|
-
"id":
|
429
|
+
"id": 562,
|
430
430
|
"name": "PopoverProps"
|
431
431
|
}
|
432
432
|
],
|
@@ -668,227 +668,22 @@
|
|
668
668
|
"ControlledCheckboxProps"
|
669
669
|
],
|
670
670
|
"ComboboxItem": "ScrollableListItem",
|
671
|
-
"ComboboxProps":
|
672
|
-
"
|
673
|
-
|
674
|
-
|
671
|
+
"ComboboxProps": [
|
672
|
+
"InlineComboboxProps",
|
673
|
+
"DialogComboboxProps"
|
674
|
+
],
|
675
|
+
"ComboboxTexts": {
|
675
676
|
"props": [
|
676
677
|
{
|
677
|
-
"id":
|
678
|
-
"name": "
|
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": "
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
993
|
+
"id": 181,
|
1199
994
|
"name": "DialogContentDrawerRenderProps"
|
1200
995
|
}
|
1201
996
|
},
|
1202
997
|
{
|
1203
|
-
"id":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
1229
|
+
"id": 202,
|
1435
1230
|
"name": "DialogSize"
|
1436
1231
|
}
|
1437
1232
|
},
|
1438
1233
|
{
|
1439
|
-
"id":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
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":
|
1355
|
+
"id": 207,
|
1561
1356
|
"name": "drag",
|
1562
1357
|
"kind": 1024,
|
1563
1358
|
"kindString": "Property",
|
@@ -1576,7 +1371,7 @@
|
|
1576
1371
|
],
|
1577
1372
|
"props": [
|
1578
1373
|
{
|
1579
|
-
"id":
|
1374
|
+
"id": 235,
|
1580
1375
|
"name": "children",
|
1581
1376
|
"kind": 1024,
|
1582
1377
|
"kindString": "Property",
|
@@ -1592,7 +1387,7 @@
|
|
1592
1387
|
}
|
1593
1388
|
},
|
1594
1389
|
{
|
1595
|
-
"id":
|
1390
|
+
"id": 236,
|
1596
1391
|
"name": "disabled",
|
1597
1392
|
"kind": 1024,
|
1598
1393
|
"kindString": "Property",
|
@@ -1608,7 +1403,7 @@
|
|
1608
1403
|
}
|
1609
1404
|
},
|
1610
1405
|
{
|
1611
|
-
"id":
|
1406
|
+
"id": 237,
|
1612
1407
|
"name": "message",
|
1613
1408
|
"kind": 1024,
|
1614
1409
|
"kindString": "Property",
|
@@ -1624,7 +1419,7 @@
|
|
1624
1419
|
}
|
1625
1420
|
},
|
1626
1421
|
{
|
1627
|
-
"id":
|
1422
|
+
"id": 238,
|
1628
1423
|
"name": "state",
|
1629
1424
|
"kind": 1024,
|
1630
1425
|
"kindString": "Property",
|
@@ -1648,7 +1443,7 @@
|
|
1648
1443
|
],
|
1649
1444
|
"props": [
|
1650
1445
|
{
|
1651
|
-
"id":
|
1446
|
+
"id": 247,
|
1652
1447
|
"name": "children",
|
1653
1448
|
"kind": 1024,
|
1654
1449
|
"kindString": "Property",
|
@@ -1664,7 +1459,7 @@
|
|
1664
1459
|
}
|
1665
1460
|
},
|
1666
1461
|
{
|
1667
|
-
"id":
|
1462
|
+
"id": 248,
|
1668
1463
|
"name": "horizontal",
|
1669
1464
|
"kind": 1024,
|
1670
1465
|
"kindString": "Property",
|
@@ -1687,7 +1482,7 @@
|
|
1687
1482
|
],
|
1688
1483
|
"props": [
|
1689
1484
|
{
|
1690
|
-
"id":
|
1485
|
+
"id": 231,
|
1691
1486
|
"name": "Close",
|
1692
1487
|
"kind": 1024,
|
1693
1488
|
"kindString": "Property",
|
@@ -1700,7 +1495,7 @@
|
|
1700
1495
|
"types": [
|
1701
1496
|
{
|
1702
1497
|
"type": "reference",
|
1703
|
-
"id":
|
1498
|
+
"id": 180,
|
1704
1499
|
"name": "DialogCloseProps"
|
1705
1500
|
},
|
1706
1501
|
{
|
@@ -1726,7 +1521,7 @@
|
|
1726
1521
|
}
|
1727
1522
|
},
|
1728
1523
|
{
|
1729
|
-
"id":
|
1524
|
+
"id": 226,
|
1730
1525
|
"name": "Content",
|
1731
1526
|
"kind": 1024,
|
1732
1527
|
"kindString": "Property",
|
@@ -1739,7 +1534,7 @@
|
|
1739
1534
|
"types": [
|
1740
1535
|
{
|
1741
1536
|
"type": "reference",
|
1742
|
-
"id":
|
1537
|
+
"id": 182,
|
1743
1538
|
"name": "DialogContentProps"
|
1744
1539
|
},
|
1745
1540
|
{
|
@@ -1765,7 +1560,7 @@
|
|
1765
1560
|
}
|
1766
1561
|
},
|
1767
1562
|
{
|
1768
|
-
"id":
|
1563
|
+
"id": 230,
|
1769
1564
|
"name": "Drawer",
|
1770
1565
|
"kind": 1024,
|
1771
1566
|
"kindString": "Property",
|
@@ -1778,7 +1573,7 @@
|
|
1778
1573
|
"types": [
|
1779
1574
|
{
|
1780
1575
|
"type": "reference",
|
1781
|
-
"id":
|
1576
|
+
"id": 194,
|
1782
1577
|
"name": "DialogDrawerProps"
|
1783
1578
|
},
|
1784
1579
|
{
|
@@ -1804,7 +1599,7 @@
|
|
1804
1599
|
}
|
1805
1600
|
},
|
1806
1601
|
{
|
1807
|
-
"id":
|
1602
|
+
"id": 229,
|
1808
1603
|
"name": "Extra",
|
1809
1604
|
"kind": 1024,
|
1810
1605
|
"kindString": "Property",
|
@@ -1842,7 +1637,7 @@
|
|
1842
1637
|
}
|
1843
1638
|
},
|
1844
1639
|
{
|
1845
|
-
"id":
|
1640
|
+
"id": 228,
|
1846
1641
|
"name": "Footer",
|
1847
1642
|
"kind": 1024,
|
1848
1643
|
"kindString": "Property",
|
@@ -1855,7 +1650,7 @@
|
|
1855
1650
|
"types": [
|
1856
1651
|
{
|
1857
1652
|
"type": "reference",
|
1858
|
-
"id":
|
1653
|
+
"id": 201,
|
1859
1654
|
"name": "DialogFooterProps"
|
1860
1655
|
},
|
1861
1656
|
{
|
@@ -1881,7 +1676,7 @@
|
|
1881
1676
|
}
|
1882
1677
|
},
|
1883
1678
|
{
|
1884
|
-
"id":
|
1679
|
+
"id": 227,
|
1885
1680
|
"name": "Title",
|
1886
1681
|
"kind": 1024,
|
1887
1682
|
"kindString": "Property",
|
@@ -1894,7 +1689,7 @@
|
|
1894
1689
|
"types": [
|
1895
1690
|
{
|
1896
1691
|
"type": "reference",
|
1897
|
-
"id":
|
1692
|
+
"id": 203,
|
1898
1693
|
"name": "DialogTitleProps"
|
1899
1694
|
},
|
1900
1695
|
{
|
@@ -1920,7 +1715,7 @@
|
|
1920
1715
|
}
|
1921
1716
|
},
|
1922
1717
|
{
|
1923
|
-
"id":
|
1718
|
+
"id": 225,
|
1924
1719
|
"name": "Trigger",
|
1925
1720
|
"kind": 1024,
|
1926
1721
|
"kindString": "Property",
|
@@ -1965,7 +1760,7 @@
|
|
1965
1760
|
],
|
1966
1761
|
"props": [
|
1967
1762
|
{
|
1968
|
-
"id":
|
1763
|
+
"id": 276,
|
1969
1764
|
"name": "Anchor",
|
1970
1765
|
"kind": 1024,
|
1971
1766
|
"kindString": "Property",
|
@@ -1975,7 +1770,7 @@
|
|
1975
1770
|
"typeArguments": [
|
1976
1771
|
{
|
1977
1772
|
"type": "reference",
|
1978
|
-
"id":
|
1773
|
+
"id": 264,
|
1979
1774
|
"name": "HangerAnchorProps"
|
1980
1775
|
}
|
1981
1776
|
],
|
@@ -1985,7 +1780,7 @@
|
|
1985
1780
|
}
|
1986
1781
|
},
|
1987
1782
|
{
|
1988
|
-
"id":
|
1783
|
+
"id": 277,
|
1989
1784
|
"name": "Content",
|
1990
1785
|
"kind": 1024,
|
1991
1786
|
"kindString": "Property",
|
@@ -1995,7 +1790,7 @@
|
|
1995
1790
|
"typeArguments": [
|
1996
1791
|
{
|
1997
1792
|
"type": "reference",
|
1998
|
-
"id":
|
1793
|
+
"id": 265,
|
1999
1794
|
"name": "HangerContentProps"
|
2000
1795
|
}
|
2001
1796
|
],
|
@@ -2012,7 +1807,7 @@
|
|
2012
1807
|
],
|
2013
1808
|
"props": [
|
2014
1809
|
{
|
2015
|
-
"id":
|
1810
|
+
"id": 494,
|
2016
1811
|
"name": "Group",
|
2017
1812
|
"kind": 1024,
|
2018
1813
|
"kindString": "Property",
|
@@ -2028,7 +1823,7 @@
|
|
2028
1823
|
"types": [
|
2029
1824
|
{
|
2030
1825
|
"type": "reference",
|
2031
|
-
"id":
|
1826
|
+
"id": 490,
|
2032
1827
|
"name": "NavigationMenuGroupProps"
|
2033
1828
|
},
|
2034
1829
|
{
|
@@ -2061,7 +1856,7 @@
|
|
2061
1856
|
],
|
2062
1857
|
"props": [
|
2063
1858
|
{
|
2064
|
-
"id":
|
1859
|
+
"id": 498,
|
2065
1860
|
"name": "Item",
|
2066
1861
|
"kind": 1024,
|
2067
1862
|
"kindString": "Property",
|
@@ -2077,7 +1872,7 @@
|
|
2077
1872
|
"types": [
|
2078
1873
|
{
|
2079
1874
|
"type": "reference",
|
2080
|
-
"id":
|
1875
|
+
"id": 482,
|
2081
1876
|
"name": "NavigationItemProps"
|
2082
1877
|
},
|
2083
1878
|
{
|
@@ -2103,7 +1898,7 @@
|
|
2103
1898
|
}
|
2104
1899
|
},
|
2105
1900
|
{
|
2106
|
-
"id":
|
1901
|
+
"id": 499,
|
2107
1902
|
"name": "Menu",
|
2108
1903
|
"kind": 1024,
|
2109
1904
|
"kindString": "Property",
|
@@ -2113,12 +1908,12 @@
|
|
2113
1908
|
},
|
2114
1909
|
"type": {
|
2115
1910
|
"type": "reference",
|
2116
|
-
"id":
|
1911
|
+
"id": 492,
|
2117
1912
|
"name": "ForwardedNavigationMenuWithStatics"
|
2118
1913
|
}
|
2119
1914
|
},
|
2120
1915
|
{
|
2121
|
-
"id":
|
1916
|
+
"id": 500,
|
2122
1917
|
"name": "Panel",
|
2123
1918
|
"kind": 1024,
|
2124
1919
|
"kindString": "Property",
|
@@ -2134,7 +1929,7 @@
|
|
2134
1929
|
"types": [
|
2135
1930
|
{
|
2136
1931
|
"type": "reference",
|
2137
|
-
"id":
|
1932
|
+
"id": 489,
|
2138
1933
|
"name": "NavigationPanelProps"
|
2139
1934
|
},
|
2140
1935
|
{
|
@@ -2167,7 +1962,7 @@
|
|
2167
1962
|
],
|
2168
1963
|
"props": [
|
2169
1964
|
{
|
2170
|
-
"id":
|
1965
|
+
"id": 569,
|
2171
1966
|
"name": "Close",
|
2172
1967
|
"kind": 1024,
|
2173
1968
|
"kindString": "Property",
|
@@ -2177,7 +1972,7 @@
|
|
2177
1972
|
"typeArguments": [
|
2178
1973
|
{
|
2179
1974
|
"type": "reference",
|
2180
|
-
"id":
|
1975
|
+
"id": 561,
|
2181
1976
|
"name": "PopoverCloseProps"
|
2182
1977
|
}
|
2183
1978
|
],
|
@@ -2187,7 +1982,7 @@
|
|
2187
1982
|
}
|
2188
1983
|
},
|
2189
1984
|
{
|
2190
|
-
"id":
|
1985
|
+
"id": 568,
|
2191
1986
|
"name": "Content",
|
2192
1987
|
"kind": 1024,
|
2193
1988
|
"kindString": "Property",
|
@@ -2197,7 +1992,7 @@
|
|
2197
1992
|
"typeArguments": [
|
2198
1993
|
{
|
2199
1994
|
"type": "reference",
|
2200
|
-
"id":
|
1995
|
+
"id": 554,
|
2201
1996
|
"name": "PopoverContentProps"
|
2202
1997
|
}
|
2203
1998
|
],
|
@@ -2207,7 +2002,7 @@
|
|
2207
2002
|
}
|
2208
2003
|
},
|
2209
2004
|
{
|
2210
|
-
"id":
|
2005
|
+
"id": 567,
|
2211
2006
|
"name": "Trigger",
|
2212
2007
|
"kind": 1024,
|
2213
2008
|
"kindString": "Property",
|
@@ -2217,7 +2012,7 @@
|
|
2217
2012
|
"typeArguments": [
|
2218
2013
|
{
|
2219
2014
|
"type": "reference",
|
2220
|
-
"id":
|
2015
|
+
"id": 549,
|
2221
2016
|
"name": "PopoverTriggerProps"
|
2222
2017
|
}
|
2223
2018
|
],
|
@@ -2234,7 +2029,7 @@
|
|
2234
2029
|
],
|
2235
2030
|
"props": [
|
2236
2031
|
{
|
2237
|
-
"id":
|
2032
|
+
"id": 704,
|
2238
2033
|
"name": "Item",
|
2239
2034
|
"kind": 1024,
|
2240
2035
|
"kindString": "Property",
|
@@ -2247,7 +2042,7 @@
|
|
2247
2042
|
"typeArguments": [
|
2248
2043
|
{
|
2249
2044
|
"type": "reference",
|
2250
|
-
"id":
|
2045
|
+
"id": 695,
|
2251
2046
|
"name": "RadioGroupItemProps"
|
2252
2047
|
}
|
2253
2048
|
],
|
@@ -2264,7 +2059,7 @@
|
|
2264
2059
|
],
|
2265
2060
|
"props": [
|
2266
2061
|
{
|
2267
|
-
"id":
|
2062
|
+
"id": 977,
|
2268
2063
|
"name": "Content",
|
2269
2064
|
"kind": 1024,
|
2270
2065
|
"kindString": "Property",
|
@@ -2280,7 +2075,7 @@
|
|
2280
2075
|
"types": [
|
2281
2076
|
{
|
2282
2077
|
"type": "reference",
|
2283
|
-
"id":
|
2078
|
+
"id": 970,
|
2284
2079
|
"name": "TabContentProps"
|
2285
2080
|
},
|
2286
2081
|
{
|
@@ -2306,7 +2101,7 @@
|
|
2306
2101
|
}
|
2307
2102
|
},
|
2308
2103
|
{
|
2309
|
-
"id":
|
2104
|
+
"id": 975,
|
2310
2105
|
"name": "List",
|
2311
2106
|
"kind": 1024,
|
2312
2107
|
"kindString": "Property",
|
@@ -2322,7 +2117,7 @@
|
|
2322
2117
|
"types": [
|
2323
2118
|
{
|
2324
2119
|
"type": "reference",
|
2325
|
-
"id":
|
2120
|
+
"id": 965,
|
2326
2121
|
"name": "TabListProps"
|
2327
2122
|
},
|
2328
2123
|
{
|
@@ -2348,7 +2143,7 @@
|
|
2348
2143
|
}
|
2349
2144
|
},
|
2350
2145
|
{
|
2351
|
-
"id":
|
2146
|
+
"id": 976,
|
2352
2147
|
"name": "Trigger",
|
2353
2148
|
"kind": 1024,
|
2354
2149
|
"kindString": "Property",
|
@@ -2364,7 +2159,7 @@
|
|
2364
2159
|
"types": [
|
2365
2160
|
{
|
2366
2161
|
"type": "reference",
|
2367
|
-
"id":
|
2162
|
+
"id": 966,
|
2368
2163
|
"name": "TabTriggerProps"
|
2369
2164
|
},
|
2370
2165
|
{
|
@@ -2397,7 +2192,7 @@
|
|
2397
2192
|
],
|
2398
2193
|
"props": [
|
2399
2194
|
{
|
2400
|
-
"id":
|
2195
|
+
"id": 1100,
|
2401
2196
|
"name": "Group",
|
2402
2197
|
"kind": 1024,
|
2403
2198
|
"kindString": "Property",
|
@@ -2413,7 +2208,7 @@
|
|
2413
2208
|
"types": [
|
2414
2209
|
{
|
2415
2210
|
"type": "reference",
|
2416
|
-
"id":
|
2211
|
+
"id": 1080,
|
2417
2212
|
"name": "TreeviewGroupProps"
|
2418
2213
|
},
|
2419
2214
|
{
|
@@ -2439,7 +2234,7 @@
|
|
2439
2234
|
}
|
2440
2235
|
},
|
2441
2236
|
{
|
2442
|
-
"id":
|
2237
|
+
"id": 1099,
|
2443
2238
|
"name": "Item",
|
2444
2239
|
"kind": 1024,
|
2445
2240
|
"kindString": "Property",
|
@@ -2455,7 +2250,7 @@
|
|
2455
2250
|
"types": [
|
2456
2251
|
{
|
2457
2252
|
"type": "reference",
|
2458
|
-
"id":
|
2253
|
+
"id": 1079,
|
2459
2254
|
"name": "TreeviewItemProps"
|
2460
2255
|
},
|
2461
2256
|
{
|
@@ -2488,7 +2283,7 @@
|
|
2488
2283
|
],
|
2489
2284
|
"props": [
|
2490
2285
|
{
|
2491
|
-
"id":
|
2286
|
+
"id": 255,
|
2492
2287
|
"name": "as",
|
2493
2288
|
"kind": 1024,
|
2494
2289
|
"kindString": "Property",
|
@@ -2517,7 +2312,7 @@
|
|
2517
2312
|
}
|
2518
2313
|
},
|
2519
2314
|
{
|
2520
|
-
"id":
|
2315
|
+
"id": 256,
|
2521
2316
|
"name": "children",
|
2522
2317
|
"kind": 1024,
|
2523
2318
|
"kindString": "Property",
|
@@ -2541,7 +2336,7 @@
|
|
2541
2336
|
],
|
2542
2337
|
"props": [
|
2543
2338
|
{
|
2544
|
-
"id":
|
2339
|
+
"id": 267,
|
2545
2340
|
"name": "placement",
|
2546
2341
|
"kind": 1024,
|
2547
2342
|
"kindString": "Property",
|
@@ -2563,7 +2358,7 @@
|
|
2563
2358
|
"HangerTexts": {
|
2564
2359
|
"props": [
|
2565
2360
|
{
|
2566
|
-
"id":
|
2361
|
+
"id": 263,
|
2567
2362
|
"name": "close",
|
2568
2363
|
"kind": 1024,
|
2569
2364
|
"kindString": "Property",
|
@@ -2584,7 +2379,7 @@
|
|
2584
2379
|
],
|
2585
2380
|
"props": [
|
2586
2381
|
{
|
2587
|
-
"id":
|
2382
|
+
"id": 289,
|
2588
2383
|
"name": "appearance",
|
2589
2384
|
"kind": 1024,
|
2590
2385
|
"kindString": "Property",
|
@@ -2601,7 +2396,7 @@
|
|
2601
2396
|
}
|
2602
2397
|
},
|
2603
2398
|
{
|
2604
|
-
"id":
|
2399
|
+
"id": 296,
|
2605
2400
|
"name": "icon",
|
2606
2401
|
"kind": 1024,
|
2607
2402
|
"kindString": "Property",
|
@@ -2611,12 +2406,12 @@
|
|
2611
2406
|
},
|
2612
2407
|
"type": {
|
2613
2408
|
"type": "reference",
|
2614
|
-
"id":
|
2409
|
+
"id": 280,
|
2615
2410
|
"name": "IconName"
|
2616
2411
|
}
|
2617
2412
|
},
|
2618
2413
|
{
|
2619
|
-
"id":
|
2414
|
+
"id": 303,
|
2620
2415
|
"name": "rounded",
|
2621
2416
|
"kind": 1024,
|
2622
2417
|
"kindString": "Property",
|
@@ -2632,7 +2427,7 @@
|
|
2632
2427
|
}
|
2633
2428
|
},
|
2634
2429
|
{
|
2635
|
-
"id":
|
2430
|
+
"id": 304,
|
2636
2431
|
"name": "tooltip",
|
2637
2432
|
"kind": 1024,
|
2638
2433
|
"kindString": "Property",
|
@@ -2648,7 +2443,7 @@
|
|
2648
2443
|
}
|
2649
2444
|
},
|
2650
2445
|
{
|
2651
|
-
"id":
|
2446
|
+
"id": 290,
|
2652
2447
|
"name": "dialog",
|
2653
2448
|
"kind": 2048,
|
2654
2449
|
"kindString": "Method",
|
@@ -2657,7 +2452,7 @@
|
|
2657
2452
|
},
|
2658
2453
|
"signatures": [
|
2659
2454
|
{
|
2660
|
-
"id":
|
2455
|
+
"id": 291,
|
2661
2456
|
"name": "dialog",
|
2662
2457
|
"kind": 4096,
|
2663
2458
|
"kindString": "Call signature",
|
@@ -2667,7 +2462,7 @@
|
|
2667
2462
|
},
|
2668
2463
|
"parameters": [
|
2669
2464
|
{
|
2670
|
-
"id":
|
2465
|
+
"id": 292,
|
2671
2466
|
"name": "props",
|
2672
2467
|
"kind": 32768,
|
2673
2468
|
"kindString": "Parameter",
|
@@ -2677,7 +2472,7 @@
|
|
2677
2472
|
"typeArguments": [
|
2678
2473
|
{
|
2679
2474
|
"type": "reference",
|
2680
|
-
"id":
|
2475
|
+
"id": 208,
|
2681
2476
|
"name": "DialogProps"
|
2682
2477
|
}
|
2683
2478
|
],
|
@@ -2697,7 +2492,7 @@
|
|
2697
2492
|
]
|
2698
2493
|
},
|
2699
2494
|
{
|
2700
|
-
"id":
|
2495
|
+
"id": 293,
|
2701
2496
|
"name": "hanger",
|
2702
2497
|
"kind": 2048,
|
2703
2498
|
"kindString": "Method",
|
@@ -2706,7 +2501,7 @@
|
|
2706
2501
|
},
|
2707
2502
|
"signatures": [
|
2708
2503
|
{
|
2709
|
-
"id":
|
2504
|
+
"id": 294,
|
2710
2505
|
"name": "hanger",
|
2711
2506
|
"kind": 4096,
|
2712
2507
|
"kindString": "Call signature",
|
@@ -2716,7 +2511,7 @@
|
|
2716
2511
|
},
|
2717
2512
|
"parameters": [
|
2718
2513
|
{
|
2719
|
-
"id":
|
2514
|
+
"id": 295,
|
2720
2515
|
"name": "props",
|
2721
2516
|
"kind": 32768,
|
2722
2517
|
"kindString": "Parameter",
|
@@ -2726,7 +2521,7 @@
|
|
2726
2521
|
"typeArguments": [
|
2727
2522
|
{
|
2728
2523
|
"type": "reference",
|
2729
|
-
"id":
|
2524
|
+
"id": 268,
|
2730
2525
|
"name": "HangerProps"
|
2731
2526
|
}
|
2732
2527
|
],
|
@@ -2746,7 +2541,7 @@
|
|
2746
2541
|
]
|
2747
2542
|
},
|
2748
2543
|
{
|
2749
|
-
"id":
|
2544
|
+
"id": 297,
|
2750
2545
|
"name": "menu",
|
2751
2546
|
"kind": 2048,
|
2752
2547
|
"kindString": "Method",
|
@@ -2755,7 +2550,7 @@
|
|
2755
2550
|
},
|
2756
2551
|
"signatures": [
|
2757
2552
|
{
|
2758
|
-
"id":
|
2553
|
+
"id": 298,
|
2759
2554
|
"name": "menu",
|
2760
2555
|
"kind": 4096,
|
2761
2556
|
"kindString": "Call signature",
|
@@ -2765,7 +2560,7 @@
|
|
2765
2560
|
},
|
2766
2561
|
"parameters": [
|
2767
2562
|
{
|
2768
|
-
"id":
|
2563
|
+
"id": 299,
|
2769
2564
|
"name": "props",
|
2770
2565
|
"kind": 32768,
|
2771
2566
|
"kindString": "Parameter",
|
@@ -2775,7 +2570,7 @@
|
|
2775
2570
|
"typeArguments": [
|
2776
2571
|
{
|
2777
2572
|
"type": "reference",
|
2778
|
-
"id":
|
2573
|
+
"id": 382,
|
2779
2574
|
"name": "MenuProps"
|
2780
2575
|
}
|
2781
2576
|
],
|
@@ -2795,7 +2590,7 @@
|
|
2795
2590
|
]
|
2796
2591
|
},
|
2797
2592
|
{
|
2798
|
-
"id":
|
2593
|
+
"id": 300,
|
2799
2594
|
"name": "popover",
|
2800
2595
|
"kind": 2048,
|
2801
2596
|
"kindString": "Method",
|
@@ -2804,7 +2599,7 @@
|
|
2804
2599
|
},
|
2805
2600
|
"signatures": [
|
2806
2601
|
{
|
2807
|
-
"id":
|
2602
|
+
"id": 301,
|
2808
2603
|
"name": "popover",
|
2809
2604
|
"kind": 4096,
|
2810
2605
|
"kindString": "Call signature",
|
@@ -2814,7 +2609,7 @@
|
|
2814
2609
|
},
|
2815
2610
|
"parameters": [
|
2816
2611
|
{
|
2817
|
-
"id":
|
2612
|
+
"id": 302,
|
2818
2613
|
"name": "props",
|
2819
2614
|
"kind": 32768,
|
2820
2615
|
"kindString": "Parameter",
|
@@ -2824,7 +2619,7 @@
|
|
2824
2619
|
"typeArguments": [
|
2825
2620
|
{
|
2826
2621
|
"type": "reference",
|
2827
|
-
"id":
|
2622
|
+
"id": 562,
|
2828
2623
|
"name": "PopoverProps"
|
2829
2624
|
}
|
2830
2625
|
],
|
@@ -3665,7 +3460,7 @@
|
|
3665
3460
|
],
|
3666
3461
|
"props": [
|
3667
3462
|
{
|
3668
|
-
"id":
|
3463
|
+
"id": 283,
|
3669
3464
|
"name": "name",
|
3670
3465
|
"kind": 1024,
|
3671
3466
|
"kindString": "Property",
|
@@ -3675,7 +3470,7 @@
|
|
3675
3470
|
},
|
3676
3471
|
"type": {
|
3677
3472
|
"type": "reference",
|
3678
|
-
"id":
|
3473
|
+
"id": 280,
|
3679
3474
|
"name": "IconName"
|
3680
3475
|
}
|
3681
3476
|
}
|
@@ -3687,7 +3482,7 @@
|
|
3687
3482
|
],
|
3688
3483
|
"props": [
|
3689
3484
|
{
|
3690
|
-
"id":
|
3485
|
+
"id": 325,
|
3691
3486
|
"name": "button",
|
3692
3487
|
"kind": 1024,
|
3693
3488
|
"kindString": "Property",
|
@@ -3705,7 +3500,7 @@
|
|
3705
3500
|
}
|
3706
3501
|
},
|
3707
3502
|
{
|
3708
|
-
"id":
|
3503
|
+
"id": 327,
|
3709
3504
|
"name": "highlighted",
|
3710
3505
|
"kind": 1024,
|
3711
3506
|
"kindString": "Property",
|
@@ -3721,7 +3516,7 @@
|
|
3721
3516
|
}
|
3722
3517
|
},
|
3723
3518
|
{
|
3724
|
-
"id":
|
3519
|
+
"id": 326,
|
3725
3520
|
"name": "icon",
|
3726
3521
|
"kind": 1024,
|
3727
3522
|
"kindString": "Property",
|
@@ -3736,7 +3531,7 @@
|
|
3736
3531
|
"types": [
|
3737
3532
|
{
|
3738
3533
|
"type": "reference",
|
3739
|
-
"id":
|
3534
|
+
"id": 280,
|
3740
3535
|
"name": "IconName"
|
3741
3536
|
},
|
3742
3537
|
{
|
@@ -3749,7 +3544,7 @@
|
|
3749
3544
|
}
|
3750
3545
|
},
|
3751
3546
|
{
|
3752
|
-
"id":
|
3547
|
+
"id": 328,
|
3753
3548
|
"name": "state",
|
3754
3549
|
"kind": 1024,
|
3755
3550
|
"kindString": "Property",
|
@@ -3775,7 +3570,7 @@
|
|
3775
3570
|
],
|
3776
3571
|
"props": [
|
3777
3572
|
{
|
3778
|
-
"id":
|
3573
|
+
"id": 357,
|
3779
3574
|
"name": "data",
|
3780
3575
|
"kind": 1024,
|
3781
3576
|
"kindString": "Property",
|
@@ -3789,13 +3584,13 @@
|
|
3789
3584
|
"type": "array",
|
3790
3585
|
"elementType": {
|
3791
3586
|
"type": "reference",
|
3792
|
-
"id":
|
3587
|
+
"id": 348,
|
3793
3588
|
"name": "ListboxItem"
|
3794
3589
|
}
|
3795
3590
|
}
|
3796
3591
|
},
|
3797
3592
|
{
|
3798
|
-
"id":
|
3593
|
+
"id": 358,
|
3799
3594
|
"name": "defaultValue",
|
3800
3595
|
"kind": 1024,
|
3801
3596
|
"kindString": "Property",
|
@@ -3807,12 +3602,12 @@
|
|
3807
3602
|
},
|
3808
3603
|
"type": {
|
3809
3604
|
"type": "reference",
|
3810
|
-
"id":
|
3605
|
+
"id": 349,
|
3811
3606
|
"name": "ListboxValue"
|
3812
3607
|
}
|
3813
3608
|
},
|
3814
3609
|
{
|
3815
|
-
"id":
|
3610
|
+
"id": 359,
|
3816
3611
|
"name": "emptyValue",
|
3817
3612
|
"kind": 1024,
|
3818
3613
|
"kindString": "Property",
|
@@ -3824,12 +3619,12 @@
|
|
3824
3619
|
},
|
3825
3620
|
"type": {
|
3826
3621
|
"type": "reference",
|
3827
|
-
"id":
|
3622
|
+
"id": 349,
|
3828
3623
|
"name": "ListboxValue"
|
3829
3624
|
}
|
3830
3625
|
},
|
3831
3626
|
{
|
3832
|
-
"id":
|
3627
|
+
"id": 360,
|
3833
3628
|
"name": "highlighted",
|
3834
3629
|
"kind": 1024,
|
3835
3630
|
"kindString": "Property",
|
@@ -3845,7 +3640,7 @@
|
|
3845
3640
|
}
|
3846
3641
|
},
|
3847
3642
|
{
|
3848
|
-
"id":
|
3643
|
+
"id": 361,
|
3849
3644
|
"name": "loading",
|
3850
3645
|
"kind": 1024,
|
3851
3646
|
"kindString": "Property",
|
@@ -3861,7 +3656,7 @@
|
|
3861
3656
|
}
|
3862
3657
|
},
|
3863
3658
|
{
|
3864
|
-
"id":
|
3659
|
+
"id": 362,
|
3865
3660
|
"name": "state",
|
3866
3661
|
"kind": 1024,
|
3867
3662
|
"kindString": "Property",
|
@@ -3878,7 +3673,7 @@
|
|
3878
3673
|
}
|
3879
3674
|
},
|
3880
3675
|
{
|
3881
|
-
"id":
|
3676
|
+
"id": 363,
|
3882
3677
|
"name": "value",
|
3883
3678
|
"kind": 1024,
|
3884
3679
|
"kindString": "Property",
|
@@ -3890,7 +3685,7 @@
|
|
3890
3685
|
},
|
3891
3686
|
"type": {
|
3892
3687
|
"type": "reference",
|
3893
|
-
"id":
|
3688
|
+
"id": 349,
|
3894
3689
|
"name": "ListboxValue"
|
3895
3690
|
}
|
3896
3691
|
}
|
@@ -3899,7 +3694,7 @@
|
|
3899
3694
|
"ListboxTexts": {
|
3900
3695
|
"props": [
|
3901
3696
|
{
|
3902
|
-
"id":
|
3697
|
+
"id": 354,
|
3903
3698
|
"name": "allOption",
|
3904
3699
|
"kind": 1024,
|
3905
3700
|
"kindString": "Property",
|
@@ -3913,7 +3708,7 @@
|
|
3913
3708
|
}
|
3914
3709
|
},
|
3915
3710
|
{
|
3916
|
-
"id":
|
3711
|
+
"id": 352,
|
3917
3712
|
"name": "empty",
|
3918
3713
|
"kind": 1024,
|
3919
3714
|
"kindString": "Property",
|
@@ -3927,7 +3722,7 @@
|
|
3927
3722
|
}
|
3928
3723
|
},
|
3929
3724
|
{
|
3930
|
-
"id":
|
3725
|
+
"id": 353,
|
3931
3726
|
"name": "loading",
|
3932
3727
|
"kind": 1024,
|
3933
3728
|
"kindString": "Property",
|
@@ -3946,7 +3741,7 @@
|
|
3946
3741
|
"Localization": {
|
3947
3742
|
"props": [
|
3948
3743
|
{
|
3949
|
-
"id":
|
3744
|
+
"id": 595,
|
3950
3745
|
"name": "formatting",
|
3951
3746
|
"kind": 1024,
|
3952
3747
|
"kindString": "Property",
|
@@ -3957,14 +3752,14 @@
|
|
3957
3752
|
"type": {
|
3958
3753
|
"type": "reflection",
|
3959
3754
|
"declaration": {
|
3960
|
-
"id":
|
3755
|
+
"id": 596,
|
3961
3756
|
"name": "__type",
|
3962
3757
|
"kind": 65536,
|
3963
3758
|
"kindString": "Type literal",
|
3964
3759
|
"flags": {},
|
3965
3760
|
"children": [
|
3966
3761
|
{
|
3967
|
-
"id":
|
3762
|
+
"id": 597,
|
3968
3763
|
"name": "date",
|
3969
3764
|
"kind": 1024,
|
3970
3765
|
"kindString": "Property",
|
@@ -3983,7 +3778,7 @@
|
|
3983
3778
|
"title": "Properties",
|
3984
3779
|
"kind": 1024,
|
3985
3780
|
"children": [
|
3986
|
-
|
3781
|
+
597
|
3987
3782
|
]
|
3988
3783
|
}
|
3989
3784
|
]
|
@@ -3991,7 +3786,7 @@
|
|
3991
3786
|
}
|
3992
3787
|
},
|
3993
3788
|
{
|
3994
|
-
"id":
|
3789
|
+
"id": 593,
|
3995
3790
|
"name": "locale",
|
3996
3791
|
"kind": 1024,
|
3997
3792
|
"kindString": "Property",
|
@@ -4006,7 +3801,7 @@
|
|
4006
3801
|
}
|
4007
3802
|
},
|
4008
3803
|
{
|
4009
|
-
"id":
|
3804
|
+
"id": 594,
|
4010
3805
|
"name": "texts",
|
4011
3806
|
"kind": 1024,
|
4012
3807
|
"kindString": "Property",
|
@@ -4016,7 +3811,7 @@
|
|
4016
3811
|
},
|
4017
3812
|
"type": {
|
4018
3813
|
"type": "reference",
|
4019
|
-
"id":
|
3814
|
+
"id": 577,
|
4020
3815
|
"name": "LocalizationTexts"
|
4021
3816
|
}
|
4022
3817
|
}
|
@@ -4025,7 +3820,7 @@
|
|
4025
3820
|
"LocalizationTexts": {
|
4026
3821
|
"props": [
|
4027
3822
|
{
|
4028
|
-
"id":
|
3823
|
+
"id": 579,
|
4029
3824
|
"name": "calendar",
|
4030
3825
|
"kind": 1024,
|
4031
3826
|
"kindString": "Property",
|
@@ -4040,7 +3835,22 @@
|
|
4040
3835
|
}
|
4041
3836
|
},
|
4042
3837
|
{
|
4043
|
-
"id":
|
3838
|
+
"id": 580,
|
3839
|
+
"name": "combobox",
|
3840
|
+
"kind": 1024,
|
3841
|
+
"kindString": "Property",
|
3842
|
+
"flags": {},
|
3843
|
+
"comment": {
|
3844
|
+
"shortText": "Localized texts and aria-labels for [Combobox](component:combobox) component"
|
3845
|
+
},
|
3846
|
+
"type": {
|
3847
|
+
"type": "reference",
|
3848
|
+
"id": 149,
|
3849
|
+
"name": "ComboboxTexts"
|
3850
|
+
}
|
3851
|
+
},
|
3852
|
+
{
|
3853
|
+
"id": 581,
|
4044
3854
|
"name": "datepicker",
|
4045
3855
|
"kind": 1024,
|
4046
3856
|
"kindString": "Property",
|
@@ -4050,12 +3860,12 @@
|
|
4050
3860
|
},
|
4051
3861
|
"type": {
|
4052
3862
|
"type": "reference",
|
4053
|
-
"id":
|
3863
|
+
"id": 156,
|
4054
3864
|
"name": "DatepickerTexts"
|
4055
3865
|
}
|
4056
3866
|
},
|
4057
3867
|
{
|
4058
|
-
"id":
|
3868
|
+
"id": 584,
|
4059
3869
|
"name": "dialog",
|
4060
3870
|
"kind": 1024,
|
4061
3871
|
"kindString": "Property",
|
@@ -4065,12 +3875,12 @@
|
|
4065
3875
|
},
|
4066
3876
|
"type": {
|
4067
3877
|
"type": "reference",
|
4068
|
-
"id":
|
3878
|
+
"id": 204,
|
4069
3879
|
"name": "DialogTexts"
|
4070
3880
|
}
|
4071
3881
|
},
|
4072
3882
|
{
|
4073
|
-
"id":
|
3883
|
+
"id": 582,
|
4074
3884
|
"name": "hanger",
|
4075
3885
|
"kind": 1024,
|
4076
3886
|
"kindString": "Property",
|
@@ -4080,12 +3890,12 @@
|
|
4080
3890
|
},
|
4081
3891
|
"type": {
|
4082
3892
|
"type": "reference",
|
4083
|
-
"id":
|
3893
|
+
"id": 261,
|
4084
3894
|
"name": "HangerTexts"
|
4085
3895
|
}
|
4086
3896
|
},
|
4087
3897
|
{
|
4088
|
-
"id":
|
3898
|
+
"id": 583,
|
4089
3899
|
"name": "listbox",
|
4090
3900
|
"kind": 1024,
|
4091
3901
|
"kindString": "Property",
|
@@ -4095,12 +3905,12 @@
|
|
4095
3905
|
},
|
4096
3906
|
"type": {
|
4097
3907
|
"type": "reference",
|
4098
|
-
"id":
|
3908
|
+
"id": 350,
|
4099
3909
|
"name": "ListboxTexts"
|
4100
3910
|
}
|
4101
3911
|
},
|
4102
3912
|
{
|
4103
|
-
"id":
|
3913
|
+
"id": 585,
|
4104
3914
|
"name": "pagination",
|
4105
3915
|
"kind": 1024,
|
4106
3916
|
"kindString": "Property",
|
@@ -4110,12 +3920,12 @@
|
|
4110
3920
|
},
|
4111
3921
|
"type": {
|
4112
3922
|
"type": "reference",
|
4113
|
-
"id":
|
3923
|
+
"id": 513,
|
4114
3924
|
"name": "PaginationTexts"
|
4115
3925
|
}
|
4116
3926
|
},
|
4117
3927
|
{
|
4118
|
-
"id":
|
3928
|
+
"id": 590,
|
4119
3929
|
"name": "searchInput",
|
4120
3930
|
"kind": 1024,
|
4121
3931
|
"kindString": "Property",
|
@@ -4125,12 +3935,12 @@
|
|
4125
3935
|
},
|
4126
3936
|
"type": {
|
4127
3937
|
"type": "reference",
|
4128
|
-
"id":
|
3938
|
+
"id": 335,
|
4129
3939
|
"name": "SearchInputTexts"
|
4130
3940
|
}
|
4131
3941
|
},
|
4132
3942
|
{
|
4133
|
-
"id":
|
3943
|
+
"id": 587,
|
4134
3944
|
"name": "select",
|
4135
3945
|
"kind": 1024,
|
4136
3946
|
"kindString": "Property",
|
@@ -4140,12 +3950,12 @@
|
|
4140
3950
|
},
|
4141
3951
|
"type": {
|
4142
3952
|
"type": "reference",
|
4143
|
-
"id":
|
3953
|
+
"id": 715,
|
4144
3954
|
"name": "SelectTexts"
|
4145
3955
|
}
|
4146
3956
|
},
|
4147
3957
|
{
|
4148
|
-
"id":
|
3958
|
+
"id": 586,
|
4149
3959
|
"name": "table",
|
4150
3960
|
"kind": 1024,
|
4151
3961
|
"kindString": "Property",
|
@@ -4155,12 +3965,12 @@
|
|
4155
3965
|
},
|
4156
3966
|
"type": {
|
4157
3967
|
"type": "reference",
|
4158
|
-
"id":
|
3968
|
+
"id": 900,
|
4159
3969
|
"name": "TableTexts"
|
4160
3970
|
}
|
4161
3971
|
},
|
4162
3972
|
{
|
4163
|
-
"id":
|
3973
|
+
"id": 588,
|
4164
3974
|
"name": "toasts",
|
4165
3975
|
"kind": 1024,
|
4166
3976
|
"kindString": "Property",
|
@@ -4174,7 +3984,7 @@
|
|
4174
3984
|
}
|
4175
3985
|
},
|
4176
3986
|
{
|
4177
|
-
"id":
|
3987
|
+
"id": 589,
|
4178
3988
|
"name": "tour",
|
4179
3989
|
"kind": 1024,
|
4180
3990
|
"kindString": "Property",
|
@@ -4184,7 +3994,7 @@
|
|
4184
3994
|
},
|
4185
3995
|
"type": {
|
4186
3996
|
"type": "reference",
|
4187
|
-
"id":
|
3997
|
+
"id": 1031,
|
4188
3998
|
"name": "TourTexts"
|
4189
3999
|
}
|
4190
4000
|
}
|
@@ -4193,7 +4003,7 @@
|
|
4193
4003
|
"MenuProps": {
|
4194
4004
|
"props": [
|
4195
4005
|
{
|
4196
|
-
"id":
|
4006
|
+
"id": 384,
|
4197
4007
|
"name": "children",
|
4198
4008
|
"kind": 1024,
|
4199
4009
|
"kindString": "Property",
|
@@ -4206,7 +4016,7 @@
|
|
4206
4016
|
}
|
4207
4017
|
},
|
4208
4018
|
{
|
4209
|
-
"id":
|
4019
|
+
"id": 385,
|
4210
4020
|
"name": "id",
|
4211
4021
|
"kind": 1024,
|
4212
4022
|
"kindString": "Property",
|
@@ -4219,7 +4029,7 @@
|
|
4219
4029
|
}
|
4220
4030
|
},
|
4221
4031
|
{
|
4222
|
-
"id":
|
4032
|
+
"id": 386,
|
4223
4033
|
"name": "trigger",
|
4224
4034
|
"kind": 1024,
|
4225
4035
|
"kindString": "Property",
|
@@ -4244,7 +4054,7 @@
|
|
4244
4054
|
],
|
4245
4055
|
"props": [
|
4246
4056
|
{
|
4247
|
-
"id":
|
4057
|
+
"id": 484,
|
4248
4058
|
"name": "active",
|
4249
4059
|
"kind": 1024,
|
4250
4060
|
"kindString": "Property",
|
@@ -4260,7 +4070,7 @@
|
|
4260
4070
|
}
|
4261
4071
|
},
|
4262
4072
|
{
|
4263
|
-
"id":
|
4073
|
+
"id": 485,
|
4264
4074
|
"name": "onDrop",
|
4265
4075
|
"kind": 1024,
|
4266
4076
|
"kindString": "Property",
|
@@ -4278,7 +4088,7 @@
|
|
4278
4088
|
}
|
4279
4089
|
},
|
4280
4090
|
{
|
4281
|
-
"id":
|
4091
|
+
"id": 486,
|
4282
4092
|
"name": "postfix",
|
4283
4093
|
"kind": 1024,
|
4284
4094
|
"kindString": "Property",
|
@@ -4296,7 +4106,7 @@
|
|
4296
4106
|
}
|
4297
4107
|
},
|
4298
4108
|
{
|
4299
|
-
"id":
|
4109
|
+
"id": 487,
|
4300
4110
|
"name": "prefix",
|
4301
4111
|
"kind": 1024,
|
4302
4112
|
"kindString": "Property",
|
@@ -4314,7 +4124,7 @@
|
|
4314
4124
|
}
|
4315
4125
|
},
|
4316
4126
|
{
|
4317
|
-
"id":
|
4127
|
+
"id": 488,
|
4318
4128
|
"name": "target",
|
4319
4129
|
"kind": 1024,
|
4320
4130
|
"kindString": "Property",
|
@@ -4349,7 +4159,7 @@
|
|
4349
4159
|
],
|
4350
4160
|
"props": [
|
4351
4161
|
{
|
4352
|
-
"id":
|
4162
|
+
"id": 526,
|
4353
4163
|
"name": "dangerouslyHijackGlobalKeyboardNavigation",
|
4354
4164
|
"kind": 1024,
|
4355
4165
|
"kindString": "Property",
|
@@ -4365,7 +4175,7 @@
|
|
4365
4175
|
}
|
4366
4176
|
},
|
4367
4177
|
{
|
4368
|
-
"id":
|
4178
|
+
"id": 521,
|
4369
4179
|
"name": "length",
|
4370
4180
|
"kind": 1024,
|
4371
4181
|
"kindString": "Property",
|
@@ -4379,7 +4189,7 @@
|
|
4379
4189
|
}
|
4380
4190
|
},
|
4381
4191
|
{
|
4382
|
-
"id":
|
4192
|
+
"id": 522,
|
4383
4193
|
"name": "pageSizes",
|
4384
4194
|
"kind": 1024,
|
4385
4195
|
"kindString": "Property",
|
@@ -4398,7 +4208,7 @@
|
|
4398
4208
|
}
|
4399
4209
|
},
|
4400
4210
|
{
|
4401
|
-
"id":
|
4211
|
+
"id": 523,
|
4402
4212
|
"name": "showPageControls",
|
4403
4213
|
"kind": 1024,
|
4404
4214
|
"kindString": "Property",
|
@@ -4414,7 +4224,7 @@
|
|
4414
4224
|
}
|
4415
4225
|
},
|
4416
4226
|
{
|
4417
|
-
"id":
|
4227
|
+
"id": 524,
|
4418
4228
|
"name": "showPageNumbers",
|
4419
4229
|
"kind": 1024,
|
4420
4230
|
"kindString": "Property",
|
@@ -4430,7 +4240,7 @@
|
|
4430
4240
|
}
|
4431
4241
|
},
|
4432
4242
|
{
|
4433
|
-
"id":
|
4243
|
+
"id": 525,
|
4434
4244
|
"name": "showPageSize",
|
4435
4245
|
"kind": 1024,
|
4436
4246
|
"kindString": "Property",
|
@@ -4450,7 +4260,7 @@
|
|
4450
4260
|
"PaginationTexts": {
|
4451
4261
|
"props": [
|
4452
4262
|
{
|
4453
|
-
"id":
|
4263
|
+
"id": 518,
|
4454
4264
|
"name": "actions",
|
4455
4265
|
"kind": 1024,
|
4456
4266
|
"kindString": "Property",
|
@@ -4460,12 +4270,12 @@
|
|
4460
4270
|
},
|
4461
4271
|
"type": {
|
4462
4272
|
"type": "reference",
|
4463
|
-
"id":
|
4273
|
+
"id": 502,
|
4464
4274
|
"name": "PaginationTextsActions"
|
4465
4275
|
}
|
4466
4276
|
},
|
4467
4277
|
{
|
4468
|
-
"id":
|
4278
|
+
"id": 515,
|
4469
4279
|
"name": "label",
|
4470
4280
|
"kind": 1024,
|
4471
4281
|
"kindString": "Property",
|
@@ -4479,7 +4289,7 @@
|
|
4479
4289
|
}
|
4480
4290
|
},
|
4481
4291
|
{
|
4482
|
-
"id":
|
4292
|
+
"id": 516,
|
4483
4293
|
"name": "pageSize",
|
4484
4294
|
"kind": 1024,
|
4485
4295
|
"kindString": "Property",
|
@@ -4493,7 +4303,7 @@
|
|
4493
4303
|
}
|
4494
4304
|
},
|
4495
4305
|
{
|
4496
|
-
"id":
|
4306
|
+
"id": 517,
|
4497
4307
|
"name": "showingXofYofTotal",
|
4498
4308
|
"kind": 1024,
|
4499
4309
|
"kindString": "Property",
|
@@ -4511,7 +4321,7 @@
|
|
4511
4321
|
"PaginationTextsActions": {
|
4512
4322
|
"props": [
|
4513
4323
|
{
|
4514
|
-
"id":
|
4324
|
+
"id": 504,
|
4515
4325
|
"name": "firstPage",
|
4516
4326
|
"kind": 1024,
|
4517
4327
|
"kindString": "Property",
|
@@ -4525,7 +4335,7 @@
|
|
4525
4335
|
}
|
4526
4336
|
},
|
4527
4337
|
{
|
4528
|
-
"id":
|
4338
|
+
"id": 505,
|
4529
4339
|
"name": "firstPageWithShortcut",
|
4530
4340
|
"kind": 1024,
|
4531
4341
|
"kindString": "Property",
|
@@ -4539,7 +4349,7 @@
|
|
4539
4349
|
}
|
4540
4350
|
},
|
4541
4351
|
{
|
4542
|
-
"id":
|
4352
|
+
"id": 510,
|
4543
4353
|
"name": "lastPage",
|
4544
4354
|
"kind": 1024,
|
4545
4355
|
"kindString": "Property",
|
@@ -4553,7 +4363,7 @@
|
|
4553
4363
|
}
|
4554
4364
|
},
|
4555
4365
|
{
|
4556
|
-
"id":
|
4366
|
+
"id": 511,
|
4557
4367
|
"name": "lastPageWithShortcut",
|
4558
4368
|
"kind": 1024,
|
4559
4369
|
"kindString": "Property",
|
@@ -4567,7 +4377,7 @@
|
|
4567
4377
|
}
|
4568
4378
|
},
|
4569
4379
|
{
|
4570
|
-
"id":
|
4380
|
+
"id": 506,
|
4571
4381
|
"name": "nextPage",
|
4572
4382
|
"kind": 1024,
|
4573
4383
|
"kindString": "Property",
|
@@ -4581,7 +4391,7 @@
|
|
4581
4391
|
}
|
4582
4392
|
},
|
4583
4393
|
{
|
4584
|
-
"id":
|
4394
|
+
"id": 507,
|
4585
4395
|
"name": "nextPageWithShortcut",
|
4586
4396
|
"kind": 1024,
|
4587
4397
|
"kindString": "Property",
|
@@ -4595,7 +4405,7 @@
|
|
4595
4405
|
}
|
4596
4406
|
},
|
4597
4407
|
{
|
4598
|
-
"id":
|
4408
|
+
"id": 512,
|
4599
4409
|
"name": "pageX",
|
4600
4410
|
"kind": 1024,
|
4601
4411
|
"kindString": "Property",
|
@@ -4609,7 +4419,7 @@
|
|
4609
4419
|
}
|
4610
4420
|
},
|
4611
4421
|
{
|
4612
|
-
"id":
|
4422
|
+
"id": 508,
|
4613
4423
|
"name": "previousPage",
|
4614
4424
|
"kind": 1024,
|
4615
4425
|
"kindString": "Property",
|
@@ -4623,7 +4433,7 @@
|
|
4623
4433
|
}
|
4624
4434
|
},
|
4625
4435
|
{
|
4626
|
-
"id":
|
4436
|
+
"id": 509,
|
4627
4437
|
"name": "previousPageWithShortcut",
|
4628
4438
|
"kind": 1024,
|
4629
4439
|
"kindString": "Property",
|
@@ -4645,7 +4455,7 @@
|
|
4645
4455
|
],
|
4646
4456
|
"props": [
|
4647
4457
|
{
|
4648
|
-
"id":
|
4458
|
+
"id": 556,
|
4649
4459
|
"name": "children",
|
4650
4460
|
"kind": 1024,
|
4651
4461
|
"kindString": "Property",
|
@@ -4662,28 +4472,28 @@
|
|
4662
4472
|
{
|
4663
4473
|
"type": "reflection",
|
4664
4474
|
"declaration": {
|
4665
|
-
"id":
|
4475
|
+
"id": 557,
|
4666
4476
|
"name": "__type",
|
4667
4477
|
"kind": 65536,
|
4668
4478
|
"kindString": "Type literal",
|
4669
4479
|
"flags": {},
|
4670
4480
|
"signatures": [
|
4671
4481
|
{
|
4672
|
-
"id":
|
4482
|
+
"id": 558,
|
4673
4483
|
"name": "__type",
|
4674
4484
|
"kind": 4096,
|
4675
4485
|
"kindString": "Call signature",
|
4676
4486
|
"flags": {},
|
4677
4487
|
"parameters": [
|
4678
4488
|
{
|
4679
|
-
"id":
|
4489
|
+
"id": 559,
|
4680
4490
|
"name": "props",
|
4681
4491
|
"kind": 32768,
|
4682
4492
|
"kindString": "Parameter",
|
4683
4493
|
"flags": {},
|
4684
4494
|
"type": {
|
4685
4495
|
"type": "reference",
|
4686
|
-
"id":
|
4496
|
+
"id": 550,
|
4687
4497
|
"name": "PopoverContentRenderProps"
|
4688
4498
|
}
|
4689
4499
|
}
|
@@ -4702,7 +4512,7 @@
|
|
4702
4512
|
}
|
4703
4513
|
},
|
4704
4514
|
{
|
4705
|
-
"id":
|
4515
|
+
"id": 560,
|
4706
4516
|
"name": "placement",
|
4707
4517
|
"kind": 1024,
|
4708
4518
|
"kindString": "Property",
|
@@ -4723,14 +4533,14 @@
|
|
4723
4533
|
"PopoverContentRenderProps": {
|
4724
4534
|
"props": [
|
4725
4535
|
{
|
4726
|
-
"id":
|
4536
|
+
"id": 552,
|
4727
4537
|
"name": "close",
|
4728
4538
|
"kind": 2048,
|
4729
4539
|
"kindString": "Method",
|
4730
4540
|
"flags": {},
|
4731
4541
|
"signatures": [
|
4732
4542
|
{
|
4733
|
-
"id":
|
4543
|
+
"id": 553,
|
4734
4544
|
"name": "close",
|
4735
4545
|
"kind": 4096,
|
4736
4546
|
"kindString": "Call signature",
|
@@ -4752,7 +4562,7 @@
|
|
4752
4562
|
],
|
4753
4563
|
"props": [
|
4754
4564
|
{
|
4755
|
-
"id":
|
4565
|
+
"id": 573,
|
4756
4566
|
"name": "duration",
|
4757
4567
|
"kind": 1024,
|
4758
4568
|
"kindString": "Property",
|
@@ -4772,7 +4582,7 @@
|
|
4772
4582
|
"ProviderProps": {
|
4773
4583
|
"props": [
|
4774
4584
|
{
|
4775
|
-
"id":
|
4585
|
+
"id": 678,
|
4776
4586
|
"name": "children",
|
4777
4587
|
"kind": 1024,
|
4778
4588
|
"kindString": "Property",
|
@@ -4788,7 +4598,7 @@
|
|
4788
4598
|
}
|
4789
4599
|
},
|
4790
4600
|
{
|
4791
|
-
"id":
|
4601
|
+
"id": 679,
|
4792
4602
|
"name": "localization",
|
4793
4603
|
"kind": 1024,
|
4794
4604
|
"kindString": "Property",
|
@@ -4800,7 +4610,7 @@
|
|
4800
4610
|
},
|
4801
4611
|
"type": {
|
4802
4612
|
"type": "reference",
|
4803
|
-
"id":
|
4613
|
+
"id": 591,
|
4804
4614
|
"name": "Localization"
|
4805
4615
|
}
|
4806
4616
|
}
|
@@ -4812,7 +4622,7 @@
|
|
4812
4622
|
],
|
4813
4623
|
"props": [
|
4814
4624
|
{
|
4815
|
-
"id":
|
4625
|
+
"id": 697,
|
4816
4626
|
"name": "children",
|
4817
4627
|
"kind": 1024,
|
4818
4628
|
"kindString": "Property",
|
@@ -4828,7 +4638,7 @@
|
|
4828
4638
|
}
|
4829
4639
|
},
|
4830
4640
|
{
|
4831
|
-
"id":
|
4641
|
+
"id": 698,
|
4832
4642
|
"name": "disabled",
|
4833
4643
|
"kind": 1024,
|
4834
4644
|
"kindString": "Property",
|
@@ -4841,7 +4651,7 @@
|
|
4841
4651
|
}
|
4842
4652
|
},
|
4843
4653
|
{
|
4844
|
-
"id":
|
4654
|
+
"id": 699,
|
4845
4655
|
"name": "value",
|
4846
4656
|
"kind": 1024,
|
4847
4657
|
"kindString": "Property",
|
@@ -4851,7 +4661,7 @@
|
|
4851
4661
|
},
|
4852
4662
|
"type": {
|
4853
4663
|
"type": "reference",
|
4854
|
-
"id":
|
4664
|
+
"id": 687,
|
4855
4665
|
"name": "RadioGroupItemValue"
|
4856
4666
|
}
|
4857
4667
|
}
|
@@ -4876,7 +4686,7 @@
|
|
4876
4686
|
],
|
4877
4687
|
"props": [
|
4878
4688
|
{
|
4879
|
-
"id":
|
4689
|
+
"id": 744,
|
4880
4690
|
"name": "subRows",
|
4881
4691
|
"kind": 1024,
|
4882
4692
|
"kindString": "Property",
|
@@ -4887,11 +4697,11 @@
|
|
4887
4697
|
"type": "array",
|
4888
4698
|
"elementType": {
|
4889
4699
|
"type": "reference",
|
4890
|
-
"id":
|
4700
|
+
"id": 742,
|
4891
4701
|
"typeArguments": [
|
4892
4702
|
{
|
4893
4703
|
"type": "reference",
|
4894
|
-
"id":
|
4704
|
+
"id": 746,
|
4895
4705
|
"name": "TRow"
|
4896
4706
|
}
|
4897
4707
|
],
|
@@ -4961,7 +4771,7 @@
|
|
4961
4771
|
],
|
4962
4772
|
"props": [
|
4963
4773
|
{
|
4964
|
-
"id":
|
4774
|
+
"id": 340,
|
4965
4775
|
"name": "onSearch",
|
4966
4776
|
"kind": 2048,
|
4967
4777
|
"kindString": "Method",
|
@@ -4970,7 +4780,7 @@
|
|
4970
4780
|
},
|
4971
4781
|
"signatures": [
|
4972
4782
|
{
|
4973
|
-
"id":
|
4783
|
+
"id": 341,
|
4974
4784
|
"name": "onSearch",
|
4975
4785
|
"kind": 4096,
|
4976
4786
|
"kindString": "Call signature",
|
@@ -4980,7 +4790,7 @@
|
|
4980
4790
|
},
|
4981
4791
|
"parameters": [
|
4982
4792
|
{
|
4983
|
-
"id":
|
4793
|
+
"id": 342,
|
4984
4794
|
"name": "value",
|
4985
4795
|
"kind": 32768,
|
4986
4796
|
"kindString": "Parameter",
|
@@ -5027,7 +4837,7 @@
|
|
5027
4837
|
"SearchInputTexts": {
|
5028
4838
|
"props": [
|
5029
4839
|
{
|
5030
|
-
"id":
|
4840
|
+
"id": 337,
|
5031
4841
|
"name": "inputLabel",
|
5032
4842
|
"kind": 1024,
|
5033
4843
|
"kindString": "Property",
|
@@ -5048,7 +4858,7 @@
|
|
5048
4858
|
],
|
5049
4859
|
"props": [
|
5050
4860
|
{
|
5051
|
-
"id":
|
4861
|
+
"id": 723,
|
5052
4862
|
"name": "editable",
|
5053
4863
|
"kind": 1024,
|
5054
4864
|
"kindString": "Property",
|
@@ -5068,7 +4878,7 @@
|
|
5068
4878
|
"SelectTexts": {
|
5069
4879
|
"props": [
|
5070
4880
|
{
|
5071
|
-
"id":
|
4881
|
+
"id": 717,
|
5072
4882
|
"name": "allOptionsSelected",
|
5073
4883
|
"kind": 1024,
|
5074
4884
|
"kindString": "Property",
|
@@ -5108,7 +4918,7 @@
|
|
5108
4918
|
"SortRule": {
|
5109
4919
|
"props": [
|
5110
4920
|
{
|
5111
|
-
"id":
|
4921
|
+
"id": 795,
|
5112
4922
|
"name": "accessor",
|
5113
4923
|
"kind": 1024,
|
5114
4924
|
"kindString": "Property",
|
@@ -5121,7 +4931,7 @@
|
|
5121
4931
|
"typeArguments": [
|
5122
4932
|
{
|
5123
4933
|
"type": "reference",
|
5124
|
-
"id":
|
4934
|
+
"id": 797,
|
5125
4935
|
"name": "T"
|
5126
4936
|
}
|
5127
4937
|
],
|
@@ -5131,7 +4941,7 @@
|
|
5131
4941
|
}
|
5132
4942
|
},
|
5133
4943
|
{
|
5134
|
-
"id":
|
4944
|
+
"id": 796,
|
5135
4945
|
"name": "desc",
|
5136
4946
|
"kind": 1024,
|
5137
4947
|
"kindString": "Property",
|
@@ -5176,7 +4986,7 @@
|
|
5176
4986
|
],
|
5177
4987
|
"props": [
|
5178
4988
|
{
|
5179
|
-
"id":
|
4989
|
+
"id": 731,
|
5180
4990
|
"name": "delay",
|
5181
4991
|
"kind": 1024,
|
5182
4992
|
"kindString": "Property",
|
@@ -5192,7 +5002,7 @@
|
|
5192
5002
|
}
|
5193
5003
|
},
|
5194
5004
|
{
|
5195
|
-
"id":
|
5005
|
+
"id": 732,
|
5196
5006
|
"name": "label",
|
5197
5007
|
"kind": 1024,
|
5198
5008
|
"kindString": "Property",
|
@@ -5219,7 +5029,7 @@
|
|
5219
5029
|
],
|
5220
5030
|
"props": [
|
5221
5031
|
{
|
5222
|
-
"id":
|
5032
|
+
"id": 972,
|
5223
5033
|
"name": "id",
|
5224
5034
|
"kind": 1024,
|
5225
5035
|
"kindString": "Property",
|
@@ -5241,7 +5051,7 @@
|
|
5241
5051
|
],
|
5242
5052
|
"props": [
|
5243
5053
|
{
|
5244
|
-
"id":
|
5054
|
+
"id": 969,
|
5245
5055
|
"name": "disabled",
|
5246
5056
|
"kind": 1024,
|
5247
5057
|
"kindString": "Property",
|
@@ -5257,7 +5067,7 @@
|
|
5257
5067
|
}
|
5258
5068
|
},
|
5259
5069
|
{
|
5260
|
-
"id":
|
5070
|
+
"id": 968,
|
5261
5071
|
"name": "id",
|
5262
5072
|
"kind": 1024,
|
5263
5073
|
"kindString": "Property",
|
@@ -5275,7 +5085,7 @@
|
|
5275
5085
|
"TableCell": {
|
5276
5086
|
"props": [
|
5277
5087
|
{
|
5278
|
-
"id":
|
5088
|
+
"id": 801,
|
5279
5089
|
"name": "accessor",
|
5280
5090
|
"kind": 1024,
|
5281
5091
|
"kindString": "Property",
|
@@ -5286,7 +5096,7 @@
|
|
5286
5096
|
}
|
5287
5097
|
},
|
5288
5098
|
{
|
5289
|
-
"id":
|
5099
|
+
"id": 802,
|
5290
5100
|
"name": "row",
|
5291
5101
|
"kind": 1024,
|
5292
5102
|
"kindString": "Property",
|
@@ -5296,11 +5106,11 @@
|
|
5296
5106
|
},
|
5297
5107
|
"type": {
|
5298
5108
|
"type": "reference",
|
5299
|
-
"id":
|
5109
|
+
"id": 875,
|
5300
5110
|
"typeArguments": [
|
5301
5111
|
{
|
5302
5112
|
"type": "reference",
|
5303
|
-
"id":
|
5113
|
+
"id": 804,
|
5304
5114
|
"name": "TRow"
|
5305
5115
|
}
|
5306
5116
|
],
|
@@ -5308,7 +5118,7 @@
|
|
5308
5118
|
}
|
5309
5119
|
},
|
5310
5120
|
{
|
5311
|
-
"id":
|
5121
|
+
"id": 803,
|
5312
5122
|
"name": "value",
|
5313
5123
|
"kind": 1024,
|
5314
5124
|
"kindString": "Property",
|
@@ -5326,7 +5136,7 @@
|
|
5326
5136
|
"TableColumnProps": {
|
5327
5137
|
"props": [
|
5328
5138
|
{
|
5329
|
-
"id":
|
5139
|
+
"id": 807,
|
5330
5140
|
"name": "accessor",
|
5331
5141
|
"kind": 1024,
|
5332
5142
|
"kindString": "Property",
|
@@ -5340,7 +5150,7 @@
|
|
5340
5150
|
}
|
5341
5151
|
},
|
5342
5152
|
{
|
5343
|
-
"id":
|
5153
|
+
"id": 808,
|
5344
5154
|
"name": "align",
|
5345
5155
|
"kind": 1024,
|
5346
5156
|
"kindString": "Property",
|
@@ -5369,7 +5179,7 @@
|
|
5369
5179
|
}
|
5370
5180
|
},
|
5371
5181
|
{
|
5372
|
-
"id":
|
5182
|
+
"id": 809,
|
5373
5183
|
"name": "className",
|
5374
5184
|
"kind": 1024,
|
5375
5185
|
"kindString": "Property",
|
@@ -5385,7 +5195,7 @@
|
|
5385
5195
|
}
|
5386
5196
|
},
|
5387
5197
|
{
|
5388
|
-
"id":
|
5198
|
+
"id": 813,
|
5389
5199
|
"name": "disableSorting",
|
5390
5200
|
"kind": 1024,
|
5391
5201
|
"kindString": "Property",
|
@@ -5401,7 +5211,7 @@
|
|
5401
5211
|
}
|
5402
5212
|
},
|
5403
5213
|
{
|
5404
|
-
"id":
|
5214
|
+
"id": 817,
|
5405
5215
|
"name": "flex",
|
5406
5216
|
"kind": 1024,
|
5407
5217
|
"kindString": "Property",
|
@@ -5421,28 +5231,28 @@
|
|
5421
5231
|
{
|
5422
5232
|
"type": "reflection",
|
5423
5233
|
"declaration": {
|
5424
|
-
"id":
|
5234
|
+
"id": 818,
|
5425
5235
|
"name": "__type",
|
5426
5236
|
"kind": 65536,
|
5427
5237
|
"kindString": "Type literal",
|
5428
5238
|
"flags": {},
|
5429
5239
|
"signatures": [
|
5430
5240
|
{
|
5431
|
-
"id":
|
5241
|
+
"id": 819,
|
5432
5242
|
"name": "__type",
|
5433
5243
|
"kind": 4096,
|
5434
5244
|
"kindString": "Call signature",
|
5435
5245
|
"flags": {},
|
5436
5246
|
"parameters": [
|
5437
5247
|
{
|
5438
|
-
"id":
|
5248
|
+
"id": 820,
|
5439
5249
|
"name": "row",
|
5440
5250
|
"kind": 32768,
|
5441
5251
|
"kindString": "Parameter",
|
5442
5252
|
"flags": {},
|
5443
5253
|
"type": {
|
5444
5254
|
"type": "reference",
|
5445
|
-
"id":
|
5255
|
+
"id": 827,
|
5446
5256
|
"name": "TRow"
|
5447
5257
|
}
|
5448
5258
|
}
|
@@ -5459,7 +5269,7 @@
|
|
5459
5269
|
}
|
5460
5270
|
},
|
5461
5271
|
{
|
5462
|
-
"id":
|
5272
|
+
"id": 821,
|
5463
5273
|
"name": "headRenderer",
|
5464
5274
|
"kind": 1024,
|
5465
5275
|
"kindString": "Property",
|
@@ -5477,7 +5287,7 @@
|
|
5477
5287
|
}
|
5478
5288
|
},
|
5479
5289
|
{
|
5480
|
-
"id":
|
5290
|
+
"id": 822,
|
5481
5291
|
"name": "hidden",
|
5482
5292
|
"kind": 1024,
|
5483
5293
|
"kindString": "Property",
|
@@ -5493,7 +5303,7 @@
|
|
5493
5303
|
}
|
5494
5304
|
},
|
5495
5305
|
{
|
5496
|
-
"id":
|
5306
|
+
"id": 823,
|
5497
5307
|
"name": "hiddenOnSubRows",
|
5498
5308
|
"kind": 1024,
|
5499
5309
|
"kindString": "Property",
|
@@ -5509,7 +5319,7 @@
|
|
5509
5319
|
}
|
5510
5320
|
},
|
5511
5321
|
{
|
5512
|
-
"id":
|
5322
|
+
"id": 824,
|
5513
5323
|
"name": "sort",
|
5514
5324
|
"kind": 1024,
|
5515
5325
|
"kindString": "Property",
|
@@ -5521,12 +5331,12 @@
|
|
5521
5331
|
},
|
5522
5332
|
"type": {
|
5523
5333
|
"type": "reference",
|
5524
|
-
"id":
|
5334
|
+
"id": 786,
|
5525
5335
|
"name": "SortDirection"
|
5526
5336
|
}
|
5527
5337
|
},
|
5528
5338
|
{
|
5529
|
-
"id":
|
5339
|
+
"id": 825,
|
5530
5340
|
"name": "sortType",
|
5531
5341
|
"kind": 1024,
|
5532
5342
|
"kindString": "Property",
|
@@ -5538,12 +5348,12 @@
|
|
5538
5348
|
},
|
5539
5349
|
"type": {
|
5540
5350
|
"type": "reference",
|
5541
|
-
"id":
|
5351
|
+
"id": 798,
|
5542
5352
|
"name": "SortTypes"
|
5543
5353
|
}
|
5544
5354
|
},
|
5545
5355
|
{
|
5546
|
-
"id":
|
5356
|
+
"id": 826,
|
5547
5357
|
"name": "style",
|
5548
5358
|
"kind": 1024,
|
5549
5359
|
"kindString": "Property",
|
@@ -5559,7 +5369,7 @@
|
|
5559
5369
|
}
|
5560
5370
|
},
|
5561
5371
|
{
|
5562
|
-
"id":
|
5372
|
+
"id": 810,
|
5563
5373
|
"name": "cellRenderer",
|
5564
5374
|
"kind": 2048,
|
5565
5375
|
"kindString": "Method",
|
@@ -5568,7 +5378,7 @@
|
|
5568
5378
|
},
|
5569
5379
|
"signatures": [
|
5570
5380
|
{
|
5571
|
-
"id":
|
5381
|
+
"id": 811,
|
5572
5382
|
"name": "cellRenderer",
|
5573
5383
|
"kind": 4096,
|
5574
5384
|
"kindString": "Call signature",
|
@@ -5578,18 +5388,18 @@
|
|
5578
5388
|
},
|
5579
5389
|
"parameters": [
|
5580
5390
|
{
|
5581
|
-
"id":
|
5391
|
+
"id": 812,
|
5582
5392
|
"name": "cellProps",
|
5583
5393
|
"kind": 32768,
|
5584
5394
|
"kindString": "Parameter",
|
5585
5395
|
"flags": {},
|
5586
5396
|
"type": {
|
5587
5397
|
"type": "reference",
|
5588
|
-
"id":
|
5398
|
+
"id": 799,
|
5589
5399
|
"typeArguments": [
|
5590
5400
|
{
|
5591
5401
|
"type": "reference",
|
5592
|
-
"id":
|
5402
|
+
"id": 827,
|
5593
5403
|
"name": "TRow"
|
5594
5404
|
}
|
5595
5405
|
],
|
@@ -5607,7 +5417,7 @@
|
|
5607
5417
|
]
|
5608
5418
|
},
|
5609
5419
|
{
|
5610
|
-
"id":
|
5420
|
+
"id": 814,
|
5611
5421
|
"name": "editRenderer",
|
5612
5422
|
"kind": 2048,
|
5613
5423
|
"kindString": "Method",
|
@@ -5616,25 +5426,25 @@
|
|
5616
5426
|
},
|
5617
5427
|
"signatures": [
|
5618
5428
|
{
|
5619
|
-
"id":
|
5429
|
+
"id": 815,
|
5620
5430
|
"name": "editRenderer",
|
5621
5431
|
"kind": 4096,
|
5622
5432
|
"kindString": "Call signature",
|
5623
5433
|
"flags": {},
|
5624
5434
|
"parameters": [
|
5625
5435
|
{
|
5626
|
-
"id":
|
5436
|
+
"id": 816,
|
5627
5437
|
"name": "cellProps",
|
5628
5438
|
"kind": 32768,
|
5629
5439
|
"kindString": "Parameter",
|
5630
5440
|
"flags": {},
|
5631
5441
|
"type": {
|
5632
5442
|
"type": "reference",
|
5633
|
-
"id":
|
5443
|
+
"id": 799,
|
5634
5444
|
"typeArguments": [
|
5635
5445
|
{
|
5636
5446
|
"type": "reference",
|
5637
|
-
"id":
|
5447
|
+
"id": 827,
|
5638
5448
|
"name": "TRow"
|
5639
5449
|
}
|
5640
5450
|
],
|
@@ -5656,7 +5466,7 @@
|
|
5656
5466
|
"TableGroupProps": {
|
5657
5467
|
"props": [
|
5658
5468
|
{
|
5659
|
-
"id":
|
5469
|
+
"id": 830,
|
5660
5470
|
"name": "children",
|
5661
5471
|
"kind": 1024,
|
5662
5472
|
"kindString": "Property",
|
@@ -5672,11 +5482,11 @@
|
|
5672
5482
|
"typeArguments": [
|
5673
5483
|
{
|
5674
5484
|
"type": "reference",
|
5675
|
-
"id":
|
5485
|
+
"id": 805,
|
5676
5486
|
"typeArguments": [
|
5677
5487
|
{
|
5678
5488
|
"type": "reference",
|
5679
|
-
"id":
|
5489
|
+
"id": 833,
|
5680
5490
|
"name": "TRow"
|
5681
5491
|
}
|
5682
5492
|
],
|
@@ -5694,11 +5504,11 @@
|
|
5694
5504
|
"typeArguments": [
|
5695
5505
|
{
|
5696
5506
|
"type": "reference",
|
5697
|
-
"id":
|
5507
|
+
"id": 805,
|
5698
5508
|
"typeArguments": [
|
5699
5509
|
{
|
5700
5510
|
"type": "reference",
|
5701
|
-
"id":
|
5511
|
+
"id": 833,
|
5702
5512
|
"name": "TRow"
|
5703
5513
|
}
|
5704
5514
|
],
|
@@ -5714,7 +5524,7 @@
|
|
5714
5524
|
}
|
5715
5525
|
},
|
5716
5526
|
{
|
5717
|
-
"id":
|
5527
|
+
"id": 831,
|
5718
5528
|
"name": "hidden",
|
5719
5529
|
"kind": 1024,
|
5720
5530
|
"kindString": "Property",
|
@@ -5730,7 +5540,7 @@
|
|
5730
5540
|
}
|
5731
5541
|
},
|
5732
5542
|
{
|
5733
|
-
"id":
|
5543
|
+
"id": 832,
|
5734
5544
|
"name": "title",
|
5735
5545
|
"kind": 1024,
|
5736
5546
|
"kindString": "Property",
|
@@ -5751,7 +5561,7 @@
|
|
5751
5561
|
],
|
5752
5562
|
"props": [
|
5753
5563
|
{
|
5754
|
-
"id":
|
5564
|
+
"id": 869,
|
5755
5565
|
"name": "actions",
|
5756
5566
|
"kind": 1024,
|
5757
5567
|
"kindString": "Property",
|
@@ -5765,11 +5575,11 @@
|
|
5765
5575
|
"type": "array",
|
5766
5576
|
"elementType": {
|
5767
5577
|
"type": "reference",
|
5768
|
-
"id":
|
5578
|
+
"id": 782,
|
5769
5579
|
"typeArguments": [
|
5770
5580
|
{
|
5771
5581
|
"type": "reference",
|
5772
|
-
"id":
|
5582
|
+
"id": 874,
|
5773
5583
|
"name": "TRow"
|
5774
5584
|
}
|
5775
5585
|
],
|
@@ -5778,7 +5588,7 @@
|
|
5778
5588
|
}
|
5779
5589
|
},
|
5780
5590
|
{
|
5781
|
-
"id":
|
5591
|
+
"id": 836,
|
5782
5592
|
"name": "autoFocus",
|
5783
5593
|
"kind": 1024,
|
5784
5594
|
"kindString": "Property",
|
@@ -5794,7 +5604,7 @@
|
|
5794
5604
|
}
|
5795
5605
|
},
|
5796
5606
|
{
|
5797
|
-
"id":
|
5607
|
+
"id": 837,
|
5798
5608
|
"name": "children",
|
5799
5609
|
"kind": 1024,
|
5800
5610
|
"kindString": "Property",
|
@@ -5807,7 +5617,7 @@
|
|
5807
5617
|
"typeArguments": [
|
5808
5618
|
{
|
5809
5619
|
"type": "reference",
|
5810
|
-
"id":
|
5620
|
+
"id": 874,
|
5811
5621
|
"name": "TRow"
|
5812
5622
|
}
|
5813
5623
|
],
|
@@ -5815,7 +5625,7 @@
|
|
5815
5625
|
}
|
5816
5626
|
},
|
5817
5627
|
{
|
5818
|
-
"id":
|
5628
|
+
"id": 839,
|
5819
5629
|
"name": "dangerouslyHijackGlobalKeyboardNavigation",
|
5820
5630
|
"kind": 1024,
|
5821
5631
|
"kindString": "Property",
|
@@ -5831,7 +5641,7 @@
|
|
5831
5641
|
}
|
5832
5642
|
},
|
5833
5643
|
{
|
5834
|
-
"id":
|
5644
|
+
"id": 838,
|
5835
5645
|
"name": "data",
|
5836
5646
|
"kind": 1024,
|
5837
5647
|
"kindString": "Property",
|
@@ -5843,11 +5653,11 @@
|
|
5843
5653
|
"type": "array",
|
5844
5654
|
"elementType": {
|
5845
5655
|
"type": "reference",
|
5846
|
-
"id":
|
5656
|
+
"id": 742,
|
5847
5657
|
"typeArguments": [
|
5848
5658
|
{
|
5849
5659
|
"type": "reference",
|
5850
|
-
"id":
|
5660
|
+
"id": 874,
|
5851
5661
|
"name": "TRow"
|
5852
5662
|
}
|
5853
5663
|
],
|
@@ -5856,7 +5666,7 @@
|
|
5856
5666
|
}
|
5857
5667
|
},
|
5858
5668
|
{
|
5859
|
-
"id":
|
5669
|
+
"id": 858,
|
5860
5670
|
"name": "disablePagination",
|
5861
5671
|
"kind": 1024,
|
5862
5672
|
"kindString": "Property",
|
@@ -5869,7 +5679,7 @@
|
|
5869
5679
|
}
|
5870
5680
|
},
|
5871
5681
|
{
|
5872
|
-
"id":
|
5682
|
+
"id": 854,
|
5873
5683
|
"name": "disableSorting",
|
5874
5684
|
"kind": 1024,
|
5875
5685
|
"kindString": "Property",
|
@@ -5885,7 +5695,7 @@
|
|
5885
5695
|
}
|
5886
5696
|
},
|
5887
5697
|
{
|
5888
|
-
"id":
|
5698
|
+
"id": 867,
|
5889
5699
|
"name": "inlineEditingUniqueId",
|
5890
5700
|
"kind": 1024,
|
5891
5701
|
"kindString": "Property",
|
@@ -5900,13 +5710,13 @@
|
|
5900
5710
|
"operator": "keyof",
|
5901
5711
|
"target": {
|
5902
5712
|
"type": "reference",
|
5903
|
-
"id":
|
5713
|
+
"id": 874,
|
5904
5714
|
"name": "TRow"
|
5905
5715
|
}
|
5906
5716
|
}
|
5907
5717
|
},
|
5908
5718
|
{
|
5909
|
-
"id":
|
5719
|
+
"id": 859,
|
5910
5720
|
"name": "length",
|
5911
5721
|
"kind": 1024,
|
5912
5722
|
"kindString": "Property",
|
@@ -5919,7 +5729,7 @@
|
|
5919
5729
|
}
|
5920
5730
|
},
|
5921
5731
|
{
|
5922
|
-
"id":
|
5732
|
+
"id": 856,
|
5923
5733
|
"name": "manualSorting",
|
5924
5734
|
"kind": 1024,
|
5925
5735
|
"kindString": "Property",
|
@@ -5935,7 +5745,7 @@
|
|
5935
5745
|
}
|
5936
5746
|
},
|
5937
5747
|
{
|
5938
|
-
"id":
|
5748
|
+
"id": 860,
|
5939
5749
|
"name": "onPaginate",
|
5940
5750
|
"kind": 1024,
|
5941
5751
|
"kindString": "Property",
|
@@ -5947,12 +5757,12 @@
|
|
5947
5757
|
},
|
5948
5758
|
"type": {
|
5949
5759
|
"type": "reference",
|
5950
|
-
"id":
|
5760
|
+
"id": 737,
|
5951
5761
|
"name": "PaginationHandler"
|
5952
5762
|
}
|
5953
5763
|
},
|
5954
5764
|
{
|
5955
|
-
"id":
|
5765
|
+
"id": 873,
|
5956
5766
|
"name": "onRowActive",
|
5957
5767
|
"kind": 1024,
|
5958
5768
|
"kindString": "Property",
|
@@ -5967,7 +5777,7 @@
|
|
5967
5777
|
"typeArguments": [
|
5968
5778
|
{
|
5969
5779
|
"type": "reference",
|
5970
|
-
"id":
|
5780
|
+
"id": 874,
|
5971
5781
|
"name": "TRow"
|
5972
5782
|
}
|
5973
5783
|
],
|
@@ -5975,7 +5785,7 @@
|
|
5975
5785
|
}
|
5976
5786
|
},
|
5977
5787
|
{
|
5978
|
-
"id":
|
5788
|
+
"id": 842,
|
5979
5789
|
"name": "onRowClick",
|
5980
5790
|
"kind": 1024,
|
5981
5791
|
"kindString": "Property",
|
@@ -5987,11 +5797,11 @@
|
|
5987
5797
|
},
|
5988
5798
|
"type": {
|
5989
5799
|
"type": "reference",
|
5990
|
-
"id":
|
5800
|
+
"id": 748,
|
5991
5801
|
"typeArguments": [
|
5992
5802
|
{
|
5993
5803
|
"type": "reference",
|
5994
|
-
"id":
|
5804
|
+
"id": 874,
|
5995
5805
|
"name": "TRow"
|
5996
5806
|
}
|
5997
5807
|
],
|
@@ -5999,7 +5809,7 @@
|
|
5999
5809
|
}
|
6000
5810
|
},
|
6001
5811
|
{
|
6002
|
-
"id":
|
5812
|
+
"id": 871,
|
6003
5813
|
"name": "onRowCopy",
|
6004
5814
|
"kind": 1024,
|
6005
5815
|
"kindString": "Property",
|
@@ -6011,11 +5821,11 @@
|
|
6011
5821
|
},
|
6012
5822
|
"type": {
|
6013
5823
|
"type": "reference",
|
6014
|
-
"id":
|
5824
|
+
"id": 770,
|
6015
5825
|
"typeArguments": [
|
6016
5826
|
{
|
6017
5827
|
"type": "reference",
|
6018
|
-
"id":
|
5828
|
+
"id": 874,
|
6019
5829
|
"name": "TRow"
|
6020
5830
|
}
|
6021
5831
|
],
|
@@ -6023,7 +5833,7 @@
|
|
6023
5833
|
}
|
6024
5834
|
},
|
6025
5835
|
{
|
6026
|
-
"id":
|
5836
|
+
"id": 868,
|
6027
5837
|
"name": "onRowCreate",
|
6028
5838
|
"kind": 1024,
|
6029
5839
|
"kindString": "Property",
|
@@ -6035,11 +5845,11 @@
|
|
6035
5845
|
},
|
6036
5846
|
"type": {
|
6037
5847
|
"type": "reference",
|
6038
|
-
"id":
|
5848
|
+
"id": 764,
|
6039
5849
|
"typeArguments": [
|
6040
5850
|
{
|
6041
5851
|
"type": "reference",
|
6042
|
-
"id":
|
5852
|
+
"id": 874,
|
6043
5853
|
"name": "TRow"
|
6044
5854
|
}
|
6045
5855
|
],
|
@@ -6047,7 +5857,7 @@
|
|
6047
5857
|
}
|
6048
5858
|
},
|
6049
5859
|
{
|
6050
|
-
"id":
|
5860
|
+
"id": 872,
|
6051
5861
|
"name": "onRowDelete",
|
6052
5862
|
"kind": 1024,
|
6053
5863
|
"kindString": "Property",
|
@@ -6059,11 +5869,11 @@
|
|
6059
5869
|
},
|
6060
5870
|
"type": {
|
6061
5871
|
"type": "reference",
|
6062
|
-
"id":
|
5872
|
+
"id": 776,
|
6063
5873
|
"typeArguments": [
|
6064
5874
|
{
|
6065
5875
|
"type": "reference",
|
6066
|
-
"id":
|
5876
|
+
"id": 874,
|
6067
5877
|
"name": "TRow"
|
6068
5878
|
}
|
6069
5879
|
],
|
@@ -6071,7 +5881,7 @@
|
|
6071
5881
|
}
|
6072
5882
|
},
|
6073
5883
|
{
|
6074
|
-
"id":
|
5884
|
+
"id": 843,
|
6075
5885
|
"name": "onRowDrag",
|
6076
5886
|
"kind": 1024,
|
6077
5887
|
"kindString": "Property",
|
@@ -6083,11 +5893,11 @@
|
|
6083
5893
|
},
|
6084
5894
|
"type": {
|
6085
5895
|
"type": "reference",
|
6086
|
-
"id":
|
5896
|
+
"id": 754,
|
6087
5897
|
"typeArguments": [
|
6088
5898
|
{
|
6089
5899
|
"type": "reference",
|
6090
|
-
"id":
|
5900
|
+
"id": 874,
|
6091
5901
|
"name": "TRow"
|
6092
5902
|
}
|
6093
5903
|
],
|
@@ -6095,7 +5905,7 @@
|
|
6095
5905
|
}
|
6096
5906
|
},
|
6097
5907
|
{
|
6098
|
-
"id":
|
5908
|
+
"id": 870,
|
6099
5909
|
"name": "onRowEdit",
|
6100
5910
|
"kind": 1024,
|
6101
5911
|
"kindString": "Property",
|
@@ -6110,7 +5920,7 @@
|
|
6110
5920
|
"typeArguments": [
|
6111
5921
|
{
|
6112
5922
|
"type": "reference",
|
6113
|
-
"id":
|
5923
|
+
"id": 874,
|
6114
5924
|
"name": "TRow"
|
6115
5925
|
}
|
6116
5926
|
],
|
@@ -6118,7 +5928,7 @@
|
|
6118
5928
|
}
|
6119
5929
|
},
|
6120
5930
|
{
|
6121
|
-
"id":
|
5931
|
+
"id": 844,
|
6122
5932
|
"name": "onSelectedRows",
|
6123
5933
|
"kind": 1024,
|
6124
5934
|
"kindString": "Property",
|
@@ -6130,12 +5940,12 @@
|
|
6130
5940
|
},
|
6131
5941
|
"type": {
|
6132
5942
|
"type": "reference",
|
6133
|
-
"id":
|
5943
|
+
"id": 784,
|
6134
5944
|
"name": "SelectedRowsHandler"
|
6135
5945
|
}
|
6136
5946
|
},
|
6137
5947
|
{
|
6138
|
-
"id":
|
5948
|
+
"id": 855,
|
6139
5949
|
"name": "onSort",
|
6140
5950
|
"kind": 1024,
|
6141
5951
|
"kindString": "Property",
|
@@ -6147,11 +5957,11 @@
|
|
6147
5957
|
},
|
6148
5958
|
"type": {
|
6149
5959
|
"type": "reference",
|
6150
|
-
"id":
|
5960
|
+
"id": 787,
|
6151
5961
|
"typeArguments": [
|
6152
5962
|
{
|
6153
5963
|
"type": "reference",
|
6154
|
-
"id":
|
5964
|
+
"id": 874,
|
6155
5965
|
"name": "TRow"
|
6156
5966
|
}
|
6157
5967
|
],
|
@@ -6159,7 +5969,7 @@
|
|
6159
5969
|
}
|
6160
5970
|
},
|
6161
5971
|
{
|
6162
|
-
"id":
|
5972
|
+
"id": 861,
|
6163
5973
|
"name": "pageIndex",
|
6164
5974
|
"kind": 1024,
|
6165
5975
|
"kindString": "Property",
|
@@ -6175,7 +5985,7 @@
|
|
6175
5985
|
}
|
6176
5986
|
},
|
6177
5987
|
{
|
6178
|
-
"id":
|
5988
|
+
"id": 862,
|
6179
5989
|
"name": "pageSize",
|
6180
5990
|
"kind": 1024,
|
6181
5991
|
"kindString": "Property",
|
@@ -6191,7 +6001,7 @@
|
|
6191
6001
|
}
|
6192
6002
|
},
|
6193
6003
|
{
|
6194
|
-
"id":
|
6004
|
+
"id": 845,
|
6195
6005
|
"name": "rowClassName",
|
6196
6006
|
"kind": 1024,
|
6197
6007
|
"kindString": "Property",
|
@@ -6211,32 +6021,32 @@
|
|
6211
6021
|
{
|
6212
6022
|
"type": "reflection",
|
6213
6023
|
"declaration": {
|
6214
|
-
"id":
|
6024
|
+
"id": 846,
|
6215
6025
|
"name": "__type",
|
6216
6026
|
"kind": 65536,
|
6217
6027
|
"kindString": "Type literal",
|
6218
6028
|
"flags": {},
|
6219
6029
|
"signatures": [
|
6220
6030
|
{
|
6221
|
-
"id":
|
6031
|
+
"id": 847,
|
6222
6032
|
"name": "__type",
|
6223
6033
|
"kind": 4096,
|
6224
6034
|
"kindString": "Call signature",
|
6225
6035
|
"flags": {},
|
6226
6036
|
"parameters": [
|
6227
6037
|
{
|
6228
|
-
"id":
|
6038
|
+
"id": 848,
|
6229
6039
|
"name": "row",
|
6230
6040
|
"kind": 32768,
|
6231
6041
|
"kindString": "Parameter",
|
6232
6042
|
"flags": {},
|
6233
6043
|
"type": {
|
6234
6044
|
"type": "reference",
|
6235
|
-
"id":
|
6045
|
+
"id": 875,
|
6236
6046
|
"typeArguments": [
|
6237
6047
|
{
|
6238
6048
|
"type": "reference",
|
6239
|
-
"id":
|
6049
|
+
"id": 874,
|
6240
6050
|
"name": "TRow"
|
6241
6051
|
}
|
6242
6052
|
],
|
@@ -6265,7 +6075,7 @@
|
|
6265
6075
|
}
|
6266
6076
|
},
|
6267
6077
|
{
|
6268
|
-
"id":
|
6078
|
+
"id": 852,
|
6269
6079
|
"name": "rowHeight",
|
6270
6080
|
"kind": 1024,
|
6271
6081
|
"kindString": "Property",
|
@@ -6281,7 +6091,7 @@
|
|
6281
6091
|
}
|
6282
6092
|
},
|
6283
6093
|
{
|
6284
|
-
"id":
|
6094
|
+
"id": 853,
|
6285
6095
|
"name": "selectedRows",
|
6286
6096
|
"kind": 1024,
|
6287
6097
|
"kindString": "Property",
|
@@ -6293,12 +6103,12 @@
|
|
6293
6103
|
},
|
6294
6104
|
"type": {
|
6295
6105
|
"type": "reference",
|
6296
|
-
"id":
|
6106
|
+
"id": 785,
|
6297
6107
|
"name": "SelectedRowsState"
|
6298
6108
|
}
|
6299
6109
|
},
|
6300
6110
|
{
|
6301
|
-
"id":
|
6111
|
+
"id": 857,
|
6302
6112
|
"name": "sortRules",
|
6303
6113
|
"kind": 1024,
|
6304
6114
|
"kindString": "Property",
|
@@ -6312,11 +6122,11 @@
|
|
6312
6122
|
"type": "array",
|
6313
6123
|
"elementType": {
|
6314
6124
|
"type": "reference",
|
6315
|
-
"id":
|
6125
|
+
"id": 793,
|
6316
6126
|
"typeArguments": [
|
6317
6127
|
{
|
6318
6128
|
"type": "reference",
|
6319
|
-
"id":
|
6129
|
+
"id": 874,
|
6320
6130
|
"name": "TRow"
|
6321
6131
|
}
|
6322
6132
|
],
|
@@ -6325,7 +6135,7 @@
|
|
6325
6135
|
}
|
6326
6136
|
},
|
6327
6137
|
{
|
6328
|
-
"id":
|
6138
|
+
"id": 840,
|
6329
6139
|
"name": "emptyStateRenderer",
|
6330
6140
|
"kind": 2048,
|
6331
6141
|
"kindString": "Method",
|
@@ -6334,7 +6144,7 @@
|
|
6334
6144
|
},
|
6335
6145
|
"signatures": [
|
6336
6146
|
{
|
6337
|
-
"id":
|
6147
|
+
"id": 841,
|
6338
6148
|
"name": "emptyStateRenderer",
|
6339
6149
|
"kind": 4096,
|
6340
6150
|
"kindString": "Call signature",
|
@@ -6352,7 +6162,7 @@
|
|
6352
6162
|
]
|
6353
6163
|
},
|
6354
6164
|
{
|
6355
|
-
"id":
|
6165
|
+
"id": 863,
|
6356
6166
|
"name": "loadMore",
|
6357
6167
|
"kind": 2048,
|
6358
6168
|
"kindString": "Method",
|
@@ -6361,7 +6171,7 @@
|
|
6361
6171
|
},
|
6362
6172
|
"signatures": [
|
6363
6173
|
{
|
6364
|
-
"id":
|
6174
|
+
"id": 864,
|
6365
6175
|
"name": "loadMore",
|
6366
6176
|
"kind": 4096,
|
6367
6177
|
"kindString": "Call signature",
|
@@ -6371,7 +6181,7 @@
|
|
6371
6181
|
},
|
6372
6182
|
"parameters": [
|
6373
6183
|
{
|
6374
|
-
"id":
|
6184
|
+
"id": 865,
|
6375
6185
|
"name": "startIndex",
|
6376
6186
|
"kind": 32768,
|
6377
6187
|
"kindString": "Parameter",
|
@@ -6382,7 +6192,7 @@
|
|
6382
6192
|
}
|
6383
6193
|
},
|
6384
6194
|
{
|
6385
|
-
"id":
|
6195
|
+
"id": 866,
|
6386
6196
|
"name": "endIndex",
|
6387
6197
|
"kind": 32768,
|
6388
6198
|
"kindString": "Parameter",
|
@@ -6401,7 +6211,7 @@
|
|
6401
6211
|
]
|
6402
6212
|
},
|
6403
6213
|
{
|
6404
|
-
"id":
|
6214
|
+
"id": 849,
|
6405
6215
|
"name": "rowExpansionRenderer",
|
6406
6216
|
"kind": 2048,
|
6407
6217
|
"kindString": "Method",
|
@@ -6410,7 +6220,7 @@
|
|
6410
6220
|
},
|
6411
6221
|
"signatures": [
|
6412
6222
|
{
|
6413
|
-
"id":
|
6223
|
+
"id": 850,
|
6414
6224
|
"name": "rowExpansionRenderer",
|
6415
6225
|
"kind": 4096,
|
6416
6226
|
"kindString": "Call signature",
|
@@ -6420,18 +6230,18 @@
|
|
6420
6230
|
},
|
6421
6231
|
"parameters": [
|
6422
6232
|
{
|
6423
|
-
"id":
|
6233
|
+
"id": 851,
|
6424
6234
|
"name": "row",
|
6425
6235
|
"kind": 32768,
|
6426
6236
|
"kindString": "Parameter",
|
6427
6237
|
"flags": {},
|
6428
6238
|
"type": {
|
6429
6239
|
"type": "reference",
|
6430
|
-
"id":
|
6240
|
+
"id": 875,
|
6431
6241
|
"typeArguments": [
|
6432
6242
|
{
|
6433
6243
|
"type": "reference",
|
6434
|
-
"id":
|
6244
|
+
"id": 874,
|
6435
6245
|
"name": "TRow"
|
6436
6246
|
}
|
6437
6247
|
],
|
@@ -6456,7 +6266,7 @@
|
|
6456
6266
|
],
|
6457
6267
|
"props": [
|
6458
6268
|
{
|
6459
|
-
"id":
|
6269
|
+
"id": 890,
|
6460
6270
|
"name": "instance",
|
6461
6271
|
"kind": 1024,
|
6462
6272
|
"kindString": "Property",
|
@@ -6464,14 +6274,14 @@
|
|
6464
6274
|
"type": {
|
6465
6275
|
"type": "reflection",
|
6466
6276
|
"declaration": {
|
6467
|
-
"id":
|
6277
|
+
"id": 891,
|
6468
6278
|
"name": "__type",
|
6469
6279
|
"kind": 65536,
|
6470
6280
|
"kindString": "Type literal",
|
6471
6281
|
"flags": {},
|
6472
6282
|
"children": [
|
6473
6283
|
{
|
6474
|
-
"id":
|
6284
|
+
"id": 897,
|
6475
6285
|
"name": "resetRowEditing",
|
6476
6286
|
"kind": 1024,
|
6477
6287
|
"kindString": "Property",
|
@@ -6482,7 +6292,7 @@
|
|
6482
6292
|
}
|
6483
6293
|
},
|
6484
6294
|
{
|
6485
|
-
"id":
|
6295
|
+
"id": 892,
|
6486
6296
|
"name": "toggleAllRowsExpanded",
|
6487
6297
|
"kind": 1024,
|
6488
6298
|
"kindString": "Property",
|
@@ -6493,7 +6303,7 @@
|
|
6493
6303
|
}
|
6494
6304
|
},
|
6495
6305
|
{
|
6496
|
-
"id":
|
6306
|
+
"id": 895,
|
6497
6307
|
"name": "toggleEditing",
|
6498
6308
|
"kind": 1024,
|
6499
6309
|
"kindString": "Property",
|
@@ -6504,7 +6314,7 @@
|
|
6504
6314
|
}
|
6505
6315
|
},
|
6506
6316
|
{
|
6507
|
-
"id":
|
6317
|
+
"id": 893,
|
6508
6318
|
"name": "toggleHideAllColumns",
|
6509
6319
|
"kind": 1024,
|
6510
6320
|
"kindString": "Property",
|
@@ -6515,7 +6325,7 @@
|
|
6515
6325
|
}
|
6516
6326
|
},
|
6517
6327
|
{
|
6518
|
-
"id":
|
6328
|
+
"id": 894,
|
6519
6329
|
"name": "toggleHideColumn",
|
6520
6330
|
"kind": 1024,
|
6521
6331
|
"kindString": "Property",
|
@@ -6526,7 +6336,7 @@
|
|
6526
6336
|
}
|
6527
6337
|
},
|
6528
6338
|
{
|
6529
|
-
"id":
|
6339
|
+
"id": 896,
|
6530
6340
|
"name": "toggleRowEditing",
|
6531
6341
|
"kind": 1024,
|
6532
6342
|
"kindString": "Property",
|
@@ -6537,7 +6347,7 @@
|
|
6537
6347
|
}
|
6538
6348
|
},
|
6539
6349
|
{
|
6540
|
-
"id":
|
6350
|
+
"id": 898,
|
6541
6351
|
"name": "toggleRowExpanded",
|
6542
6352
|
"kind": 1024,
|
6543
6353
|
"kindString": "Property",
|
@@ -6548,7 +6358,7 @@
|
|
6548
6358
|
}
|
6549
6359
|
},
|
6550
6360
|
{
|
6551
|
-
"id":
|
6361
|
+
"id": 899,
|
6552
6362
|
"name": "toggleSortBy",
|
6553
6363
|
"kind": 1024,
|
6554
6364
|
"kindString": "Property",
|
@@ -6564,14 +6374,14 @@
|
|
6564
6374
|
"title": "Properties",
|
6565
6375
|
"kind": 1024,
|
6566
6376
|
"children": [
|
6567
|
-
|
6568
|
-
|
6569
|
-
|
6570
|
-
|
6571
|
-
|
6572
|
-
|
6573
|
-
|
6574
|
-
|
6377
|
+
897,
|
6378
|
+
892,
|
6379
|
+
895,
|
6380
|
+
893,
|
6381
|
+
894,
|
6382
|
+
896,
|
6383
|
+
898,
|
6384
|
+
899
|
6575
6385
|
]
|
6576
6386
|
}
|
6577
6387
|
]
|
@@ -6583,7 +6393,7 @@
|
|
6583
6393
|
"TableRow": {
|
6584
6394
|
"props": [
|
6585
6395
|
{
|
6586
|
-
"id":
|
6396
|
+
"id": 879,
|
6587
6397
|
"name": "depth",
|
6588
6398
|
"kind": 1024,
|
6589
6399
|
"kindString": "Property",
|
@@ -6596,7 +6406,7 @@
|
|
6596
6406
|
}
|
6597
6407
|
},
|
6598
6408
|
{
|
6599
|
-
"id":
|
6409
|
+
"id": 877,
|
6600
6410
|
"name": "index",
|
6601
6411
|
"kind": 1024,
|
6602
6412
|
"kindString": "Property",
|
@@ -6610,7 +6420,7 @@
|
|
6610
6420
|
}
|
6611
6421
|
},
|
6612
6422
|
{
|
6613
|
-
"id":
|
6423
|
+
"id": 878,
|
6614
6424
|
"name": "indexPath",
|
6615
6425
|
"kind": 1024,
|
6616
6426
|
"kindString": "Property",
|
@@ -6624,7 +6434,7 @@
|
|
6624
6434
|
}
|
6625
6435
|
},
|
6626
6436
|
{
|
6627
|
-
"id":
|
6437
|
+
"id": 884,
|
6628
6438
|
"name": "isEditing",
|
6629
6439
|
"kind": 1024,
|
6630
6440
|
"kindString": "Property",
|
@@ -6637,7 +6447,7 @@
|
|
6637
6447
|
}
|
6638
6448
|
},
|
6639
6449
|
{
|
6640
|
-
"id":
|
6450
|
+
"id": 880,
|
6641
6451
|
"name": "isExpanded",
|
6642
6452
|
"kind": 1024,
|
6643
6453
|
"kindString": "Property",
|
@@ -6653,7 +6463,7 @@
|
|
6653
6463
|
}
|
6654
6464
|
},
|
6655
6465
|
{
|
6656
|
-
"id":
|
6466
|
+
"id": 883,
|
6657
6467
|
"name": "values",
|
6658
6468
|
"kind": 1024,
|
6659
6469
|
"kindString": "Property",
|
@@ -6663,11 +6473,11 @@
|
|
6663
6473
|
},
|
6664
6474
|
"type": {
|
6665
6475
|
"type": "reference",
|
6666
|
-
"id":
|
6476
|
+
"id": 742,
|
6667
6477
|
"typeArguments": [
|
6668
6478
|
{
|
6669
6479
|
"type": "reference",
|
6670
|
-
"id":
|
6480
|
+
"id": 887,
|
6671
6481
|
"name": "TRow"
|
6672
6482
|
}
|
6673
6483
|
],
|
@@ -6675,7 +6485,7 @@
|
|
6675
6485
|
}
|
6676
6486
|
},
|
6677
6487
|
{
|
6678
|
-
"id":
|
6488
|
+
"id": 885,
|
6679
6489
|
"name": "toggleRowEditing",
|
6680
6490
|
"kind": 2048,
|
6681
6491
|
"kindString": "Method",
|
@@ -6684,7 +6494,7 @@
|
|
6684
6494
|
},
|
6685
6495
|
"signatures": [
|
6686
6496
|
{
|
6687
|
-
"id":
|
6497
|
+
"id": 886,
|
6688
6498
|
"name": "toggleRowEditing",
|
6689
6499
|
"kind": 4096,
|
6690
6500
|
"kindString": "Call signature",
|
@@ -6697,7 +6507,7 @@
|
|
6697
6507
|
]
|
6698
6508
|
},
|
6699
6509
|
{
|
6700
|
-
"id":
|
6510
|
+
"id": 881,
|
6701
6511
|
"name": "toggleRowExpanded",
|
6702
6512
|
"kind": 2048,
|
6703
6513
|
"kindString": "Method",
|
@@ -6706,7 +6516,7 @@
|
|
6706
6516
|
},
|
6707
6517
|
"signatures": [
|
6708
6518
|
{
|
6709
|
-
"id":
|
6519
|
+
"id": 882,
|
6710
6520
|
"name": "toggleRowExpanded",
|
6711
6521
|
"kind": 4096,
|
6712
6522
|
"kindString": "Call signature",
|
@@ -6726,7 +6536,7 @@
|
|
6726
6536
|
"TableTexts": {
|
6727
6537
|
"props": [
|
6728
6538
|
{
|
6729
|
-
"id":
|
6539
|
+
"id": 902,
|
6730
6540
|
"name": "actions",
|
6731
6541
|
"kind": 1024,
|
6732
6542
|
"kindString": "Property",
|
@@ -6737,7 +6547,7 @@
|
|
6737
6547
|
}
|
6738
6548
|
},
|
6739
6549
|
{
|
6740
|
-
"id":
|
6550
|
+
"id": 904,
|
6741
6551
|
"name": "copy",
|
6742
6552
|
"kind": 1024,
|
6743
6553
|
"kindString": "Property",
|
@@ -6748,7 +6558,7 @@
|
|
6748
6558
|
}
|
6749
6559
|
},
|
6750
6560
|
{
|
6751
|
-
"id":
|
6561
|
+
"id": 905,
|
6752
6562
|
"name": "del",
|
6753
6563
|
"kind": 1024,
|
6754
6564
|
"kindString": "Property",
|
@@ -6759,7 +6569,7 @@
|
|
6759
6569
|
}
|
6760
6570
|
},
|
6761
6571
|
{
|
6762
|
-
"id":
|
6572
|
+
"id": 903,
|
6763
6573
|
"name": "edit",
|
6764
6574
|
"kind": 1024,
|
6765
6575
|
"kindString": "Property",
|
@@ -6770,7 +6580,7 @@
|
|
6770
6580
|
}
|
6771
6581
|
},
|
6772
6582
|
{
|
6773
|
-
"id":
|
6583
|
+
"id": 907,
|
6774
6584
|
"name": "loading",
|
6775
6585
|
"kind": 1024,
|
6776
6586
|
"kindString": "Property",
|
@@ -6781,7 +6591,7 @@
|
|
6781
6591
|
}
|
6782
6592
|
},
|
6783
6593
|
{
|
6784
|
-
"id":
|
6594
|
+
"id": 906,
|
6785
6595
|
"name": "newSubRow",
|
6786
6596
|
"kind": 1024,
|
6787
6597
|
"kindString": "Property",
|
@@ -6799,7 +6609,7 @@
|
|
6799
6609
|
],
|
6800
6610
|
"props": [
|
6801
6611
|
{
|
6802
|
-
"id":
|
6612
|
+
"id": 960,
|
6803
6613
|
"name": "children",
|
6804
6614
|
"kind": 1024,
|
6805
6615
|
"kindString": "Property",
|
@@ -6815,7 +6625,7 @@
|
|
6815
6625
|
}
|
6816
6626
|
},
|
6817
6627
|
{
|
6818
|
-
"id":
|
6628
|
+
"id": 959,
|
6819
6629
|
"name": "defaultId",
|
6820
6630
|
"kind": 1024,
|
6821
6631
|
"kindString": "Property",
|
@@ -6831,7 +6641,7 @@
|
|
6831
6641
|
}
|
6832
6642
|
},
|
6833
6643
|
{
|
6834
|
-
"id":
|
6644
|
+
"id": 958,
|
6835
6645
|
"name": "id",
|
6836
6646
|
"kind": 1024,
|
6837
6647
|
"kindString": "Property",
|
@@ -6847,7 +6657,7 @@
|
|
6847
6657
|
}
|
6848
6658
|
},
|
6849
6659
|
{
|
6850
|
-
"id":
|
6660
|
+
"id": 961,
|
6851
6661
|
"name": "orientation",
|
6852
6662
|
"kind": 1024,
|
6853
6663
|
"kindString": "Property",
|
@@ -6870,7 +6680,7 @@
|
|
6870
6680
|
}
|
6871
6681
|
},
|
6872
6682
|
{
|
6873
|
-
"id":
|
6683
|
+
"id": 962,
|
6874
6684
|
"name": "onChange",
|
6875
6685
|
"kind": 2048,
|
6876
6686
|
"kindString": "Method",
|
@@ -6879,7 +6689,7 @@
|
|
6879
6689
|
},
|
6880
6690
|
"signatures": [
|
6881
6691
|
{
|
6882
|
-
"id":
|
6692
|
+
"id": 963,
|
6883
6693
|
"name": "onChange",
|
6884
6694
|
"kind": 4096,
|
6885
6695
|
"kindString": "Call signature",
|
@@ -6889,7 +6699,7 @@
|
|
6889
6699
|
},
|
6890
6700
|
"parameters": [
|
6891
6701
|
{
|
6892
|
-
"id":
|
6702
|
+
"id": 964,
|
6893
6703
|
"name": "id",
|
6894
6704
|
"kind": 32768,
|
6895
6705
|
"kindString": "Parameter",
|
@@ -6912,7 +6722,7 @@
|
|
6912
6722
|
"Taco": {
|
6913
6723
|
"props": [
|
6914
6724
|
{
|
6915
|
-
"id":
|
6725
|
+
"id": 600,
|
6916
6726
|
"name": "localization",
|
6917
6727
|
"kind": 1024,
|
6918
6728
|
"kindString": "Property",
|
@@ -6922,7 +6732,7 @@
|
|
6922
6732
|
},
|
6923
6733
|
"type": {
|
6924
6734
|
"type": "reference",
|
6925
|
-
"id":
|
6735
|
+
"id": 591,
|
6926
6736
|
"name": "Localization"
|
6927
6737
|
}
|
6928
6738
|
}
|
@@ -6934,7 +6744,7 @@
|
|
6934
6744
|
],
|
6935
6745
|
"props": [
|
6936
6746
|
{
|
6937
|
-
"id":
|
6747
|
+
"id": 981,
|
6938
6748
|
"name": "highlighted",
|
6939
6749
|
"kind": 1024,
|
6940
6750
|
"kindString": "Property",
|
@@ -6950,7 +6760,7 @@
|
|
6950
6760
|
}
|
6951
6761
|
},
|
6952
6762
|
{
|
6953
|
-
"id":
|
6763
|
+
"id": 982,
|
6954
6764
|
"name": "state",
|
6955
6765
|
"kind": 1024,
|
6956
6766
|
"kindString": "Property",
|
@@ -6967,7 +6777,7 @@
|
|
6967
6777
|
}
|
6968
6778
|
},
|
6969
6779
|
{
|
6970
|
-
"id":
|
6780
|
+
"id": 983,
|
6971
6781
|
"name": "value",
|
6972
6782
|
"kind": 1024,
|
6973
6783
|
"kindString": "Property",
|
@@ -6990,7 +6800,7 @@
|
|
6990
6800
|
],
|
6991
6801
|
"props": [
|
6992
6802
|
{
|
6993
|
-
"id":
|
6803
|
+
"id": 1023,
|
6994
6804
|
"name": "children",
|
6995
6805
|
"kind": 1024,
|
6996
6806
|
"kindString": "Property",
|
@@ -7015,7 +6825,7 @@
|
|
7015
6825
|
}
|
7016
6826
|
},
|
7017
6827
|
{
|
7018
|
-
"id":
|
6828
|
+
"id": 1025,
|
7019
6829
|
"name": "placement",
|
7020
6830
|
"kind": 1024,
|
7021
6831
|
"kindString": "Property",
|
@@ -7054,7 +6864,7 @@
|
|
7054
6864
|
}
|
7055
6865
|
},
|
7056
6866
|
{
|
7057
|
-
"id":
|
6867
|
+
"id": 1024,
|
7058
6868
|
"name": "title",
|
7059
6869
|
"kind": 1024,
|
7060
6870
|
"kindString": "Property",
|
@@ -7072,7 +6882,7 @@
|
|
7072
6882
|
"TourProps": {
|
7073
6883
|
"props": [
|
7074
6884
|
{
|
7075
|
-
"id":
|
6885
|
+
"id": 1051,
|
7076
6886
|
"name": "autoStart",
|
7077
6887
|
"kind": 1024,
|
7078
6888
|
"kindString": "Property",
|
@@ -7088,7 +6898,7 @@
|
|
7088
6898
|
}
|
7089
6899
|
},
|
7090
6900
|
{
|
7091
|
-
"id":
|
6901
|
+
"id": 1052,
|
7092
6902
|
"name": "children",
|
7093
6903
|
"kind": 1024,
|
7094
6904
|
"kindString": "Property",
|
@@ -7102,7 +6912,7 @@
|
|
7102
6912
|
}
|
7103
6913
|
},
|
7104
6914
|
{
|
7105
|
-
"id":
|
6915
|
+
"id": 1053,
|
7106
6916
|
"name": "continuous",
|
7107
6917
|
"kind": 1024,
|
7108
6918
|
"kindString": "Property",
|
@@ -7118,7 +6928,7 @@
|
|
7118
6928
|
}
|
7119
6929
|
},
|
7120
6930
|
{
|
7121
|
-
"id":
|
6931
|
+
"id": 1054,
|
7122
6932
|
"name": "disableCloseOnEsc",
|
7123
6933
|
"kind": 1024,
|
7124
6934
|
"kindString": "Property",
|
@@ -7134,7 +6944,7 @@
|
|
7134
6944
|
}
|
7135
6945
|
},
|
7136
6946
|
{
|
7137
|
-
"id":
|
6947
|
+
"id": 1055,
|
7138
6948
|
"name": "disableOverlayClose",
|
7139
6949
|
"kind": 1024,
|
7140
6950
|
"kindString": "Property",
|
@@ -7150,7 +6960,7 @@
|
|
7150
6960
|
}
|
7151
6961
|
},
|
7152
6962
|
{
|
7153
|
-
"id":
|
6963
|
+
"id": 1065,
|
7154
6964
|
"name": "disableScrollParentFix",
|
7155
6965
|
"kind": 1024,
|
7156
6966
|
"kindString": "Property",
|
@@ -7163,7 +6973,7 @@
|
|
7163
6973
|
}
|
7164
6974
|
},
|
7165
6975
|
{
|
7166
|
-
"id":
|
6976
|
+
"id": 1056,
|
7167
6977
|
"name": "disableScrolling",
|
7168
6978
|
"kind": 1024,
|
7169
6979
|
"kindString": "Property",
|
@@ -7179,7 +6989,7 @@
|
|
7179
6989
|
}
|
7180
6990
|
},
|
7181
6991
|
{
|
7182
|
-
"id":
|
6992
|
+
"id": 1060,
|
7183
6993
|
"name": "onComplete",
|
7184
6994
|
"kind": 1024,
|
7185
6995
|
"kindString": "Property",
|
@@ -7194,7 +7004,7 @@
|
|
7194
7004
|
}
|
7195
7005
|
},
|
7196
7006
|
{
|
7197
|
-
"id":
|
7007
|
+
"id": 1064,
|
7198
7008
|
"name": "spotlightClicks",
|
7199
7009
|
"kind": 1024,
|
7200
7010
|
"kindString": "Property",
|
@@ -7207,7 +7017,7 @@
|
|
7207
7017
|
}
|
7208
7018
|
},
|
7209
7019
|
{
|
7210
|
-
"id":
|
7020
|
+
"id": 1057,
|
7211
7021
|
"name": "onClose",
|
7212
7022
|
"kind": 2048,
|
7213
7023
|
"kindString": "Method",
|
@@ -7216,21 +7026,21 @@
|
|
7216
7026
|
},
|
7217
7027
|
"signatures": [
|
7218
7028
|
{
|
7219
|
-
"id":
|
7029
|
+
"id": 1058,
|
7220
7030
|
"name": "onClose",
|
7221
7031
|
"kind": 4096,
|
7222
7032
|
"kindString": "Call signature",
|
7223
7033
|
"flags": {},
|
7224
7034
|
"parameters": [
|
7225
7035
|
{
|
7226
|
-
"id":
|
7036
|
+
"id": 1059,
|
7227
7037
|
"name": "step",
|
7228
7038
|
"kind": 32768,
|
7229
7039
|
"kindString": "Parameter",
|
7230
7040
|
"flags": {},
|
7231
7041
|
"type": {
|
7232
7042
|
"type": "reference",
|
7233
|
-
"id":
|
7043
|
+
"id": 1039,
|
7234
7044
|
"name": "TourStepProps"
|
7235
7045
|
}
|
7236
7046
|
}
|
@@ -7243,7 +7053,7 @@
|
|
7243
7053
|
]
|
7244
7054
|
},
|
7245
7055
|
{
|
7246
|
-
"id":
|
7056
|
+
"id": 1061,
|
7247
7057
|
"name": "onReady",
|
7248
7058
|
"kind": 2048,
|
7249
7059
|
"kindString": "Method",
|
@@ -7252,7 +7062,7 @@
|
|
7252
7062
|
},
|
7253
7063
|
"signatures": [
|
7254
7064
|
{
|
7255
|
-
"id":
|
7065
|
+
"id": 1062,
|
7256
7066
|
"name": "onReady",
|
7257
7067
|
"kind": 4096,
|
7258
7068
|
"kindString": "Call signature",
|
@@ -7262,14 +7072,14 @@
|
|
7262
7072
|
},
|
7263
7073
|
"parameters": [
|
7264
7074
|
{
|
7265
|
-
"id":
|
7075
|
+
"id": 1063,
|
7266
7076
|
"name": "step",
|
7267
7077
|
"kind": 32768,
|
7268
7078
|
"kindString": "Parameter",
|
7269
7079
|
"flags": {},
|
7270
7080
|
"type": {
|
7271
7081
|
"type": "reference",
|
7272
|
-
"id":
|
7082
|
+
"id": 1039,
|
7273
7083
|
"name": "TourStepProps"
|
7274
7084
|
}
|
7275
7085
|
}
|
@@ -7286,7 +7096,7 @@
|
|
7286
7096
|
"TourStepProps": {
|
7287
7097
|
"props": [
|
7288
7098
|
{
|
7289
|
-
"id":
|
7099
|
+
"id": 1041,
|
7290
7100
|
"name": "children",
|
7291
7101
|
"kind": 1024,
|
7292
7102
|
"kindString": "Property",
|
@@ -7302,7 +7112,7 @@
|
|
7302
7112
|
}
|
7303
7113
|
},
|
7304
7114
|
{
|
7305
|
-
"id":
|
7115
|
+
"id": 1042,
|
7306
7116
|
"name": "position",
|
7307
7117
|
"kind": 1024,
|
7308
7118
|
"kindString": "Property",
|
@@ -7320,7 +7130,7 @@
|
|
7320
7130
|
}
|
7321
7131
|
},
|
7322
7132
|
{
|
7323
|
-
"id":
|
7133
|
+
"id": 1043,
|
7324
7134
|
"name": "selector",
|
7325
7135
|
"kind": 1024,
|
7326
7136
|
"kindString": "Property",
|
@@ -7334,7 +7144,7 @@
|
|
7334
7144
|
}
|
7335
7145
|
},
|
7336
7146
|
{
|
7337
|
-
"id":
|
7147
|
+
"id": 1044,
|
7338
7148
|
"name": "showBeacon",
|
7339
7149
|
"kind": 1024,
|
7340
7150
|
"kindString": "Property",
|
@@ -7350,7 +7160,7 @@
|
|
7350
7160
|
}
|
7351
7161
|
},
|
7352
7162
|
{
|
7353
|
-
"id":
|
7163
|
+
"id": 1045,
|
7354
7164
|
"name": "title",
|
7355
7165
|
"kind": 1024,
|
7356
7166
|
"kindString": "Property",
|
@@ -7368,7 +7178,7 @@
|
|
7368
7178
|
"TourTexts": {
|
7369
7179
|
"props": [
|
7370
7180
|
{
|
7371
|
-
"id":
|
7181
|
+
"id": 1033,
|
7372
7182
|
"name": "back",
|
7373
7183
|
"kind": 1024,
|
7374
7184
|
"kindString": "Property",
|
@@ -7382,7 +7192,7 @@
|
|
7382
7192
|
}
|
7383
7193
|
},
|
7384
7194
|
{
|
7385
|
-
"id":
|
7195
|
+
"id": 1034,
|
7386
7196
|
"name": "close",
|
7387
7197
|
"kind": 1024,
|
7388
7198
|
"kindString": "Property",
|
@@ -7396,7 +7206,7 @@
|
|
7396
7206
|
}
|
7397
7207
|
},
|
7398
7208
|
{
|
7399
|
-
"id":
|
7209
|
+
"id": 1036,
|
7400
7210
|
"name": "last",
|
7401
7211
|
"kind": 1024,
|
7402
7212
|
"kindString": "Property",
|
@@ -7410,7 +7220,7 @@
|
|
7410
7220
|
}
|
7411
7221
|
},
|
7412
7222
|
{
|
7413
|
-
"id":
|
7223
|
+
"id": 1037,
|
7414
7224
|
"name": "next",
|
7415
7225
|
"kind": 1024,
|
7416
7226
|
"kindString": "Property",
|
@@ -7424,7 +7234,7 @@
|
|
7424
7234
|
}
|
7425
7235
|
},
|
7426
7236
|
{
|
7427
|
-
"id":
|
7237
|
+
"id": 1038,
|
7428
7238
|
"name": "open",
|
7429
7239
|
"kind": 1024,
|
7430
7240
|
"kindString": "Property",
|
@@ -7438,7 +7248,7 @@
|
|
7438
7248
|
}
|
7439
7249
|
},
|
7440
7250
|
{
|
7441
|
-
"id":
|
7251
|
+
"id": 1035,
|
7442
7252
|
"name": "skip",
|
7443
7253
|
"kind": 1024,
|
7444
7254
|
"kindString": "Property",
|
@@ -7459,7 +7269,7 @@
|
|
7459
7269
|
],
|
7460
7270
|
"props": [
|
7461
7271
|
{
|
7462
|
-
"id":
|
7272
|
+
"id": 1082,
|
7463
7273
|
"name": "className",
|
7464
7274
|
"kind": 1024,
|
7465
7275
|
"kindString": "Property",
|
@@ -7479,21 +7289,21 @@
|
|
7479
7289
|
{
|
7480
7290
|
"type": "reflection",
|
7481
7291
|
"declaration": {
|
7482
|
-
"id":
|
7292
|
+
"id": 1083,
|
7483
7293
|
"name": "__type",
|
7484
7294
|
"kind": 65536,
|
7485
7295
|
"kindString": "Type literal",
|
7486
7296
|
"flags": {},
|
7487
7297
|
"signatures": [
|
7488
7298
|
{
|
7489
|
-
"id":
|
7299
|
+
"id": 1084,
|
7490
7300
|
"name": "__type",
|
7491
7301
|
"kind": 4096,
|
7492
7302
|
"kindString": "Call signature",
|
7493
7303
|
"flags": {},
|
7494
7304
|
"parameters": [
|
7495
7305
|
{
|
7496
|
-
"id":
|
7306
|
+
"id": 1085,
|
7497
7307
|
"name": "expanded",
|
7498
7308
|
"kind": 32768,
|
7499
7309
|
"kindString": "Parameter",
|
@@ -7516,7 +7326,7 @@
|
|
7516
7326
|
}
|
7517
7327
|
},
|
7518
7328
|
{
|
7519
|
-
"id":
|
7329
|
+
"id": 1086,
|
7520
7330
|
"name": "expanded",
|
7521
7331
|
"kind": 1024,
|
7522
7332
|
"kindString": "Property",
|
@@ -7532,7 +7342,7 @@
|
|
7532
7342
|
}
|
7533
7343
|
},
|
7534
7344
|
{
|
7535
|
-
"id":
|
7345
|
+
"id": 1087,
|
7536
7346
|
"name": "fixed",
|
7537
7347
|
"kind": 1024,
|
7538
7348
|
"kindString": "Property",
|
@@ -7548,7 +7358,7 @@
|
|
7548
7358
|
}
|
7549
7359
|
},
|
7550
7360
|
{
|
7551
|
-
"id":
|
7361
|
+
"id": 1092,
|
7552
7362
|
"name": "title",
|
7553
7363
|
"kind": 1024,
|
7554
7364
|
"kindString": "Property",
|
@@ -7568,21 +7378,21 @@
|
|
7568
7378
|
{
|
7569
7379
|
"type": "reflection",
|
7570
7380
|
"declaration": {
|
7571
|
-
"id":
|
7381
|
+
"id": 1093,
|
7572
7382
|
"name": "__type",
|
7573
7383
|
"kind": 65536,
|
7574
7384
|
"kindString": "Type literal",
|
7575
7385
|
"flags": {},
|
7576
7386
|
"signatures": [
|
7577
7387
|
{
|
7578
|
-
"id":
|
7388
|
+
"id": 1094,
|
7579
7389
|
"name": "__type",
|
7580
7390
|
"kind": 4096,
|
7581
7391
|
"kindString": "Call signature",
|
7582
7392
|
"flags": {},
|
7583
7393
|
"parameters": [
|
7584
7394
|
{
|
7585
|
-
"id":
|
7395
|
+
"id": 1095,
|
7586
7396
|
"name": "expanded",
|
7587
7397
|
"kind": 32768,
|
7588
7398
|
"kindString": "Parameter",
|
@@ -7607,7 +7417,7 @@
|
|
7607
7417
|
}
|
7608
7418
|
},
|
7609
7419
|
{
|
7610
|
-
"id":
|
7420
|
+
"id": 1088,
|
7611
7421
|
"name": "onClick",
|
7612
7422
|
"kind": 2048,
|
7613
7423
|
"kindString": "Method",
|
@@ -7616,7 +7426,7 @@
|
|
7616
7426
|
},
|
7617
7427
|
"signatures": [
|
7618
7428
|
{
|
7619
|
-
"id":
|
7429
|
+
"id": 1089,
|
7620
7430
|
"name": "onClick",
|
7621
7431
|
"kind": 4096,
|
7622
7432
|
"kindString": "Call signature",
|
@@ -7626,7 +7436,7 @@
|
|
7626
7436
|
},
|
7627
7437
|
"parameters": [
|
7628
7438
|
{
|
7629
|
-
"id":
|
7439
|
+
"id": 1090,
|
7630
7440
|
"name": "event",
|
7631
7441
|
"kind": 32768,
|
7632
7442
|
"kindString": "Parameter",
|
@@ -7653,7 +7463,7 @@
|
|
7653
7463
|
}
|
7654
7464
|
},
|
7655
7465
|
{
|
7656
|
-
"id":
|
7466
|
+
"id": 1091,
|
7657
7467
|
"name": "expanded",
|
7658
7468
|
"kind": 32768,
|
7659
7469
|
"kindString": "Parameter",
|
@@ -7678,7 +7488,7 @@
|
|
7678
7488
|
"useListKeyboardNavigationOptions": {
|
7679
7489
|
"props": [
|
7680
7490
|
{
|
7681
|
-
"id":
|
7491
|
+
"id": 1125,
|
7682
7492
|
"name": "direction",
|
7683
7493
|
"kind": 1024,
|
7684
7494
|
"kindString": "Property",
|
@@ -7692,7 +7502,7 @@
|
|
7692
7502
|
}
|
7693
7503
|
},
|
7694
7504
|
{
|
7695
|
-
"id":
|
7505
|
+
"id": 1126,
|
7696
7506
|
"name": "initialIndex",
|
7697
7507
|
"kind": 1024,
|
7698
7508
|
"kindString": "Property",
|
@@ -7709,7 +7519,7 @@
|
|
7709
7519
|
"usePaginationValues": {
|
7710
7520
|
"props": [
|
7711
7521
|
{
|
7712
|
-
"id":
|
7522
|
+
"id": 537,
|
7713
7523
|
"name": "pageIndex",
|
7714
7524
|
"kind": 1024,
|
7715
7525
|
"kindString": "Property",
|
@@ -7723,7 +7533,7 @@
|
|
7723
7533
|
}
|
7724
7534
|
},
|
7725
7535
|
{
|
7726
|
-
"id":
|
7536
|
+
"id": 538,
|
7727
7537
|
"name": "pageSize",
|
7728
7538
|
"kind": 1024,
|
7729
7539
|
"kindString": "Property",
|
@@ -7737,14 +7547,14 @@
|
|
7737
7547
|
}
|
7738
7548
|
},
|
7739
7549
|
{
|
7740
|
-
"id":
|
7550
|
+
"id": 539,
|
7741
7551
|
"name": "setPageIndex",
|
7742
7552
|
"kind": 2048,
|
7743
7553
|
"kindString": "Method",
|
7744
7554
|
"flags": {},
|
7745
7555
|
"signatures": [
|
7746
7556
|
{
|
7747
|
-
"id":
|
7557
|
+
"id": 540,
|
7748
7558
|
"name": "setPageIndex",
|
7749
7559
|
"kind": 4096,
|
7750
7560
|
"kindString": "Call signature",
|
@@ -7754,7 +7564,7 @@
|
|
7754
7564
|
},
|
7755
7565
|
"parameters": [
|
7756
7566
|
{
|
7757
|
-
"id":
|
7567
|
+
"id": 541,
|
7758
7568
|
"name": "pageIndex",
|
7759
7569
|
"kind": 32768,
|
7760
7570
|
"kindString": "Parameter",
|
@@ -7773,14 +7583,14 @@
|
|
7773
7583
|
]
|
7774
7584
|
},
|
7775
7585
|
{
|
7776
|
-
"id":
|
7586
|
+
"id": 542,
|
7777
7587
|
"name": "setPageSize",
|
7778
7588
|
"kind": 2048,
|
7779
7589
|
"kindString": "Method",
|
7780
7590
|
"flags": {},
|
7781
7591
|
"signatures": [
|
7782
7592
|
{
|
7783
|
-
"id":
|
7593
|
+
"id": 543,
|
7784
7594
|
"name": "setPageSize",
|
7785
7595
|
"kind": 4096,
|
7786
7596
|
"kindString": "Call signature",
|
@@ -7790,7 +7600,7 @@
|
|
7790
7600
|
},
|
7791
7601
|
"parameters": [
|
7792
7602
|
{
|
7793
|
-
"id":
|
7603
|
+
"id": 544,
|
7794
7604
|
"name": "size",
|
7795
7605
|
"kind": 32768,
|
7796
7606
|
"kindString": "Parameter",
|
@@ -7813,7 +7623,7 @@
|
|
7813
7623
|
"useTableRowCreation": {
|
7814
7624
|
"props": [
|
7815
7625
|
{
|
7816
|
-
"id":
|
7626
|
+
"id": 946,
|
7817
7627
|
"name": "data",
|
7818
7628
|
"kind": 1024,
|
7819
7629
|
"kindString": "Property",
|
@@ -7822,11 +7632,11 @@
|
|
7822
7632
|
"type": "array",
|
7823
7633
|
"elementType": {
|
7824
7634
|
"type": "reference",
|
7825
|
-
"id":
|
7635
|
+
"id": 742,
|
7826
7636
|
"typeArguments": [
|
7827
7637
|
{
|
7828
7638
|
"type": "reference",
|
7829
|
-
"id":
|
7639
|
+
"id": 955,
|
7830
7640
|
"name": "TRow"
|
7831
7641
|
}
|
7832
7642
|
],
|
@@ -7835,7 +7645,7 @@
|
|
7835
7645
|
}
|
7836
7646
|
},
|
7837
7647
|
{
|
7838
|
-
"id":
|
7648
|
+
"id": 954,
|
7839
7649
|
"name": "isCreating",
|
7840
7650
|
"kind": 1024,
|
7841
7651
|
"kindString": "Property",
|
@@ -7846,33 +7656,33 @@
|
|
7846
7656
|
}
|
7847
7657
|
},
|
7848
7658
|
{
|
7849
|
-
"id":
|
7659
|
+
"id": 947,
|
7850
7660
|
"name": "create",
|
7851
7661
|
"kind": 2048,
|
7852
7662
|
"kindString": "Method",
|
7853
7663
|
"flags": {},
|
7854
7664
|
"signatures": [
|
7855
7665
|
{
|
7856
|
-
"id":
|
7666
|
+
"id": 948,
|
7857
7667
|
"name": "create",
|
7858
7668
|
"kind": 4096,
|
7859
7669
|
"kindString": "Call signature",
|
7860
7670
|
"flags": {},
|
7861
7671
|
"parameters": [
|
7862
7672
|
{
|
7863
|
-
"id":
|
7673
|
+
"id": 949,
|
7864
7674
|
"name": "rowIndexPath",
|
7865
7675
|
"kind": 32768,
|
7866
7676
|
"kindString": "Parameter",
|
7867
7677
|
"flags": {},
|
7868
7678
|
"type": {
|
7869
7679
|
"type": "reference",
|
7870
|
-
"id":
|
7680
|
+
"id": 747,
|
7871
7681
|
"name": "RowIndexPath"
|
7872
7682
|
}
|
7873
7683
|
},
|
7874
7684
|
{
|
7875
|
-
"id":
|
7685
|
+
"id": 950,
|
7876
7686
|
"name": "values",
|
7877
7687
|
"kind": 32768,
|
7878
7688
|
"kindString": "Parameter",
|
@@ -7887,35 +7697,35 @@
|
|
7887
7697
|
],
|
7888
7698
|
"type": {
|
7889
7699
|
"type": "reference",
|
7890
|
-
"id":
|
7700
|
+
"id": 747,
|
7891
7701
|
"name": "RowIndexPath"
|
7892
7702
|
}
|
7893
7703
|
}
|
7894
7704
|
]
|
7895
7705
|
},
|
7896
7706
|
{
|
7897
|
-
"id":
|
7707
|
+
"id": 951,
|
7898
7708
|
"name": "remove",
|
7899
7709
|
"kind": 2048,
|
7900
7710
|
"kindString": "Method",
|
7901
7711
|
"flags": {},
|
7902
7712
|
"signatures": [
|
7903
7713
|
{
|
7904
|
-
"id":
|
7714
|
+
"id": 952,
|
7905
7715
|
"name": "remove",
|
7906
7716
|
"kind": 4096,
|
7907
7717
|
"kindString": "Call signature",
|
7908
7718
|
"flags": {},
|
7909
7719
|
"parameters": [
|
7910
7720
|
{
|
7911
|
-
"id":
|
7721
|
+
"id": 953,
|
7912
7722
|
"name": "rowIndexPath",
|
7913
7723
|
"kind": 32768,
|
7914
7724
|
"kindString": "Parameter",
|
7915
7725
|
"flags": {},
|
7916
7726
|
"type": {
|
7917
7727
|
"type": "reference",
|
7918
|
-
"id":
|
7728
|
+
"id": 747,
|
7919
7729
|
"name": "RowIndexPath"
|
7920
7730
|
}
|
7921
7731
|
}
|