cnhis-design-vue 3.1.52-beta.13 → 3.1.52-beta.14

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.
Files changed (55) hide show
  1. package/README.md +87 -87
  2. package/es/components/classification/index.d.ts +22 -4
  3. package/es/components/classification/src/components/search-filter/index.vue.d.ts +22 -4
  4. package/es/components/classification/src/components/set-classification/index.vue.d.ts +22 -4
  5. package/es/components/classification/src/index.vue.d.ts +22 -4
  6. package/es/components/date-picker/index.d.ts +11 -2
  7. package/es/components/date-picker/src/DatePicker.vue.d.ts +11 -2
  8. package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
  9. package/es/components/expand-field/src/components/form.vue2.js +1 -1
  10. package/es/components/form-render/src/components/renderer/date.d.ts +9 -0
  11. package/es/components/form-render/src/components/renderer/date.js +1 -1
  12. package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +11 -2
  13. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +11 -2
  14. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue2.js +1 -1
  15. package/es/components/recommend-search/index.d.ts +1 -1
  16. package/es/components/recommend-search/src/RecommendSearch.vue.d.ts +1 -1
  17. package/es/components/recommend-search/src/components/RecommendInput.vue.d.ts +1 -1
  18. package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
  19. package/es/components/select-label/src/LabelFormContent.vue2.js +1 -1
  20. package/es/components/select-person/src/SearchMultiple.vue.d.ts +6 -0
  21. package/es/components/table-export-field/src/components/ExportModal.vue.d.ts +0 -3
  22. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +22 -4
  23. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +11 -2
  24. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +11 -2
  25. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +22 -4
  26. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +22 -4
  27. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +11 -2
  28. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +11 -2
  29. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +11 -2
  30. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +11 -2
  31. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +44 -8
  32. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +44 -8
  33. package/es/components/time-picker/src/TimePicker.vue2.js +1 -1
  34. package/es/env.d.ts +25 -25
  35. package/es/shared/assets/img/failure.png.js +1 -1
  36. package/es/shared/assets/img/no-permission.png.js +1 -1
  37. package/es/shared/assets/img/nodata.png.js +1 -1
  38. package/es/shared/assets/img/notfound.png.js +1 -1
  39. package/es/shared/assets/img/qr.png.js +1 -1
  40. package/es/shared/assets/img/success.png.js +1 -1
  41. package/es/shared/assets/img/video.png.js +1 -1
  42. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  43. package/es/shared/assets/img/xb_big.png.js +1 -1
  44. package/es/shared/assets/img/xb_small.png.js +1 -1
  45. package/es/shared/hooks/useDateTime.d.ts +2 -1
  46. package/es/shared/hooks/useDateTime.js +1 -1
  47. package/es/shared/package.json.js +1 -1
  48. package/package.json +2 -2
  49. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  50. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
  51. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
  52. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
  53. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
  54. package/es/shared/utils/fabricjs/index.d.ts +0 -6823
  55. package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -66,6 +66,9 @@ declare const Date: import("vue").DefineComponent<{
66
66
  placeholder: {
67
67
  type: StringConstructor;
68
68
  };
69
+ allowedInvalidValue: {
70
+ type: StringConstructor;
71
+ };
69
72
  }, {
70
73
  attrs: {
71
74
  [x: string]: unknown;
@@ -83,6 +86,9 @@ declare const Date: import("vue").DefineComponent<{
83
86
  placeholder: {
84
87
  type: StringConstructor;
85
88
  };
89
+ allowedInvalidValue: {
90
+ type: StringConstructor;
91
+ };
86
92
  }>> & {
87
93
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
88
94
  }>>;
@@ -90,7 +96,7 @@ declare const Date: import("vue").DefineComponent<{
90
96
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
91
97
  panelInstRef: import("vue").Ref<null>;
92
98
  placeholderRef: import("vue").Ref<any>;
93
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
99
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
94
100
  isDateTime: import("vue").ComputedRef<boolean>;
95
101
  formatRef: import("vue").ComputedRef<string>;
96
102
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -99,7 +105,7 @@ declare const Date: import("vue").DefineComponent<{
99
105
  handleConfirm: (target: HTMLInputElement) => void;
100
106
  onUpdateShow: (show: boolean) => void;
101
107
  onConfirm: (...args: any[]) => Promise<void>;
102
- isOtherValue: (value?: string) => boolean;
108
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
103
109
  NDatePicker: any;
104
110
  }, 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<{
105
111
  updateUnchangedValue: {
@@ -114,6 +120,9 @@ declare const Date: import("vue").DefineComponent<{
114
120
  placeholder: {
115
121
  type: StringConstructor;
116
122
  };
123
+ allowedInvalidValue: {
124
+ type: StringConstructor;
125
+ };
117
126
  }>> & {
118
127
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
119
128
  }, {
@@ -685,6 +694,9 @@ declare const DateRange: import("vue").DefineComponent<{
685
694
  placeholder: {
686
695
  type: StringConstructor;
687
696
  };
697
+ allowedInvalidValue: {
698
+ type: StringConstructor;
699
+ };
688
700
  }, {
689
701
  attrs: {
690
702
  [x: string]: unknown;
@@ -702,6 +714,9 @@ declare const DateRange: import("vue").DefineComponent<{
702
714
  placeholder: {
703
715
  type: StringConstructor;
704
716
  };
717
+ allowedInvalidValue: {
718
+ type: StringConstructor;
719
+ };
705
720
  }>> & {
706
721
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
707
722
  }>>;
@@ -709,7 +724,7 @@ declare const DateRange: import("vue").DefineComponent<{
709
724
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
710
725
  panelInstRef: import("vue").Ref<null>;
711
726
  placeholderRef: import("vue").Ref<any>;
712
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
727
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
713
728
  isDateTime: import("vue").ComputedRef<boolean>;
714
729
  formatRef: import("vue").ComputedRef<string>;
715
730
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -718,7 +733,7 @@ declare const DateRange: import("vue").DefineComponent<{
718
733
  handleConfirm: (target: HTMLInputElement) => void;
719
734
  onUpdateShow: (show: boolean) => void;
720
735
  onConfirm: (...args: any[]) => Promise<void>;
721
- isOtherValue: (value?: string) => boolean;
736
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
722
737
  NDatePicker: any;
723
738
  }, 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<{
724
739
  updateUnchangedValue: {
@@ -733,6 +748,9 @@ declare const DateRange: import("vue").DefineComponent<{
733
748
  placeholder: {
734
749
  type: StringConstructor;
735
750
  };
751
+ allowedInvalidValue: {
752
+ type: StringConstructor;
753
+ };
736
754
  }>> & {
737
755
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
738
756
  }, {
@@ -229,6 +229,9 @@ declare const _default: import("vue").DefineComponent<{
229
229
  placeholder: {
230
230
  type: StringConstructor;
231
231
  };
232
+ allowedInvalidValue: {
233
+ type: StringConstructor;
234
+ };
232
235
  }, {
233
236
  attrs: {
234
237
  [x: string]: unknown;
@@ -246,6 +249,9 @@ declare const _default: import("vue").DefineComponent<{
246
249
  placeholder: {
247
250
  type: StringConstructor;
248
251
  };
252
+ allowedInvalidValue: {
253
+ type: StringConstructor;
254
+ };
249
255
  }>> & {
250
256
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
251
257
  }>>;
@@ -253,7 +259,7 @@ declare const _default: import("vue").DefineComponent<{
253
259
  datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
254
260
  panelInstRef: import("vue").Ref<null>;
255
261
  placeholderRef: import("vue").Ref<any>;
256
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
262
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
257
263
  isDateTime: import("vue").ComputedRef<boolean>;
258
264
  formatRef: import("vue").ComputedRef<string>;
259
265
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -262,7 +268,7 @@ declare const _default: import("vue").DefineComponent<{
262
268
  handleConfirm: (target: HTMLInputElement) => void;
263
269
  onUpdateShow: (show: boolean) => void;
264
270
  onConfirm: (...args: any[]) => Promise<void>;
265
- isOtherValue: (value?: string) => boolean;
271
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
266
272
  NDatePicker: any;
267
273
  }, 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<{
268
274
  updateUnchangedValue: {
@@ -277,6 +283,9 @@ declare const _default: import("vue").DefineComponent<{
277
283
  placeholder: {
278
284
  type: StringConstructor;
279
285
  };
286
+ allowedInvalidValue: {
287
+ type: StringConstructor;
288
+ };
280
289
  }>> & {
281
290
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
282
291
  }, {
@@ -848,6 +857,9 @@ declare const _default: import("vue").DefineComponent<{
848
857
  placeholder: {
849
858
  type: StringConstructor;
850
859
  };
860
+ allowedInvalidValue: {
861
+ type: StringConstructor;
862
+ };
851
863
  }, {
852
864
  attrs: {
853
865
  [x: string]: unknown;
@@ -865,6 +877,9 @@ declare const _default: import("vue").DefineComponent<{
865
877
  placeholder: {
866
878
  type: StringConstructor;
867
879
  };
880
+ allowedInvalidValue: {
881
+ type: StringConstructor;
882
+ };
868
883
  }>> & {
869
884
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
870
885
  }>>;
@@ -872,7 +887,7 @@ declare const _default: import("vue").DefineComponent<{
872
887
  datePickerRef: import("vue").Ref<import("../../../..").AnyObject | null>;
873
888
  panelInstRef: import("vue").Ref<null>;
874
889
  placeholderRef: import("vue").Ref<any>;
875
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
890
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
876
891
  isDateTime: import("vue").ComputedRef<boolean>;
877
892
  formatRef: import("vue").ComputedRef<string>;
878
893
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -881,7 +896,7 @@ declare const _default: import("vue").DefineComponent<{
881
896
  handleConfirm: (target: HTMLInputElement) => void;
882
897
  onUpdateShow: (show: boolean) => void;
883
898
  onConfirm: (...args: any[]) => Promise<void>;
884
- isOtherValue: (value?: string) => boolean;
899
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
885
900
  NDatePicker: any;
886
901
  }, 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<{
887
902
  updateUnchangedValue: {
@@ -896,6 +911,9 @@ declare const _default: import("vue").DefineComponent<{
896
911
  placeholder: {
897
912
  type: StringConstructor;
898
913
  };
914
+ allowedInvalidValue: {
915
+ type: StringConstructor;
916
+ };
899
917
  }>> & {
900
918
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
901
919
  }, {
@@ -96,6 +96,9 @@ declare const _default: import("vue").DefineComponent<{
96
96
  placeholder: {
97
97
  type: StringConstructor;
98
98
  };
99
+ allowedInvalidValue: {
100
+ type: StringConstructor;
101
+ };
99
102
  }, {
100
103
  attrs: {
101
104
  [x: string]: unknown;
@@ -113,6 +116,9 @@ declare const _default: import("vue").DefineComponent<{
113
116
  placeholder: {
114
117
  type: StringConstructor;
115
118
  };
119
+ allowedInvalidValue: {
120
+ type: StringConstructor;
121
+ };
116
122
  }>> & {
117
123
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
118
124
  }>>;
@@ -120,7 +126,7 @@ declare const _default: import("vue").DefineComponent<{
120
126
  datePickerRef: import("vue").Ref<AnyObject | null>;
121
127
  panelInstRef: import("vue").Ref<null>;
122
128
  placeholderRef: import("vue").Ref<any>;
123
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
129
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
124
130
  isDateTime: import("vue").ComputedRef<boolean>;
125
131
  formatRef: import("vue").ComputedRef<string>;
126
132
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -129,7 +135,7 @@ declare const _default: import("vue").DefineComponent<{
129
135
  handleConfirm: (target: HTMLInputElement) => void;
130
136
  onUpdateShow: (show: boolean) => void;
131
137
  onConfirm: (...args: any[]) => Promise<void>;
132
- isOtherValue: (value?: string) => boolean;
138
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
133
139
  NDatePicker: any;
134
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<{
135
141
  updateUnchangedValue: {
@@ -144,6 +150,9 @@ declare const _default: import("vue").DefineComponent<{
144
150
  placeholder: {
145
151
  type: StringConstructor;
146
152
  };
153
+ allowedInvalidValue: {
154
+ type: StringConstructor;
155
+ };
147
156
  }>> & {
148
157
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
149
158
  }, {
@@ -79,6 +79,9 @@ declare const _default: import("vue").DefineComponent<{
79
79
  placeholder: {
80
80
  type: StringConstructor;
81
81
  };
82
+ allowedInvalidValue: {
83
+ type: StringConstructor;
84
+ };
82
85
  }, {
83
86
  attrs: {
84
87
  [x: string]: unknown;
@@ -96,6 +99,9 @@ declare const _default: import("vue").DefineComponent<{
96
99
  placeholder: {
97
100
  type: StringConstructor;
98
101
  };
102
+ allowedInvalidValue: {
103
+ type: StringConstructor;
104
+ };
99
105
  }>> & {
100
106
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
101
107
  }>>;
@@ -103,7 +109,7 @@ declare const _default: import("vue").DefineComponent<{
103
109
  datePickerRef: import("vue").Ref<AnyObject | null>;
104
110
  panelInstRef: import("vue").Ref<null>;
105
111
  placeholderRef: import("vue").Ref<any>;
106
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
112
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
107
113
  isDateTime: import("vue").ComputedRef<boolean>;
108
114
  formatRef: import("vue").ComputedRef<string>;
109
115
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -112,7 +118,7 @@ declare const _default: import("vue").DefineComponent<{
112
118
  handleConfirm: (target: HTMLInputElement) => void;
113
119
  onUpdateShow: (show: boolean) => void;
114
120
  onConfirm: (...args: any[]) => Promise<void>;
115
- isOtherValue: (value?: string) => boolean;
121
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
116
122
  NDatePicker: any;
117
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<{
118
124
  updateUnchangedValue: {
@@ -127,6 +133,9 @@ declare const _default: import("vue").DefineComponent<{
127
133
  placeholder: {
128
134
  type: StringConstructor;
129
135
  };
136
+ allowedInvalidValue: {
137
+ type: StringConstructor;
138
+ };
130
139
  }>> & {
131
140
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
132
141
  }, {
@@ -114,6 +114,9 @@ declare const _default: import("vue").DefineComponent<{
114
114
  placeholder: {
115
115
  type: StringConstructor;
116
116
  };
117
+ allowedInvalidValue: {
118
+ type: StringConstructor;
119
+ };
117
120
  }, {
118
121
  attrs: {
119
122
  [x: string]: unknown;
@@ -131,6 +134,9 @@ declare const _default: import("vue").DefineComponent<{
131
134
  placeholder: {
132
135
  type: StringConstructor;
133
136
  };
137
+ allowedInvalidValue: {
138
+ type: StringConstructor;
139
+ };
134
140
  }>> & {
135
141
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
136
142
  }>>;
@@ -138,7 +144,7 @@ declare const _default: import("vue").DefineComponent<{
138
144
  datePickerRef: import("vue").Ref<AnyObject | null>;
139
145
  panelInstRef: import("vue").Ref<null>;
140
146
  placeholderRef: import("vue").Ref<any>;
141
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
147
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
142
148
  isDateTime: import("vue").ComputedRef<boolean>;
143
149
  formatRef: import("vue").ComputedRef<string>;
144
150
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -147,7 +153,7 @@ declare const _default: import("vue").DefineComponent<{
147
153
  handleConfirm: (target: HTMLInputElement) => void;
148
154
  onUpdateShow: (show: boolean) => void;
149
155
  onConfirm: (...args: any[]) => Promise<void>;
150
- isOtherValue: (value?: string) => boolean;
156
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
151
157
  NDatePicker: any;
152
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<{
153
159
  updateUnchangedValue: {
@@ -162,6 +168,9 @@ declare const _default: import("vue").DefineComponent<{
162
168
  placeholder: {
163
169
  type: StringConstructor;
164
170
  };
171
+ allowedInvalidValue: {
172
+ type: StringConstructor;
173
+ };
165
174
  }>> & {
166
175
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
167
176
  }, {
@@ -81,6 +81,9 @@ declare const _default: import("vue").DefineComponent<{
81
81
  placeholder: {
82
82
  type: StringConstructor;
83
83
  };
84
+ allowedInvalidValue: {
85
+ type: StringConstructor;
86
+ };
84
87
  }, {
85
88
  attrs: {
86
89
  [x: string]: unknown;
@@ -98,6 +101,9 @@ declare const _default: import("vue").DefineComponent<{
98
101
  placeholder: {
99
102
  type: StringConstructor;
100
103
  };
104
+ allowedInvalidValue: {
105
+ type: StringConstructor;
106
+ };
101
107
  }>> & {
102
108
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
103
109
  }>>;
@@ -105,7 +111,7 @@ declare const _default: import("vue").DefineComponent<{
105
111
  datePickerRef: import("vue").Ref<AnyObject | null>;
106
112
  panelInstRef: import("vue").Ref<null>;
107
113
  placeholderRef: import("vue").Ref<any>;
108
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
114
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
109
115
  isDateTime: import("vue").ComputedRef<boolean>;
110
116
  formatRef: import("vue").ComputedRef<string>;
111
117
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -114,7 +120,7 @@ declare const _default: import("vue").DefineComponent<{
114
120
  handleConfirm: (target: HTMLInputElement) => void;
115
121
  onUpdateShow: (show: boolean) => void;
116
122
  onConfirm: (...args: any[]) => Promise<void>;
117
- isOtherValue: (value?: string) => boolean;
123
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
118
124
  NDatePicker: any;
119
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<{
120
126
  updateUnchangedValue: {
@@ -129,6 +135,9 @@ declare const _default: import("vue").DefineComponent<{
129
135
  placeholder: {
130
136
  type: StringConstructor;
131
137
  };
138
+ allowedInvalidValue: {
139
+ type: StringConstructor;
140
+ };
132
141
  }>> & {
133
142
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
134
143
  }, {
@@ -260,6 +260,9 @@ declare const DateInner: import("vue").DefineComponent<{
260
260
  placeholder: {
261
261
  type: StringConstructor;
262
262
  };
263
+ allowedInvalidValue: {
264
+ type: StringConstructor;
265
+ };
263
266
  }, {
264
267
  attrs: {
265
268
  [x: string]: unknown;
@@ -277,6 +280,9 @@ declare const DateInner: import("vue").DefineComponent<{
277
280
  placeholder: {
278
281
  type: StringConstructor;
279
282
  };
283
+ allowedInvalidValue: {
284
+ type: StringConstructor;
285
+ };
280
286
  }>> & {
281
287
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
282
288
  }>>;
@@ -284,7 +290,7 @@ declare const DateInner: import("vue").DefineComponent<{
284
290
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
285
291
  panelInstRef: import("vue").Ref<null>;
286
292
  placeholderRef: import("vue").Ref<any>;
287
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
293
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
288
294
  isDateTime: import("vue").ComputedRef<boolean>;
289
295
  formatRef: import("vue").ComputedRef<string>;
290
296
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -293,7 +299,7 @@ declare const DateInner: import("vue").DefineComponent<{
293
299
  handleConfirm: (target: HTMLInputElement) => void;
294
300
  onUpdateShow: (show: boolean) => void;
295
301
  onConfirm: (...args: any[]) => Promise<void>;
296
- isOtherValue: (value?: string) => boolean;
302
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
297
303
  NDatePicker: any;
298
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<{
299
305
  updateUnchangedValue: {
@@ -308,6 +314,9 @@ declare const DateInner: import("vue").DefineComponent<{
308
314
  placeholder: {
309
315
  type: StringConstructor;
310
316
  };
317
+ allowedInvalidValue: {
318
+ type: StringConstructor;
319
+ };
311
320
  }>> & {
312
321
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
313
322
  }, {
@@ -497,6 +506,9 @@ declare const DateOut: import("vue").DefineComponent<{
497
506
  placeholder: {
498
507
  type: StringConstructor;
499
508
  };
509
+ allowedInvalidValue: {
510
+ type: StringConstructor;
511
+ };
500
512
  }, {
501
513
  attrs: {
502
514
  [x: string]: unknown;
@@ -514,6 +526,9 @@ declare const DateOut: import("vue").DefineComponent<{
514
526
  placeholder: {
515
527
  type: StringConstructor;
516
528
  };
529
+ allowedInvalidValue: {
530
+ type: StringConstructor;
531
+ };
517
532
  }>> & {
518
533
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
519
534
  }>>;
@@ -521,7 +536,7 @@ declare const DateOut: import("vue").DefineComponent<{
521
536
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
522
537
  panelInstRef: import("vue").Ref<null>;
523
538
  placeholderRef: import("vue").Ref<any>;
524
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
539
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
525
540
  isDateTime: import("vue").ComputedRef<boolean>;
526
541
  formatRef: import("vue").ComputedRef<string>;
527
542
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -530,7 +545,7 @@ declare const DateOut: import("vue").DefineComponent<{
530
545
  handleConfirm: (target: HTMLInputElement) => void;
531
546
  onUpdateShow: (show: boolean) => void;
532
547
  onConfirm: (...args: any[]) => Promise<void>;
533
- isOtherValue: (value?: string) => boolean;
548
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
534
549
  NDatePicker: any;
535
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<{
536
551
  updateUnchangedValue: {
@@ -545,6 +560,9 @@ declare const DateOut: import("vue").DefineComponent<{
545
560
  placeholder: {
546
561
  type: StringConstructor;
547
562
  };
563
+ allowedInvalidValue: {
564
+ type: StringConstructor;
565
+ };
548
566
  }>> & {
549
567
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
550
568
  }, {
@@ -696,6 +714,9 @@ declare const DateRangeInner: import("vue").DefineComponent<{
696
714
  placeholder: {
697
715
  type: StringConstructor;
698
716
  };
717
+ allowedInvalidValue: {
718
+ type: StringConstructor;
719
+ };
699
720
  }, {
700
721
  attrs: {
701
722
  [x: string]: unknown;
@@ -713,6 +734,9 @@ declare const DateRangeInner: import("vue").DefineComponent<{
713
734
  placeholder: {
714
735
  type: StringConstructor;
715
736
  };
737
+ allowedInvalidValue: {
738
+ type: StringConstructor;
739
+ };
716
740
  }>> & {
717
741
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
718
742
  }>>;
@@ -720,7 +744,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
720
744
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
721
745
  panelInstRef: import("vue").Ref<null>;
722
746
  placeholderRef: import("vue").Ref<any>;
723
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
747
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
724
748
  isDateTime: import("vue").ComputedRef<boolean>;
725
749
  formatRef: import("vue").ComputedRef<string>;
726
750
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -729,7 +753,7 @@ declare const DateRangeInner: import("vue").DefineComponent<{
729
753
  handleConfirm: (target: HTMLInputElement) => void;
730
754
  onUpdateShow: (show: boolean) => void;
731
755
  onConfirm: (...args: any[]) => Promise<void>;
732
- isOtherValue: (value?: string) => boolean;
756
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
733
757
  NDatePicker: any;
734
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<{
735
759
  updateUnchangedValue: {
@@ -744,6 +768,9 @@ declare const DateRangeInner: import("vue").DefineComponent<{
744
768
  placeholder: {
745
769
  type: StringConstructor;
746
770
  };
771
+ allowedInvalidValue: {
772
+ type: StringConstructor;
773
+ };
747
774
  }>> & {
748
775
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
749
776
  }, {
@@ -940,6 +967,9 @@ declare const DateRangeOut: import("vue").DefineComponent<{
940
967
  placeholder: {
941
968
  type: StringConstructor;
942
969
  };
970
+ allowedInvalidValue: {
971
+ type: StringConstructor;
972
+ };
943
973
  }, {
944
974
  attrs: {
945
975
  [x: string]: unknown;
@@ -957,6 +987,9 @@ declare const DateRangeOut: import("vue").DefineComponent<{
957
987
  placeholder: {
958
988
  type: StringConstructor;
959
989
  };
990
+ allowedInvalidValue: {
991
+ type: StringConstructor;
992
+ };
960
993
  }>> & {
961
994
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
962
995
  }>>;
@@ -964,7 +997,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
964
997
  datePickerRef: import("vue").Ref<import("../../../../..").AnyObject | null>;
965
998
  panelInstRef: import("vue").Ref<null>;
966
999
  placeholderRef: import("vue").Ref<any>;
967
- currentFormattedValue: import("vue").WritableComputedRef<string | undefined>;
1000
+ currentFormattedValue: import("vue").WritableComputedRef<string | null | undefined>;
968
1001
  isDateTime: import("vue").ComputedRef<boolean>;
969
1002
  formatRef: import("vue").ComputedRef<string>;
970
1003
  panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
@@ -973,7 +1006,7 @@ declare const DateRangeOut: import("vue").DefineComponent<{
973
1006
  handleConfirm: (target: HTMLInputElement) => void;
974
1007
  onUpdateShow: (show: boolean) => void;
975
1008
  onConfirm: (...args: any[]) => Promise<void>;
976
- isOtherValue: (value?: string) => boolean;
1009
+ isAllowedInvalidValue: (value?: string) => boolean | "" | undefined;
977
1010
  NDatePicker: any;
978
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<{
979
1012
  updateUnchangedValue: {
@@ -988,6 +1021,9 @@ declare const DateRangeOut: import("vue").DefineComponent<{
988
1021
  placeholder: {
989
1022
  type: StringConstructor;
990
1023
  };
1024
+ allowedInvalidValue: {
1025
+ type: StringConstructor;
1026
+ };
991
1027
  }>> & {
992
1028
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
993
1029
  }, {