cnhis-design-vue 3.4.0-beta.45 → 3.4.0-beta.49

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 (52) hide show
  1. package/README.md +87 -87
  2. package/es/components/base-search/index.d.ts +34 -0
  3. package/es/components/base-search/src/index.vue.d.ts +34 -0
  4. package/es/components/base-search/src/index.vue2.js +9 -1
  5. package/es/components/classification/index.d.ts +84 -0
  6. package/es/components/classification/src/components/search-filter/index.vue.d.ts +84 -0
  7. package/es/components/classification/src/components/set-classification/index.vue.d.ts +84 -0
  8. package/es/components/classification/src/index.vue.d.ts +84 -0
  9. package/es/components/date-picker/index.d.ts +28 -0
  10. package/es/components/date-picker/src/DatePicker.vue.d.ts +28 -0
  11. package/es/components/date-picker/src/DatePicker.vue2.js +26 -1
  12. package/es/components/field-set/src/FieldColor.vue.d.ts +57 -1
  13. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  14. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  15. package/es/components/field-set/src/components/condition.vue.d.ts +28 -0
  16. package/es/components/field-set/src/components/edit-dialog.vue.d.ts +56 -0
  17. package/es/components/field-set/src/components/edit-filter.vue.d.ts +28 -0
  18. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  19. package/es/components/iho-chat/index.d.ts +56 -0
  20. package/es/components/iho-chat/src/Index.vue.d.ts +56 -0
  21. package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +28 -0
  22. package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
  23. package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +28 -0
  24. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  25. package/es/components/iho-chat/src/components/SiderList.vue.d.ts +28 -0
  26. package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +28 -0
  27. package/es/components/iho-table/src/plugins/highLightSetPlugin.js +7 -2
  28. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +28 -0
  29. package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +28 -0
  30. package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +28 -0
  31. package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +28 -0
  32. package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +28 -0
  33. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +56 -0
  34. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +28 -0
  35. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +28 -0
  36. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +56 -0
  37. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +56 -0
  38. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +28 -0
  39. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +30 -0
  40. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue2.js +10 -2
  41. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +28 -0
  42. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +30 -0
  43. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue2.js +10 -2
  44. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +116 -0
  45. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +116 -0
  46. package/es/components/table-filter/src/constants/index.d.ts +1 -0
  47. package/es/components/table-filter/src/constants/index.js +4 -1
  48. package/es/env.d.ts +25 -25
  49. package/es/shared/components/InputNumberSlash/InputNumberSlash.d.ts +15 -0
  50. package/es/shared/components/InputNumberSlash/InputNumberSlash.js +24 -10
  51. package/es/shared/package.json.js +1 -1
  52. package/package.json +2 -2
@@ -60,6 +60,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
60
60
  isDateDisabled: {
61
61
  type: PropType<(current: number, ...arg: any[]) => boolean>;
62
62
  };
63
+ propKey: {
64
+ type: StringConstructor;
65
+ };
66
+ shortcutListenerConfig: {
67
+ type: PropType<{
68
+ enable: boolean;
69
+ callback: (value: string, propKey?: string | undefined) => void;
70
+ }>;
71
+ };
63
72
  }>, {
64
73
  attrs: {
65
74
  [x: string]: unknown;
@@ -99,6 +108,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
99
108
  isDateDisabled: {
100
109
  type: PropType<(current: number, ...arg: any[]) => boolean>;
101
110
  };
111
+ propKey: {
112
+ type: StringConstructor;
113
+ };
114
+ shortcutListenerConfig: {
115
+ type: PropType<{
116
+ enable: boolean;
117
+ callback: (value: string, propKey?: string | undefined) => void;
118
+ }>;
119
+ };
102
120
  }>> & Readonly<{
103
121
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
104
122
  }> & {}>;
@@ -115,6 +133,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
115
133
  focus: () => any;
116
134
  blur: () => any;
117
135
  handleConfirm: (target: HTMLInputElement) => void;
136
+ handleShortcutClick: (event: MouseEvent) => void;
118
137
  onUpdateShow: (show: boolean) => Promise<void>;
119
138
  watchers: import("../../../../../shared/types").AnyFn[];
120
139
  stopWatcher: () => void;
@@ -158,6 +177,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
158
177
  isDateDisabled: {
159
178
  type: PropType<(current: number, ...arg: any[]) => boolean>;
160
179
  };
180
+ propKey: {
181
+ type: StringConstructor;
182
+ };
183
+ shortcutListenerConfig: {
184
+ type: PropType<{
185
+ enable: boolean;
186
+ callback: (value: string, propKey?: string | undefined) => void;
187
+ }>;
188
+ };
161
189
  }>> & Readonly<{
162
190
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
163
191
  }>, {
@@ -15,16 +15,21 @@ function highLightSetPlugin() {
15
15
  name: pluginName,
16
16
  apply(hooks) {
17
17
  hooks.dataHooks.data.tapPromise(pluginName, async (row, config) => {
18
- var _a, _b;
18
+ var _a, _b, _c, _d;
19
19
  if (!config.uuid || getItemFromUUID(config.uuid))
20
20
  return;
21
21
  let hasColor = false;
22
+ const isLazyTree = isFunction((_a = config.treeConfig) == null ? void 0 : _a.loadMethod) && ((_b = config.treeConfig) == null ? void 0 : _b.lazy);
23
+ if (isLazyTree) {
24
+ setItemFromUUID(config.uuid, true);
25
+ return;
26
+ }
22
27
  traverse(row, (item, stop) => {
23
28
  if (!item.rowColor && !item.fontColor)
24
29
  return;
25
30
  hasColor = true;
26
31
  stop();
27
- }, ["childrenList", (_b = (_a = config.treeConfig) == null ? void 0 : _a.children) != null ? _b : "children"]);
32
+ }, ["childrenList", (_d = (_c = config.treeConfig) == null ? void 0 : _c.children) != null ? _d : "children"]);
28
33
  hasColor && setItemFromUUID(config.uuid, true);
29
34
  });
30
35
  hooks.dataHooks.dataEnd.tap(pluginName, (_, config) => {
@@ -147,6 +147,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
147
147
  isDateDisabled: {
148
148
  type: PropType<(current: number, ...arg: any[]) => boolean>;
149
149
  };
150
+ propKey: {
151
+ type: StringConstructor;
152
+ };
153
+ shortcutListenerConfig: {
154
+ type: PropType<{
155
+ enable: boolean;
156
+ callback: (value: string, propKey?: string | undefined) => void;
157
+ }>;
158
+ };
150
159
  }>, {
151
160
  attrs: {
152
161
  [x: string]: unknown;
@@ -186,6 +195,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
186
195
  isDateDisabled: {
187
196
  type: PropType<(current: number, ...arg: any[]) => boolean>;
188
197
  };
198
+ propKey: {
199
+ type: StringConstructor;
200
+ };
201
+ shortcutListenerConfig: {
202
+ type: PropType<{
203
+ enable: boolean;
204
+ callback: (value: string, propKey?: string | undefined) => void;
205
+ }>;
206
+ };
189
207
  }>> & Readonly<{
190
208
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
191
209
  }> & {}>;
@@ -202,6 +220,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
202
220
  focus: () => any;
203
221
  blur: () => any;
204
222
  handleConfirm: (target: HTMLInputElement) => void;
223
+ handleShortcutClick: (event: MouseEvent) => void;
205
224
  onUpdateShow: (show: boolean) => Promise<void>;
206
225
  watchers: AnyFn[];
207
226
  stopWatcher: () => void;
@@ -245,6 +264,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
245
264
  isDateDisabled: {
246
265
  type: PropType<(current: number, ...arg: any[]) => boolean>;
247
266
  };
267
+ propKey: {
268
+ type: StringConstructor;
269
+ };
270
+ shortcutListenerConfig: {
271
+ type: PropType<{
272
+ enable: boolean;
273
+ callback: (value: string, propKey?: string | undefined) => void;
274
+ }>;
275
+ };
248
276
  }>> & Readonly<{
249
277
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
250
278
  }>, {
@@ -103,6 +103,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
103
103
  isDateDisabled: {
104
104
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
105
105
  };
106
+ propKey: {
107
+ type: StringConstructor;
108
+ };
109
+ shortcutListenerConfig: {
110
+ type: import("vue").PropType<{
111
+ enable: boolean;
112
+ callback: (value: string, propKey?: string | undefined) => void;
113
+ }>;
114
+ };
106
115
  }>, {
107
116
  attrs: {
108
117
  [x: string]: unknown;
@@ -142,6 +151,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
142
151
  isDateDisabled: {
143
152
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
144
153
  };
154
+ propKey: {
155
+ type: StringConstructor;
156
+ };
157
+ shortcutListenerConfig: {
158
+ type: import("vue").PropType<{
159
+ enable: boolean;
160
+ callback: (value: string, propKey?: string | undefined) => void;
161
+ }>;
162
+ };
145
163
  }>> & Readonly<{
146
164
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
147
165
  }> & {}>;
@@ -158,6 +176,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
158
176
  focus: () => any;
159
177
  blur: () => any;
160
178
  handleConfirm: (target: HTMLInputElement) => void;
179
+ handleShortcutClick: (event: MouseEvent) => void;
161
180
  onUpdateShow: (show: boolean) => Promise<void>;
162
181
  watchers: import("../../../../../shared/types").AnyFn[];
163
182
  stopWatcher: () => void;
@@ -201,6 +220,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
201
220
  isDateDisabled: {
202
221
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
203
222
  };
223
+ propKey: {
224
+ type: StringConstructor;
225
+ };
226
+ shortcutListenerConfig: {
227
+ type: import("vue").PropType<{
228
+ enable: boolean;
229
+ callback: (value: string, propKey?: string | undefined) => void;
230
+ }>;
231
+ };
204
232
  }>> & Readonly<{
205
233
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
206
234
  }>, {
@@ -66,6 +66,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
66
66
  isDateDisabled: {
67
67
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
68
68
  };
69
+ propKey: {
70
+ type: StringConstructor;
71
+ };
72
+ shortcutListenerConfig: {
73
+ type: import("vue").PropType<{
74
+ enable: boolean;
75
+ callback: (value: string, propKey?: string | undefined) => void;
76
+ }>;
77
+ };
69
78
  }>, {
70
79
  attrs: {
71
80
  [x: string]: unknown;
@@ -105,6 +114,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
105
114
  isDateDisabled: {
106
115
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
107
116
  };
117
+ propKey: {
118
+ type: StringConstructor;
119
+ };
120
+ shortcutListenerConfig: {
121
+ type: import("vue").PropType<{
122
+ enable: boolean;
123
+ callback: (value: string, propKey?: string | undefined) => void;
124
+ }>;
125
+ };
108
126
  }>> & Readonly<{
109
127
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
110
128
  }> & {}>;
@@ -121,6 +139,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
121
139
  focus: () => any;
122
140
  blur: () => any;
123
141
  handleConfirm: (target: HTMLInputElement) => void;
142
+ handleShortcutClick: (event: MouseEvent) => void;
124
143
  onUpdateShow: (show: boolean) => Promise<void>;
125
144
  watchers: import("../../../../../../shared/types").AnyFn[];
126
145
  stopWatcher: () => void;
@@ -164,6 +183,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
164
183
  isDateDisabled: {
165
184
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
166
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
189
+ shortcutListenerConfig: {
190
+ type: import("vue").PropType<{
191
+ enable: boolean;
192
+ callback: (value: string, propKey?: string | undefined) => void;
193
+ }>;
194
+ };
167
195
  }>> & Readonly<{
168
196
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
169
197
  }>, {
@@ -66,6 +66,15 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
66
66
  isDateDisabled: {
67
67
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
68
68
  };
69
+ propKey: {
70
+ type: StringConstructor;
71
+ };
72
+ shortcutListenerConfig: {
73
+ type: import("vue").PropType<{
74
+ enable: boolean;
75
+ callback: (value: string, propKey?: string | undefined) => void;
76
+ }>;
77
+ };
69
78
  }>, {
70
79
  attrs: {
71
80
  [x: string]: unknown;
@@ -105,6 +114,15 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
105
114
  isDateDisabled: {
106
115
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
107
116
  };
117
+ propKey: {
118
+ type: StringConstructor;
119
+ };
120
+ shortcutListenerConfig: {
121
+ type: import("vue").PropType<{
122
+ enable: boolean;
123
+ callback: (value: string, propKey?: string | undefined) => void;
124
+ }>;
125
+ };
108
126
  }>> & Readonly<{
109
127
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
110
128
  }> & {}>;
@@ -121,6 +139,7 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
121
139
  focus: () => any;
122
140
  blur: () => any;
123
141
  handleConfirm: (target: HTMLInputElement) => void;
142
+ handleShortcutClick: (event: MouseEvent) => void;
124
143
  onUpdateShow: (show: boolean) => Promise<void>;
125
144
  watchers: import("../../../../../../shared/types").AnyFn[];
126
145
  stopWatcher: () => void;
@@ -164,6 +183,15 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
164
183
  isDateDisabled: {
165
184
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
166
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
189
+ shortcutListenerConfig: {
190
+ type: import("vue").PropType<{
191
+ enable: boolean;
192
+ callback: (value: string, propKey?: string | undefined) => void;
193
+ }>;
194
+ };
167
195
  }>> & Readonly<{
168
196
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
169
197
  }>, {
@@ -221,6 +221,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
221
221
  isDateDisabled: {
222
222
  type: PropType<(current: number, ...arg: any[]) => boolean>;
223
223
  };
224
+ propKey: {
225
+ type: StringConstructor;
226
+ };
227
+ shortcutListenerConfig: {
228
+ type: PropType<{
229
+ enable: boolean;
230
+ callback: (value: string, propKey?: string | undefined) => void;
231
+ }>;
232
+ };
224
233
  }>, {
225
234
  attrs: {
226
235
  [x: string]: unknown;
@@ -260,6 +269,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
260
269
  isDateDisabled: {
261
270
  type: PropType<(current: number, ...arg: any[]) => boolean>;
262
271
  };
272
+ propKey: {
273
+ type: StringConstructor;
274
+ };
275
+ shortcutListenerConfig: {
276
+ type: PropType<{
277
+ enable: boolean;
278
+ callback: (value: string, propKey?: string | undefined) => void;
279
+ }>;
280
+ };
263
281
  }>> & Readonly<{
264
282
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
265
283
  }> & {}>;
@@ -276,6 +294,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
276
294
  focus: () => any;
277
295
  blur: () => any;
278
296
  handleConfirm: (target: HTMLInputElement) => void;
297
+ handleShortcutClick: (event: MouseEvent) => void;
279
298
  onUpdateShow: (show: boolean) => Promise<void>;
280
299
  watchers: import("../../../../../shared/types").AnyFn[];
281
300
  stopWatcher: () => void;
@@ -319,6 +338,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
319
338
  isDateDisabled: {
320
339
  type: PropType<(current: number, ...arg: any[]) => boolean>;
321
340
  };
341
+ propKey: {
342
+ type: StringConstructor;
343
+ };
344
+ shortcutListenerConfig: {
345
+ type: PropType<{
346
+ enable: boolean;
347
+ callback: (value: string, propKey?: string | undefined) => void;
348
+ }>;
349
+ };
322
350
  }>> & Readonly<{
323
351
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
324
352
  }>, {
@@ -166,6 +166,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
166
166
  isDateDisabled: {
167
167
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
168
168
  };
169
+ propKey: {
170
+ type: StringConstructor;
171
+ };
172
+ shortcutListenerConfig: {
173
+ type: import("vue").PropType<{
174
+ enable: boolean;
175
+ callback: (value: string, propKey?: string | undefined) => void;
176
+ }>;
177
+ };
169
178
  }>, {
170
179
  attrs: {
171
180
  [x: string]: unknown;
@@ -205,6 +214,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
205
214
  isDateDisabled: {
206
215
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
207
216
  };
217
+ propKey: {
218
+ type: StringConstructor;
219
+ };
220
+ shortcutListenerConfig: {
221
+ type: import("vue").PropType<{
222
+ enable: boolean;
223
+ callback: (value: string, propKey?: string | undefined) => void;
224
+ }>;
225
+ };
208
226
  }>> & Readonly<{
209
227
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
210
228
  }> & {}>;
@@ -221,6 +239,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
221
239
  focus: () => any;
222
240
  blur: () => any;
223
241
  handleConfirm: (target: HTMLInputElement) => void;
242
+ handleShortcutClick: (event: MouseEvent) => void;
224
243
  onUpdateShow: (show: boolean) => Promise<void>;
225
244
  watchers: import("../../../../../shared/types").AnyFn[];
226
245
  stopWatcher: () => void;
@@ -264,6 +283,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
264
283
  isDateDisabled: {
265
284
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
266
285
  };
286
+ propKey: {
287
+ type: StringConstructor;
288
+ };
289
+ shortcutListenerConfig: {
290
+ type: import("vue").PropType<{
291
+ enable: boolean;
292
+ callback: (value: string, propKey?: string | undefined) => void;
293
+ }>;
294
+ };
267
295
  }>> & Readonly<{
268
296
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
269
297
  }>, {
@@ -1019,6 +1047,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1019
1047
  isDateDisabled: {
1020
1048
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1021
1049
  };
1050
+ propKey: {
1051
+ type: StringConstructor;
1052
+ };
1053
+ shortcutListenerConfig: {
1054
+ type: import("vue").PropType<{
1055
+ enable: boolean;
1056
+ callback: (value: string, propKey?: string | undefined) => void;
1057
+ }>;
1058
+ };
1022
1059
  }>, {
1023
1060
  attrs: {
1024
1061
  [x: string]: unknown;
@@ -1058,6 +1095,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1058
1095
  isDateDisabled: {
1059
1096
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1060
1097
  };
1098
+ propKey: {
1099
+ type: StringConstructor;
1100
+ };
1101
+ shortcutListenerConfig: {
1102
+ type: import("vue").PropType<{
1103
+ enable: boolean;
1104
+ callback: (value: string, propKey?: string | undefined) => void;
1105
+ }>;
1106
+ };
1061
1107
  }>> & Readonly<{
1062
1108
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1063
1109
  }> & {}>;
@@ -1074,6 +1120,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1074
1120
  focus: () => any;
1075
1121
  blur: () => any;
1076
1122
  handleConfirm: (target: HTMLInputElement) => void;
1123
+ handleShortcutClick: (event: MouseEvent) => void;
1077
1124
  onUpdateShow: (show: boolean) => Promise<void>;
1078
1125
  watchers: import("../../../../../shared/types").AnyFn[];
1079
1126
  stopWatcher: () => void;
@@ -1117,6 +1164,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1117
1164
  isDateDisabled: {
1118
1165
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1119
1166
  };
1167
+ propKey: {
1168
+ type: StringConstructor;
1169
+ };
1170
+ shortcutListenerConfig: {
1171
+ type: import("vue").PropType<{
1172
+ enable: boolean;
1173
+ callback: (value: string, propKey?: string | undefined) => void;
1174
+ }>;
1175
+ };
1120
1176
  }>> & Readonly<{
1121
1177
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1122
1178
  }>, {
@@ -105,6 +105,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
105
105
  isDateDisabled: {
106
106
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
107
107
  };
108
+ propKey: {
109
+ type: StringConstructor;
110
+ };
111
+ shortcutListenerConfig: {
112
+ type: import("vue").PropType<{
113
+ enable: boolean;
114
+ callback: (value: string, propKey?: string | undefined) => void;
115
+ }>;
116
+ };
108
117
  }>, {
109
118
  attrs: {
110
119
  [x: string]: unknown;
@@ -144,6 +153,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
144
153
  isDateDisabled: {
145
154
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
146
155
  };
156
+ propKey: {
157
+ type: StringConstructor;
158
+ };
159
+ shortcutListenerConfig: {
160
+ type: import("vue").PropType<{
161
+ enable: boolean;
162
+ callback: (value: string, propKey?: string | undefined) => void;
163
+ }>;
164
+ };
147
165
  }>> & Readonly<{
148
166
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
149
167
  }> & {}>;
@@ -160,6 +178,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
160
178
  focus: () => any;
161
179
  blur: () => any;
162
180
  handleConfirm: (target: HTMLInputElement) => void;
181
+ handleShortcutClick: (event: MouseEvent) => void;
163
182
  onUpdateShow: (show: boolean) => Promise<void>;
164
183
  watchers: import("../../../../../../shared/types").AnyFn[];
165
184
  stopWatcher: () => void;
@@ -203,6 +222,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
203
222
  isDateDisabled: {
204
223
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
205
224
  };
225
+ propKey: {
226
+ type: StringConstructor;
227
+ };
228
+ shortcutListenerConfig: {
229
+ type: import("vue").PropType<{
230
+ enable: boolean;
231
+ callback: (value: string, propKey?: string | undefined) => void;
232
+ }>;
233
+ };
206
234
  }>> & Readonly<{
207
235
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
208
236
  }>, {
@@ -120,6 +120,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
120
120
  isDateDisabled: {
121
121
  type: PropType<(current: number, ...arg: any[]) => boolean>;
122
122
  };
123
+ propKey: {
124
+ type: StringConstructor;
125
+ };
126
+ shortcutListenerConfig: {
127
+ type: PropType<{
128
+ enable: boolean;
129
+ callback: (value: string, propKey?: string | undefined) => void;
130
+ }>;
131
+ };
123
132
  }>, {
124
133
  attrs: {
125
134
  [x: string]: unknown;
@@ -159,6 +168,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
159
168
  isDateDisabled: {
160
169
  type: PropType<(current: number, ...arg: any[]) => boolean>;
161
170
  };
171
+ propKey: {
172
+ type: StringConstructor;
173
+ };
174
+ shortcutListenerConfig: {
175
+ type: PropType<{
176
+ enable: boolean;
177
+ callback: (value: string, propKey?: string | undefined) => void;
178
+ }>;
179
+ };
162
180
  }>> & Readonly<{
163
181
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
164
182
  }> & {}>;
@@ -175,6 +193,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
175
193
  focus: () => any;
176
194
  blur: () => any;
177
195
  handleConfirm: (target: HTMLInputElement) => void;
196
+ handleShortcutClick: (event: MouseEvent) => void;
178
197
  onUpdateShow: (show: boolean) => Promise<void>;
179
198
  watchers: import("../../../../../../shared/types").AnyFn[];
180
199
  stopWatcher: () => void;
@@ -218,6 +237,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
218
237
  isDateDisabled: {
219
238
  type: PropType<(current: number, ...arg: any[]) => boolean>;
220
239
  };
240
+ propKey: {
241
+ type: StringConstructor;
242
+ };
243
+ shortcutListenerConfig: {
244
+ type: PropType<{
245
+ enable: boolean;
246
+ callback: (value: string, propKey?: string | undefined) => void;
247
+ }>;
248
+ };
221
249
  }>> & Readonly<{
222
250
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
223
251
  }>, {