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
@@ -26,6 +26,16 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<import("
26
26
  type: BooleanConstructor;
27
27
  default: boolean;
28
28
  };
29
+ shortcutListenerConfig: {
30
+ type: import("vue").PropType<{
31
+ enable: boolean;
32
+ callback: (key: string, propKey?: string | undefined) => void;
33
+ }>;
34
+ default: () => {
35
+ enable: boolean;
36
+ callback: () => {};
37
+ };
38
+ };
29
39
  }>, {
30
40
  outQuickSearchFn: {
31
41
  handlerInitSearchItem(arr: import("..").ISearchType[]): void;
@@ -107,6 +117,16 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<import("
107
117
  type: BooleanConstructor;
108
118
  default: boolean;
109
119
  };
120
+ shortcutListenerConfig: {
121
+ type: import("vue").PropType<{
122
+ enable: boolean;
123
+ callback: (key: string, propKey?: string | undefined) => void;
124
+ }>;
125
+ default: () => {
126
+ enable: boolean;
127
+ callback: () => {};
128
+ };
129
+ };
110
130
  }>> & Readonly<{
111
131
  onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
112
132
  onOnFilterSearch?: ((...args: any[]) => any) | undefined;
@@ -292,6 +312,16 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<import("
292
312
  type: BooleanConstructor;
293
313
  default: boolean;
294
314
  };
315
+ shortcutListenerConfig: {
316
+ type: import("vue").PropType<{
317
+ enable: boolean;
318
+ callback: (key: string, propKey?: string | undefined) => void;
319
+ }>;
320
+ default: () => {
321
+ enable: boolean;
322
+ callback: () => {};
323
+ };
324
+ };
295
325
  }>> & Readonly<{
296
326
  onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
297
327
  onOnFilterSearch?: ((...args: any[]) => any) | undefined;
@@ -304,5 +334,9 @@ declare const CBaseSearch: SFCWithInstall<import("vue").DefineComponent<import("
304
334
  qqConObjCount: number;
305
335
  appendValueConfig: Record<string, any>;
306
336
  isShowTitle: boolean;
337
+ shortcutListenerConfig: {
338
+ enable: boolean;
339
+ callback: (key: string, propKey?: string | undefined) => void;
340
+ };
307
341
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
308
342
  export default CBaseSearch;
@@ -27,6 +27,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27
27
  type: BooleanConstructor;
28
28
  default: boolean;
29
29
  };
30
+ shortcutListenerConfig: {
31
+ type: PropType<{
32
+ enable: boolean;
33
+ callback: (key: string, propKey?: string) => void;
34
+ }>;
35
+ default: () => {
36
+ enable: boolean;
37
+ callback: () => {};
38
+ };
39
+ };
30
40
  }>, {
31
41
  outQuickSearchFn: {
32
42
  handlerInitSearchItem(arr: ISearchType[]): void;
@@ -108,6 +118,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
108
118
  type: BooleanConstructor;
109
119
  default: boolean;
110
120
  };
121
+ shortcutListenerConfig: {
122
+ type: PropType<{
123
+ enable: boolean;
124
+ callback: (key: string, propKey?: string) => void;
125
+ }>;
126
+ default: () => {
127
+ enable: boolean;
128
+ callback: () => {};
129
+ };
130
+ };
111
131
  }>> & Readonly<{
112
132
  onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
113
133
  onOnFilterSearch?: ((...args: any[]) => any) | undefined;
@@ -293,6 +313,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
293
313
  type: BooleanConstructor;
294
314
  default: boolean;
295
315
  };
316
+ shortcutListenerConfig: {
317
+ type: PropType<{
318
+ enable: boolean;
319
+ callback: (key: string, propKey?: string) => void;
320
+ }>;
321
+ default: () => {
322
+ enable: boolean;
323
+ callback: () => {};
324
+ };
325
+ };
296
326
  }>> & Readonly<{
297
327
  onFoldQuickSearch?: ((...args: any[]) => any) | undefined;
298
328
  onOnFilterSearch?: ((...args: any[]) => any) | undefined;
@@ -305,5 +335,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
305
335
  qqConObjCount: number;
306
336
  appendValueConfig: Record<string, any>;
307
337
  isShowTitle: boolean;
338
+ shortcutListenerConfig: {
339
+ enable: boolean;
340
+ callback: (key: string, propKey?: string) => void;
341
+ };
308
342
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
309
343
  export default _default;
@@ -7,7 +7,7 @@ import useRenderWidget from '../../table-filter/src/hooks/useRenderWidget.js';
7
7
  import { NButton, NIcon } from 'naive-ui';
8
8
  import { Search } from '@vicons/ionicons5';
9
9
  import { isObject, cloneDeep } from 'lodash-es';
10
- import { InjectionFilterApiConfig, InjectionFilterSearchConfig } from '../../table-filter/src/constants/index.js';
10
+ import { InjectionFilterApiConfig, InjectionFilterSearchConfig, InjectionShortcutListenerConfig } from '../../table-filter/src/constants/index.js';
11
11
  import { WidgetTypeEnums } from '../../table-filter/src/types/enums.js';
12
12
 
13
13
  const _hoisted_1 = {
@@ -76,6 +76,13 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
76
76
  isShowTitle: {
77
77
  type: Boolean,
78
78
  default: false
79
+ },
80
+ shortcutListenerConfig: {
81
+ type: Object,
82
+ default: () => ({
83
+ enable: false,
84
+ callback: () => ({})
85
+ })
79
86
  }
80
87
  },
81
88
  emits: [
@@ -110,6 +117,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
110
117
  const filterChangeFnList = ref([]);
111
118
  provide(InjectionFilterApiConfig, props.filterApiConfig);
112
119
  provide(InjectionFilterSearchConfig, outSearchFieldList);
120
+ provide(InjectionShortcutListenerConfig, props.shortcutListenerConfig);
113
121
  const showQuickSearch = computed(() => {
114
122
  let showQuick = isShowSetting("hideQuickSearch");
115
123
  return showQuick;
@@ -964,10 +964,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
964
964
  isDateDisabled: {
965
965
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
966
966
  };
967
+ propKey: {
968
+ type: StringConstructor;
969
+ };
967
970
  shortcutListenerConfig: {
968
971
  type: import("vue").PropType<{
969
972
  enable: boolean;
970
- callback: (key: string) => void;
973
+ callback: (value: string, propKey?: string | undefined) => void;
971
974
  }>;
972
975
  };
973
976
  }>, {
@@ -1009,10 +1012,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
1009
1012
  isDateDisabled: {
1010
1013
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1011
1014
  };
1015
+ propKey: {
1016
+ type: StringConstructor;
1017
+ };
1012
1018
  shortcutListenerConfig: {
1013
1019
  type: import("vue").PropType<{
1014
1020
  enable: boolean;
1015
- callback: (key: string) => void;
1021
+ callback: (value: string, propKey?: string | undefined) => void;
1016
1022
  }>;
1017
1023
  };
1018
1024
  }>> & Readonly<{
@@ -1075,10 +1081,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
1075
1081
  isDateDisabled: {
1076
1082
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1077
1083
  };
1084
+ propKey: {
1085
+ type: StringConstructor;
1086
+ };
1078
1087
  shortcutListenerConfig: {
1079
1088
  type: import("vue").PropType<{
1080
1089
  enable: boolean;
1081
- callback: (key: string) => void;
1090
+ callback: (value: string, propKey?: string | undefined) => void;
1082
1091
  }>;
1083
1092
  };
1084
1093
  }>> & Readonly<{
@@ -1836,10 +1845,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
1836
1845
  isDateDisabled: {
1837
1846
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1838
1847
  };
1848
+ propKey: {
1849
+ type: StringConstructor;
1850
+ };
1839
1851
  shortcutListenerConfig: {
1840
1852
  type: import("vue").PropType<{
1841
1853
  enable: boolean;
1842
- callback: (key: string) => void;
1854
+ callback: (value: string, propKey?: string | undefined) => void;
1843
1855
  }>;
1844
1856
  };
1845
1857
  }>, {
@@ -1881,10 +1893,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
1881
1893
  isDateDisabled: {
1882
1894
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1883
1895
  };
1896
+ propKey: {
1897
+ type: StringConstructor;
1898
+ };
1884
1899
  shortcutListenerConfig: {
1885
1900
  type: import("vue").PropType<{
1886
1901
  enable: boolean;
1887
- callback: (key: string) => void;
1902
+ callback: (value: string, propKey?: string | undefined) => void;
1888
1903
  }>;
1889
1904
  };
1890
1905
  }>> & Readonly<{
@@ -1947,10 +1962,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
1947
1962
  isDateDisabled: {
1948
1963
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1949
1964
  };
1965
+ propKey: {
1966
+ type: StringConstructor;
1967
+ };
1950
1968
  shortcutListenerConfig: {
1951
1969
  type: import("vue").PropType<{
1952
1970
  enable: boolean;
1953
- callback: (key: string) => void;
1971
+ callback: (value: string, propKey?: string | undefined) => void;
1954
1972
  }>;
1955
1973
  };
1956
1974
  }>> & Readonly<{
@@ -2555,10 +2573,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
2555
2573
  isDateDisabled: {
2556
2574
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2557
2575
  };
2576
+ propKey: {
2577
+ type: StringConstructor;
2578
+ };
2558
2579
  shortcutListenerConfig: {
2559
2580
  type: import("vue").PropType<{
2560
2581
  enable: boolean;
2561
- callback: (key: string) => void;
2582
+ callback: (value: string, propKey?: string | undefined) => void;
2562
2583
  }>;
2563
2584
  };
2564
2585
  }>, {
@@ -2600,10 +2621,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
2600
2621
  isDateDisabled: {
2601
2622
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2602
2623
  };
2624
+ propKey: {
2625
+ type: StringConstructor;
2626
+ };
2603
2627
  shortcutListenerConfig: {
2604
2628
  type: import("vue").PropType<{
2605
2629
  enable: boolean;
2606
- callback: (key: string) => void;
2630
+ callback: (value: string, propKey?: string | undefined) => void;
2607
2631
  }>;
2608
2632
  };
2609
2633
  }>> & Readonly<{
@@ -2666,10 +2690,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<impo
2666
2690
  isDateDisabled: {
2667
2691
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2668
2692
  };
2693
+ propKey: {
2694
+ type: StringConstructor;
2695
+ };
2669
2696
  shortcutListenerConfig: {
2670
2697
  type: import("vue").PropType<{
2671
2698
  enable: boolean;
2672
- callback: (key: string) => void;
2699
+ callback: (value: string, propKey?: string | undefined) => void;
2673
2700
  }>;
2674
2701
  };
2675
2702
  }>> & Readonly<{
@@ -362,10 +362,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
362
362
  isDateDisabled: {
363
363
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
364
364
  };
365
+ propKey: {
366
+ type: StringConstructor;
367
+ };
365
368
  shortcutListenerConfig: {
366
369
  type: import("vue").PropType<{
367
370
  enable: boolean;
368
- callback: (key: string) => void;
371
+ callback: (value: string, propKey?: string | undefined) => void;
369
372
  }>;
370
373
  };
371
374
  }>, {
@@ -407,10 +410,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
407
410
  isDateDisabled: {
408
411
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
409
412
  };
413
+ propKey: {
414
+ type: StringConstructor;
415
+ };
410
416
  shortcutListenerConfig: {
411
417
  type: import("vue").PropType<{
412
418
  enable: boolean;
413
- callback: (key: string) => void;
419
+ callback: (value: string, propKey?: string | undefined) => void;
414
420
  }>;
415
421
  };
416
422
  }>> & Readonly<{
@@ -473,10 +479,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
473
479
  isDateDisabled: {
474
480
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
475
481
  };
482
+ propKey: {
483
+ type: StringConstructor;
484
+ };
476
485
  shortcutListenerConfig: {
477
486
  type: import("vue").PropType<{
478
487
  enable: boolean;
479
- callback: (key: string) => void;
488
+ callback: (value: string, propKey?: string | undefined) => void;
480
489
  }>;
481
490
  };
482
491
  }>> & Readonly<{
@@ -1234,10 +1243,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1234
1243
  isDateDisabled: {
1235
1244
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1236
1245
  };
1246
+ propKey: {
1247
+ type: StringConstructor;
1248
+ };
1237
1249
  shortcutListenerConfig: {
1238
1250
  type: import("vue").PropType<{
1239
1251
  enable: boolean;
1240
- callback: (key: string) => void;
1252
+ callback: (value: string, propKey?: string | undefined) => void;
1241
1253
  }>;
1242
1254
  };
1243
1255
  }>, {
@@ -1279,10 +1291,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1279
1291
  isDateDisabled: {
1280
1292
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1281
1293
  };
1294
+ propKey: {
1295
+ type: StringConstructor;
1296
+ };
1282
1297
  shortcutListenerConfig: {
1283
1298
  type: import("vue").PropType<{
1284
1299
  enable: boolean;
1285
- callback: (key: string) => void;
1300
+ callback: (value: string, propKey?: string | undefined) => void;
1286
1301
  }>;
1287
1302
  };
1288
1303
  }>> & Readonly<{
@@ -1345,10 +1360,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1345
1360
  isDateDisabled: {
1346
1361
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1347
1362
  };
1363
+ propKey: {
1364
+ type: StringConstructor;
1365
+ };
1348
1366
  shortcutListenerConfig: {
1349
1367
  type: import("vue").PropType<{
1350
1368
  enable: boolean;
1351
- callback: (key: string) => void;
1369
+ callback: (value: string, propKey?: string | undefined) => void;
1352
1370
  }>;
1353
1371
  };
1354
1372
  }>> & Readonly<{
@@ -1953,10 +1971,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1953
1971
  isDateDisabled: {
1954
1972
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1955
1973
  };
1974
+ propKey: {
1975
+ type: StringConstructor;
1976
+ };
1956
1977
  shortcutListenerConfig: {
1957
1978
  type: import("vue").PropType<{
1958
1979
  enable: boolean;
1959
- callback: (key: string) => void;
1980
+ callback: (value: string, propKey?: string | undefined) => void;
1960
1981
  }>;
1961
1982
  };
1962
1983
  }>, {
@@ -1998,10 +2019,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1998
2019
  isDateDisabled: {
1999
2020
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2000
2021
  };
2022
+ propKey: {
2023
+ type: StringConstructor;
2024
+ };
2001
2025
  shortcutListenerConfig: {
2002
2026
  type: import("vue").PropType<{
2003
2027
  enable: boolean;
2004
- callback: (key: string) => void;
2028
+ callback: (value: string, propKey?: string | undefined) => void;
2005
2029
  }>;
2006
2030
  };
2007
2031
  }>> & Readonly<{
@@ -2064,10 +2088,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2064
2088
  isDateDisabled: {
2065
2089
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2066
2090
  };
2091
+ propKey: {
2092
+ type: StringConstructor;
2093
+ };
2067
2094
  shortcutListenerConfig: {
2068
2095
  type: import("vue").PropType<{
2069
2096
  enable: boolean;
2070
- callback: (key: string) => void;
2097
+ callback: (value: string, propKey?: string | undefined) => void;
2071
2098
  }>;
2072
2099
  };
2073
2100
  }>> & Readonly<{
@@ -656,10 +656,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
656
656
  isDateDisabled: {
657
657
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
658
658
  };
659
+ propKey: {
660
+ type: StringConstructor;
661
+ };
659
662
  shortcutListenerConfig: {
660
663
  type: import("vue").PropType<{
661
664
  enable: boolean;
662
- callback: (key: string) => void;
665
+ callback: (value: string, propKey?: string | undefined) => void;
663
666
  }>;
664
667
  };
665
668
  }>, {
@@ -701,10 +704,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
701
704
  isDateDisabled: {
702
705
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
703
706
  };
707
+ propKey: {
708
+ type: StringConstructor;
709
+ };
704
710
  shortcutListenerConfig: {
705
711
  type: import("vue").PropType<{
706
712
  enable: boolean;
707
- callback: (key: string) => void;
713
+ callback: (value: string, propKey?: string | undefined) => void;
708
714
  }>;
709
715
  };
710
716
  }>> & Readonly<{
@@ -767,10 +773,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
767
773
  isDateDisabled: {
768
774
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
769
775
  };
776
+ propKey: {
777
+ type: StringConstructor;
778
+ };
770
779
  shortcutListenerConfig: {
771
780
  type: import("vue").PropType<{
772
781
  enable: boolean;
773
- callback: (key: string) => void;
782
+ callback: (value: string, propKey?: string | undefined) => void;
774
783
  }>;
775
784
  };
776
785
  }>> & Readonly<{
@@ -1528,10 +1537,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1528
1537
  isDateDisabled: {
1529
1538
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1530
1539
  };
1540
+ propKey: {
1541
+ type: StringConstructor;
1542
+ };
1531
1543
  shortcutListenerConfig: {
1532
1544
  type: import("vue").PropType<{
1533
1545
  enable: boolean;
1534
- callback: (key: string) => void;
1546
+ callback: (value: string, propKey?: string | undefined) => void;
1535
1547
  }>;
1536
1548
  };
1537
1549
  }>, {
@@ -1573,10 +1585,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1573
1585
  isDateDisabled: {
1574
1586
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1575
1587
  };
1588
+ propKey: {
1589
+ type: StringConstructor;
1590
+ };
1576
1591
  shortcutListenerConfig: {
1577
1592
  type: import("vue").PropType<{
1578
1593
  enable: boolean;
1579
- callback: (key: string) => void;
1594
+ callback: (value: string, propKey?: string | undefined) => void;
1580
1595
  }>;
1581
1596
  };
1582
1597
  }>> & Readonly<{
@@ -1639,10 +1654,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1639
1654
  isDateDisabled: {
1640
1655
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1641
1656
  };
1657
+ propKey: {
1658
+ type: StringConstructor;
1659
+ };
1642
1660
  shortcutListenerConfig: {
1643
1661
  type: import("vue").PropType<{
1644
1662
  enable: boolean;
1645
- callback: (key: string) => void;
1663
+ callback: (value: string, propKey?: string | undefined) => void;
1646
1664
  }>;
1647
1665
  };
1648
1666
  }>> & Readonly<{
@@ -2247,10 +2265,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2247
2265
  isDateDisabled: {
2248
2266
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2249
2267
  };
2268
+ propKey: {
2269
+ type: StringConstructor;
2270
+ };
2250
2271
  shortcutListenerConfig: {
2251
2272
  type: import("vue").PropType<{
2252
2273
  enable: boolean;
2253
- callback: (key: string) => void;
2274
+ callback: (value: string, propKey?: string | undefined) => void;
2254
2275
  }>;
2255
2276
  };
2256
2277
  }>, {
@@ -2292,10 +2313,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2292
2313
  isDateDisabled: {
2293
2314
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2294
2315
  };
2316
+ propKey: {
2317
+ type: StringConstructor;
2318
+ };
2295
2319
  shortcutListenerConfig: {
2296
2320
  type: import("vue").PropType<{
2297
2321
  enable: boolean;
2298
- callback: (key: string) => void;
2322
+ callback: (value: string, propKey?: string | undefined) => void;
2299
2323
  }>;
2300
2324
  };
2301
2325
  }>> & Readonly<{
@@ -2358,10 +2382,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2358
2382
  isDateDisabled: {
2359
2383
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2360
2384
  };
2385
+ propKey: {
2386
+ type: StringConstructor;
2387
+ };
2361
2388
  shortcutListenerConfig: {
2362
2389
  type: import("vue").PropType<{
2363
2390
  enable: boolean;
2364
- callback: (key: string) => void;
2391
+ callback: (value: string, propKey?: string | undefined) => void;
2365
2392
  }>;
2366
2393
  };
2367
2394
  }>> & Readonly<{