cnhis-design-vue 3.1.52-beta.32 → 3.1.52-beta.34
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/es/components/classification/index.d.ts +10 -10
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +10 -10
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +10 -10
- package/es/components/classification/src/index.vue.d.ts +10 -10
- package/es/components/date-picker/index.d.ts +5 -5
- package/es/components/date-picker/src/DatePicker.vue.d.ts +7 -5
- package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
- package/es/components/form-config/index.d.ts +108 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +108 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +36 -0
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +12 -0
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +5 -5
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +5 -5
- package/es/components/shortcut-setter/index.d.ts +12 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +12 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +10 -10
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +6 -5
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +10 -10
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +10 -10
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +5 -5
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +20 -20
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +20 -20
- package/es/shared/package.json.js +1 -1
- package/es/shared/types/business.d.ts +2 -0
- package/es/shared/utils/business.d.ts +1 -1
- package/es/shared/utils/business.js +1 -1
- package/package.json +2 -2
|
@@ -60,7 +60,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
type: FunctionConstructor;
|
|
61
61
|
};
|
|
62
62
|
formattedValue: {
|
|
63
|
-
type:
|
|
63
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
64
64
|
};
|
|
65
65
|
placeholder: {
|
|
66
66
|
type: StringConstructor;
|
|
@@ -80,7 +80,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
80
|
type: FunctionConstructor;
|
|
81
81
|
};
|
|
82
82
|
formattedValue: {
|
|
83
|
-
type:
|
|
83
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
84
84
|
};
|
|
85
85
|
placeholder: {
|
|
86
86
|
type: StringConstructor;
|
|
@@ -95,7 +95,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
95
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
96
96
|
panelInstRef: import("vue").Ref<null>;
|
|
97
97
|
placeholderRef: import("vue").Ref<any>;
|
|
98
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
98
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
99
99
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
100
100
|
formatRef: import("vue").ComputedRef<string>;
|
|
101
101
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -104,7 +104,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
104
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
105
105
|
onUpdateShow: (show: boolean) => void;
|
|
106
106
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
107
|
-
isAllowedInvalidValue: (value
|
|
107
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
108
108
|
NDatePicker: any;
|
|
109
109
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
110
110
|
updateUnchangedValue: {
|
|
@@ -114,7 +114,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
114
|
type: FunctionConstructor;
|
|
115
115
|
};
|
|
116
116
|
formattedValue: {
|
|
117
|
-
type:
|
|
117
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
118
118
|
};
|
|
119
119
|
placeholder: {
|
|
120
120
|
type: StringConstructor;
|
package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
paramCfg: {
|
|
3
4
|
type: ObjectConstructor;
|
|
@@ -73,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
74
|
type: FunctionConstructor;
|
|
74
75
|
};
|
|
75
76
|
formattedValue: {
|
|
76
|
-
type:
|
|
77
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
77
78
|
};
|
|
78
79
|
placeholder: {
|
|
79
80
|
type: StringConstructor;
|
|
@@ -93,7 +94,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
94
|
type: FunctionConstructor;
|
|
94
95
|
};
|
|
95
96
|
formattedValue: {
|
|
96
|
-
type:
|
|
97
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
97
98
|
};
|
|
98
99
|
placeholder: {
|
|
99
100
|
type: StringConstructor;
|
|
@@ -108,7 +109,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
109
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
109
110
|
panelInstRef: import("vue").Ref<null>;
|
|
110
111
|
placeholderRef: import("vue").Ref<any>;
|
|
111
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
112
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
112
113
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
113
114
|
formatRef: import("vue").ComputedRef<string>;
|
|
114
115
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -117,7 +118,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
117
118
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
118
119
|
onUpdateShow: (show: boolean) => void;
|
|
119
120
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
120
|
-
isAllowedInvalidValue: (value
|
|
121
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
121
122
|
NDatePicker: any;
|
|
122
123
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
123
124
|
updateUnchangedValue: {
|
|
@@ -127,7 +128,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
127
128
|
type: FunctionConstructor;
|
|
128
129
|
};
|
|
129
130
|
formattedValue: {
|
|
130
|
-
type:
|
|
131
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
131
132
|
};
|
|
132
133
|
placeholder: {
|
|
133
134
|
type: StringConstructor;
|
|
@@ -60,7 +60,7 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
60
60
|
type: FunctionConstructor;
|
|
61
61
|
};
|
|
62
62
|
formattedValue: {
|
|
63
|
-
type:
|
|
63
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
64
64
|
};
|
|
65
65
|
placeholder: {
|
|
66
66
|
type: StringConstructor;
|
|
@@ -80,7 +80,7 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
80
80
|
type: FunctionConstructor;
|
|
81
81
|
};
|
|
82
82
|
formattedValue: {
|
|
83
|
-
type:
|
|
83
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
84
84
|
};
|
|
85
85
|
placeholder: {
|
|
86
86
|
type: StringConstructor;
|
|
@@ -95,7 +95,7 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
95
95
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
96
96
|
panelInstRef: import("vue").Ref<null>;
|
|
97
97
|
placeholderRef: import("vue").Ref<any>;
|
|
98
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
98
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
99
99
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
100
100
|
formatRef: import("vue").ComputedRef<string>;
|
|
101
101
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -104,7 +104,7 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
104
104
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
105
105
|
onUpdateShow: (show: boolean) => void;
|
|
106
106
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
107
|
-
isAllowedInvalidValue: (value
|
|
107
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
108
108
|
NDatePicker: any;
|
|
109
109
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
110
110
|
updateUnchangedValue: {
|
|
@@ -114,7 +114,7 @@ declare const Date: import("vue").DefineComponent<{
|
|
|
114
114
|
type: FunctionConstructor;
|
|
115
115
|
};
|
|
116
116
|
formattedValue: {
|
|
117
|
-
type:
|
|
117
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
118
118
|
};
|
|
119
119
|
placeholder: {
|
|
120
120
|
type: StringConstructor;
|
|
@@ -687,7 +687,7 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
687
687
|
type: FunctionConstructor;
|
|
688
688
|
};
|
|
689
689
|
formattedValue: {
|
|
690
|
-
type:
|
|
690
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
691
691
|
};
|
|
692
692
|
placeholder: {
|
|
693
693
|
type: StringConstructor;
|
|
@@ -707,7 +707,7 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
707
707
|
type: FunctionConstructor;
|
|
708
708
|
};
|
|
709
709
|
formattedValue: {
|
|
710
|
-
type:
|
|
710
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
711
711
|
};
|
|
712
712
|
placeholder: {
|
|
713
713
|
type: StringConstructor;
|
|
@@ -722,7 +722,7 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
722
722
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
723
723
|
panelInstRef: import("vue").Ref<null>;
|
|
724
724
|
placeholderRef: import("vue").Ref<any>;
|
|
725
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
725
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
726
726
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
727
727
|
formatRef: import("vue").ComputedRef<string>;
|
|
728
728
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -731,7 +731,7 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
731
731
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
732
732
|
onUpdateShow: (show: boolean) => void;
|
|
733
733
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
734
|
-
isAllowedInvalidValue: (value
|
|
734
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
735
735
|
NDatePicker: any;
|
|
736
736
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
737
737
|
updateUnchangedValue: {
|
|
@@ -741,7 +741,7 @@ declare const DateRange: import("vue").DefineComponent<{
|
|
|
741
741
|
type: FunctionConstructor;
|
|
742
742
|
};
|
|
743
743
|
formattedValue: {
|
|
744
|
-
type:
|
|
744
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
745
745
|
};
|
|
746
746
|
placeholder: {
|
|
747
747
|
type: StringConstructor;
|
|
@@ -227,7 +227,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
227
227
|
type: FunctionConstructor;
|
|
228
228
|
};
|
|
229
229
|
formattedValue: {
|
|
230
|
-
type:
|
|
230
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
231
231
|
};
|
|
232
232
|
placeholder: {
|
|
233
233
|
type: StringConstructor;
|
|
@@ -247,7 +247,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
247
247
|
type: FunctionConstructor;
|
|
248
248
|
};
|
|
249
249
|
formattedValue: {
|
|
250
|
-
type:
|
|
250
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
251
251
|
};
|
|
252
252
|
placeholder: {
|
|
253
253
|
type: StringConstructor;
|
|
@@ -262,7 +262,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
262
262
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
263
263
|
panelInstRef: import("vue").Ref<null>;
|
|
264
264
|
placeholderRef: import("vue").Ref<any>;
|
|
265
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
265
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
266
266
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
267
267
|
formatRef: import("vue").ComputedRef<string>;
|
|
268
268
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -271,7 +271,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
271
271
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
272
272
|
onUpdateShow: (show: boolean) => void;
|
|
273
273
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
274
|
-
isAllowedInvalidValue: (value
|
|
274
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
275
275
|
NDatePicker: any;
|
|
276
276
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
277
277
|
updateUnchangedValue: {
|
|
@@ -281,7 +281,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
281
281
|
type: FunctionConstructor;
|
|
282
282
|
};
|
|
283
283
|
formattedValue: {
|
|
284
|
-
type:
|
|
284
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
285
285
|
};
|
|
286
286
|
placeholder: {
|
|
287
287
|
type: StringConstructor;
|
|
@@ -854,7 +854,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
854
854
|
type: FunctionConstructor;
|
|
855
855
|
};
|
|
856
856
|
formattedValue: {
|
|
857
|
-
type:
|
|
857
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
858
858
|
};
|
|
859
859
|
placeholder: {
|
|
860
860
|
type: StringConstructor;
|
|
@@ -874,7 +874,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
874
874
|
type: FunctionConstructor;
|
|
875
875
|
};
|
|
876
876
|
formattedValue: {
|
|
877
|
-
type:
|
|
877
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
878
878
|
};
|
|
879
879
|
placeholder: {
|
|
880
880
|
type: StringConstructor;
|
|
@@ -889,7 +889,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
889
889
|
datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
|
|
890
890
|
panelInstRef: import("vue").Ref<null>;
|
|
891
891
|
placeholderRef: import("vue").Ref<any>;
|
|
892
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
892
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
893
893
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
894
894
|
formatRef: import("vue").ComputedRef<string>;
|
|
895
895
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -898,7 +898,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
898
898
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
899
899
|
onUpdateShow: (show: boolean) => void;
|
|
900
900
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
901
|
-
isAllowedInvalidValue: (value
|
|
901
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
902
902
|
NDatePicker: any;
|
|
903
903
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
904
904
|
updateUnchangedValue: {
|
|
@@ -908,7 +908,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
908
908
|
type: FunctionConstructor;
|
|
909
909
|
};
|
|
910
910
|
formattedValue: {
|
|
911
|
-
type:
|
|
911
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
912
912
|
};
|
|
913
913
|
placeholder: {
|
|
914
914
|
type: StringConstructor;
|
package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts
CHANGED
|
@@ -91,7 +91,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
91
91
|
type: FunctionConstructor;
|
|
92
92
|
};
|
|
93
93
|
formattedValue: {
|
|
94
|
-
type:
|
|
94
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
95
95
|
};
|
|
96
96
|
placeholder: {
|
|
97
97
|
type: StringConstructor;
|
|
@@ -111,7 +111,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
111
111
|
type: FunctionConstructor;
|
|
112
112
|
};
|
|
113
113
|
formattedValue: {
|
|
114
|
-
type:
|
|
114
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
115
115
|
};
|
|
116
116
|
placeholder: {
|
|
117
117
|
type: StringConstructor;
|
|
@@ -126,7 +126,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
126
126
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
127
127
|
panelInstRef: import("vue").Ref<null>;
|
|
128
128
|
placeholderRef: import("vue").Ref<any>;
|
|
129
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
129
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
130
130
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
131
131
|
formatRef: import("vue").ComputedRef<string>;
|
|
132
132
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -135,7 +135,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
135
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
136
136
|
onUpdateShow: (show: boolean) => void;
|
|
137
137
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
138
|
-
isAllowedInvalidValue: (value
|
|
138
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
139
139
|
NDatePicker: any;
|
|
140
140
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
141
141
|
updateUnchangedValue: {
|
|
@@ -145,7 +145,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
145
145
|
type: FunctionConstructor;
|
|
146
146
|
};
|
|
147
147
|
formattedValue: {
|
|
148
|
-
type:
|
|
148
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
149
149
|
};
|
|
150
150
|
placeholder: {
|
|
151
151
|
type: StringConstructor;
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
type: FunctionConstructor;
|
|
75
75
|
};
|
|
76
76
|
formattedValue: {
|
|
77
|
-
type:
|
|
77
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
78
78
|
};
|
|
79
79
|
placeholder: {
|
|
80
80
|
type: StringConstructor;
|
|
@@ -94,7 +94,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
94
|
type: FunctionConstructor;
|
|
95
95
|
};
|
|
96
96
|
formattedValue: {
|
|
97
|
-
type:
|
|
97
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
98
98
|
};
|
|
99
99
|
placeholder: {
|
|
100
100
|
type: StringConstructor;
|
|
@@ -109,7 +109,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
109
109
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
110
110
|
panelInstRef: import("vue").Ref<null>;
|
|
111
111
|
placeholderRef: import("vue").Ref<any>;
|
|
112
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
112
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
113
113
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
114
114
|
formatRef: import("vue").ComputedRef<string>;
|
|
115
115
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -118,7 +118,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
118
118
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
119
119
|
onUpdateShow: (show: boolean) => void;
|
|
120
120
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
121
|
-
isAllowedInvalidValue: (value
|
|
121
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
122
122
|
NDatePicker: any;
|
|
123
123
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
124
124
|
updateUnchangedValue: {
|
|
@@ -128,7 +128,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
type: FunctionConstructor;
|
|
129
129
|
};
|
|
130
130
|
formattedValue: {
|
|
131
|
-
type:
|
|
131
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
132
132
|
};
|
|
133
133
|
placeholder: {
|
|
134
134
|
type: StringConstructor;
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
109
109
|
type: FunctionConstructor;
|
|
110
110
|
};
|
|
111
111
|
formattedValue: {
|
|
112
|
-
type:
|
|
112
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
113
113
|
};
|
|
114
114
|
placeholder: {
|
|
115
115
|
type: StringConstructor;
|
|
@@ -129,7 +129,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
129
129
|
type: FunctionConstructor;
|
|
130
130
|
};
|
|
131
131
|
formattedValue: {
|
|
132
|
-
type:
|
|
132
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
133
133
|
};
|
|
134
134
|
placeholder: {
|
|
135
135
|
type: StringConstructor;
|
|
@@ -144,7 +144,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
144
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
145
145
|
panelInstRef: import("vue").Ref<null>;
|
|
146
146
|
placeholderRef: import("vue").Ref<any>;
|
|
147
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
147
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
148
148
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
149
149
|
formatRef: import("vue").ComputedRef<string>;
|
|
150
150
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -153,7 +153,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
153
153
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
154
154
|
onUpdateShow: (show: boolean) => void;
|
|
155
155
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
156
|
-
isAllowedInvalidValue: (value
|
|
156
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
157
157
|
NDatePicker: any;
|
|
158
158
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
159
159
|
updateUnchangedValue: {
|
|
@@ -163,7 +163,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
163
163
|
type: FunctionConstructor;
|
|
164
164
|
};
|
|
165
165
|
formattedValue: {
|
|
166
|
-
type:
|
|
166
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
167
167
|
};
|
|
168
168
|
placeholder: {
|
|
169
169
|
type: StringConstructor;
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
76
76
|
type: FunctionConstructor;
|
|
77
77
|
};
|
|
78
78
|
formattedValue: {
|
|
79
|
-
type:
|
|
79
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
80
80
|
};
|
|
81
81
|
placeholder: {
|
|
82
82
|
type: StringConstructor;
|
|
@@ -96,7 +96,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
96
|
type: FunctionConstructor;
|
|
97
97
|
};
|
|
98
98
|
formattedValue: {
|
|
99
|
-
type:
|
|
99
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
100
100
|
};
|
|
101
101
|
placeholder: {
|
|
102
102
|
type: StringConstructor;
|
|
@@ -111,7 +111,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
111
111
|
datePickerRef: import("vue").Ref<AnyObject | null>;
|
|
112
112
|
panelInstRef: import("vue").Ref<null>;
|
|
113
113
|
placeholderRef: import("vue").Ref<any>;
|
|
114
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
114
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
115
115
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
116
116
|
formatRef: import("vue").ComputedRef<string>;
|
|
117
117
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -120,7 +120,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
120
120
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
121
121
|
onUpdateShow: (show: boolean) => void;
|
|
122
122
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
123
|
-
isAllowedInvalidValue: (value
|
|
123
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
124
124
|
NDatePicker: any;
|
|
125
125
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
126
126
|
updateUnchangedValue: {
|
|
@@ -130,7 +130,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
130
|
type: FunctionConstructor;
|
|
131
131
|
};
|
|
132
132
|
formattedValue: {
|
|
133
|
-
type:
|
|
133
|
+
type: PropType<(string | [string, string]) | null | undefined>;
|
|
134
134
|
};
|
|
135
135
|
placeholder: {
|
|
136
136
|
type: StringConstructor;
|
|
@@ -255,7 +255,7 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
255
255
|
type: FunctionConstructor;
|
|
256
256
|
};
|
|
257
257
|
formattedValue: {
|
|
258
|
-
type:
|
|
258
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
259
259
|
};
|
|
260
260
|
placeholder: {
|
|
261
261
|
type: StringConstructor;
|
|
@@ -275,7 +275,7 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
275
275
|
type: FunctionConstructor;
|
|
276
276
|
};
|
|
277
277
|
formattedValue: {
|
|
278
|
-
type:
|
|
278
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
279
279
|
};
|
|
280
280
|
placeholder: {
|
|
281
281
|
type: StringConstructor;
|
|
@@ -290,7 +290,7 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
290
290
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
291
291
|
panelInstRef: import("vue").Ref<null>;
|
|
292
292
|
placeholderRef: import("vue").Ref<any>;
|
|
293
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
293
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
294
294
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
295
295
|
formatRef: import("vue").ComputedRef<string>;
|
|
296
296
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -299,7 +299,7 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
299
299
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
300
300
|
onUpdateShow: (show: boolean) => void;
|
|
301
301
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
302
|
-
isAllowedInvalidValue: (value
|
|
302
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
303
303
|
NDatePicker: any;
|
|
304
304
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
305
305
|
updateUnchangedValue: {
|
|
@@ -309,7 +309,7 @@ declare const DateInner: import("vue").DefineComponent<{
|
|
|
309
309
|
type: FunctionConstructor;
|
|
310
310
|
};
|
|
311
311
|
formattedValue: {
|
|
312
|
-
type:
|
|
312
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
313
313
|
};
|
|
314
314
|
placeholder: {
|
|
315
315
|
type: StringConstructor;
|
|
@@ -501,7 +501,7 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
501
501
|
type: FunctionConstructor;
|
|
502
502
|
};
|
|
503
503
|
formattedValue: {
|
|
504
|
-
type:
|
|
504
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
505
505
|
};
|
|
506
506
|
placeholder: {
|
|
507
507
|
type: StringConstructor;
|
|
@@ -521,7 +521,7 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
521
521
|
type: FunctionConstructor;
|
|
522
522
|
};
|
|
523
523
|
formattedValue: {
|
|
524
|
-
type:
|
|
524
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
525
525
|
};
|
|
526
526
|
placeholder: {
|
|
527
527
|
type: StringConstructor;
|
|
@@ -536,7 +536,7 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
536
536
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
537
537
|
panelInstRef: import("vue").Ref<null>;
|
|
538
538
|
placeholderRef: import("vue").Ref<any>;
|
|
539
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
539
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
540
540
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
541
541
|
formatRef: import("vue").ComputedRef<string>;
|
|
542
542
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -545,7 +545,7 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
545
545
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
546
546
|
onUpdateShow: (show: boolean) => void;
|
|
547
547
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
548
|
-
isAllowedInvalidValue: (value
|
|
548
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
549
549
|
NDatePicker: any;
|
|
550
550
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
551
551
|
updateUnchangedValue: {
|
|
@@ -555,7 +555,7 @@ declare const DateOut: import("vue").DefineComponent<{
|
|
|
555
555
|
type: FunctionConstructor;
|
|
556
556
|
};
|
|
557
557
|
formattedValue: {
|
|
558
|
-
type:
|
|
558
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
559
559
|
};
|
|
560
560
|
placeholder: {
|
|
561
561
|
type: StringConstructor;
|
|
@@ -709,7 +709,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
709
709
|
type: FunctionConstructor;
|
|
710
710
|
};
|
|
711
711
|
formattedValue: {
|
|
712
|
-
type:
|
|
712
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
713
713
|
};
|
|
714
714
|
placeholder: {
|
|
715
715
|
type: StringConstructor;
|
|
@@ -729,7 +729,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
729
729
|
type: FunctionConstructor;
|
|
730
730
|
};
|
|
731
731
|
formattedValue: {
|
|
732
|
-
type:
|
|
732
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
733
733
|
};
|
|
734
734
|
placeholder: {
|
|
735
735
|
type: StringConstructor;
|
|
@@ -744,7 +744,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
744
744
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
745
745
|
panelInstRef: import("vue").Ref<null>;
|
|
746
746
|
placeholderRef: import("vue").Ref<any>;
|
|
747
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
747
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
748
748
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
749
749
|
formatRef: import("vue").ComputedRef<string>;
|
|
750
750
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -753,7 +753,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
753
753
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
754
754
|
onUpdateShow: (show: boolean) => void;
|
|
755
755
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
756
|
-
isAllowedInvalidValue: (value
|
|
756
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
757
757
|
NDatePicker: any;
|
|
758
758
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
759
759
|
updateUnchangedValue: {
|
|
@@ -763,7 +763,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
|
|
|
763
763
|
type: FunctionConstructor;
|
|
764
764
|
};
|
|
765
765
|
formattedValue: {
|
|
766
|
-
type:
|
|
766
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
767
767
|
};
|
|
768
768
|
placeholder: {
|
|
769
769
|
type: StringConstructor;
|
|
@@ -962,7 +962,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
962
962
|
type: FunctionConstructor;
|
|
963
963
|
};
|
|
964
964
|
formattedValue: {
|
|
965
|
-
type:
|
|
965
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
966
966
|
};
|
|
967
967
|
placeholder: {
|
|
968
968
|
type: StringConstructor;
|
|
@@ -982,7 +982,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
982
982
|
type: FunctionConstructor;
|
|
983
983
|
};
|
|
984
984
|
formattedValue: {
|
|
985
|
-
type:
|
|
985
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
986
986
|
};
|
|
987
987
|
placeholder: {
|
|
988
988
|
type: StringConstructor;
|
|
@@ -997,7 +997,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
997
997
|
datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
|
|
998
998
|
panelInstRef: import("vue").Ref<null>;
|
|
999
999
|
placeholderRef: import("vue").Ref<any>;
|
|
1000
|
-
currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
|
|
1000
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
|
1001
1001
|
isDateTime: import("vue").ComputedRef<boolean>;
|
|
1002
1002
|
formatRef: import("vue").ComputedRef<string>;
|
|
1003
1003
|
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
|
@@ -1006,7 +1006,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
1006
1006
|
handleConfirm: (target: HTMLInputElement) => void;
|
|
1007
1007
|
onUpdateShow: (show: boolean) => void;
|
|
1008
1008
|
onConfirm: (...args: any[]) => Promise<void>;
|
|
1009
|
-
isAllowedInvalidValue: (value
|
|
1009
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
|
1010
1010
|
NDatePicker: any;
|
|
1011
1011
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1012
1012
|
updateUnchangedValue: {
|
|
@@ -1016,7 +1016,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
|
|
|
1016
1016
|
type: FunctionConstructor;
|
|
1017
1017
|
};
|
|
1018
1018
|
formattedValue: {
|
|
1019
|
-
type:
|
|
1019
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
|
1020
1020
|
};
|
|
1021
1021
|
placeholder: {
|
|
1022
1022
|
type: StringConstructor;
|