bge-ui 1.8.3 → 1.8.5
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/datePicker/components/ActionRow.vue.d.ts +3 -3
- package/dist/datePicker/components/DatePicker/DatePicker.vue.d.ts +3 -3
- package/dist/datePicker/components/DatePicker/DpCalendar.vue.d.ts +3 -3
- package/dist/datePicker/components/DatePicker/DpHeader.vue.d.ts +3 -3
- package/dist/datePicker/components/DatepickerInput.vue.d.ts +3 -3
- package/dist/datePicker/components/DatepickerMenu.vue.d.ts +3 -3
- package/dist/datePicker/components/MonthPicker/MonthPicker.vue.d.ts +3 -3
- package/dist/datePicker/components/QuarterPicker/QuarterPicker.vue.d.ts +3 -3
- package/dist/datePicker/components/TimePicker/TimeInput.vue.d.ts +3 -3
- package/dist/datePicker/components/TimePicker/TimePicker.vue.d.ts +3 -3
- package/dist/datePicker/components/TimePicker/TimePickerSolo.vue.d.ts +3 -3
- package/dist/datePicker/components/YearPicker/YearPicker.vue.d.ts +3 -3
- package/dist/datePicker/components/shared/YearModePicker.vue.d.ts +3 -3
- package/dist/datePicker/datePicker.vue.d.ts +9 -5
- package/dist/datePicker/index.vue.d.ts +3 -3
- package/dist/datePicker/props.d.ts +2 -2
- package/dist/index.js +409 -268
- package/dist/style.css +36 -14
- package/package.json +1 -1
- package/src/datePicker/index.vue +142 -91
- package/src/datePicker/props.ts +1 -1
- package/src/tabs/index.vue +135 -12
|
@@ -297,7 +297,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
297
297
|
default: null;
|
|
298
298
|
};
|
|
299
299
|
placeholder: {
|
|
300
|
-
type: PropType<string>;
|
|
300
|
+
type: PropType<string | string[]>;
|
|
301
301
|
default: string;
|
|
302
302
|
};
|
|
303
303
|
hideInputIcon: {
|
|
@@ -755,7 +755,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
755
755
|
default: null;
|
|
756
756
|
};
|
|
757
757
|
placeholder: {
|
|
758
|
-
type: PropType<string>;
|
|
758
|
+
type: PropType<string | string[]>;
|
|
759
759
|
default: string;
|
|
760
760
|
};
|
|
761
761
|
hideInputIcon: {
|
|
@@ -930,7 +930,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
930
930
|
timePicker: boolean;
|
|
931
931
|
locale: string;
|
|
932
932
|
autocomplete: string;
|
|
933
|
-
placeholder: string;
|
|
933
|
+
placeholder: string | string[];
|
|
934
934
|
actionRow: ActionRowData;
|
|
935
935
|
monthPicker: boolean;
|
|
936
936
|
yearPicker: boolean;
|
|
@@ -303,7 +303,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
303
303
|
default: null;
|
|
304
304
|
};
|
|
305
305
|
placeholder: {
|
|
306
|
-
type: import("vue").PropType<string>;
|
|
306
|
+
type: import("vue").PropType<string | string[]>;
|
|
307
307
|
default: string;
|
|
308
308
|
};
|
|
309
309
|
hideInputIcon: {
|
|
@@ -811,7 +811,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
811
811
|
default: null;
|
|
812
812
|
};
|
|
813
813
|
placeholder: {
|
|
814
|
-
type: import("vue").PropType<string>;
|
|
814
|
+
type: import("vue").PropType<string | string[]>;
|
|
815
815
|
default: string;
|
|
816
816
|
};
|
|
817
817
|
hideInputIcon: {
|
|
@@ -996,7 +996,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
996
996
|
timePicker: boolean;
|
|
997
997
|
locale: string;
|
|
998
998
|
autocomplete: string;
|
|
999
|
-
placeholder: string;
|
|
999
|
+
placeholder: string | string[];
|
|
1000
1000
|
actionRow: ActionRowData;
|
|
1001
1001
|
monthPicker: boolean;
|
|
1002
1002
|
yearPicker: boolean;
|
|
@@ -298,7 +298,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
298
298
|
default: null;
|
|
299
299
|
};
|
|
300
300
|
placeholder: {
|
|
301
|
-
type: PropType<string>;
|
|
301
|
+
type: PropType<string | string[]>;
|
|
302
302
|
default: string;
|
|
303
303
|
};
|
|
304
304
|
hideInputIcon: {
|
|
@@ -770,7 +770,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
770
770
|
default: null;
|
|
771
771
|
};
|
|
772
772
|
placeholder: {
|
|
773
|
-
type: PropType<string>;
|
|
773
|
+
type: PropType<string | string[]>;
|
|
774
774
|
default: string;
|
|
775
775
|
};
|
|
776
776
|
hideInputIcon: {
|
|
@@ -959,7 +959,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
959
959
|
timePicker: boolean;
|
|
960
960
|
locale: string;
|
|
961
961
|
autocomplete: string;
|
|
962
|
-
placeholder: string;
|
|
962
|
+
placeholder: string | string[];
|
|
963
963
|
actionRow: ActionRowData;
|
|
964
964
|
monthPicker: boolean;
|
|
965
965
|
yearPicker: boolean;
|
|
@@ -298,7 +298,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
298
298
|
default: null;
|
|
299
299
|
};
|
|
300
300
|
placeholder: {
|
|
301
|
-
type: PropType<string>;
|
|
301
|
+
type: PropType<string | string[]>;
|
|
302
302
|
default: string;
|
|
303
303
|
};
|
|
304
304
|
hideInputIcon: {
|
|
@@ -773,7 +773,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
773
773
|
default: null;
|
|
774
774
|
};
|
|
775
775
|
placeholder: {
|
|
776
|
-
type: PropType<string>;
|
|
776
|
+
type: PropType<string | string[]>;
|
|
777
777
|
default: string;
|
|
778
778
|
};
|
|
779
779
|
hideInputIcon: {
|
|
@@ -963,7 +963,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
963
963
|
timePicker: boolean;
|
|
964
964
|
locale: string;
|
|
965
965
|
autocomplete: string;
|
|
966
|
-
placeholder: string;
|
|
966
|
+
placeholder: string | string[];
|
|
967
967
|
actionRow: ActionRowData;
|
|
968
968
|
monthPicker: boolean;
|
|
969
969
|
yearPicker: boolean;
|
|
@@ -265,7 +265,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
265
265
|
default: null;
|
|
266
266
|
};
|
|
267
267
|
placeholder: {
|
|
268
|
-
type: PropType<string>;
|
|
268
|
+
type: PropType<string | string[]>;
|
|
269
269
|
default: string;
|
|
270
270
|
};
|
|
271
271
|
hideInputIcon: {
|
|
@@ -703,7 +703,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
703
703
|
default: null;
|
|
704
704
|
};
|
|
705
705
|
placeholder: {
|
|
706
|
-
type: PropType<string>;
|
|
706
|
+
type: PropType<string | string[]>;
|
|
707
707
|
default: string;
|
|
708
708
|
};
|
|
709
709
|
hideInputIcon: {
|
|
@@ -887,7 +887,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
887
887
|
timePicker: boolean;
|
|
888
888
|
locale: string;
|
|
889
889
|
autocomplete: string;
|
|
890
|
-
placeholder: string;
|
|
890
|
+
placeholder: string | string[];
|
|
891
891
|
actionRow: ActionRowData;
|
|
892
892
|
monthPicker: boolean;
|
|
893
893
|
yearPicker: boolean;
|
|
@@ -294,7 +294,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
294
294
|
default: null;
|
|
295
295
|
};
|
|
296
296
|
placeholder: {
|
|
297
|
-
type: PropType<string>;
|
|
297
|
+
type: PropType<string | string[]>;
|
|
298
298
|
default: string;
|
|
299
299
|
};
|
|
300
300
|
hideInputIcon: {
|
|
@@ -761,7 +761,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
761
761
|
default: null;
|
|
762
762
|
};
|
|
763
763
|
placeholder: {
|
|
764
|
-
type: PropType<string>;
|
|
764
|
+
type: PropType<string | string[]>;
|
|
765
765
|
default: string;
|
|
766
766
|
};
|
|
767
767
|
hideInputIcon: {
|
|
@@ -945,7 +945,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
945
945
|
timePicker: boolean;
|
|
946
946
|
locale: string;
|
|
947
947
|
autocomplete: string;
|
|
948
|
-
placeholder: string;
|
|
948
|
+
placeholder: string | string[];
|
|
949
949
|
actionRow: ActionRowData;
|
|
950
950
|
monthPicker: boolean;
|
|
951
951
|
yearPicker: boolean;
|
|
@@ -296,7 +296,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
296
296
|
default: null;
|
|
297
297
|
};
|
|
298
298
|
placeholder: {
|
|
299
|
-
type: import("vue").PropType<string>;
|
|
299
|
+
type: import("vue").PropType<string | string[]>;
|
|
300
300
|
default: string;
|
|
301
301
|
};
|
|
302
302
|
hideInputIcon: {
|
|
@@ -776,7 +776,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
776
776
|
default: null;
|
|
777
777
|
};
|
|
778
778
|
placeholder: {
|
|
779
|
-
type: import("vue").PropType<string>;
|
|
779
|
+
type: import("vue").PropType<string | string[]>;
|
|
780
780
|
default: string;
|
|
781
781
|
};
|
|
782
782
|
hideInputIcon: {
|
|
@@ -950,7 +950,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
950
950
|
timePicker: boolean;
|
|
951
951
|
locale: string;
|
|
952
952
|
autocomplete: string;
|
|
953
|
-
placeholder: string;
|
|
953
|
+
placeholder: string | string[];
|
|
954
954
|
actionRow: ActionRowData;
|
|
955
955
|
monthPicker: boolean;
|
|
956
956
|
yearPicker: boolean;
|
|
@@ -296,7 +296,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
296
296
|
default: null;
|
|
297
297
|
};
|
|
298
298
|
placeholder: {
|
|
299
|
-
type: import("vue").PropType<string>;
|
|
299
|
+
type: import("vue").PropType<string | string[]>;
|
|
300
300
|
default: string;
|
|
301
301
|
};
|
|
302
302
|
hideInputIcon: {
|
|
@@ -758,7 +758,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
758
758
|
default: null;
|
|
759
759
|
};
|
|
760
760
|
placeholder: {
|
|
761
|
-
type: import("vue").PropType<string>;
|
|
761
|
+
type: import("vue").PropType<string | string[]>;
|
|
762
762
|
default: string;
|
|
763
763
|
};
|
|
764
764
|
hideInputIcon: {
|
|
@@ -929,7 +929,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
929
929
|
timePicker: boolean;
|
|
930
930
|
locale: string;
|
|
931
931
|
autocomplete: string;
|
|
932
|
-
placeholder: string;
|
|
932
|
+
placeholder: string | string[];
|
|
933
933
|
actionRow: ActionRowData;
|
|
934
934
|
monthPicker: boolean;
|
|
935
935
|
yearPicker: boolean;
|
|
@@ -298,7 +298,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
298
298
|
default: null;
|
|
299
299
|
};
|
|
300
300
|
placeholder: {
|
|
301
|
-
type: PropType<string>;
|
|
301
|
+
type: PropType<string | string[]>;
|
|
302
302
|
default: string;
|
|
303
303
|
};
|
|
304
304
|
hideInputIcon: {
|
|
@@ -784,7 +784,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
784
784
|
default: null;
|
|
785
785
|
};
|
|
786
786
|
placeholder: {
|
|
787
|
-
type: PropType<string>;
|
|
787
|
+
type: PropType<string | string[]>;
|
|
788
788
|
default: string;
|
|
789
789
|
};
|
|
790
790
|
hideInputIcon: {
|
|
@@ -988,7 +988,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
988
988
|
timePicker: boolean;
|
|
989
989
|
locale: string;
|
|
990
990
|
autocomplete: string;
|
|
991
|
-
placeholder: string;
|
|
991
|
+
placeholder: string | string[];
|
|
992
992
|
actionRow: ActionRowData;
|
|
993
993
|
monthPicker: boolean;
|
|
994
994
|
yearPicker: boolean;
|
|
@@ -298,7 +298,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
298
298
|
default: null;
|
|
299
299
|
};
|
|
300
300
|
placeholder: {
|
|
301
|
-
type: PropType<string>;
|
|
301
|
+
type: PropType<string | string[]>;
|
|
302
302
|
default: string;
|
|
303
303
|
};
|
|
304
304
|
hideInputIcon: {
|
|
@@ -774,7 +774,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
774
774
|
default: null;
|
|
775
775
|
};
|
|
776
776
|
placeholder: {
|
|
777
|
-
type: PropType<string>;
|
|
777
|
+
type: PropType<string | string[]>;
|
|
778
778
|
default: string;
|
|
779
779
|
};
|
|
780
780
|
hideInputIcon: {
|
|
@@ -968,7 +968,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
968
968
|
timePicker: boolean;
|
|
969
969
|
locale: string;
|
|
970
970
|
autocomplete: string;
|
|
971
|
-
placeholder: string;
|
|
971
|
+
placeholder: string | string[];
|
|
972
972
|
actionRow: ActionRowData;
|
|
973
973
|
monthPicker: boolean;
|
|
974
974
|
yearPicker: boolean;
|
|
@@ -296,7 +296,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
296
296
|
default: null;
|
|
297
297
|
};
|
|
298
298
|
placeholder: {
|
|
299
|
-
type: import("vue").PropType<string>;
|
|
299
|
+
type: import("vue").PropType<string | string[]>;
|
|
300
300
|
default: string;
|
|
301
301
|
};
|
|
302
302
|
hideInputIcon: {
|
|
@@ -760,7 +760,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
760
760
|
default: null;
|
|
761
761
|
};
|
|
762
762
|
placeholder: {
|
|
763
|
-
type: import("vue").PropType<string>;
|
|
763
|
+
type: import("vue").PropType<string | string[]>;
|
|
764
764
|
default: string;
|
|
765
765
|
};
|
|
766
766
|
hideInputIcon: {
|
|
@@ -930,7 +930,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
930
930
|
timePicker: boolean;
|
|
931
931
|
locale: string;
|
|
932
932
|
autocomplete: string;
|
|
933
|
-
placeholder: string;
|
|
933
|
+
placeholder: string | string[];
|
|
934
934
|
actionRow: ActionRowData;
|
|
935
935
|
monthPicker: boolean;
|
|
936
936
|
yearPicker: boolean;
|
|
@@ -296,7 +296,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
296
296
|
default: null;
|
|
297
297
|
};
|
|
298
298
|
placeholder: {
|
|
299
|
-
type: import("vue").PropType<string>;
|
|
299
|
+
type: import("vue").PropType<string | string[]>;
|
|
300
300
|
default: string;
|
|
301
301
|
};
|
|
302
302
|
hideInputIcon: {
|
|
@@ -753,7 +753,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
753
753
|
default: null;
|
|
754
754
|
};
|
|
755
755
|
placeholder: {
|
|
756
|
-
type: import("vue").PropType<string>;
|
|
756
|
+
type: import("vue").PropType<string | string[]>;
|
|
757
757
|
default: string;
|
|
758
758
|
};
|
|
759
759
|
hideInputIcon: {
|
|
@@ -922,7 +922,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
922
922
|
timePicker: boolean;
|
|
923
923
|
locale: string;
|
|
924
924
|
autocomplete: string;
|
|
925
|
-
placeholder: string;
|
|
925
|
+
placeholder: string | string[];
|
|
926
926
|
actionRow: ActionRowData;
|
|
927
927
|
monthPicker: boolean;
|
|
928
928
|
yearPicker: boolean;
|
|
@@ -318,7 +318,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
318
318
|
default: null;
|
|
319
319
|
};
|
|
320
320
|
placeholder: {
|
|
321
|
-
type: PropType<string>;
|
|
321
|
+
type: PropType<string | string[]>;
|
|
322
322
|
default: string;
|
|
323
323
|
};
|
|
324
324
|
hideInputIcon: {
|
|
@@ -787,7 +787,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
787
787
|
default: null;
|
|
788
788
|
};
|
|
789
789
|
placeholder: {
|
|
790
|
-
type: PropType<string>;
|
|
790
|
+
type: PropType<string | string[]>;
|
|
791
791
|
default: string;
|
|
792
792
|
};
|
|
793
793
|
hideInputIcon: {
|
|
@@ -954,7 +954,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
954
954
|
timePicker: boolean;
|
|
955
955
|
locale: string;
|
|
956
956
|
autocomplete: string;
|
|
957
|
-
placeholder: string;
|
|
957
|
+
placeholder: string | string[];
|
|
958
958
|
actionRow: ActionRowData;
|
|
959
959
|
monthPicker: boolean;
|
|
960
960
|
yearPicker: boolean;
|
|
@@ -265,7 +265,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
265
265
|
default: null;
|
|
266
266
|
};
|
|
267
267
|
placeholder: {
|
|
268
|
-
type: import("vue").PropType<string>;
|
|
268
|
+
type: import("vue").PropType<string | string[]>;
|
|
269
269
|
default: string;
|
|
270
270
|
};
|
|
271
271
|
hideInputIcon: {
|
|
@@ -365,7 +365,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
365
365
|
default: boolean;
|
|
366
366
|
};
|
|
367
367
|
actionRow: {
|
|
368
|
-
type: import("vue").PropType<ActionRowData>;
|
|
368
|
+
type: import("vue").PropType<ActionRowData>; /**
|
|
369
|
+
* Called when select button is clicked, emit update for the modelValue
|
|
370
|
+
*/
|
|
369
371
|
default: () => {};
|
|
370
372
|
};
|
|
371
373
|
focusStartDate: {
|
|
@@ -719,7 +721,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
719
721
|
default: null;
|
|
720
722
|
};
|
|
721
723
|
placeholder: {
|
|
722
|
-
type: import("vue").PropType<string>;
|
|
724
|
+
type: import("vue").PropType<string | string[]>;
|
|
723
725
|
default: string;
|
|
724
726
|
};
|
|
725
727
|
hideInputIcon: {
|
|
@@ -819,7 +821,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
819
821
|
default: boolean;
|
|
820
822
|
};
|
|
821
823
|
actionRow: {
|
|
822
|
-
type: import("vue").PropType<ActionRowData>;
|
|
824
|
+
type: import("vue").PropType<ActionRowData>; /**
|
|
825
|
+
* Called when select button is clicked, emit update for the modelValue
|
|
826
|
+
*/
|
|
823
827
|
default: () => {};
|
|
824
828
|
};
|
|
825
829
|
focusStartDate: {
|
|
@@ -908,7 +912,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
908
912
|
timePicker: boolean;
|
|
909
913
|
locale: string;
|
|
910
914
|
autocomplete: string;
|
|
911
|
-
placeholder: string;
|
|
915
|
+
placeholder: string | string[];
|
|
912
916
|
actionRow: ActionRowData;
|
|
913
917
|
monthPicker: boolean;
|
|
914
918
|
yearPicker: boolean;
|
|
@@ -296,7 +296,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
296
296
|
default: null;
|
|
297
297
|
};
|
|
298
298
|
placeholder: {
|
|
299
|
-
type: import("vue").PropType<string>;
|
|
299
|
+
type: import("vue").PropType<string | string[]>;
|
|
300
300
|
default: string;
|
|
301
301
|
};
|
|
302
302
|
hideInputIcon: {
|
|
@@ -745,7 +745,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
745
745
|
default: null;
|
|
746
746
|
};
|
|
747
747
|
placeholder: {
|
|
748
|
-
type: import("vue").PropType<string>;
|
|
748
|
+
type: import("vue").PropType<string | string[]>;
|
|
749
749
|
default: string;
|
|
750
750
|
};
|
|
751
751
|
hideInputIcon: {
|
|
@@ -911,7 +911,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
911
911
|
timePicker: boolean;
|
|
912
912
|
locale: string;
|
|
913
913
|
autocomplete: string;
|
|
914
|
-
placeholder: string;
|
|
914
|
+
placeholder: string | string[];
|
|
915
915
|
actionRow: ActionRowData;
|
|
916
916
|
monthPicker: boolean;
|
|
917
917
|
yearPicker: boolean;
|
|
@@ -267,7 +267,7 @@ export declare const AllProps: {
|
|
|
267
267
|
default: null;
|
|
268
268
|
};
|
|
269
269
|
placeholder: {
|
|
270
|
-
type: PropType<string>;
|
|
270
|
+
type: PropType<string | string[]>;
|
|
271
271
|
default: string;
|
|
272
272
|
};
|
|
273
273
|
hideInputIcon: {
|
|
@@ -713,7 +713,7 @@ export declare const PickerBaseProps: {
|
|
|
713
713
|
default: null;
|
|
714
714
|
};
|
|
715
715
|
placeholder: {
|
|
716
|
-
type: PropType<string>;
|
|
716
|
+
type: PropType<string | string[]>;
|
|
717
717
|
default: string;
|
|
718
718
|
};
|
|
719
719
|
hideInputIcon: {
|