cnhis-design-vue 3.4.0-beta.46 → 3.4.0-beta.50

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 (50) hide show
  1. package/es/components/base-search/index.d.ts +34 -0
  2. package/es/components/base-search/src/index.vue.d.ts +34 -0
  3. package/es/components/base-search/src/index.vue2.js +9 -1
  4. package/es/components/classification/index.d.ts +36 -9
  5. package/es/components/classification/src/components/search-filter/index.vue.d.ts +36 -9
  6. package/es/components/classification/src/components/set-classification/index.vue.d.ts +36 -9
  7. package/es/components/classification/src/index.vue.d.ts +36 -9
  8. package/es/components/date-picker/index.d.ts +12 -3
  9. package/es/components/date-picker/src/DatePicker.vue.d.ts +12 -3
  10. package/es/components/date-picker/src/DatePicker.vue2.js +4 -1
  11. package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogram.d.ts +1 -1
  12. package/es/components/fabric-chart/src/hooks/electrocardiogram/useElectrocardiogram.js +10 -9
  13. package/es/components/field-set/src/FieldColor.vue.d.ts +25 -7
  14. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  15. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  16. package/es/components/field-set/src/components/condition.vue.d.ts +12 -3
  17. package/es/components/field-set/src/components/edit-dialog.vue.d.ts +24 -6
  18. package/es/components/field-set/src/components/edit-filter.vue.d.ts +12 -3
  19. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  20. package/es/components/iho-chat/index.d.ts +24 -6
  21. package/es/components/iho-chat/src/Index.vue.d.ts +24 -6
  22. package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +12 -3
  23. package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +12 -3
  24. package/es/components/iho-chat/src/components/SiderList.vue.d.ts +12 -3
  25. package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +12 -3
  26. package/es/components/iho-table/src/plugins/highLightSetPlugin.js +7 -2
  27. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +12 -3
  28. package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +12 -3
  29. package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +12 -3
  30. package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +12 -3
  31. package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +12 -3
  32. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +24 -6
  33. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +12 -3
  34. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +12 -3
  35. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +24 -6
  36. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +24 -6
  37. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +12 -3
  38. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +14 -3
  39. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue2.js +10 -2
  40. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +12 -3
  41. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +14 -3
  42. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue2.js +10 -2
  43. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +52 -12
  44. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +52 -12
  45. package/es/components/table-filter/src/constants/index.d.ts +1 -0
  46. package/es/components/table-filter/src/constants/index.js +4 -1
  47. package/es/shared/components/InputNumberSlash/InputNumberSlash.d.ts +15 -0
  48. package/es/shared/components/InputNumberSlash/InputNumberSlash.js +24 -10
  49. package/es/shared/package.json.js +1 -1
  50. package/package.json +2 -2
@@ -449,10 +449,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
449
449
  isDateDisabled: {
450
450
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
451
451
  };
452
+ propKey: {
453
+ type: StringConstructor;
454
+ };
452
455
  shortcutListenerConfig: {
453
456
  type: import("vue").PropType<{
454
457
  enable: boolean;
455
- callback: (key: string) => void;
458
+ callback: (value: string, propKey?: string | undefined) => void;
456
459
  }>;
457
460
  };
458
461
  }>, {
@@ -494,10 +497,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
494
497
  isDateDisabled: {
495
498
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
496
499
  };
500
+ propKey: {
501
+ type: StringConstructor;
502
+ };
497
503
  shortcutListenerConfig: {
498
504
  type: import("vue").PropType<{
499
505
  enable: boolean;
500
- callback: (key: string) => void;
506
+ callback: (value: string, propKey?: string | undefined) => void;
501
507
  }>;
502
508
  };
503
509
  }>> & Readonly<{
@@ -560,10 +566,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
560
566
  isDateDisabled: {
561
567
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
562
568
  };
569
+ propKey: {
570
+ type: StringConstructor;
571
+ };
563
572
  shortcutListenerConfig: {
564
573
  type: import("vue").PropType<{
565
574
  enable: boolean;
566
- callback: (key: string) => void;
575
+ callback: (value: string, propKey?: string | undefined) => void;
567
576
  }>;
568
577
  };
569
578
  }>> & Readonly<{
@@ -1666,10 +1675,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1666
1675
  isDateDisabled: {
1667
1676
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1668
1677
  };
1678
+ propKey: {
1679
+ type: StringConstructor;
1680
+ };
1669
1681
  shortcutListenerConfig: {
1670
1682
  type: import("vue").PropType<{
1671
1683
  enable: boolean;
1672
- callback: (key: string) => void;
1684
+ callback: (value: string, propKey?: string | undefined) => void;
1673
1685
  }>;
1674
1686
  };
1675
1687
  }>, {
@@ -1711,10 +1723,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1711
1723
  isDateDisabled: {
1712
1724
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1713
1725
  };
1726
+ propKey: {
1727
+ type: StringConstructor;
1728
+ };
1714
1729
  shortcutListenerConfig: {
1715
1730
  type: import("vue").PropType<{
1716
1731
  enable: boolean;
1717
- callback: (key: string) => void;
1732
+ callback: (value: string, propKey?: string | undefined) => void;
1718
1733
  }>;
1719
1734
  };
1720
1735
  }>> & Readonly<{
@@ -1777,10 +1792,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1777
1792
  isDateDisabled: {
1778
1793
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1779
1794
  };
1795
+ propKey: {
1796
+ type: StringConstructor;
1797
+ };
1780
1798
  shortcutListenerConfig: {
1781
1799
  type: import("vue").PropType<{
1782
1800
  enable: boolean;
1783
- callback: (key: string) => void;
1801
+ callback: (value: string, propKey?: string | undefined) => void;
1784
1802
  }>;
1785
1803
  };
1786
1804
  }>> & Readonly<{
@@ -450,10 +450,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
450
450
  isDateDisabled: {
451
451
  type: PropType<(current: number, ...arg: any[]) => boolean>;
452
452
  };
453
+ propKey: {
454
+ type: StringConstructor;
455
+ };
453
456
  shortcutListenerConfig: {
454
457
  type: PropType<{
455
458
  enable: boolean;
456
- callback: (key: string) => void;
459
+ callback: (value: string, propKey?: string | undefined) => void;
457
460
  }>;
458
461
  };
459
462
  }>, {
@@ -495,10 +498,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
495
498
  isDateDisabled: {
496
499
  type: PropType<(current: number, ...arg: any[]) => boolean>;
497
500
  };
501
+ propKey: {
502
+ type: StringConstructor;
503
+ };
498
504
  shortcutListenerConfig: {
499
505
  type: PropType<{
500
506
  enable: boolean;
501
- callback: (key: string) => void;
507
+ callback: (value: string, propKey?: string | undefined) => void;
502
508
  }>;
503
509
  };
504
510
  }>> & Readonly<{
@@ -561,10 +567,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
561
567
  isDateDisabled: {
562
568
  type: PropType<(current: number, ...arg: any[]) => boolean>;
563
569
  };
570
+ propKey: {
571
+ type: StringConstructor;
572
+ };
564
573
  shortcutListenerConfig: {
565
574
  type: PropType<{
566
575
  enable: boolean;
567
- callback: (key: string) => void;
576
+ callback: (value: string, propKey?: string | undefined) => void;
568
577
  }>;
569
578
  };
570
579
  }>> & Readonly<{
@@ -1667,10 +1676,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1667
1676
  isDateDisabled: {
1668
1677
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1669
1678
  };
1679
+ propKey: {
1680
+ type: StringConstructor;
1681
+ };
1670
1682
  shortcutListenerConfig: {
1671
1683
  type: PropType<{
1672
1684
  enable: boolean;
1673
- callback: (key: string) => void;
1685
+ callback: (value: string, propKey?: string | undefined) => void;
1674
1686
  }>;
1675
1687
  };
1676
1688
  }>, {
@@ -1712,10 +1724,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1712
1724
  isDateDisabled: {
1713
1725
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1714
1726
  };
1727
+ propKey: {
1728
+ type: StringConstructor;
1729
+ };
1715
1730
  shortcutListenerConfig: {
1716
1731
  type: PropType<{
1717
1732
  enable: boolean;
1718
- callback: (key: string) => void;
1733
+ callback: (value: string, propKey?: string | undefined) => void;
1719
1734
  }>;
1720
1735
  };
1721
1736
  }>> & Readonly<{
@@ -1778,10 +1793,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1778
1793
  isDateDisabled: {
1779
1794
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1780
1795
  };
1796
+ propKey: {
1797
+ type: StringConstructor;
1798
+ };
1781
1799
  shortcutListenerConfig: {
1782
1800
  type: PropType<{
1783
1801
  enable: boolean;
1784
- callback: (key: string) => void;
1802
+ callback: (value: string, propKey?: string | undefined) => void;
1785
1803
  }>;
1786
1804
  };
1787
1805
  }>> & Readonly<{
@@ -1018,10 +1018,13 @@ declare const _default: import("vue").DefineComponent<{}, {
1018
1018
  isDateDisabled: {
1019
1019
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1020
1020
  };
1021
+ propKey: {
1022
+ type: StringConstructor;
1023
+ };
1021
1024
  shortcutListenerConfig: {
1022
1025
  type: import("vue").PropType<{
1023
1026
  enable: boolean;
1024
- callback: (key: string) => void;
1027
+ callback: (value: string, propKey?: string | undefined) => void;
1025
1028
  }>;
1026
1029
  };
1027
1030
  }>, {
@@ -1063,10 +1066,13 @@ declare const _default: import("vue").DefineComponent<{}, {
1063
1066
  isDateDisabled: {
1064
1067
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1065
1068
  };
1069
+ propKey: {
1070
+ type: StringConstructor;
1071
+ };
1066
1072
  shortcutListenerConfig: {
1067
1073
  type: import("vue").PropType<{
1068
1074
  enable: boolean;
1069
- callback: (key: string) => void;
1075
+ callback: (value: string, propKey?: string | undefined) => void;
1070
1076
  }>;
1071
1077
  };
1072
1078
  }>> & Readonly<{
@@ -1129,10 +1135,13 @@ declare const _default: import("vue").DefineComponent<{}, {
1129
1135
  isDateDisabled: {
1130
1136
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1131
1137
  };
1138
+ propKey: {
1139
+ type: StringConstructor;
1140
+ };
1132
1141
  shortcutListenerConfig: {
1133
1142
  type: import("vue").PropType<{
1134
1143
  enable: boolean;
1135
- callback: (key: string) => void;
1144
+ callback: (value: string, propKey?: string | undefined) => void;
1136
1145
  }>;
1137
1146
  };
1138
1147
  }>> & Readonly<{
@@ -135,10 +135,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
135
135
  isDateDisabled: {
136
136
  type: PropType<(current: number, ...arg: any[]) => boolean>;
137
137
  };
138
+ propKey: {
139
+ type: StringConstructor;
140
+ };
138
141
  shortcutListenerConfig: {
139
142
  type: PropType<{
140
143
  enable: boolean;
141
- callback: (key: string) => void;
144
+ callback: (value: string, propKey?: string | undefined) => void;
142
145
  }>;
143
146
  };
144
147
  }>, {
@@ -180,10 +183,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
180
183
  isDateDisabled: {
181
184
  type: PropType<(current: number, ...arg: any[]) => boolean>;
182
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
183
189
  shortcutListenerConfig: {
184
190
  type: PropType<{
185
191
  enable: boolean;
186
- callback: (key: string) => void;
192
+ callback: (value: string, propKey?: string | undefined) => void;
187
193
  }>;
188
194
  };
189
195
  }>> & Readonly<{
@@ -246,10 +252,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
246
252
  isDateDisabled: {
247
253
  type: PropType<(current: number, ...arg: any[]) => boolean>;
248
254
  };
255
+ propKey: {
256
+ type: StringConstructor;
257
+ };
249
258
  shortcutListenerConfig: {
250
259
  type: PropType<{
251
260
  enable: boolean;
252
- callback: (key: string) => void;
261
+ callback: (value: string, propKey?: string | undefined) => void;
253
262
  }>;
254
263
  };
255
264
  }>> & Readonly<{
@@ -188,10 +188,13 @@ declare const _default: import("vue").DefineComponent<{}, {
188
188
  isDateDisabled: {
189
189
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
190
190
  };
191
+ propKey: {
192
+ type: StringConstructor;
193
+ };
191
194
  shortcutListenerConfig: {
192
195
  type: import("vue").PropType<{
193
196
  enable: boolean;
194
- callback: (key: string) => void;
197
+ callback: (value: string, propKey?: string | undefined) => void;
195
198
  }>;
196
199
  };
197
200
  }>, {
@@ -233,10 +236,13 @@ declare const _default: import("vue").DefineComponent<{}, {
233
236
  isDateDisabled: {
234
237
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
235
238
  };
239
+ propKey: {
240
+ type: StringConstructor;
241
+ };
236
242
  shortcutListenerConfig: {
237
243
  type: import("vue").PropType<{
238
244
  enable: boolean;
239
- callback: (key: string) => void;
245
+ callback: (value: string, propKey?: string | undefined) => void;
240
246
  }>;
241
247
  };
242
248
  }>> & Readonly<{
@@ -299,10 +305,13 @@ declare const _default: import("vue").DefineComponent<{}, {
299
305
  isDateDisabled: {
300
306
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
301
307
  };
308
+ propKey: {
309
+ type: StringConstructor;
310
+ };
302
311
  shortcutListenerConfig: {
303
312
  type: import("vue").PropType<{
304
313
  enable: boolean;
305
- callback: (key: string) => void;
314
+ callback: (value: string, propKey?: string | undefined) => void;
306
315
  }>;
307
316
  };
308
317
  }>> & Readonly<{
@@ -60,10 +60,13 @@ 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
+ };
63
66
  shortcutListenerConfig: {
64
67
  type: PropType<{
65
68
  enable: boolean;
66
- callback: (key: string) => void;
69
+ callback: (value: string, propKey?: string | undefined) => void;
67
70
  }>;
68
71
  };
69
72
  }>, {
@@ -105,10 +108,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
105
108
  isDateDisabled: {
106
109
  type: PropType<(current: number, ...arg: any[]) => boolean>;
107
110
  };
111
+ propKey: {
112
+ type: StringConstructor;
113
+ };
108
114
  shortcutListenerConfig: {
109
115
  type: PropType<{
110
116
  enable: boolean;
111
- callback: (key: string) => void;
117
+ callback: (value: string, propKey?: string | undefined) => void;
112
118
  }>;
113
119
  };
114
120
  }>> & Readonly<{
@@ -171,10 +177,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
171
177
  isDateDisabled: {
172
178
  type: PropType<(current: number, ...arg: any[]) => boolean>;
173
179
  };
180
+ propKey: {
181
+ type: StringConstructor;
182
+ };
174
183
  shortcutListenerConfig: {
175
184
  type: PropType<{
176
185
  enable: boolean;
177
- callback: (key: string) => void;
186
+ callback: (value: string, propKey?: string | undefined) => void;
178
187
  }>;
179
188
  };
180
189
  }>> & Readonly<{
@@ -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,10 +147,13 @@ 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
+ };
150
153
  shortcutListenerConfig: {
151
154
  type: PropType<{
152
155
  enable: boolean;
153
- callback: (key: string) => void;
156
+ callback: (value: string, propKey?: string | undefined) => void;
154
157
  }>;
155
158
  };
156
159
  }>, {
@@ -192,10 +195,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
192
195
  isDateDisabled: {
193
196
  type: PropType<(current: number, ...arg: any[]) => boolean>;
194
197
  };
198
+ propKey: {
199
+ type: StringConstructor;
200
+ };
195
201
  shortcutListenerConfig: {
196
202
  type: PropType<{
197
203
  enable: boolean;
198
- callback: (key: string) => void;
204
+ callback: (value: string, propKey?: string | undefined) => void;
199
205
  }>;
200
206
  };
201
207
  }>> & Readonly<{
@@ -258,10 +264,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
258
264
  isDateDisabled: {
259
265
  type: PropType<(current: number, ...arg: any[]) => boolean>;
260
266
  };
267
+ propKey: {
268
+ type: StringConstructor;
269
+ };
261
270
  shortcutListenerConfig: {
262
271
  type: PropType<{
263
272
  enable: boolean;
264
- callback: (key: string) => void;
273
+ callback: (value: string, propKey?: string | undefined) => void;
265
274
  }>;
266
275
  };
267
276
  }>> & Readonly<{
@@ -103,10 +103,13 @@ 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
+ };
106
109
  shortcutListenerConfig: {
107
110
  type: import("vue").PropType<{
108
111
  enable: boolean;
109
- callback: (key: string) => void;
112
+ callback: (value: string, propKey?: string | undefined) => void;
110
113
  }>;
111
114
  };
112
115
  }>, {
@@ -148,10 +151,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
148
151
  isDateDisabled: {
149
152
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
150
153
  };
154
+ propKey: {
155
+ type: StringConstructor;
156
+ };
151
157
  shortcutListenerConfig: {
152
158
  type: import("vue").PropType<{
153
159
  enable: boolean;
154
- callback: (key: string) => void;
160
+ callback: (value: string, propKey?: string | undefined) => void;
155
161
  }>;
156
162
  };
157
163
  }>> & Readonly<{
@@ -214,10 +220,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
214
220
  isDateDisabled: {
215
221
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
216
222
  };
223
+ propKey: {
224
+ type: StringConstructor;
225
+ };
217
226
  shortcutListenerConfig: {
218
227
  type: import("vue").PropType<{
219
228
  enable: boolean;
220
- callback: (key: string) => void;
229
+ callback: (value: string, propKey?: string | undefined) => void;
221
230
  }>;
222
231
  };
223
232
  }>> & Readonly<{
@@ -66,10 +66,13 @@ 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
+ };
69
72
  shortcutListenerConfig: {
70
73
  type: import("vue").PropType<{
71
74
  enable: boolean;
72
- callback: (key: string) => void;
75
+ callback: (value: string, propKey?: string | undefined) => void;
73
76
  }>;
74
77
  };
75
78
  }>, {
@@ -111,10 +114,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
111
114
  isDateDisabled: {
112
115
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
113
116
  };
117
+ propKey: {
118
+ type: StringConstructor;
119
+ };
114
120
  shortcutListenerConfig: {
115
121
  type: import("vue").PropType<{
116
122
  enable: boolean;
117
- callback: (key: string) => void;
123
+ callback: (value: string, propKey?: string | undefined) => void;
118
124
  }>;
119
125
  };
120
126
  }>> & Readonly<{
@@ -177,10 +183,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
177
183
  isDateDisabled: {
178
184
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
179
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
180
189
  shortcutListenerConfig: {
181
190
  type: import("vue").PropType<{
182
191
  enable: boolean;
183
- callback: (key: string) => void;
192
+ callback: (value: string, propKey?: string | undefined) => void;
184
193
  }>;
185
194
  };
186
195
  }>> & Readonly<{
@@ -66,10 +66,13 @@ 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
+ };
69
72
  shortcutListenerConfig: {
70
73
  type: import("vue").PropType<{
71
74
  enable: boolean;
72
- callback: (key: string) => void;
75
+ callback: (value: string, propKey?: string | undefined) => void;
73
76
  }>;
74
77
  };
75
78
  }>, {
@@ -111,10 +114,13 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
111
114
  isDateDisabled: {
112
115
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
113
116
  };
117
+ propKey: {
118
+ type: StringConstructor;
119
+ };
114
120
  shortcutListenerConfig: {
115
121
  type: import("vue").PropType<{
116
122
  enable: boolean;
117
- callback: (key: string) => void;
123
+ callback: (value: string, propKey?: string | undefined) => void;
118
124
  }>;
119
125
  };
120
126
  }>> & Readonly<{
@@ -177,10 +183,13 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
177
183
  isDateDisabled: {
178
184
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
179
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
180
189
  shortcutListenerConfig: {
181
190
  type: import("vue").PropType<{
182
191
  enable: boolean;
183
- callback: (key: string) => void;
192
+ callback: (value: string, propKey?: string | undefined) => void;
184
193
  }>;
185
194
  };
186
195
  }>> & Readonly<{
@@ -221,10 +221,13 @@ 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
+ };
224
227
  shortcutListenerConfig: {
225
228
  type: PropType<{
226
229
  enable: boolean;
227
- callback: (key: string) => void;
230
+ callback: (value: string, propKey?: string | undefined) => void;
228
231
  }>;
229
232
  };
230
233
  }>, {
@@ -266,10 +269,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
266
269
  isDateDisabled: {
267
270
  type: PropType<(current: number, ...arg: any[]) => boolean>;
268
271
  };
272
+ propKey: {
273
+ type: StringConstructor;
274
+ };
269
275
  shortcutListenerConfig: {
270
276
  type: PropType<{
271
277
  enable: boolean;
272
- callback: (key: string) => void;
278
+ callback: (value: string, propKey?: string | undefined) => void;
273
279
  }>;
274
280
  };
275
281
  }>> & Readonly<{
@@ -332,10 +338,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
332
338
  isDateDisabled: {
333
339
  type: PropType<(current: number, ...arg: any[]) => boolean>;
334
340
  };
341
+ propKey: {
342
+ type: StringConstructor;
343
+ };
335
344
  shortcutListenerConfig: {
336
345
  type: PropType<{
337
346
  enable: boolean;
338
- callback: (key: string) => void;
347
+ callback: (value: string, propKey?: string | undefined) => void;
339
348
  }>;
340
349
  };
341
350
  }>> & Readonly<{