@workday/canvas-kit-react 11.0.0-alpha.788-next.0 → 11.0.0-alpha.792-next.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/badge/lib/CountBadge.tsx +1 -1
- package/combobox/lib/hooks/useComboboxInput.ts +1 -1
- package/dist/commonjs/badge/lib/CountBadge.js +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInput.d.ts +1 -1
- package/dist/commonjs/combobox/lib/hooks/useComboboxInput.js +1 -1
- package/dist/commonjs/select/lib/Select.d.ts +0 -280
- package/dist/commonjs/select/lib/Select.d.ts.map +1 -1
- package/dist/commonjs/select/lib/Select.js +18 -6
- package/dist/commonjs/select/lib/hooks/useSelectInput.d.ts +2 -1
- package/dist/commonjs/select/lib/hooks/useSelectInput.d.ts.map +1 -1
- package/dist/commonjs/select/lib/hooks/useSelectInput.js +1 -0
- package/dist/es6/badge/lib/CountBadge.js +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInput.d.ts +1 -1
- package/dist/es6/combobox/lib/hooks/useComboboxInput.js +1 -1
- package/dist/es6/select/lib/Select.d.ts +0 -280
- package/dist/es6/select/lib/Select.d.ts.map +1 -1
- package/dist/es6/select/lib/Select.js +19 -7
- package/dist/es6/select/lib/hooks/useSelectInput.d.ts +2 -1
- package/dist/es6/select/lib/hooks/useSelectInput.d.ts.map +1 -1
- package/dist/es6/select/lib/hooks/useSelectInput.js +1 -0
- package/package.json +4 -4
- package/select/lib/Select.tsx +21 -3
- package/select/lib/hooks/useSelectInput.ts +1 -0
|
@@ -46,11 +46,6 @@ export declare const SelectInput: import("@workday/canvas-kit-react/common").Ele
|
|
|
46
46
|
isVirtualized: boolean;
|
|
47
47
|
items: import("../..").Item<any>[];
|
|
48
48
|
mode: "multiple" | "single";
|
|
49
|
-
/**
|
|
50
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
51
|
-
* include icons that you would like to render in the `input` when selected.
|
|
52
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
53
|
-
*/
|
|
54
49
|
value: string | undefined;
|
|
55
50
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
56
51
|
width: number;
|
|
@@ -128,11 +123,6 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
128
123
|
isVirtualized: boolean;
|
|
129
124
|
items: import("../..").Item<any>[];
|
|
130
125
|
mode: "multiple" | "single";
|
|
131
|
-
/**
|
|
132
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
133
|
-
* include icons that you would like to render in the `input` when selected.
|
|
134
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
135
|
-
*/
|
|
136
126
|
value: string | undefined;
|
|
137
127
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
138
128
|
width: number;
|
|
@@ -209,11 +199,6 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
209
199
|
isVirtualized: boolean;
|
|
210
200
|
items: import("../..").Item<any>[];
|
|
211
201
|
mode: "multiple" | "single";
|
|
212
|
-
/**
|
|
213
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
214
|
-
* include icons that you would like to render in the `input` when selected.
|
|
215
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
216
|
-
*/
|
|
217
202
|
value: string | undefined;
|
|
218
203
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
219
204
|
width: number;
|
|
@@ -291,11 +276,6 @@ export declare const SelectItem: import("@workday/canvas-kit-react/common").Elem
|
|
|
291
276
|
isVirtualized: boolean;
|
|
292
277
|
items: import("../..").Item<any>[];
|
|
293
278
|
mode: "multiple" | "single";
|
|
294
|
-
/**
|
|
295
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
296
|
-
* include icons that you would like to render in the `input` when selected.
|
|
297
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
298
|
-
*/
|
|
299
279
|
value: string | undefined;
|
|
300
280
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
301
281
|
width: number;
|
|
@@ -374,11 +354,6 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
374
354
|
isVirtualized: boolean;
|
|
375
355
|
items: import("../..").Item<any>[];
|
|
376
356
|
mode: "multiple" | "single";
|
|
377
|
-
/**
|
|
378
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
379
|
-
* include icons that you would like to render in the `input` when selected.
|
|
380
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
381
|
-
*/
|
|
382
357
|
value: string | undefined;
|
|
383
358
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
384
359
|
width: number;
|
|
@@ -455,11 +430,6 @@ export declare const SelectCard: import("@workday/canvas-kit-react/common").Elem
|
|
|
455
430
|
isVirtualized: boolean;
|
|
456
431
|
items: import("../..").Item<any>[];
|
|
457
432
|
mode: "multiple" | "single";
|
|
458
|
-
/**
|
|
459
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
460
|
-
* include icons that you would like to render in the `input` when selected.
|
|
461
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
462
|
-
*/
|
|
463
433
|
value: string | undefined;
|
|
464
434
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
465
435
|
width: number;
|
|
@@ -581,11 +551,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
581
551
|
isVirtualized: boolean;
|
|
582
552
|
items: import("../..").Item<any>[];
|
|
583
553
|
mode: "multiple" | "single";
|
|
584
|
-
/**
|
|
585
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
586
|
-
* include icons that you would like to render in the `input` when selected.
|
|
587
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
588
|
-
*/
|
|
589
554
|
value: string | undefined;
|
|
590
555
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
591
556
|
width: number;
|
|
@@ -623,11 +588,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
623
588
|
isVirtualized: boolean;
|
|
624
589
|
items: import("../..").Item<any>[];
|
|
625
590
|
mode: "multiple" | "single";
|
|
626
|
-
/**
|
|
627
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
628
|
-
* include icons that you would like to render in the `input` when selected.
|
|
629
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
630
|
-
*/
|
|
631
591
|
value: string | undefined;
|
|
632
592
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
633
593
|
width: number;
|
|
@@ -663,11 +623,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
663
623
|
isVirtualized: boolean;
|
|
664
624
|
items: import("../..").Item<any>[];
|
|
665
625
|
mode: "multiple" | "single";
|
|
666
|
-
/**
|
|
667
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
668
|
-
* include icons that you would like to render in the `input` when selected.
|
|
669
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
670
|
-
*/
|
|
671
626
|
value: string | undefined;
|
|
672
627
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
673
628
|
width: number;
|
|
@@ -703,11 +658,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
703
658
|
isVirtualized: boolean;
|
|
704
659
|
items: import("../..").Item<any>[];
|
|
705
660
|
mode: "multiple" | "single";
|
|
706
|
-
/**
|
|
707
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
708
|
-
* include icons that you would like to render in the `input` when selected.
|
|
709
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
710
|
-
*/
|
|
711
661
|
value: string | undefined;
|
|
712
662
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
713
663
|
width: number;
|
|
@@ -745,11 +695,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
745
695
|
isVirtualized: boolean;
|
|
746
696
|
items: import("../..").Item<any>[];
|
|
747
697
|
mode: "multiple" | "single";
|
|
748
|
-
/**
|
|
749
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
750
|
-
* include icons that you would like to render in the `input` when selected.
|
|
751
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
752
|
-
*/
|
|
753
698
|
value: string | undefined;
|
|
754
699
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
755
700
|
width: number;
|
|
@@ -785,11 +730,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
785
730
|
isVirtualized: boolean;
|
|
786
731
|
items: import("../..").Item<any>[];
|
|
787
732
|
mode: "multiple" | "single";
|
|
788
|
-
/**
|
|
789
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
790
|
-
* include icons that you would like to render in the `input` when selected.
|
|
791
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
792
|
-
*/
|
|
793
733
|
value: string | undefined;
|
|
794
734
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
795
735
|
width: number;
|
|
@@ -825,11 +765,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
825
765
|
isVirtualized: boolean;
|
|
826
766
|
items: import("../..").Item<any>[];
|
|
827
767
|
mode: "multiple" | "single";
|
|
828
|
-
/**
|
|
829
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
830
|
-
* include icons that you would like to render in the `input` when selected.
|
|
831
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
832
|
-
*/
|
|
833
768
|
value: string | undefined;
|
|
834
769
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
835
770
|
width: number;
|
|
@@ -867,11 +802,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
867
802
|
isVirtualized: boolean;
|
|
868
803
|
items: import("../..").Item<any>[];
|
|
869
804
|
mode: "multiple" | "single";
|
|
870
|
-
/**
|
|
871
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
872
|
-
* include icons that you would like to render in the `input` when selected.
|
|
873
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
874
|
-
*/
|
|
875
805
|
value: string | undefined;
|
|
876
806
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
877
807
|
width: number;
|
|
@@ -907,11 +837,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
907
837
|
isVirtualized: boolean;
|
|
908
838
|
items: import("../..").Item<any>[];
|
|
909
839
|
mode: "multiple" | "single";
|
|
910
|
-
/**
|
|
911
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
912
|
-
* include icons that you would like to render in the `input` when selected.
|
|
913
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
914
|
-
*/
|
|
915
840
|
value: string | undefined;
|
|
916
841
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
917
842
|
width: number;
|
|
@@ -947,11 +872,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
947
872
|
isVirtualized: boolean;
|
|
948
873
|
items: import("../..").Item<any>[];
|
|
949
874
|
mode: "multiple" | "single";
|
|
950
|
-
/**
|
|
951
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
952
|
-
* include icons that you would like to render in the `input` when selected.
|
|
953
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
954
|
-
*/
|
|
955
875
|
value: string | undefined;
|
|
956
876
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
957
877
|
width: number;
|
|
@@ -987,11 +907,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
987
907
|
isVirtualized: boolean;
|
|
988
908
|
items: import("../..").Item<any>[];
|
|
989
909
|
mode: "multiple" | "single";
|
|
990
|
-
/**
|
|
991
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
992
|
-
* include icons that you would like to render in the `input` when selected.
|
|
993
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
994
|
-
*/
|
|
995
910
|
value: string | undefined;
|
|
996
911
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
997
912
|
width: number;
|
|
@@ -1027,11 +942,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1027
942
|
isVirtualized: boolean;
|
|
1028
943
|
items: import("../..").Item<any>[];
|
|
1029
944
|
mode: "multiple" | "single";
|
|
1030
|
-
/**
|
|
1031
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1032
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1033
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1034
|
-
*/
|
|
1035
945
|
value: string | undefined;
|
|
1036
946
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1037
947
|
width: number;
|
|
@@ -1067,11 +977,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1067
977
|
isVirtualized: boolean;
|
|
1068
978
|
items: import("../..").Item<any>[];
|
|
1069
979
|
mode: "multiple" | "single";
|
|
1070
|
-
/**
|
|
1071
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1072
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1073
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1074
|
-
*/
|
|
1075
980
|
value: string | undefined;
|
|
1076
981
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1077
982
|
width: number;
|
|
@@ -1107,11 +1012,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1107
1012
|
isVirtualized: boolean;
|
|
1108
1013
|
items: import("../..").Item<any>[];
|
|
1109
1014
|
mode: "multiple" | "single";
|
|
1110
|
-
/**
|
|
1111
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1112
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1113
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1114
|
-
*/
|
|
1115
1015
|
value: string | undefined;
|
|
1116
1016
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1117
1017
|
width: number;
|
|
@@ -1147,11 +1047,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1147
1047
|
isVirtualized: boolean;
|
|
1148
1048
|
items: import("../..").Item<any>[];
|
|
1149
1049
|
mode: "multiple" | "single";
|
|
1150
|
-
/**
|
|
1151
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1152
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1153
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1154
|
-
*/
|
|
1155
1050
|
value: string | undefined;
|
|
1156
1051
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1157
1052
|
width: number;
|
|
@@ -1187,11 +1082,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1187
1082
|
isVirtualized: boolean;
|
|
1188
1083
|
items: import("../..").Item<any>[];
|
|
1189
1084
|
mode: "multiple" | "single";
|
|
1190
|
-
/**
|
|
1191
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1192
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1193
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1194
|
-
*/
|
|
1195
1085
|
value: string | undefined;
|
|
1196
1086
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1197
1087
|
width: number;
|
|
@@ -1227,11 +1117,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1227
1117
|
isVirtualized: boolean;
|
|
1228
1118
|
items: import("../..").Item<any>[];
|
|
1229
1119
|
mode: "multiple" | "single";
|
|
1230
|
-
/**
|
|
1231
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1232
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1233
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1234
|
-
*/
|
|
1235
1120
|
value: string | undefined;
|
|
1236
1121
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1237
1122
|
width: number;
|
|
@@ -1267,11 +1152,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1267
1152
|
isVirtualized: boolean;
|
|
1268
1153
|
items: import("../..").Item<any>[];
|
|
1269
1154
|
mode: "multiple" | "single";
|
|
1270
|
-
/**
|
|
1271
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1272
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1273
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1274
|
-
*/
|
|
1275
1155
|
value: string | undefined;
|
|
1276
1156
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1277
1157
|
width: number;
|
|
@@ -1310,11 +1190,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1310
1190
|
isVirtualized: boolean;
|
|
1311
1191
|
items: import("../..").Item<any>[];
|
|
1312
1192
|
mode: "multiple" | "single";
|
|
1313
|
-
/**
|
|
1314
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1315
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1316
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1317
|
-
*/
|
|
1318
1193
|
value: string | undefined;
|
|
1319
1194
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1320
1195
|
width: number;
|
|
@@ -1352,11 +1227,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1352
1227
|
isVirtualized: boolean;
|
|
1353
1228
|
items: import("../..").Item<any>[];
|
|
1354
1229
|
mode: "multiple" | "single";
|
|
1355
|
-
/**
|
|
1356
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1357
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1358
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1359
|
-
*/
|
|
1360
1230
|
value: string | undefined;
|
|
1361
1231
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1362
1232
|
width: number;
|
|
@@ -1394,11 +1264,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1394
1264
|
isVirtualized: boolean;
|
|
1395
1265
|
items: import("../..").Item<any>[];
|
|
1396
1266
|
mode: "multiple" | "single";
|
|
1397
|
-
/**
|
|
1398
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1399
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1400
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1401
|
-
*/
|
|
1402
1267
|
value: string | undefined;
|
|
1403
1268
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1404
1269
|
width: number;
|
|
@@ -1435,11 +1300,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1435
1300
|
isVirtualized: boolean;
|
|
1436
1301
|
items: import("../..").Item<any>[];
|
|
1437
1302
|
mode: "multiple" | "single";
|
|
1438
|
-
/**
|
|
1439
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1440
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1441
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1442
|
-
*/
|
|
1443
1303
|
value: string | undefined;
|
|
1444
1304
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1445
1305
|
width: number;
|
|
@@ -1477,11 +1337,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1477
1337
|
isVirtualized: boolean;
|
|
1478
1338
|
items: import("../..").Item<any>[];
|
|
1479
1339
|
mode: "multiple" | "single";
|
|
1480
|
-
/**
|
|
1481
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1482
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1483
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1484
|
-
*/
|
|
1485
1340
|
value: string | undefined;
|
|
1486
1341
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1487
1342
|
width: number;
|
|
@@ -1517,11 +1372,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1517
1372
|
isVirtualized: boolean;
|
|
1518
1373
|
items: import("../..").Item<any>[];
|
|
1519
1374
|
mode: "multiple" | "single";
|
|
1520
|
-
/**
|
|
1521
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1522
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1523
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1524
|
-
*/
|
|
1525
1375
|
value: string | undefined;
|
|
1526
1376
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1527
1377
|
width: number;
|
|
@@ -1557,11 +1407,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1557
1407
|
isVirtualized: boolean;
|
|
1558
1408
|
items: import("../..").Item<any>[];
|
|
1559
1409
|
mode: "multiple" | "single";
|
|
1560
|
-
/**
|
|
1561
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1562
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1563
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1564
|
-
*/
|
|
1565
1410
|
value: string | undefined;
|
|
1566
1411
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1567
1412
|
width: number;
|
|
@@ -1599,11 +1444,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1599
1444
|
isVirtualized: boolean;
|
|
1600
1445
|
items: import("../..").Item<any>[];
|
|
1601
1446
|
mode: "multiple" | "single";
|
|
1602
|
-
/**
|
|
1603
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1604
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1605
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1606
|
-
*/
|
|
1607
1447
|
value: string | undefined;
|
|
1608
1448
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1609
1449
|
width: number;
|
|
@@ -1639,11 +1479,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1639
1479
|
isVirtualized: boolean;
|
|
1640
1480
|
items: import("../..").Item<any>[];
|
|
1641
1481
|
mode: "multiple" | "single";
|
|
1642
|
-
/**
|
|
1643
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1644
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1645
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1646
|
-
*/
|
|
1647
1482
|
value: string | undefined;
|
|
1648
1483
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1649
1484
|
width: number;
|
|
@@ -1679,11 +1514,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1679
1514
|
isVirtualized: boolean;
|
|
1680
1515
|
items: import("../..").Item<any>[];
|
|
1681
1516
|
mode: "multiple" | "single";
|
|
1682
|
-
/**
|
|
1683
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1684
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1685
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1686
|
-
*/
|
|
1687
1517
|
value: string | undefined;
|
|
1688
1518
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1689
1519
|
width: number;
|
|
@@ -1721,11 +1551,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1721
1551
|
isVirtualized: boolean;
|
|
1722
1552
|
items: import("../..").Item<any>[];
|
|
1723
1553
|
mode: "multiple" | "single";
|
|
1724
|
-
/**
|
|
1725
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1726
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1727
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1728
|
-
*/
|
|
1729
1554
|
value: string | undefined;
|
|
1730
1555
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1731
1556
|
width: number;
|
|
@@ -1761,11 +1586,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1761
1586
|
isVirtualized: boolean;
|
|
1762
1587
|
items: import("../..").Item<any>[];
|
|
1763
1588
|
mode: "multiple" | "single";
|
|
1764
|
-
/**
|
|
1765
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1766
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1767
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1768
|
-
*/
|
|
1769
1589
|
value: string | undefined;
|
|
1770
1590
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1771
1591
|
width: number;
|
|
@@ -1801,11 +1621,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1801
1621
|
isVirtualized: boolean;
|
|
1802
1622
|
items: import("../..").Item<any>[];
|
|
1803
1623
|
mode: "multiple" | "single";
|
|
1804
|
-
/**
|
|
1805
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1806
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1807
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1808
|
-
*/
|
|
1809
1624
|
value: string | undefined;
|
|
1810
1625
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1811
1626
|
width: number;
|
|
@@ -1841,11 +1656,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1841
1656
|
isVirtualized: boolean;
|
|
1842
1657
|
items: import("../..").Item<any>[];
|
|
1843
1658
|
mode: "multiple" | "single";
|
|
1844
|
-
/**
|
|
1845
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1846
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1847
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1848
|
-
*/
|
|
1849
1659
|
value: string | undefined;
|
|
1850
1660
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1851
1661
|
width: number;
|
|
@@ -1881,11 +1691,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1881
1691
|
isVirtualized: boolean;
|
|
1882
1692
|
items: import("../..").Item<any>[];
|
|
1883
1693
|
mode: "multiple" | "single";
|
|
1884
|
-
/**
|
|
1885
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1886
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1887
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1888
|
-
*/
|
|
1889
1694
|
value: string | undefined;
|
|
1890
1695
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1891
1696
|
width: number;
|
|
@@ -1921,11 +1726,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1921
1726
|
isVirtualized: boolean;
|
|
1922
1727
|
items: import("../..").Item<any>[];
|
|
1923
1728
|
mode: "multiple" | "single";
|
|
1924
|
-
/**
|
|
1925
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1926
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1927
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1928
|
-
*/
|
|
1929
1729
|
value: string | undefined;
|
|
1930
1730
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1931
1731
|
width: number;
|
|
@@ -1961,11 +1761,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
1961
1761
|
isVirtualized: boolean;
|
|
1962
1762
|
items: import("../..").Item<any>[];
|
|
1963
1763
|
mode: "multiple" | "single";
|
|
1964
|
-
/**
|
|
1965
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
1966
|
-
* include icons that you would like to render in the `input` when selected.
|
|
1967
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
1968
|
-
*/
|
|
1969
1764
|
value: string | undefined;
|
|
1970
1765
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
1971
1766
|
width: number;
|
|
@@ -2001,11 +1796,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2001
1796
|
isVirtualized: boolean;
|
|
2002
1797
|
items: import("../..").Item<any>[];
|
|
2003
1798
|
mode: "multiple" | "single";
|
|
2004
|
-
/**
|
|
2005
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2006
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2007
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2008
|
-
*/
|
|
2009
1799
|
value: string | undefined;
|
|
2010
1800
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2011
1801
|
width: number;
|
|
@@ -2041,11 +1831,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2041
1831
|
isVirtualized: boolean;
|
|
2042
1832
|
items: import("../..").Item<any>[];
|
|
2043
1833
|
mode: "multiple" | "single";
|
|
2044
|
-
/**
|
|
2045
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2046
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2047
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2048
|
-
*/
|
|
2049
1834
|
value: string | undefined;
|
|
2050
1835
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2051
1836
|
width: number;
|
|
@@ -2081,11 +1866,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2081
1866
|
isVirtualized: boolean;
|
|
2082
1867
|
items: import("../..").Item<any>[];
|
|
2083
1868
|
mode: "multiple" | "single";
|
|
2084
|
-
/**
|
|
2085
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2086
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2087
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2088
|
-
*/
|
|
2089
1869
|
value: string | undefined;
|
|
2090
1870
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2091
1871
|
width: number;
|
|
@@ -2121,11 +1901,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2121
1901
|
isVirtualized: boolean;
|
|
2122
1902
|
items: import("../..").Item<any>[];
|
|
2123
1903
|
mode: "multiple" | "single";
|
|
2124
|
-
/**
|
|
2125
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2126
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2127
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2128
|
-
*/
|
|
2129
1904
|
value: string | undefined;
|
|
2130
1905
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2131
1906
|
width: number;
|
|
@@ -2164,11 +1939,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2164
1939
|
isVirtualized: boolean;
|
|
2165
1940
|
items: import("../..").Item<any>[];
|
|
2166
1941
|
mode: "multiple" | "single";
|
|
2167
|
-
/**
|
|
2168
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2169
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2170
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2171
|
-
*/
|
|
2172
1942
|
value: string | undefined;
|
|
2173
1943
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2174
1944
|
width: number;
|
|
@@ -2206,11 +1976,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2206
1976
|
isVirtualized: boolean;
|
|
2207
1977
|
items: import("../..").Item<any>[];
|
|
2208
1978
|
mode: "multiple" | "single";
|
|
2209
|
-
/**
|
|
2210
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2211
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2212
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2213
|
-
*/
|
|
2214
1979
|
value: string | undefined;
|
|
2215
1980
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2216
1981
|
width: number;
|
|
@@ -2248,11 +2013,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2248
2013
|
isVirtualized: boolean;
|
|
2249
2014
|
items: import("../..").Item<any>[];
|
|
2250
2015
|
mode: "multiple" | "single";
|
|
2251
|
-
/**
|
|
2252
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2253
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2254
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2255
|
-
*/
|
|
2256
2016
|
value: string | undefined;
|
|
2257
2017
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2258
2018
|
width: number;
|
|
@@ -2289,11 +2049,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2289
2049
|
isVirtualized: boolean;
|
|
2290
2050
|
items: import("../..").Item<any>[];
|
|
2291
2051
|
mode: "multiple" | "single";
|
|
2292
|
-
/**
|
|
2293
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2294
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2295
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2296
|
-
*/
|
|
2297
2052
|
value: string | undefined;
|
|
2298
2053
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2299
2054
|
width: number;
|
|
@@ -2386,11 +2141,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2386
2141
|
isVirtualized: boolean;
|
|
2387
2142
|
items: import("../..").Item<any>[];
|
|
2388
2143
|
mode: "multiple" | "single";
|
|
2389
|
-
/**
|
|
2390
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2391
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2392
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2393
|
-
*/
|
|
2394
2144
|
value: string | undefined;
|
|
2395
2145
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2396
2146
|
width: number;
|
|
@@ -2572,11 +2322,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2572
2322
|
isVirtualized: boolean;
|
|
2573
2323
|
items: import("../..").Item<any>[];
|
|
2574
2324
|
mode: "multiple" | "single";
|
|
2575
|
-
/**
|
|
2576
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2577
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2578
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2579
|
-
*/
|
|
2580
2325
|
value: string | undefined;
|
|
2581
2326
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2582
2327
|
width: number;
|
|
@@ -2653,11 +2398,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2653
2398
|
isVirtualized: boolean;
|
|
2654
2399
|
items: import("../..").Item<any>[];
|
|
2655
2400
|
mode: "multiple" | "single";
|
|
2656
|
-
/**
|
|
2657
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2658
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2659
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2660
|
-
*/
|
|
2661
2401
|
value: string | undefined;
|
|
2662
2402
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2663
2403
|
width: number;
|
|
@@ -2753,11 +2493,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2753
2493
|
isVirtualized: boolean;
|
|
2754
2494
|
items: import("../..").Item<any>[];
|
|
2755
2495
|
mode: "multiple" | "single";
|
|
2756
|
-
/**
|
|
2757
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2758
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2759
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2760
|
-
*/
|
|
2761
2496
|
value: string | undefined;
|
|
2762
2497
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2763
2498
|
width: number;
|
|
@@ -2853,11 +2588,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2853
2588
|
isVirtualized: boolean;
|
|
2854
2589
|
items: import("../..").Item<any>[];
|
|
2855
2590
|
mode: "multiple" | "single";
|
|
2856
|
-
/**
|
|
2857
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2858
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2859
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2860
|
-
*/
|
|
2861
2591
|
value: string | undefined;
|
|
2862
2592
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2863
2593
|
width: number;
|
|
@@ -2934,11 +2664,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
2934
2664
|
isVirtualized: boolean;
|
|
2935
2665
|
items: import("../..").Item<any>[];
|
|
2936
2666
|
mode: "multiple" | "single";
|
|
2937
|
-
/**
|
|
2938
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
2939
|
-
* include icons that you would like to render in the `input` when selected.
|
|
2940
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
2941
|
-
*/
|
|
2942
2667
|
value: string | undefined;
|
|
2943
2668
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
2944
2669
|
width: number;
|
|
@@ -3016,11 +2741,6 @@ export declare const Select: import("@workday/canvas-kit-react/common").Componen
|
|
|
3016
2741
|
isVirtualized: boolean;
|
|
3017
2742
|
items: import("../..").Item<any>[];
|
|
3018
2743
|
mode: "multiple" | "single";
|
|
3019
|
-
/**
|
|
3020
|
-
* The Icon to render at the start of the `input`. Use this prop if your options
|
|
3021
|
-
* include icons that you would like to render in the `input` when selected.
|
|
3022
|
-
* ** Note:An option must be selected in order to render and icon.**
|
|
3023
|
-
*/
|
|
3024
2744
|
value: string | undefined;
|
|
3025
2745
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
3026
2746
|
width: number;
|