@workday/canvas-kit-react 11.2.1 → 11.2.3
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/common/lib/utils/elements.ts +32 -10
- package/dist/commonjs/common/lib/utils/elements.d.ts +11 -1
- package/dist/commonjs/common/lib/utils/elements.d.ts.map +1 -1
- package/dist/commonjs/common/lib/utils/elements.js +30 -11
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/commonjs/popup/lib/hooks/useReturnFocus.js +2 -1
- package/dist/commonjs/select/lib/Select.d.ts +114 -57
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/Select.js +2 -2
- package/dist/es6/common/lib/utils/elements.d.ts +11 -1
- package/dist/es6/common/lib/utils/elements.d.ts.map +1 -1
- package/dist/es6/common/lib/utils/elements.js +28 -9
- package/dist/es6/popup/lib/hooks/useReturnFocus.d.ts.map +1 -1
- package/dist/es6/popup/lib/hooks/useReturnFocus.js +2 -1
- package/dist/es6/select/lib/Select.d.ts +114 -57
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/Select.js +2 -2
- package/package.json +4 -4
- package/popup/lib/hooks/useReturnFocus.tsx +6 -1
- package/select/lib/Select.tsx +0 -1
|
@@ -39,7 +39,7 @@ export declare const SelectInput: import("@workday/canvas-kit-react/common").Ele
|
|
|
39
39
|
measure: () => void;
|
|
40
40
|
};
|
|
41
41
|
UNSTABLE_defaultItemHeight: number;
|
|
42
|
-
|
|
42
|
+
/**
|
|
43
43
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
44
44
|
*
|
|
45
45
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -57,6 +57,7 @@ export declare const SelectInput: import("@workday/canvas-kit-react/common").Ele
|
|
|
57
57
|
* </Select>
|
|
58
58
|
* ```
|
|
59
59
|
*/
|
|
60
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
60
61
|
orientation: "horizontal" | "vertical";
|
|
61
62
|
indexRef: React.MutableRefObject<number>;
|
|
62
63
|
nonInteractiveIds: string[];
|
|
@@ -138,7 +139,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
138
139
|
measure: () => void;
|
|
139
140
|
};
|
|
140
141
|
UNSTABLE_defaultItemHeight: number;
|
|
141
|
-
|
|
142
|
+
/**
|
|
142
143
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
143
144
|
*
|
|
144
145
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -156,6 +157,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
156
157
|
* </Select>
|
|
157
158
|
* ```
|
|
158
159
|
*/
|
|
160
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
159
161
|
orientation: "horizontal" | "vertical";
|
|
160
162
|
indexRef: React.MutableRefObject<number>;
|
|
161
163
|
nonInteractiveIds: string[];
|
|
@@ -236,7 +238,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
236
238
|
measure: () => void;
|
|
237
239
|
};
|
|
238
240
|
UNSTABLE_defaultItemHeight: number;
|
|
239
|
-
|
|
241
|
+
/**
|
|
240
242
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
241
243
|
*
|
|
242
244
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -254,6 +256,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
254
256
|
* </Select>
|
|
255
257
|
* ```
|
|
256
258
|
*/
|
|
259
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
257
260
|
orientation: "horizontal" | "vertical";
|
|
258
261
|
indexRef: React.MutableRefObject<number>;
|
|
259
262
|
nonInteractiveIds: string[];
|
|
@@ -335,7 +338,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
335
338
|
measure: () => void;
|
|
336
339
|
};
|
|
337
340
|
UNSTABLE_defaultItemHeight: number;
|
|
338
|
-
|
|
341
|
+
/**
|
|
339
342
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
340
343
|
*
|
|
341
344
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -353,6 +356,7 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
353
356
|
* </Select>
|
|
354
357
|
* ```
|
|
355
358
|
*/
|
|
359
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
356
360
|
orientation: "horizontal" | "vertical";
|
|
357
361
|
indexRef: React.MutableRefObject<number>;
|
|
358
362
|
nonInteractiveIds: string[];
|
|
@@ -435,7 +439,7 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
435
439
|
measure: () => void;
|
|
436
440
|
};
|
|
437
441
|
UNSTABLE_defaultItemHeight: number;
|
|
438
|
-
|
|
442
|
+
/**
|
|
439
443
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
440
444
|
*
|
|
441
445
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -453,6 +457,7 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
453
457
|
* </Select>
|
|
454
458
|
* ```
|
|
455
459
|
*/
|
|
460
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
456
461
|
orientation: "horizontal" | "vertical";
|
|
457
462
|
indexRef: React.MutableRefObject<number>;
|
|
458
463
|
nonInteractiveIds: string[];
|
|
@@ -533,7 +538,7 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
533
538
|
measure: () => void;
|
|
534
539
|
};
|
|
535
540
|
UNSTABLE_defaultItemHeight: number;
|
|
536
|
-
|
|
541
|
+
/**
|
|
537
542
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
538
543
|
*
|
|
539
544
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -551,6 +556,7 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
551
556
|
* </Select>
|
|
552
557
|
* ```
|
|
553
558
|
*/
|
|
559
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
554
560
|
orientation: "horizontal" | "vertical";
|
|
555
561
|
indexRef: React.MutableRefObject<number>;
|
|
556
562
|
nonInteractiveIds: string[];
|
|
@@ -676,7 +682,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
676
682
|
measure: () => void;
|
|
677
683
|
};
|
|
678
684
|
UNSTABLE_defaultItemHeight: number;
|
|
679
|
-
|
|
685
|
+
/**
|
|
680
686
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
681
687
|
*
|
|
682
688
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -694,6 +700,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
694
700
|
* </Select>
|
|
695
701
|
* ```
|
|
696
702
|
*/
|
|
703
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
697
704
|
orientation: "horizontal" | "vertical";
|
|
698
705
|
indexRef: React.MutableRefObject<number>;
|
|
699
706
|
nonInteractiveIds: string[];
|
|
@@ -735,7 +742,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
735
742
|
measure: () => void;
|
|
736
743
|
};
|
|
737
744
|
UNSTABLE_defaultItemHeight: number;
|
|
738
|
-
|
|
745
|
+
/**
|
|
739
746
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
740
747
|
*
|
|
741
748
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -753,6 +760,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
753
760
|
* </Select>
|
|
754
761
|
* ```
|
|
755
762
|
*/
|
|
763
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
756
764
|
orientation: "horizontal" | "vertical";
|
|
757
765
|
indexRef: React.MutableRefObject<number>;
|
|
758
766
|
nonInteractiveIds: string[];
|
|
@@ -792,7 +800,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
792
800
|
measure: () => void;
|
|
793
801
|
};
|
|
794
802
|
UNSTABLE_defaultItemHeight: number;
|
|
795
|
-
|
|
803
|
+
/**
|
|
796
804
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
797
805
|
*
|
|
798
806
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -810,6 +818,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
810
818
|
* </Select>
|
|
811
819
|
* ```
|
|
812
820
|
*/
|
|
821
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
813
822
|
orientation: "horizontal" | "vertical";
|
|
814
823
|
indexRef: React.MutableRefObject<number>;
|
|
815
824
|
nonInteractiveIds: string[];
|
|
@@ -849,7 +858,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
849
858
|
measure: () => void;
|
|
850
859
|
};
|
|
851
860
|
UNSTABLE_defaultItemHeight: number;
|
|
852
|
-
|
|
861
|
+
/**
|
|
853
862
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
854
863
|
*
|
|
855
864
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -867,6 +876,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
867
876
|
* </Select>
|
|
868
877
|
* ```
|
|
869
878
|
*/
|
|
879
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
870
880
|
orientation: "horizontal" | "vertical";
|
|
871
881
|
indexRef: React.MutableRefObject<number>;
|
|
872
882
|
nonInteractiveIds: string[];
|
|
@@ -908,7 +918,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
908
918
|
measure: () => void;
|
|
909
919
|
};
|
|
910
920
|
UNSTABLE_defaultItemHeight: number;
|
|
911
|
-
|
|
921
|
+
/**
|
|
912
922
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
913
923
|
*
|
|
914
924
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -926,6 +936,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
926
936
|
* </Select>
|
|
927
937
|
* ```
|
|
928
938
|
*/
|
|
939
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
929
940
|
orientation: "horizontal" | "vertical";
|
|
930
941
|
indexRef: React.MutableRefObject<number>;
|
|
931
942
|
nonInteractiveIds: string[];
|
|
@@ -965,7 +976,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
965
976
|
measure: () => void;
|
|
966
977
|
};
|
|
967
978
|
UNSTABLE_defaultItemHeight: number;
|
|
968
|
-
|
|
979
|
+
/**
|
|
969
980
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
970
981
|
*
|
|
971
982
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -983,6 +994,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
983
994
|
* </Select>
|
|
984
995
|
* ```
|
|
985
996
|
*/
|
|
997
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
986
998
|
orientation: "horizontal" | "vertical";
|
|
987
999
|
indexRef: React.MutableRefObject<number>;
|
|
988
1000
|
nonInteractiveIds: string[];
|
|
@@ -1022,7 +1034,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1022
1034
|
measure: () => void;
|
|
1023
1035
|
};
|
|
1024
1036
|
UNSTABLE_defaultItemHeight: number;
|
|
1025
|
-
|
|
1037
|
+
/**
|
|
1026
1038
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1027
1039
|
*
|
|
1028
1040
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1040,6 +1052,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1040
1052
|
* </Select>
|
|
1041
1053
|
* ```
|
|
1042
1054
|
*/
|
|
1055
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1043
1056
|
orientation: "horizontal" | "vertical";
|
|
1044
1057
|
indexRef: React.MutableRefObject<number>;
|
|
1045
1058
|
nonInteractiveIds: string[];
|
|
@@ -1081,7 +1094,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1081
1094
|
measure: () => void;
|
|
1082
1095
|
};
|
|
1083
1096
|
UNSTABLE_defaultItemHeight: number;
|
|
1084
|
-
|
|
1097
|
+
/**
|
|
1085
1098
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1086
1099
|
*
|
|
1087
1100
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1099,6 +1112,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1099
1112
|
* </Select>
|
|
1100
1113
|
* ```
|
|
1101
1114
|
*/
|
|
1115
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1102
1116
|
orientation: "horizontal" | "vertical";
|
|
1103
1117
|
indexRef: React.MutableRefObject<number>;
|
|
1104
1118
|
nonInteractiveIds: string[];
|
|
@@ -1138,7 +1152,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1138
1152
|
measure: () => void;
|
|
1139
1153
|
};
|
|
1140
1154
|
UNSTABLE_defaultItemHeight: number;
|
|
1141
|
-
|
|
1155
|
+
/**
|
|
1142
1156
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1143
1157
|
*
|
|
1144
1158
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1156,6 +1170,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1156
1170
|
* </Select>
|
|
1157
1171
|
* ```
|
|
1158
1172
|
*/
|
|
1173
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1159
1174
|
orientation: "horizontal" | "vertical";
|
|
1160
1175
|
indexRef: React.MutableRefObject<number>;
|
|
1161
1176
|
nonInteractiveIds: string[];
|
|
@@ -1195,7 +1210,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1195
1210
|
measure: () => void;
|
|
1196
1211
|
};
|
|
1197
1212
|
UNSTABLE_defaultItemHeight: number;
|
|
1198
|
-
|
|
1213
|
+
/**
|
|
1199
1214
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1200
1215
|
*
|
|
1201
1216
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1213,6 +1228,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1213
1228
|
* </Select>
|
|
1214
1229
|
* ```
|
|
1215
1230
|
*/
|
|
1231
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1216
1232
|
orientation: "horizontal" | "vertical";
|
|
1217
1233
|
indexRef: React.MutableRefObject<number>;
|
|
1218
1234
|
nonInteractiveIds: string[];
|
|
@@ -1252,7 +1268,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1252
1268
|
measure: () => void;
|
|
1253
1269
|
};
|
|
1254
1270
|
UNSTABLE_defaultItemHeight: number;
|
|
1255
|
-
|
|
1271
|
+
/**
|
|
1256
1272
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1257
1273
|
*
|
|
1258
1274
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1270,6 +1286,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1270
1286
|
* </Select>
|
|
1271
1287
|
* ```
|
|
1272
1288
|
*/
|
|
1289
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1273
1290
|
orientation: "horizontal" | "vertical";
|
|
1274
1291
|
indexRef: React.MutableRefObject<number>;
|
|
1275
1292
|
nonInteractiveIds: string[];
|
|
@@ -1309,7 +1326,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1309
1326
|
measure: () => void;
|
|
1310
1327
|
};
|
|
1311
1328
|
UNSTABLE_defaultItemHeight: number;
|
|
1312
|
-
|
|
1329
|
+
/**
|
|
1313
1330
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1314
1331
|
*
|
|
1315
1332
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1327,6 +1344,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1327
1344
|
* </Select>
|
|
1328
1345
|
* ```
|
|
1329
1346
|
*/
|
|
1347
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1330
1348
|
orientation: "horizontal" | "vertical";
|
|
1331
1349
|
indexRef: React.MutableRefObject<number>;
|
|
1332
1350
|
nonInteractiveIds: string[];
|
|
@@ -1366,7 +1384,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1366
1384
|
measure: () => void;
|
|
1367
1385
|
};
|
|
1368
1386
|
UNSTABLE_defaultItemHeight: number;
|
|
1369
|
-
|
|
1387
|
+
/**
|
|
1370
1388
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1371
1389
|
*
|
|
1372
1390
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1384,6 +1402,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1384
1402
|
* </Select>
|
|
1385
1403
|
* ```
|
|
1386
1404
|
*/
|
|
1405
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1387
1406
|
orientation: "horizontal" | "vertical";
|
|
1388
1407
|
indexRef: React.MutableRefObject<number>;
|
|
1389
1408
|
nonInteractiveIds: string[];
|
|
@@ -1423,7 +1442,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1423
1442
|
measure: () => void;
|
|
1424
1443
|
};
|
|
1425
1444
|
UNSTABLE_defaultItemHeight: number;
|
|
1426
|
-
|
|
1445
|
+
/**
|
|
1427
1446
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1428
1447
|
*
|
|
1429
1448
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1441,6 +1460,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1441
1460
|
* </Select>
|
|
1442
1461
|
* ```
|
|
1443
1462
|
*/
|
|
1463
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1444
1464
|
orientation: "horizontal" | "vertical";
|
|
1445
1465
|
indexRef: React.MutableRefObject<number>;
|
|
1446
1466
|
nonInteractiveIds: string[];
|
|
@@ -1480,7 +1500,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1480
1500
|
measure: () => void;
|
|
1481
1501
|
};
|
|
1482
1502
|
UNSTABLE_defaultItemHeight: number;
|
|
1483
|
-
|
|
1503
|
+
/**
|
|
1484
1504
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1485
1505
|
*
|
|
1486
1506
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1498,6 +1518,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1498
1518
|
* </Select>
|
|
1499
1519
|
* ```
|
|
1500
1520
|
*/
|
|
1521
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1501
1522
|
orientation: "horizontal" | "vertical";
|
|
1502
1523
|
indexRef: React.MutableRefObject<number>;
|
|
1503
1524
|
nonInteractiveIds: string[];
|
|
@@ -1537,7 +1558,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1537
1558
|
measure: () => void;
|
|
1538
1559
|
};
|
|
1539
1560
|
UNSTABLE_defaultItemHeight: number;
|
|
1540
|
-
|
|
1561
|
+
/**
|
|
1541
1562
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1542
1563
|
*
|
|
1543
1564
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1555,6 +1576,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1555
1576
|
* </Select>
|
|
1556
1577
|
* ```
|
|
1557
1578
|
*/
|
|
1579
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1558
1580
|
orientation: "horizontal" | "vertical";
|
|
1559
1581
|
indexRef: React.MutableRefObject<number>;
|
|
1560
1582
|
nonInteractiveIds: string[];
|
|
@@ -1594,7 +1616,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1594
1616
|
measure: () => void;
|
|
1595
1617
|
};
|
|
1596
1618
|
UNSTABLE_defaultItemHeight: number;
|
|
1597
|
-
|
|
1619
|
+
/**
|
|
1598
1620
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1599
1621
|
*
|
|
1600
1622
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1612,6 +1634,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1612
1634
|
* </Select>
|
|
1613
1635
|
* ```
|
|
1614
1636
|
*/
|
|
1637
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1615
1638
|
orientation: "horizontal" | "vertical";
|
|
1616
1639
|
indexRef: React.MutableRefObject<number>;
|
|
1617
1640
|
nonInteractiveIds: string[];
|
|
@@ -1651,7 +1674,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1651
1674
|
measure: () => void;
|
|
1652
1675
|
};
|
|
1653
1676
|
UNSTABLE_defaultItemHeight: number;
|
|
1654
|
-
|
|
1677
|
+
/**
|
|
1655
1678
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1656
1679
|
*
|
|
1657
1680
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1669,6 +1692,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1669
1692
|
* </Select>
|
|
1670
1693
|
* ```
|
|
1671
1694
|
*/
|
|
1695
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1672
1696
|
orientation: "horizontal" | "vertical";
|
|
1673
1697
|
indexRef: React.MutableRefObject<number>;
|
|
1674
1698
|
nonInteractiveIds: string[];
|
|
@@ -1711,7 +1735,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1711
1735
|
measure: () => void;
|
|
1712
1736
|
};
|
|
1713
1737
|
UNSTABLE_defaultItemHeight: number;
|
|
1714
|
-
|
|
1738
|
+
/**
|
|
1715
1739
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1716
1740
|
*
|
|
1717
1741
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1729,6 +1753,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1729
1753
|
* </Select>
|
|
1730
1754
|
* ```
|
|
1731
1755
|
*/
|
|
1756
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1732
1757
|
orientation: "horizontal" | "vertical";
|
|
1733
1758
|
indexRef: React.MutableRefObject<number>;
|
|
1734
1759
|
nonInteractiveIds: string[];
|
|
@@ -1770,7 +1795,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1770
1795
|
measure: () => void;
|
|
1771
1796
|
};
|
|
1772
1797
|
UNSTABLE_defaultItemHeight: number;
|
|
1773
|
-
|
|
1798
|
+
/**
|
|
1774
1799
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1775
1800
|
*
|
|
1776
1801
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1788,6 +1813,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1788
1813
|
* </Select>
|
|
1789
1814
|
* ```
|
|
1790
1815
|
*/
|
|
1816
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1791
1817
|
orientation: "horizontal" | "vertical";
|
|
1792
1818
|
indexRef: React.MutableRefObject<number>;
|
|
1793
1819
|
nonInteractiveIds: string[];
|
|
@@ -1829,7 +1855,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1829
1855
|
measure: () => void;
|
|
1830
1856
|
};
|
|
1831
1857
|
UNSTABLE_defaultItemHeight: number;
|
|
1832
|
-
|
|
1858
|
+
/**
|
|
1833
1859
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1834
1860
|
*
|
|
1835
1861
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1847,6 +1873,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1847
1873
|
* </Select>
|
|
1848
1874
|
* ```
|
|
1849
1875
|
*/
|
|
1876
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1850
1877
|
orientation: "horizontal" | "vertical";
|
|
1851
1878
|
indexRef: React.MutableRefObject<number>;
|
|
1852
1879
|
nonInteractiveIds: string[];
|
|
@@ -1887,7 +1914,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1887
1914
|
measure: () => void;
|
|
1888
1915
|
};
|
|
1889
1916
|
UNSTABLE_defaultItemHeight: number;
|
|
1890
|
-
|
|
1917
|
+
/**
|
|
1891
1918
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1892
1919
|
*
|
|
1893
1920
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1905,6 +1932,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1905
1932
|
* </Select>
|
|
1906
1933
|
* ```
|
|
1907
1934
|
*/
|
|
1935
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1908
1936
|
orientation: "horizontal" | "vertical";
|
|
1909
1937
|
indexRef: React.MutableRefObject<number>;
|
|
1910
1938
|
nonInteractiveIds: string[];
|
|
@@ -1946,7 +1974,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1946
1974
|
measure: () => void;
|
|
1947
1975
|
};
|
|
1948
1976
|
UNSTABLE_defaultItemHeight: number;
|
|
1949
|
-
|
|
1977
|
+
/**
|
|
1950
1978
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
1951
1979
|
*
|
|
1952
1980
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -1964,6 +1992,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1964
1992
|
* </Select>
|
|
1965
1993
|
* ```
|
|
1966
1994
|
*/
|
|
1995
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
1967
1996
|
orientation: "horizontal" | "vertical";
|
|
1968
1997
|
indexRef: React.MutableRefObject<number>;
|
|
1969
1998
|
nonInteractiveIds: string[];
|
|
@@ -2003,7 +2032,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2003
2032
|
measure: () => void;
|
|
2004
2033
|
};
|
|
2005
2034
|
UNSTABLE_defaultItemHeight: number;
|
|
2006
|
-
|
|
2035
|
+
/**
|
|
2007
2036
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2008
2037
|
*
|
|
2009
2038
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2021,6 +2050,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2021
2050
|
* </Select>
|
|
2022
2051
|
* ```
|
|
2023
2052
|
*/
|
|
2053
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2024
2054
|
orientation: "horizontal" | "vertical";
|
|
2025
2055
|
indexRef: React.MutableRefObject<number>;
|
|
2026
2056
|
nonInteractiveIds: string[];
|
|
@@ -2060,7 +2090,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2060
2090
|
measure: () => void;
|
|
2061
2091
|
};
|
|
2062
2092
|
UNSTABLE_defaultItemHeight: number;
|
|
2063
|
-
|
|
2093
|
+
/**
|
|
2064
2094
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2065
2095
|
*
|
|
2066
2096
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2078,6 +2108,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2078
2108
|
* </Select>
|
|
2079
2109
|
* ```
|
|
2080
2110
|
*/
|
|
2111
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2081
2112
|
orientation: "horizontal" | "vertical";
|
|
2082
2113
|
indexRef: React.MutableRefObject<number>;
|
|
2083
2114
|
nonInteractiveIds: string[];
|
|
@@ -2119,7 +2150,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2119
2150
|
measure: () => void;
|
|
2120
2151
|
};
|
|
2121
2152
|
UNSTABLE_defaultItemHeight: number;
|
|
2122
|
-
|
|
2153
|
+
/**
|
|
2123
2154
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2124
2155
|
*
|
|
2125
2156
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2137,6 +2168,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2137
2168
|
* </Select>
|
|
2138
2169
|
* ```
|
|
2139
2170
|
*/
|
|
2171
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2140
2172
|
orientation: "horizontal" | "vertical";
|
|
2141
2173
|
indexRef: React.MutableRefObject<number>;
|
|
2142
2174
|
nonInteractiveIds: string[];
|
|
@@ -2176,7 +2208,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2176
2208
|
measure: () => void;
|
|
2177
2209
|
};
|
|
2178
2210
|
UNSTABLE_defaultItemHeight: number;
|
|
2179
|
-
|
|
2211
|
+
/**
|
|
2180
2212
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2181
2213
|
*
|
|
2182
2214
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2194,6 +2226,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2194
2226
|
* </Select>
|
|
2195
2227
|
* ```
|
|
2196
2228
|
*/
|
|
2229
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2197
2230
|
orientation: "horizontal" | "vertical";
|
|
2198
2231
|
indexRef: React.MutableRefObject<number>;
|
|
2199
2232
|
nonInteractiveIds: string[];
|
|
@@ -2233,7 +2266,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2233
2266
|
measure: () => void;
|
|
2234
2267
|
};
|
|
2235
2268
|
UNSTABLE_defaultItemHeight: number;
|
|
2236
|
-
|
|
2269
|
+
/**
|
|
2237
2270
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2238
2271
|
*
|
|
2239
2272
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2251,6 +2284,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2251
2284
|
* </Select>
|
|
2252
2285
|
* ```
|
|
2253
2286
|
*/
|
|
2287
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2254
2288
|
orientation: "horizontal" | "vertical";
|
|
2255
2289
|
indexRef: React.MutableRefObject<number>;
|
|
2256
2290
|
nonInteractiveIds: string[];
|
|
@@ -2292,7 +2326,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2292
2326
|
measure: () => void;
|
|
2293
2327
|
};
|
|
2294
2328
|
UNSTABLE_defaultItemHeight: number;
|
|
2295
|
-
|
|
2329
|
+
/**
|
|
2296
2330
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2297
2331
|
*
|
|
2298
2332
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2310,6 +2344,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2310
2344
|
* </Select>
|
|
2311
2345
|
* ```
|
|
2312
2346
|
*/
|
|
2347
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2313
2348
|
orientation: "horizontal" | "vertical";
|
|
2314
2349
|
indexRef: React.MutableRefObject<number>;
|
|
2315
2350
|
nonInteractiveIds: string[];
|
|
@@ -2349,7 +2384,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2349
2384
|
measure: () => void;
|
|
2350
2385
|
};
|
|
2351
2386
|
UNSTABLE_defaultItemHeight: number;
|
|
2352
|
-
|
|
2387
|
+
/**
|
|
2353
2388
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2354
2389
|
*
|
|
2355
2390
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2367,6 +2402,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2367
2402
|
* </Select>
|
|
2368
2403
|
* ```
|
|
2369
2404
|
*/
|
|
2405
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2370
2406
|
orientation: "horizontal" | "vertical";
|
|
2371
2407
|
indexRef: React.MutableRefObject<number>;
|
|
2372
2408
|
nonInteractiveIds: string[];
|
|
@@ -2406,7 +2442,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2406
2442
|
measure: () => void;
|
|
2407
2443
|
};
|
|
2408
2444
|
UNSTABLE_defaultItemHeight: number;
|
|
2409
|
-
|
|
2445
|
+
/**
|
|
2410
2446
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2411
2447
|
*
|
|
2412
2448
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2424,6 +2460,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2424
2460
|
* </Select>
|
|
2425
2461
|
* ```
|
|
2426
2462
|
*/
|
|
2463
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2427
2464
|
orientation: "horizontal" | "vertical";
|
|
2428
2465
|
indexRef: React.MutableRefObject<number>;
|
|
2429
2466
|
nonInteractiveIds: string[];
|
|
@@ -2463,7 +2500,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2463
2500
|
measure: () => void;
|
|
2464
2501
|
};
|
|
2465
2502
|
UNSTABLE_defaultItemHeight: number;
|
|
2466
|
-
|
|
2503
|
+
/**
|
|
2467
2504
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2468
2505
|
*
|
|
2469
2506
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2481,6 +2518,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2481
2518
|
* </Select>
|
|
2482
2519
|
* ```
|
|
2483
2520
|
*/
|
|
2521
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2484
2522
|
orientation: "horizontal" | "vertical";
|
|
2485
2523
|
indexRef: React.MutableRefObject<number>;
|
|
2486
2524
|
nonInteractiveIds: string[];
|
|
@@ -2520,7 +2558,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2520
2558
|
measure: () => void;
|
|
2521
2559
|
};
|
|
2522
2560
|
UNSTABLE_defaultItemHeight: number;
|
|
2523
|
-
|
|
2561
|
+
/**
|
|
2524
2562
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2525
2563
|
*
|
|
2526
2564
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2538,6 +2576,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2538
2576
|
* </Select>
|
|
2539
2577
|
* ```
|
|
2540
2578
|
*/
|
|
2579
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2541
2580
|
orientation: "horizontal" | "vertical";
|
|
2542
2581
|
indexRef: React.MutableRefObject<number>;
|
|
2543
2582
|
nonInteractiveIds: string[];
|
|
@@ -2577,7 +2616,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2577
2616
|
measure: () => void;
|
|
2578
2617
|
};
|
|
2579
2618
|
UNSTABLE_defaultItemHeight: number;
|
|
2580
|
-
|
|
2619
|
+
/**
|
|
2581
2620
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2582
2621
|
*
|
|
2583
2622
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2595,6 +2634,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2595
2634
|
* </Select>
|
|
2596
2635
|
* ```
|
|
2597
2636
|
*/
|
|
2637
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2598
2638
|
orientation: "horizontal" | "vertical";
|
|
2599
2639
|
indexRef: React.MutableRefObject<number>;
|
|
2600
2640
|
nonInteractiveIds: string[];
|
|
@@ -2634,7 +2674,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2634
2674
|
measure: () => void;
|
|
2635
2675
|
};
|
|
2636
2676
|
UNSTABLE_defaultItemHeight: number;
|
|
2637
|
-
|
|
2677
|
+
/**
|
|
2638
2678
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2639
2679
|
*
|
|
2640
2680
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2652,6 +2692,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2652
2692
|
* </Select>
|
|
2653
2693
|
* ```
|
|
2654
2694
|
*/
|
|
2695
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2655
2696
|
orientation: "horizontal" | "vertical";
|
|
2656
2697
|
indexRef: React.MutableRefObject<number>;
|
|
2657
2698
|
nonInteractiveIds: string[];
|
|
@@ -2691,7 +2732,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2691
2732
|
measure: () => void;
|
|
2692
2733
|
};
|
|
2693
2734
|
UNSTABLE_defaultItemHeight: number;
|
|
2694
|
-
|
|
2735
|
+
/**
|
|
2695
2736
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2696
2737
|
*
|
|
2697
2738
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2709,6 +2750,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2709
2750
|
* </Select>
|
|
2710
2751
|
* ```
|
|
2711
2752
|
*/
|
|
2753
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2712
2754
|
orientation: "horizontal" | "vertical";
|
|
2713
2755
|
indexRef: React.MutableRefObject<number>;
|
|
2714
2756
|
nonInteractiveIds: string[];
|
|
@@ -2748,7 +2790,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2748
2790
|
measure: () => void;
|
|
2749
2791
|
};
|
|
2750
2792
|
UNSTABLE_defaultItemHeight: number;
|
|
2751
|
-
|
|
2793
|
+
/**
|
|
2752
2794
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2753
2795
|
*
|
|
2754
2796
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2766,6 +2808,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2766
2808
|
* </Select>
|
|
2767
2809
|
* ```
|
|
2768
2810
|
*/
|
|
2811
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2769
2812
|
orientation: "horizontal" | "vertical";
|
|
2770
2813
|
indexRef: React.MutableRefObject<number>;
|
|
2771
2814
|
nonInteractiveIds: string[];
|
|
@@ -2805,7 +2848,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2805
2848
|
measure: () => void;
|
|
2806
2849
|
};
|
|
2807
2850
|
UNSTABLE_defaultItemHeight: number;
|
|
2808
|
-
|
|
2851
|
+
/**
|
|
2809
2852
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2810
2853
|
*
|
|
2811
2854
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2823,6 +2866,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2823
2866
|
* </Select>
|
|
2824
2867
|
* ```
|
|
2825
2868
|
*/
|
|
2869
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2826
2870
|
orientation: "horizontal" | "vertical";
|
|
2827
2871
|
indexRef: React.MutableRefObject<number>;
|
|
2828
2872
|
nonInteractiveIds: string[];
|
|
@@ -2862,7 +2906,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2862
2906
|
measure: () => void;
|
|
2863
2907
|
};
|
|
2864
2908
|
UNSTABLE_defaultItemHeight: number;
|
|
2865
|
-
|
|
2909
|
+
/**
|
|
2866
2910
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2867
2911
|
*
|
|
2868
2912
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2880,6 +2924,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2880
2924
|
* </Select>
|
|
2881
2925
|
* ```
|
|
2882
2926
|
*/
|
|
2927
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2883
2928
|
orientation: "horizontal" | "vertical";
|
|
2884
2929
|
indexRef: React.MutableRefObject<number>;
|
|
2885
2930
|
nonInteractiveIds: string[];
|
|
@@ -2922,7 +2967,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2922
2967
|
measure: () => void;
|
|
2923
2968
|
};
|
|
2924
2969
|
UNSTABLE_defaultItemHeight: number;
|
|
2925
|
-
|
|
2970
|
+
/**
|
|
2926
2971
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2927
2972
|
*
|
|
2928
2973
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2940,6 +2985,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2940
2985
|
* </Select>
|
|
2941
2986
|
* ```
|
|
2942
2987
|
*/
|
|
2988
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
2943
2989
|
orientation: "horizontal" | "vertical";
|
|
2944
2990
|
indexRef: React.MutableRefObject<number>;
|
|
2945
2991
|
nonInteractiveIds: string[];
|
|
@@ -2981,7 +3027,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2981
3027
|
measure: () => void;
|
|
2982
3028
|
};
|
|
2983
3029
|
UNSTABLE_defaultItemHeight: number;
|
|
2984
|
-
|
|
3030
|
+
/**
|
|
2985
3031
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
2986
3032
|
*
|
|
2987
3033
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -2999,6 +3045,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2999
3045
|
* </Select>
|
|
3000
3046
|
* ```
|
|
3001
3047
|
*/
|
|
3048
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3002
3049
|
orientation: "horizontal" | "vertical";
|
|
3003
3050
|
indexRef: React.MutableRefObject<number>;
|
|
3004
3051
|
nonInteractiveIds: string[];
|
|
@@ -3040,7 +3087,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3040
3087
|
measure: () => void;
|
|
3041
3088
|
};
|
|
3042
3089
|
UNSTABLE_defaultItemHeight: number;
|
|
3043
|
-
|
|
3090
|
+
/**
|
|
3044
3091
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3045
3092
|
*
|
|
3046
3093
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3058,6 +3105,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3058
3105
|
* </Select>
|
|
3059
3106
|
* ```
|
|
3060
3107
|
*/
|
|
3108
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3061
3109
|
orientation: "horizontal" | "vertical";
|
|
3062
3110
|
indexRef: React.MutableRefObject<number>;
|
|
3063
3111
|
nonInteractiveIds: string[];
|
|
@@ -3098,7 +3146,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3098
3146
|
measure: () => void;
|
|
3099
3147
|
};
|
|
3100
3148
|
UNSTABLE_defaultItemHeight: number;
|
|
3101
|
-
|
|
3149
|
+
/**
|
|
3102
3150
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3103
3151
|
*
|
|
3104
3152
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3116,6 +3164,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3116
3164
|
* </Select>
|
|
3117
3165
|
* ```
|
|
3118
3166
|
*/
|
|
3167
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3119
3168
|
orientation: "horizontal" | "vertical";
|
|
3120
3169
|
indexRef: React.MutableRefObject<number>;
|
|
3121
3170
|
nonInteractiveIds: string[];
|
|
@@ -3212,7 +3261,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3212
3261
|
measure: () => void;
|
|
3213
3262
|
};
|
|
3214
3263
|
UNSTABLE_defaultItemHeight: number;
|
|
3215
|
-
|
|
3264
|
+
/**
|
|
3216
3265
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3217
3266
|
*
|
|
3218
3267
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3230,6 +3279,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3230
3279
|
* </Select>
|
|
3231
3280
|
* ```
|
|
3232
3281
|
*/
|
|
3282
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3233
3283
|
orientation: "horizontal" | "vertical";
|
|
3234
3284
|
indexRef: React.MutableRefObject<number>;
|
|
3235
3285
|
nonInteractiveIds: string[];
|
|
@@ -3325,7 +3375,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3325
3375
|
measure: () => void;
|
|
3326
3376
|
};
|
|
3327
3377
|
UNSTABLE_defaultItemHeight: number;
|
|
3328
|
-
|
|
3378
|
+
/**
|
|
3329
3379
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3330
3380
|
*
|
|
3331
3381
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3343,6 +3393,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3343
3393
|
* </Select>
|
|
3344
3394
|
* ```
|
|
3345
3395
|
*/
|
|
3396
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3346
3397
|
orientation: "horizontal" | "vertical";
|
|
3347
3398
|
indexRef: React.MutableRefObject<number>;
|
|
3348
3399
|
nonInteractiveIds: string[];
|
|
@@ -3432,7 +3483,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3432
3483
|
measure: () => void;
|
|
3433
3484
|
};
|
|
3434
3485
|
UNSTABLE_defaultItemHeight: number;
|
|
3435
|
-
|
|
3486
|
+
/**
|
|
3436
3487
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3437
3488
|
*
|
|
3438
3489
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3450,6 +3501,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3450
3501
|
* </Select>
|
|
3451
3502
|
* ```
|
|
3452
3503
|
*/
|
|
3504
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3453
3505
|
orientation: "horizontal" | "vertical";
|
|
3454
3506
|
indexRef: React.MutableRefObject<number>;
|
|
3455
3507
|
nonInteractiveIds: string[];
|
|
@@ -3530,7 +3582,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3530
3582
|
measure: () => void;
|
|
3531
3583
|
};
|
|
3532
3584
|
UNSTABLE_defaultItemHeight: number;
|
|
3533
|
-
|
|
3585
|
+
/**
|
|
3534
3586
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3535
3587
|
*
|
|
3536
3588
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3548,6 +3600,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3548
3600
|
* </Select>
|
|
3549
3601
|
* ```
|
|
3550
3602
|
*/
|
|
3603
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3551
3604
|
orientation: "horizontal" | "vertical";
|
|
3552
3605
|
indexRef: React.MutableRefObject<number>;
|
|
3553
3606
|
nonInteractiveIds: string[];
|
|
@@ -3647,7 +3700,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3647
3700
|
measure: () => void;
|
|
3648
3701
|
};
|
|
3649
3702
|
UNSTABLE_defaultItemHeight: number;
|
|
3650
|
-
|
|
3703
|
+
/**
|
|
3651
3704
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3652
3705
|
*
|
|
3653
3706
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3665,6 +3718,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3665
3718
|
* </Select>
|
|
3666
3719
|
* ```
|
|
3667
3720
|
*/
|
|
3721
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3668
3722
|
orientation: "horizontal" | "vertical";
|
|
3669
3723
|
indexRef: React.MutableRefObject<number>;
|
|
3670
3724
|
nonInteractiveIds: string[];
|
|
@@ -3764,7 +3818,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3764
3818
|
measure: () => void;
|
|
3765
3819
|
};
|
|
3766
3820
|
UNSTABLE_defaultItemHeight: number;
|
|
3767
|
-
|
|
3821
|
+
/**
|
|
3768
3822
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3769
3823
|
*
|
|
3770
3824
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3782,6 +3836,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3782
3836
|
* </Select>
|
|
3783
3837
|
* ```
|
|
3784
3838
|
*/
|
|
3839
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3785
3840
|
orientation: "horizontal" | "vertical";
|
|
3786
3841
|
indexRef: React.MutableRefObject<number>;
|
|
3787
3842
|
nonInteractiveIds: string[];
|
|
@@ -3862,7 +3917,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3862
3917
|
measure: () => void;
|
|
3863
3918
|
};
|
|
3864
3919
|
UNSTABLE_defaultItemHeight: number;
|
|
3865
|
-
|
|
3920
|
+
/**
|
|
3866
3921
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3867
3922
|
*
|
|
3868
3923
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3880,6 +3935,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3880
3935
|
* </Select>
|
|
3881
3936
|
* ```
|
|
3882
3937
|
*/
|
|
3938
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3883
3939
|
orientation: "horizontal" | "vertical";
|
|
3884
3940
|
indexRef: React.MutableRefObject<number>;
|
|
3885
3941
|
nonInteractiveIds: string[];
|
|
@@ -3961,7 +4017,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3961
4017
|
measure: () => void;
|
|
3962
4018
|
};
|
|
3963
4019
|
UNSTABLE_defaultItemHeight: number;
|
|
3964
|
-
|
|
4020
|
+
/**
|
|
3965
4021
|
* `Select.Card` renders a {@link ComboboxCard Combobox.Card}. You have access to all `Card` props.
|
|
3966
4022
|
*
|
|
3967
4023
|
* **Note: The card will be the width of its corresponding `Select.Input`**.
|
|
@@ -3979,6 +4035,7 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3979
4035
|
* </Select>
|
|
3980
4036
|
* ```
|
|
3981
4037
|
*/
|
|
4038
|
+
containerRef: React.RefObject<HTMLDivElement>;
|
|
3982
4039
|
orientation: "horizontal" | "vertical";
|
|
3983
4040
|
indexRef: React.MutableRefObject<number>;
|
|
3984
4041
|
nonInteractiveIds: string[];
|