cnhis-design-vue 3.4.0-beta.17 → 3.4.0-beta.20
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/README.md +87 -87
- package/es/components/button-print/src/utils/print.js +1 -0
- package/es/components/classification/index.d.ts +39 -0
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +39 -0
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +39 -0
- package/es/components/classification/src/index.vue.d.ts +39 -0
- package/es/components/date-picker/index.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue2.js +8 -3
- package/es/components/field-set/src/FieldColor.vue.d.ts +26 -0
- package/es/components/field-set/src/components/condition.vue.d.ts +13 -0
- package/es/components/field-set/src/components/edit-dialog.vue.d.ts +26 -0
- package/es/components/field-set/src/components/edit-filter.vue.d.ts +13 -0
- package/es/components/iho-chat/index.d.ts +26 -0
- package/es/components/iho-chat/src/Index.vue.d.ts +26 -0
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +13 -0
- package/es/components/iho-table/src/IhoTable.vue2.js +16 -12
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +13 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +13 -0
- package/es/components/table-export-field/index.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue2.js +66 -20
- package/es/components/table-export-field/src/index.vue.d.ts +3 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +52 -0
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +52 -0
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/ho-edge.d.ts +12 -0
- package/es/shared/utils/ho-edge.js +58 -0
- package/package.json +2 -2
@@ -98,6 +98,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
98
98
|
type: StringConstructor;
|
99
99
|
default: string;
|
100
100
|
};
|
101
|
+
updateValueOnClose: {
|
102
|
+
type: BooleanConstructor;
|
103
|
+
default: boolean;
|
104
|
+
};
|
101
105
|
isDateDisabled: {
|
102
106
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
103
107
|
};
|
@@ -133,6 +137,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
133
137
|
type: StringConstructor;
|
134
138
|
default: string;
|
135
139
|
};
|
140
|
+
updateValueOnClose: {
|
141
|
+
type: BooleanConstructor;
|
142
|
+
default: boolean;
|
143
|
+
};
|
136
144
|
isDateDisabled: {
|
137
145
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
138
146
|
};
|
@@ -188,6 +196,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
188
196
|
type: StringConstructor;
|
189
197
|
default: string;
|
190
198
|
};
|
199
|
+
updateValueOnClose: {
|
200
|
+
type: BooleanConstructor;
|
201
|
+
default: boolean;
|
202
|
+
};
|
191
203
|
isDateDisabled: {
|
192
204
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
193
205
|
};
|
@@ -198,6 +210,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
198
210
|
updateUnchangedValue: boolean;
|
199
211
|
to: string | false | HTMLElement;
|
200
212
|
holidays: Date[];
|
213
|
+
updateValueOnClose: boolean;
|
201
214
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
202
215
|
readonly NSelect: any;
|
203
216
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts
CHANGED
@@ -113,6 +113,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
113
113
|
type: StringConstructor;
|
114
114
|
default: string;
|
115
115
|
};
|
116
|
+
updateValueOnClose: {
|
117
|
+
type: BooleanConstructor;
|
118
|
+
default: boolean;
|
119
|
+
};
|
116
120
|
isDateDisabled: {
|
117
121
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
118
122
|
};
|
@@ -148,6 +152,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
148
152
|
type: StringConstructor;
|
149
153
|
default: string;
|
150
154
|
};
|
155
|
+
updateValueOnClose: {
|
156
|
+
type: BooleanConstructor;
|
157
|
+
default: boolean;
|
158
|
+
};
|
151
159
|
isDateDisabled: {
|
152
160
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
153
161
|
};
|
@@ -203,6 +211,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
203
211
|
type: StringConstructor;
|
204
212
|
default: string;
|
205
213
|
};
|
214
|
+
updateValueOnClose: {
|
215
|
+
type: BooleanConstructor;
|
216
|
+
default: boolean;
|
217
|
+
};
|
206
218
|
isDateDisabled: {
|
207
219
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
208
220
|
};
|
@@ -213,6 +225,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
213
225
|
updateUnchangedValue: boolean;
|
214
226
|
to: string | false | HTMLElement;
|
215
227
|
holidays: Date[];
|
228
|
+
updateValueOnClose: boolean;
|
216
229
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
217
230
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
218
231
|
filterType: {
|
@@ -98,6 +98,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
98
98
|
type: StringConstructor;
|
99
99
|
default: string;
|
100
100
|
};
|
101
|
+
updateValueOnClose: {
|
102
|
+
type: BooleanConstructor;
|
103
|
+
default: boolean;
|
104
|
+
};
|
101
105
|
isDateDisabled: {
|
102
106
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
103
107
|
};
|
@@ -133,6 +137,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
133
137
|
type: StringConstructor;
|
134
138
|
default: string;
|
135
139
|
};
|
140
|
+
updateValueOnClose: {
|
141
|
+
type: BooleanConstructor;
|
142
|
+
default: boolean;
|
143
|
+
};
|
136
144
|
isDateDisabled: {
|
137
145
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
138
146
|
};
|
@@ -188,6 +196,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
188
196
|
type: StringConstructor;
|
189
197
|
default: string;
|
190
198
|
};
|
199
|
+
updateValueOnClose: {
|
200
|
+
type: BooleanConstructor;
|
201
|
+
default: boolean;
|
202
|
+
};
|
191
203
|
isDateDisabled: {
|
192
204
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
193
205
|
};
|
@@ -198,6 +210,7 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
198
210
|
updateUnchangedValue: boolean;
|
199
211
|
to: string | false | HTMLElement;
|
200
212
|
holidays: Date[];
|
213
|
+
updateValueOnClose: boolean;
|
201
214
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
202
215
|
readonly NSelect: any;
|
203
216
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -938,6 +951,10 @@ declare const DateRange: import("vue").DefineComponent<import("vue").ExtractProp
|
|
938
951
|
type: StringConstructor;
|
939
952
|
default: string;
|
940
953
|
};
|
954
|
+
updateValueOnClose: {
|
955
|
+
type: BooleanConstructor;
|
956
|
+
default: boolean;
|
957
|
+
};
|
941
958
|
isDateDisabled: {
|
942
959
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
943
960
|
};
|
@@ -973,6 +990,10 @@ declare const DateRange: import("vue").DefineComponent<import("vue").ExtractProp
|
|
973
990
|
type: StringConstructor;
|
974
991
|
default: string;
|
975
992
|
};
|
993
|
+
updateValueOnClose: {
|
994
|
+
type: BooleanConstructor;
|
995
|
+
default: boolean;
|
996
|
+
};
|
976
997
|
isDateDisabled: {
|
977
998
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
978
999
|
};
|
@@ -1028,6 +1049,10 @@ declare const DateRange: import("vue").DefineComponent<import("vue").ExtractProp
|
|
1028
1049
|
type: StringConstructor;
|
1029
1050
|
default: string;
|
1030
1051
|
};
|
1052
|
+
updateValueOnClose: {
|
1053
|
+
type: BooleanConstructor;
|
1054
|
+
default: boolean;
|
1055
|
+
};
|
1031
1056
|
isDateDisabled: {
|
1032
1057
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1033
1058
|
};
|
@@ -1038,6 +1063,7 @@ declare const DateRange: import("vue").DefineComponent<import("vue").ExtractProp
|
|
1038
1063
|
updateUnchangedValue: boolean;
|
1039
1064
|
to: string | false | HTMLElement;
|
1040
1065
|
holidays: Date[];
|
1066
|
+
updateValueOnClose: boolean;
|
1041
1067
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1042
1068
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
1043
1069
|
filterType: {
|
@@ -291,6 +291,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
291
291
|
type: StringConstructor;
|
292
292
|
default: string;
|
293
293
|
};
|
294
|
+
updateValueOnClose: {
|
295
|
+
type: BooleanConstructor;
|
296
|
+
default: boolean;
|
297
|
+
};
|
294
298
|
isDateDisabled: {
|
295
299
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
296
300
|
};
|
@@ -326,6 +330,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
326
330
|
type: StringConstructor;
|
327
331
|
default: string;
|
328
332
|
};
|
333
|
+
updateValueOnClose: {
|
334
|
+
type: BooleanConstructor;
|
335
|
+
default: boolean;
|
336
|
+
};
|
329
337
|
isDateDisabled: {
|
330
338
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
331
339
|
};
|
@@ -381,6 +389,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
381
389
|
type: StringConstructor;
|
382
390
|
default: string;
|
383
391
|
};
|
392
|
+
updateValueOnClose: {
|
393
|
+
type: BooleanConstructor;
|
394
|
+
default: boolean;
|
395
|
+
};
|
384
396
|
isDateDisabled: {
|
385
397
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
386
398
|
};
|
@@ -391,6 +403,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
391
403
|
updateUnchangedValue: boolean;
|
392
404
|
to: string | false | HTMLElement;
|
393
405
|
holidays: Date[];
|
406
|
+
updateValueOnClose: boolean;
|
394
407
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
395
408
|
readonly NSelect: any;
|
396
409
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -1131,6 +1144,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1131
1144
|
type: StringConstructor;
|
1132
1145
|
default: string;
|
1133
1146
|
};
|
1147
|
+
updateValueOnClose: {
|
1148
|
+
type: BooleanConstructor;
|
1149
|
+
default: boolean;
|
1150
|
+
};
|
1134
1151
|
isDateDisabled: {
|
1135
1152
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1136
1153
|
};
|
@@ -1166,6 +1183,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1166
1183
|
type: StringConstructor;
|
1167
1184
|
default: string;
|
1168
1185
|
};
|
1186
|
+
updateValueOnClose: {
|
1187
|
+
type: BooleanConstructor;
|
1188
|
+
default: boolean;
|
1189
|
+
};
|
1169
1190
|
isDateDisabled: {
|
1170
1191
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1171
1192
|
};
|
@@ -1221,6 +1242,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1221
1242
|
type: StringConstructor;
|
1222
1243
|
default: string;
|
1223
1244
|
};
|
1245
|
+
updateValueOnClose: {
|
1246
|
+
type: BooleanConstructor;
|
1247
|
+
default: boolean;
|
1248
|
+
};
|
1224
1249
|
isDateDisabled: {
|
1225
1250
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1226
1251
|
};
|
@@ -1231,6 +1256,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1231
1256
|
updateUnchangedValue: boolean;
|
1232
1257
|
to: string | false | HTMLElement;
|
1233
1258
|
holidays: Date[];
|
1259
|
+
updateValueOnClose: boolean;
|
1234
1260
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1235
1261
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
1236
1262
|
filterType: {
|
package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts
CHANGED
@@ -111,6 +111,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
111
111
|
type: StringConstructor;
|
112
112
|
default: string;
|
113
113
|
};
|
114
|
+
updateValueOnClose: {
|
115
|
+
type: BooleanConstructor;
|
116
|
+
default: boolean;
|
117
|
+
};
|
114
118
|
isDateDisabled: {
|
115
119
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
116
120
|
};
|
@@ -146,6 +150,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
146
150
|
type: StringConstructor;
|
147
151
|
default: string;
|
148
152
|
};
|
153
|
+
updateValueOnClose: {
|
154
|
+
type: BooleanConstructor;
|
155
|
+
default: boolean;
|
156
|
+
};
|
149
157
|
isDateDisabled: {
|
150
158
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
151
159
|
};
|
@@ -201,6 +209,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
201
209
|
type: StringConstructor;
|
202
210
|
default: string;
|
203
211
|
};
|
212
|
+
updateValueOnClose: {
|
213
|
+
type: BooleanConstructor;
|
214
|
+
default: boolean;
|
215
|
+
};
|
204
216
|
isDateDisabled: {
|
205
217
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
206
218
|
};
|
@@ -211,6 +223,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
211
223
|
updateUnchangedValue: boolean;
|
212
224
|
to: string | false | HTMLElement;
|
213
225
|
holidays: Date[];
|
226
|
+
updateValueOnClose: boolean;
|
214
227
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
215
228
|
DateQuickBtn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
216
229
|
componentCfg: {
|
@@ -94,6 +94,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
94
94
|
type: StringConstructor;
|
95
95
|
default: string;
|
96
96
|
};
|
97
|
+
updateValueOnClose: {
|
98
|
+
type: BooleanConstructor;
|
99
|
+
default: boolean;
|
100
|
+
};
|
97
101
|
isDateDisabled: {
|
98
102
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
99
103
|
};
|
@@ -129,6 +133,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
129
133
|
type: StringConstructor;
|
130
134
|
default: string;
|
131
135
|
};
|
136
|
+
updateValueOnClose: {
|
137
|
+
type: BooleanConstructor;
|
138
|
+
default: boolean;
|
139
|
+
};
|
132
140
|
isDateDisabled: {
|
133
141
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
134
142
|
};
|
@@ -184,6 +192,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
184
192
|
type: StringConstructor;
|
185
193
|
default: string;
|
186
194
|
};
|
195
|
+
updateValueOnClose: {
|
196
|
+
type: BooleanConstructor;
|
197
|
+
default: boolean;
|
198
|
+
};
|
187
199
|
isDateDisabled: {
|
188
200
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
189
201
|
};
|
@@ -194,6 +206,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
194
206
|
updateUnchangedValue: boolean;
|
195
207
|
to: string | false | HTMLElement;
|
196
208
|
holidays: Date[];
|
209
|
+
updateValueOnClose: boolean;
|
197
210
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
198
211
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
199
212
|
componentCfg: {
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts
CHANGED
@@ -129,6 +129,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
129
129
|
type: StringConstructor;
|
130
130
|
default: string;
|
131
131
|
};
|
132
|
+
updateValueOnClose: {
|
133
|
+
type: BooleanConstructor;
|
134
|
+
default: boolean;
|
135
|
+
};
|
132
136
|
isDateDisabled: {
|
133
137
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
134
138
|
};
|
@@ -164,6 +168,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
164
168
|
type: StringConstructor;
|
165
169
|
default: string;
|
166
170
|
};
|
171
|
+
updateValueOnClose: {
|
172
|
+
type: BooleanConstructor;
|
173
|
+
default: boolean;
|
174
|
+
};
|
167
175
|
isDateDisabled: {
|
168
176
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
169
177
|
};
|
@@ -219,6 +227,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
219
227
|
type: StringConstructor;
|
220
228
|
default: string;
|
221
229
|
};
|
230
|
+
updateValueOnClose: {
|
231
|
+
type: BooleanConstructor;
|
232
|
+
default: boolean;
|
233
|
+
};
|
222
234
|
isDateDisabled: {
|
223
235
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
224
236
|
};
|
@@ -229,6 +241,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
229
241
|
updateUnchangedValue: boolean;
|
230
242
|
to: string | false | HTMLElement;
|
231
243
|
holidays: Date[];
|
244
|
+
updateValueOnClose: boolean;
|
232
245
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
233
246
|
DateQuickBtn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
234
247
|
componentCfg: {
|
package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts
CHANGED
@@ -96,6 +96,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
96
96
|
type: StringConstructor;
|
97
97
|
default: string;
|
98
98
|
};
|
99
|
+
updateValueOnClose: {
|
100
|
+
type: BooleanConstructor;
|
101
|
+
default: boolean;
|
102
|
+
};
|
99
103
|
isDateDisabled: {
|
100
104
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
101
105
|
};
|
@@ -131,6 +135,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
131
135
|
type: StringConstructor;
|
132
136
|
default: string;
|
133
137
|
};
|
138
|
+
updateValueOnClose: {
|
139
|
+
type: BooleanConstructor;
|
140
|
+
default: boolean;
|
141
|
+
};
|
134
142
|
isDateDisabled: {
|
135
143
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
136
144
|
};
|
@@ -186,6 +194,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
186
194
|
type: StringConstructor;
|
187
195
|
default: string;
|
188
196
|
};
|
197
|
+
updateValueOnClose: {
|
198
|
+
type: BooleanConstructor;
|
199
|
+
default: boolean;
|
200
|
+
};
|
189
201
|
isDateDisabled: {
|
190
202
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
191
203
|
};
|
@@ -196,6 +208,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
196
208
|
updateUnchangedValue: boolean;
|
197
209
|
to: string | false | HTMLElement;
|
198
210
|
holidays: Date[];
|
211
|
+
updateValueOnClose: boolean;
|
199
212
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
200
213
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
201
214
|
type: {
|
@@ -216,6 +216,10 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
|
|
216
216
|
type: StringConstructor;
|
217
217
|
default: string;
|
218
218
|
};
|
219
|
+
updateValueOnClose: {
|
220
|
+
type: BooleanConstructor;
|
221
|
+
default: boolean;
|
222
|
+
};
|
219
223
|
isDateDisabled: {
|
220
224
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
221
225
|
};
|
@@ -251,6 +255,10 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
|
|
251
255
|
type: StringConstructor;
|
252
256
|
default: string;
|
253
257
|
};
|
258
|
+
updateValueOnClose: {
|
259
|
+
type: BooleanConstructor;
|
260
|
+
default: boolean;
|
261
|
+
};
|
254
262
|
isDateDisabled: {
|
255
263
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
256
264
|
};
|
@@ -306,6 +314,10 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
|
|
306
314
|
type: StringConstructor;
|
307
315
|
default: string;
|
308
316
|
};
|
317
|
+
updateValueOnClose: {
|
318
|
+
type: BooleanConstructor;
|
319
|
+
default: boolean;
|
320
|
+
};
|
309
321
|
isDateDisabled: {
|
310
322
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
311
323
|
};
|
@@ -316,6 +328,7 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
|
|
316
328
|
updateUnchangedValue: boolean;
|
317
329
|
to: string | false | HTMLElement;
|
318
330
|
holidays: Date[];
|
331
|
+
updateValueOnClose: boolean;
|
319
332
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
320
333
|
DateQuickBtn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
321
334
|
componentCfg: {
|
@@ -516,6 +529,10 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
|
|
516
529
|
type: StringConstructor;
|
517
530
|
default: string;
|
518
531
|
};
|
532
|
+
updateValueOnClose: {
|
533
|
+
type: BooleanConstructor;
|
534
|
+
default: boolean;
|
535
|
+
};
|
519
536
|
isDateDisabled: {
|
520
537
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
521
538
|
};
|
@@ -551,6 +568,10 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
|
|
551
568
|
type: StringConstructor;
|
552
569
|
default: string;
|
553
570
|
};
|
571
|
+
updateValueOnClose: {
|
572
|
+
type: BooleanConstructor;
|
573
|
+
default: boolean;
|
574
|
+
};
|
554
575
|
isDateDisabled: {
|
555
576
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
556
577
|
};
|
@@ -606,6 +627,10 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
|
|
606
627
|
type: StringConstructor;
|
607
628
|
default: string;
|
608
629
|
};
|
630
|
+
updateValueOnClose: {
|
631
|
+
type: BooleanConstructor;
|
632
|
+
default: boolean;
|
633
|
+
};
|
609
634
|
isDateDisabled: {
|
610
635
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
611
636
|
};
|
@@ -616,6 +641,7 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
|
|
616
641
|
updateUnchangedValue: boolean;
|
617
642
|
to: string | false | HTMLElement;
|
618
643
|
holidays: Date[];
|
644
|
+
updateValueOnClose: boolean;
|
619
645
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
620
646
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
621
647
|
componentCfg: {
|
@@ -778,6 +804,10 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
|
|
778
804
|
type: StringConstructor;
|
779
805
|
default: string;
|
780
806
|
};
|
807
|
+
updateValueOnClose: {
|
808
|
+
type: BooleanConstructor;
|
809
|
+
default: boolean;
|
810
|
+
};
|
781
811
|
isDateDisabled: {
|
782
812
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
783
813
|
};
|
@@ -813,6 +843,10 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
|
|
813
843
|
type: StringConstructor;
|
814
844
|
default: string;
|
815
845
|
};
|
846
|
+
updateValueOnClose: {
|
847
|
+
type: BooleanConstructor;
|
848
|
+
default: boolean;
|
849
|
+
};
|
816
850
|
isDateDisabled: {
|
817
851
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
818
852
|
};
|
@@ -868,6 +902,10 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
|
|
868
902
|
type: StringConstructor;
|
869
903
|
default: string;
|
870
904
|
};
|
905
|
+
updateValueOnClose: {
|
906
|
+
type: BooleanConstructor;
|
907
|
+
default: boolean;
|
908
|
+
};
|
871
909
|
isDateDisabled: {
|
872
910
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
873
911
|
};
|
@@ -878,6 +916,7 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
|
|
878
916
|
updateUnchangedValue: boolean;
|
879
917
|
to: string | false | HTMLElement;
|
880
918
|
holidays: Date[];
|
919
|
+
updateValueOnClose: boolean;
|
881
920
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
882
921
|
DateQuickBtn: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
883
922
|
componentCfg: {
|
@@ -1085,6 +1124,10 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
|
|
1085
1124
|
type: StringConstructor;
|
1086
1125
|
default: string;
|
1087
1126
|
};
|
1127
|
+
updateValueOnClose: {
|
1128
|
+
type: BooleanConstructor;
|
1129
|
+
default: boolean;
|
1130
|
+
};
|
1088
1131
|
isDateDisabled: {
|
1089
1132
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1090
1133
|
};
|
@@ -1120,6 +1163,10 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
|
|
1120
1163
|
type: StringConstructor;
|
1121
1164
|
default: string;
|
1122
1165
|
};
|
1166
|
+
updateValueOnClose: {
|
1167
|
+
type: BooleanConstructor;
|
1168
|
+
default: boolean;
|
1169
|
+
};
|
1123
1170
|
isDateDisabled: {
|
1124
1171
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1125
1172
|
};
|
@@ -1175,6 +1222,10 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
|
|
1175
1222
|
type: StringConstructor;
|
1176
1223
|
default: string;
|
1177
1224
|
};
|
1225
|
+
updateValueOnClose: {
|
1226
|
+
type: BooleanConstructor;
|
1227
|
+
default: boolean;
|
1228
|
+
};
|
1178
1229
|
isDateDisabled: {
|
1179
1230
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1180
1231
|
};
|
@@ -1185,6 +1236,7 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
|
|
1185
1236
|
updateUnchangedValue: boolean;
|
1186
1237
|
to: string | false | HTMLElement;
|
1187
1238
|
holidays: Date[];
|
1239
|
+
updateValueOnClose: boolean;
|
1188
1240
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1189
1241
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
1190
1242
|
type: {
|