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

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 (35) hide show
  1. package/es/components/classification/index.d.ts +57 -0
  2. package/es/components/classification/src/components/search-filter/index.vue.d.ts +57 -0
  3. package/es/components/classification/src/components/set-classification/index.vue.d.ts +57 -0
  4. package/es/components/classification/src/index.vue.d.ts +57 -0
  5. package/es/components/date-picker/index.d.ts +19 -0
  6. package/es/components/date-picker/src/DatePicker.vue.d.ts +19 -0
  7. package/es/components/date-picker/src/DatePicker.vue2.js +23 -1
  8. package/es/components/field-set/src/FieldColor.vue.d.ts +38 -0
  9. package/es/components/field-set/src/components/condition.vue.d.ts +19 -0
  10. package/es/components/field-set/src/components/edit-dialog.vue.d.ts +38 -0
  11. package/es/components/field-set/src/components/edit-filter.vue.d.ts +19 -0
  12. package/es/components/iho-chat/index.d.ts +38 -0
  13. package/es/components/iho-chat/src/Index.vue.d.ts +38 -0
  14. package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +19 -0
  15. package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +19 -0
  16. package/es/components/iho-chat/src/components/SiderList.vue.d.ts +19 -0
  17. package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +19 -0
  18. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +19 -0
  19. package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +19 -0
  20. package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +19 -0
  21. package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +19 -0
  22. package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +19 -0
  23. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +38 -0
  24. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +19 -0
  25. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +19 -0
  26. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +38 -0
  27. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +38 -0
  28. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +19 -0
  29. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +19 -0
  30. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +19 -0
  31. package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +19 -0
  32. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +76 -0
  33. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +76 -0
  34. package/es/shared/package.json.js +1 -1
  35. package/package.json +2 -2
@@ -118,6 +118,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
118
118
  isDateDisabled: {
119
119
  type: PropType<(current: number, ...arg: any[]) => boolean>;
120
120
  };
121
+ shortcutListenerConfig: {
122
+ type: PropType<{
123
+ enable: boolean;
124
+ callback: (key: string) => void;
125
+ }>;
126
+ };
121
127
  }>, {
122
128
  attrs: {
123
129
  [x: string]: unknown;
@@ -157,6 +163,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
157
163
  isDateDisabled: {
158
164
  type: PropType<(current: number, ...arg: any[]) => boolean>;
159
165
  };
166
+ shortcutListenerConfig: {
167
+ type: PropType<{
168
+ enable: boolean;
169
+ callback: (key: string) => void;
170
+ }>;
171
+ };
160
172
  }>> & Readonly<{
161
173
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
162
174
  }> & {}>;
@@ -173,6 +185,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
173
185
  focus: () => any;
174
186
  blur: () => any;
175
187
  handleConfirm: (target: HTMLInputElement) => void;
188
+ handleShortcutClick: (event: MouseEvent) => void;
176
189
  onUpdateShow: (show: boolean) => Promise<void>;
177
190
  watchers: import("../../../../../../shared/types").AnyFn[];
178
191
  stopWatcher: () => void;
@@ -216,6 +229,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
216
229
  isDateDisabled: {
217
230
  type: PropType<(current: number, ...arg: any[]) => boolean>;
218
231
  };
232
+ shortcutListenerConfig: {
233
+ type: PropType<{
234
+ enable: boolean;
235
+ callback: (key: string) => void;
236
+ }>;
237
+ };
219
238
  }>> & Readonly<{
220
239
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
221
240
  }>, {
@@ -101,6 +101,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
101
101
  isDateDisabled: {
102
102
  type: PropType<(current: number, ...arg: any[]) => boolean>;
103
103
  };
104
+ shortcutListenerConfig: {
105
+ type: PropType<{
106
+ enable: boolean;
107
+ callback: (key: string) => void;
108
+ }>;
109
+ };
104
110
  }>, {
105
111
  attrs: {
106
112
  [x: string]: unknown;
@@ -140,6 +146,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
140
146
  isDateDisabled: {
141
147
  type: PropType<(current: number, ...arg: any[]) => boolean>;
142
148
  };
149
+ shortcutListenerConfig: {
150
+ type: PropType<{
151
+ enable: boolean;
152
+ callback: (key: string) => void;
153
+ }>;
154
+ };
143
155
  }>> & Readonly<{
144
156
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
145
157
  }> & {}>;
@@ -156,6 +168,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
156
168
  focus: () => any;
157
169
  blur: () => any;
158
170
  handleConfirm: (target: HTMLInputElement) => void;
171
+ handleShortcutClick: (event: MouseEvent) => void;
159
172
  onUpdateShow: (show: boolean) => Promise<void>;
160
173
  watchers: import("../../../../../../shared/types").AnyFn[];
161
174
  stopWatcher: () => void;
@@ -199,6 +212,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
199
212
  isDateDisabled: {
200
213
  type: PropType<(current: number, ...arg: any[]) => boolean>;
201
214
  };
215
+ shortcutListenerConfig: {
216
+ type: PropType<{
217
+ enable: boolean;
218
+ callback: (key: string) => void;
219
+ }>;
220
+ };
202
221
  }>> & Readonly<{
203
222
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
204
223
  }>, {
@@ -136,6 +136,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
136
136
  isDateDisabled: {
137
137
  type: PropType<(current: number, ...arg: any[]) => boolean>;
138
138
  };
139
+ shortcutListenerConfig: {
140
+ type: PropType<{
141
+ enable: boolean;
142
+ callback: (key: string) => void;
143
+ }>;
144
+ };
139
145
  }>, {
140
146
  attrs: {
141
147
  [x: string]: unknown;
@@ -175,6 +181,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
175
181
  isDateDisabled: {
176
182
  type: PropType<(current: number, ...arg: any[]) => boolean>;
177
183
  };
184
+ shortcutListenerConfig: {
185
+ type: PropType<{
186
+ enable: boolean;
187
+ callback: (key: string) => void;
188
+ }>;
189
+ };
178
190
  }>> & Readonly<{
179
191
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
180
192
  }> & {}>;
@@ -191,6 +203,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
191
203
  focus: () => any;
192
204
  blur: () => any;
193
205
  handleConfirm: (target: HTMLInputElement) => void;
206
+ handleShortcutClick: (event: MouseEvent) => void;
194
207
  onUpdateShow: (show: boolean) => Promise<void>;
195
208
  watchers: import("../../../../../../shared/types").AnyFn[];
196
209
  stopWatcher: () => void;
@@ -234,6 +247,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
234
247
  isDateDisabled: {
235
248
  type: PropType<(current: number, ...arg: any[]) => boolean>;
236
249
  };
250
+ shortcutListenerConfig: {
251
+ type: PropType<{
252
+ enable: boolean;
253
+ callback: (key: string) => void;
254
+ }>;
255
+ };
237
256
  }>> & Readonly<{
238
257
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
239
258
  }>, {
@@ -103,6 +103,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
103
103
  isDateDisabled: {
104
104
  type: PropType<(current: number, ...arg: any[]) => boolean>;
105
105
  };
106
+ shortcutListenerConfig: {
107
+ type: PropType<{
108
+ enable: boolean;
109
+ callback: (key: string) => void;
110
+ }>;
111
+ };
106
112
  }>, {
107
113
  attrs: {
108
114
  [x: string]: unknown;
@@ -142,6 +148,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
142
148
  isDateDisabled: {
143
149
  type: PropType<(current: number, ...arg: any[]) => boolean>;
144
150
  };
151
+ shortcutListenerConfig: {
152
+ type: PropType<{
153
+ enable: boolean;
154
+ callback: (key: string) => void;
155
+ }>;
156
+ };
145
157
  }>> & Readonly<{
146
158
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
147
159
  }> & {}>;
@@ -158,6 +170,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
158
170
  focus: () => any;
159
171
  blur: () => any;
160
172
  handleConfirm: (target: HTMLInputElement) => void;
173
+ handleShortcutClick: (event: MouseEvent) => void;
161
174
  onUpdateShow: (show: boolean) => Promise<void>;
162
175
  watchers: import("../../../../../../shared/types").AnyFn[];
163
176
  stopWatcher: () => void;
@@ -201,6 +214,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
201
214
  isDateDisabled: {
202
215
  type: PropType<(current: number, ...arg: any[]) => boolean>;
203
216
  };
217
+ shortcutListenerConfig: {
218
+ type: PropType<{
219
+ enable: boolean;
220
+ callback: (key: string) => void;
221
+ }>;
222
+ };
204
223
  }>> & Readonly<{
205
224
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
206
225
  }>, {
@@ -223,6 +223,12 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
223
223
  isDateDisabled: {
224
224
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
225
225
  };
226
+ shortcutListenerConfig: {
227
+ type: import("vue").PropType<{
228
+ enable: boolean;
229
+ callback: (key: string) => void;
230
+ }>;
231
+ };
226
232
  }>, {
227
233
  attrs: {
228
234
  [x: string]: unknown;
@@ -262,6 +268,12 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
262
268
  isDateDisabled: {
263
269
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
264
270
  };
271
+ shortcutListenerConfig: {
272
+ type: import("vue").PropType<{
273
+ enable: boolean;
274
+ callback: (key: string) => void;
275
+ }>;
276
+ };
265
277
  }>> & Readonly<{
266
278
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
267
279
  }> & {}>;
@@ -278,6 +290,7 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
278
290
  focus: () => any;
279
291
  blur: () => any;
280
292
  handleConfirm: (target: HTMLInputElement) => void;
293
+ handleShortcutClick: (event: MouseEvent) => void;
281
294
  onUpdateShow: (show: boolean) => Promise<void>;
282
295
  watchers: import("../../../../../../shared/types").AnyFn[];
283
296
  stopWatcher: () => void;
@@ -321,6 +334,12 @@ declare const DateInner: import("vue").DefineComponent<import("vue").ExtractProp
321
334
  isDateDisabled: {
322
335
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
323
336
  };
337
+ shortcutListenerConfig: {
338
+ type: import("vue").PropType<{
339
+ enable: boolean;
340
+ callback: (key: string) => void;
341
+ }>;
342
+ };
324
343
  }>> & Readonly<{
325
344
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
326
345
  }>, {
@@ -536,6 +555,12 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
536
555
  isDateDisabled: {
537
556
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
538
557
  };
558
+ shortcutListenerConfig: {
559
+ type: import("vue").PropType<{
560
+ enable: boolean;
561
+ callback: (key: string) => void;
562
+ }>;
563
+ };
539
564
  }>, {
540
565
  attrs: {
541
566
  [x: string]: unknown;
@@ -575,6 +600,12 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
575
600
  isDateDisabled: {
576
601
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
577
602
  };
603
+ shortcutListenerConfig: {
604
+ type: import("vue").PropType<{
605
+ enable: boolean;
606
+ callback: (key: string) => void;
607
+ }>;
608
+ };
578
609
  }>> & Readonly<{
579
610
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
580
611
  }> & {}>;
@@ -591,6 +622,7 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
591
622
  focus: () => any;
592
623
  blur: () => any;
593
624
  handleConfirm: (target: HTMLInputElement) => void;
625
+ handleShortcutClick: (event: MouseEvent) => void;
594
626
  onUpdateShow: (show: boolean) => Promise<void>;
595
627
  watchers: import("../../../../../../shared/types").AnyFn[];
596
628
  stopWatcher: () => void;
@@ -634,6 +666,12 @@ declare const DateOut: import("vue").DefineComponent<import("vue").ExtractPropTy
634
666
  isDateDisabled: {
635
667
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
636
668
  };
669
+ shortcutListenerConfig: {
670
+ type: import("vue").PropType<{
671
+ enable: boolean;
672
+ callback: (key: string) => void;
673
+ }>;
674
+ };
637
675
  }>> & Readonly<{
638
676
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
639
677
  }>, {
@@ -811,6 +849,12 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
811
849
  isDateDisabled: {
812
850
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
813
851
  };
852
+ shortcutListenerConfig: {
853
+ type: import("vue").PropType<{
854
+ enable: boolean;
855
+ callback: (key: string) => void;
856
+ }>;
857
+ };
814
858
  }>, {
815
859
  attrs: {
816
860
  [x: string]: unknown;
@@ -850,6 +894,12 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
850
894
  isDateDisabled: {
851
895
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
852
896
  };
897
+ shortcutListenerConfig: {
898
+ type: import("vue").PropType<{
899
+ enable: boolean;
900
+ callback: (key: string) => void;
901
+ }>;
902
+ };
853
903
  }>> & Readonly<{
854
904
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
855
905
  }> & {}>;
@@ -866,6 +916,7 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
866
916
  focus: () => any;
867
917
  blur: () => any;
868
918
  handleConfirm: (target: HTMLInputElement) => void;
919
+ handleShortcutClick: (event: MouseEvent) => void;
869
920
  onUpdateShow: (show: boolean) => Promise<void>;
870
921
  watchers: import("../../../../../../shared/types").AnyFn[];
871
922
  stopWatcher: () => void;
@@ -909,6 +960,12 @@ declare const DateRangeInner: import("vue").DefineComponent<import("vue").Extrac
909
960
  isDateDisabled: {
910
961
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
911
962
  };
963
+ shortcutListenerConfig: {
964
+ type: import("vue").PropType<{
965
+ enable: boolean;
966
+ callback: (key: string) => void;
967
+ }>;
968
+ };
912
969
  }>> & Readonly<{
913
970
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
914
971
  }>, {
@@ -1131,6 +1188,12 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
1131
1188
  isDateDisabled: {
1132
1189
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1133
1190
  };
1191
+ shortcutListenerConfig: {
1192
+ type: import("vue").PropType<{
1193
+ enable: boolean;
1194
+ callback: (key: string) => void;
1195
+ }>;
1196
+ };
1134
1197
  }>, {
1135
1198
  attrs: {
1136
1199
  [x: string]: unknown;
@@ -1170,6 +1233,12 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
1170
1233
  isDateDisabled: {
1171
1234
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1172
1235
  };
1236
+ shortcutListenerConfig: {
1237
+ type: import("vue").PropType<{
1238
+ enable: boolean;
1239
+ callback: (key: string) => void;
1240
+ }>;
1241
+ };
1173
1242
  }>> & Readonly<{
1174
1243
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1175
1244
  }> & {}>;
@@ -1186,6 +1255,7 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
1186
1255
  focus: () => any;
1187
1256
  blur: () => any;
1188
1257
  handleConfirm: (target: HTMLInputElement) => void;
1258
+ handleShortcutClick: (event: MouseEvent) => void;
1189
1259
  onUpdateShow: (show: boolean) => Promise<void>;
1190
1260
  watchers: import("../../../../../../shared/types").AnyFn[];
1191
1261
  stopWatcher: () => void;
@@ -1229,6 +1299,12 @@ declare const DateRangeOut: import("vue").DefineComponent<import("vue").ExtractP
1229
1299
  isDateDisabled: {
1230
1300
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1231
1301
  };
1302
+ shortcutListenerConfig: {
1303
+ type: import("vue").PropType<{
1304
+ enable: boolean;
1305
+ callback: (key: string) => void;
1306
+ }>;
1307
+ };
1232
1308
  }>> & Readonly<{
1233
1309
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1234
1310
  }>, {
@@ -544,6 +544,12 @@ export declare const WidgetCfgMaps: Map<string, {
544
544
  isDateDisabled: {
545
545
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
546
546
  };
547
+ shortcutListenerConfig: {
548
+ type: import("vue").PropType<{
549
+ enable: boolean;
550
+ callback: (key: string) => void;
551
+ }>;
552
+ };
547
553
  }>, {
548
554
  attrs: {
549
555
  [x: string]: unknown;
@@ -583,6 +589,12 @@ export declare const WidgetCfgMaps: Map<string, {
583
589
  isDateDisabled: {
584
590
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
585
591
  };
592
+ shortcutListenerConfig: {
593
+ type: import("vue").PropType<{
594
+ enable: boolean;
595
+ callback: (key: string) => void;
596
+ }>;
597
+ };
586
598
  }>> & Readonly<{
587
599
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
588
600
  }> & {}>;
@@ -599,6 +611,7 @@ export declare const WidgetCfgMaps: Map<string, {
599
611
  focus: () => any;
600
612
  blur: () => any;
601
613
  handleConfirm: (target: HTMLInputElement) => void;
614
+ handleShortcutClick: (event: MouseEvent) => void;
602
615
  onUpdateShow: (show: boolean) => Promise<void>;
603
616
  watchers: import("../../../../../shared/types").AnyFn[];
604
617
  stopWatcher: () => void;
@@ -642,6 +655,12 @@ export declare const WidgetCfgMaps: Map<string, {
642
655
  isDateDisabled: {
643
656
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
644
657
  };
658
+ shortcutListenerConfig: {
659
+ type: import("vue").PropType<{
660
+ enable: boolean;
661
+ callback: (key: string) => void;
662
+ }>;
663
+ };
645
664
  }>> & Readonly<{
646
665
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
647
666
  }>, {
@@ -871,6 +890,12 @@ export declare const WidgetCfgMaps: Map<string, {
871
890
  isDateDisabled: {
872
891
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
873
892
  };
893
+ shortcutListenerConfig: {
894
+ type: import("vue").PropType<{
895
+ enable: boolean;
896
+ callback: (key: string) => void;
897
+ }>;
898
+ };
874
899
  }>, {
875
900
  attrs: {
876
901
  [x: string]: unknown;
@@ -910,6 +935,12 @@ export declare const WidgetCfgMaps: Map<string, {
910
935
  isDateDisabled: {
911
936
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
912
937
  };
938
+ shortcutListenerConfig: {
939
+ type: import("vue").PropType<{
940
+ enable: boolean;
941
+ callback: (key: string) => void;
942
+ }>;
943
+ };
913
944
  }>> & Readonly<{
914
945
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
915
946
  }> & {}>;
@@ -926,6 +957,7 @@ export declare const WidgetCfgMaps: Map<string, {
926
957
  focus: () => any;
927
958
  blur: () => any;
928
959
  handleConfirm: (target: HTMLInputElement) => void;
960
+ handleShortcutClick: (event: MouseEvent) => void;
929
961
  onUpdateShow: (show: boolean) => Promise<void>;
930
962
  watchers: import("../../../../../shared/types").AnyFn[];
931
963
  stopWatcher: () => void;
@@ -969,6 +1001,12 @@ export declare const WidgetCfgMaps: Map<string, {
969
1001
  isDateDisabled: {
970
1002
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
971
1003
  };
1004
+ shortcutListenerConfig: {
1005
+ type: import("vue").PropType<{
1006
+ enable: boolean;
1007
+ callback: (key: string) => void;
1008
+ }>;
1009
+ };
972
1010
  }>> & Readonly<{
973
1011
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
974
1012
  }>, {
@@ -1160,6 +1198,12 @@ export declare const WidgetCfgMaps: Map<string, {
1160
1198
  isDateDisabled: {
1161
1199
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1162
1200
  };
1201
+ shortcutListenerConfig: {
1202
+ type: import("vue").PropType<{
1203
+ enable: boolean;
1204
+ callback: (key: string) => void;
1205
+ }>;
1206
+ };
1163
1207
  }>, {
1164
1208
  attrs: {
1165
1209
  [x: string]: unknown;
@@ -1199,6 +1243,12 @@ export declare const WidgetCfgMaps: Map<string, {
1199
1243
  isDateDisabled: {
1200
1244
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1201
1245
  };
1246
+ shortcutListenerConfig: {
1247
+ type: import("vue").PropType<{
1248
+ enable: boolean;
1249
+ callback: (key: string) => void;
1250
+ }>;
1251
+ };
1202
1252
  }>> & Readonly<{
1203
1253
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1204
1254
  }> & {}>;
@@ -1215,6 +1265,7 @@ export declare const WidgetCfgMaps: Map<string, {
1215
1265
  focus: () => any;
1216
1266
  blur: () => any;
1217
1267
  handleConfirm: (target: HTMLInputElement) => void;
1268
+ handleShortcutClick: (event: MouseEvent) => void;
1218
1269
  onUpdateShow: (show: boolean) => Promise<void>;
1219
1270
  watchers: import("../../../../../shared/types").AnyFn[];
1220
1271
  stopWatcher: () => void;
@@ -1258,6 +1309,12 @@ export declare const WidgetCfgMaps: Map<string, {
1258
1309
  isDateDisabled: {
1259
1310
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1260
1311
  };
1312
+ shortcutListenerConfig: {
1313
+ type: import("vue").PropType<{
1314
+ enable: boolean;
1315
+ callback: (key: string) => void;
1316
+ }>;
1317
+ };
1261
1318
  }>> & Readonly<{
1262
1319
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1263
1320
  }>, {
@@ -1494,6 +1551,12 @@ export declare const WidgetCfgMaps: Map<string, {
1494
1551
  isDateDisabled: {
1495
1552
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1496
1553
  };
1554
+ shortcutListenerConfig: {
1555
+ type: import("vue").PropType<{
1556
+ enable: boolean;
1557
+ callback: (key: string) => void;
1558
+ }>;
1559
+ };
1497
1560
  }>, {
1498
1561
  attrs: {
1499
1562
  [x: string]: unknown;
@@ -1533,6 +1596,12 @@ export declare const WidgetCfgMaps: Map<string, {
1533
1596
  isDateDisabled: {
1534
1597
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1535
1598
  };
1599
+ shortcutListenerConfig: {
1600
+ type: import("vue").PropType<{
1601
+ enable: boolean;
1602
+ callback: (key: string) => void;
1603
+ }>;
1604
+ };
1536
1605
  }>> & Readonly<{
1537
1606
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1538
1607
  }> & {}>;
@@ -1549,6 +1618,7 @@ export declare const WidgetCfgMaps: Map<string, {
1549
1618
  focus: () => any;
1550
1619
  blur: () => any;
1551
1620
  handleConfirm: (target: HTMLInputElement) => void;
1621
+ handleShortcutClick: (event: MouseEvent) => void;
1552
1622
  onUpdateShow: (show: boolean) => Promise<void>;
1553
1623
  watchers: import("../../../../../shared/types").AnyFn[];
1554
1624
  stopWatcher: () => void;
@@ -1592,6 +1662,12 @@ export declare const WidgetCfgMaps: Map<string, {
1592
1662
  isDateDisabled: {
1593
1663
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1594
1664
  };
1665
+ shortcutListenerConfig: {
1666
+ type: import("vue").PropType<{
1667
+ enable: boolean;
1668
+ callback: (key: string) => void;
1669
+ }>;
1670
+ };
1595
1671
  }>> & Readonly<{
1596
1672
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1597
1673
  }>, {
@@ -1,5 +1,5 @@
1
1
  var name = "@cnhis-design-vue/shared";
2
- var version = "3.4.0-beta.45";
2
+ var version = "3.4.0-beta.46";
3
3
  var main = "index.ts";
4
4
  var peerDependencies = {
5
5
  "naive-ui": "^2.30.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "3.4.0-beta.45",
3
+ "version": "3.4.0-beta.46",
4
4
  "license": "ISC",
5
5
  "module": "./es/components/index.js",
6
6
  "main": "./es/components/index.js",
@@ -73,5 +73,5 @@
73
73
  "iOS 7",
74
74
  "last 3 iOS versions"
75
75
  ],
76
- "gitHead": "d3ced341f7fb5a1e994e5a2b243c90491941f4b4"
76
+ "gitHead": "320528517c20213ba1d269086d4b96d6295702f7"
77
77
  }