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
@@ -145,6 +145,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
145
145
  isDateDisabled: {
146
146
  type: PropType<(current: number, ...arg: any[]) => boolean>;
147
147
  };
148
+ propKey: {
149
+ type: StringConstructor;
150
+ };
151
+ shortcutListenerConfig: {
152
+ type: PropType<{
153
+ enable: boolean;
154
+ callback: (value: string, propKey?: string | undefined) => void;
155
+ }>;
156
+ };
148
157
  }>, {
149
158
  attrs: {
150
159
  [x: string]: unknown;
@@ -184,6 +193,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
184
193
  isDateDisabled: {
185
194
  type: PropType<(current: number, ...arg: any[]) => boolean>;
186
195
  };
196
+ propKey: {
197
+ type: StringConstructor;
198
+ };
199
+ shortcutListenerConfig: {
200
+ type: PropType<{
201
+ enable: boolean;
202
+ callback: (value: string, propKey?: string | undefined) => void;
203
+ }>;
204
+ };
187
205
  }>> & Readonly<{
188
206
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
189
207
  }> & {}>;
@@ -200,6 +218,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
200
218
  focus: () => any;
201
219
  blur: () => any;
202
220
  handleConfirm: (target: HTMLInputElement) => void;
221
+ handleShortcutClick: (event: MouseEvent) => void;
203
222
  onUpdateShow: (show: boolean) => Promise<void>;
204
223
  watchers: import("../../../../shared/types").AnyFn[];
205
224
  stopWatcher: () => void;
@@ -243,6 +262,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
243
262
  isDateDisabled: {
244
263
  type: PropType<(current: number, ...arg: any[]) => boolean>;
245
264
  };
265
+ propKey: {
266
+ type: StringConstructor;
267
+ };
268
+ shortcutListenerConfig: {
269
+ type: PropType<{
270
+ enable: boolean;
271
+ callback: (value: string, propKey?: string | undefined) => void;
272
+ }>;
273
+ };
246
274
  }>> & Readonly<{
247
275
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
248
276
  }>, {
@@ -309,6 +309,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
309
309
  isDateDisabled: {
310
310
  type: PropType<(current: number, ...arg: any[]) => boolean>;
311
311
  };
312
+ propKey: {
313
+ type: StringConstructor;
314
+ };
315
+ shortcutListenerConfig: {
316
+ type: PropType<{
317
+ enable: boolean;
318
+ callback: (value: string, propKey?: string | undefined) => void;
319
+ }>;
320
+ };
312
321
  }>, {
313
322
  attrs: {
314
323
  [x: string]: unknown;
@@ -348,6 +357,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
348
357
  isDateDisabled: {
349
358
  type: PropType<(current: number, ...arg: any[]) => boolean>;
350
359
  };
360
+ propKey: {
361
+ type: StringConstructor;
362
+ };
363
+ shortcutListenerConfig: {
364
+ type: PropType<{
365
+ enable: boolean;
366
+ callback: (value: string, propKey?: string | undefined) => void;
367
+ }>;
368
+ };
351
369
  }>> & Readonly<{
352
370
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
353
371
  }> & {}>;
@@ -364,6 +382,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
364
382
  focus: () => any;
365
383
  blur: () => any;
366
384
  handleConfirm: (target: HTMLInputElement) => void;
385
+ handleShortcutClick: (event: MouseEvent) => void;
367
386
  onUpdateShow: (show: boolean) => Promise<void>;
368
387
  watchers: import("../../../../shared/types").AnyFn[];
369
388
  stopWatcher: () => void;
@@ -407,6 +426,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
407
426
  isDateDisabled: {
408
427
  type: PropType<(current: number, ...arg: any[]) => boolean>;
409
428
  };
429
+ propKey: {
430
+ type: StringConstructor;
431
+ };
432
+ shortcutListenerConfig: {
433
+ type: PropType<{
434
+ enable: boolean;
435
+ callback: (value: string, propKey?: string | undefined) => void;
436
+ }>;
437
+ };
410
438
  }>> & Readonly<{
411
439
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
412
440
  }>, {
@@ -673,6 +701,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
673
701
  isDateDisabled: {
674
702
  type: PropType<(current: number, ...arg: any[]) => boolean>;
675
703
  };
704
+ propKey: {
705
+ type: StringConstructor;
706
+ };
707
+ shortcutListenerConfig: {
708
+ type: PropType<{
709
+ enable: boolean;
710
+ callback: (value: string, propKey?: string | undefined) => void;
711
+ }>;
712
+ };
676
713
  }>, {
677
714
  attrs: {
678
715
  [x: string]: unknown;
@@ -712,6 +749,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
712
749
  isDateDisabled: {
713
750
  type: PropType<(current: number, ...arg: any[]) => boolean>;
714
751
  };
752
+ propKey: {
753
+ type: StringConstructor;
754
+ };
755
+ shortcutListenerConfig: {
756
+ type: PropType<{
757
+ enable: boolean;
758
+ callback: (value: string, propKey?: string | undefined) => void;
759
+ }>;
760
+ };
715
761
  }>> & Readonly<{
716
762
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
717
763
  }> & {}>;
@@ -728,6 +774,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
728
774
  focus: () => any;
729
775
  blur: () => any;
730
776
  handleConfirm: (target: HTMLInputElement) => void;
777
+ handleShortcutClick: (event: MouseEvent) => void;
731
778
  onUpdateShow: (show: boolean) => Promise<void>;
732
779
  watchers: import("../../../../shared/types").AnyFn[];
733
780
  stopWatcher: () => void;
@@ -771,6 +818,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
771
818
  isDateDisabled: {
772
819
  type: PropType<(current: number, ...arg: any[]) => boolean>;
773
820
  };
821
+ propKey: {
822
+ type: StringConstructor;
823
+ };
824
+ shortcutListenerConfig: {
825
+ type: PropType<{
826
+ enable: boolean;
827
+ callback: (value: string, propKey?: string | undefined) => void;
828
+ }>;
829
+ };
774
830
  }>> & Readonly<{
775
831
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
776
832
  }>, {
@@ -243,6 +243,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
243
243
  isDateDisabled: {
244
244
  type: PropType<(current: number, ...arg: any[]) => boolean>;
245
245
  };
246
+ propKey: {
247
+ type: StringConstructor;
248
+ };
249
+ shortcutListenerConfig: {
250
+ type: PropType<{
251
+ enable: boolean;
252
+ callback: (value: string, propKey?: string | undefined) => void;
253
+ }>;
254
+ };
246
255
  }>, {
247
256
  attrs: {
248
257
  [x: string]: unknown;
@@ -282,6 +291,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
282
291
  isDateDisabled: {
283
292
  type: PropType<(current: number, ...arg: any[]) => boolean>;
284
293
  };
294
+ propKey: {
295
+ type: StringConstructor;
296
+ };
297
+ shortcutListenerConfig: {
298
+ type: PropType<{
299
+ enable: boolean;
300
+ callback: (value: string, propKey?: string | undefined) => void;
301
+ }>;
302
+ };
285
303
  }>> & Readonly<{
286
304
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
287
305
  }> & {}>;
@@ -298,6 +316,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
298
316
  focus: () => any;
299
317
  blur: () => any;
300
318
  handleConfirm: (target: HTMLInputElement) => void;
319
+ handleShortcutClick: (event: MouseEvent) => void;
301
320
  onUpdateShow: (show: boolean) => Promise<void>;
302
321
  watchers: import("../../../../shared/types").AnyFn[];
303
322
  stopWatcher: () => void;
@@ -341,6 +360,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
341
360
  isDateDisabled: {
342
361
  type: PropType<(current: number, ...arg: any[]) => boolean>;
343
362
  };
363
+ propKey: {
364
+ type: StringConstructor;
365
+ };
366
+ shortcutListenerConfig: {
367
+ type: PropType<{
368
+ enable: boolean;
369
+ callback: (value: string, propKey?: string | undefined) => void;
370
+ }>;
371
+ };
344
372
  }>> & Readonly<{
345
373
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
346
374
  }>, {
@@ -384,9 +384,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
384
384
  hide: boolean;
385
385
  }>;
386
386
  draggable: boolean;
387
+ isHighlightRow: boolean;
387
388
  idx: number;
388
389
  isHighlight: boolean;
389
- isHighlightRow: boolean;
390
390
  isFieldSet: boolean;
391
391
  fieldDescribeMode: "column" | "tooltip";
392
392
  hideExpressionOption: AnyObject[];
@@ -449,6 +449,15 @@ 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
+ };
455
+ shortcutListenerConfig: {
456
+ type: import("vue").PropType<{
457
+ enable: boolean;
458
+ callback: (value: string, propKey?: string | undefined) => void;
459
+ }>;
460
+ };
452
461
  }>, {
453
462
  attrs: {
454
463
  [x: string]: unknown;
@@ -488,6 +497,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
488
497
  isDateDisabled: {
489
498
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
490
499
  };
500
+ propKey: {
501
+ type: StringConstructor;
502
+ };
503
+ shortcutListenerConfig: {
504
+ type: import("vue").PropType<{
505
+ enable: boolean;
506
+ callback: (value: string, propKey?: string | undefined) => void;
507
+ }>;
508
+ };
491
509
  }>> & Readonly<{
492
510
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
493
511
  }> & {}>;
@@ -504,6 +522,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
504
522
  focus: () => any;
505
523
  blur: () => any;
506
524
  handleConfirm: (target: HTMLInputElement) => void;
525
+ handleShortcutClick: (event: MouseEvent) => void;
507
526
  onUpdateShow: (show: boolean) => Promise<void>;
508
527
  watchers: import("../../shared/types").AnyFn[];
509
528
  stopWatcher: () => void;
@@ -547,6 +566,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
547
566
  isDateDisabled: {
548
567
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
549
568
  };
569
+ propKey: {
570
+ type: StringConstructor;
571
+ };
572
+ shortcutListenerConfig: {
573
+ type: import("vue").PropType<{
574
+ enable: boolean;
575
+ callback: (value: string, propKey?: string | undefined) => void;
576
+ }>;
577
+ };
550
578
  }>> & Readonly<{
551
579
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
552
580
  }>, {
@@ -1647,6 +1675,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1647
1675
  isDateDisabled: {
1648
1676
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1649
1677
  };
1678
+ propKey: {
1679
+ type: StringConstructor;
1680
+ };
1681
+ shortcutListenerConfig: {
1682
+ type: import("vue").PropType<{
1683
+ enable: boolean;
1684
+ callback: (value: string, propKey?: string | undefined) => void;
1685
+ }>;
1686
+ };
1650
1687
  }>, {
1651
1688
  attrs: {
1652
1689
  [x: string]: unknown;
@@ -1686,6 +1723,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1686
1723
  isDateDisabled: {
1687
1724
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1688
1725
  };
1726
+ propKey: {
1727
+ type: StringConstructor;
1728
+ };
1729
+ shortcutListenerConfig: {
1730
+ type: import("vue").PropType<{
1731
+ enable: boolean;
1732
+ callback: (value: string, propKey?: string | undefined) => void;
1733
+ }>;
1734
+ };
1689
1735
  }>> & Readonly<{
1690
1736
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1691
1737
  }> & {}>;
@@ -1702,6 +1748,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1702
1748
  focus: () => any;
1703
1749
  blur: () => any;
1704
1750
  handleConfirm: (target: HTMLInputElement) => void;
1751
+ handleShortcutClick: (event: MouseEvent) => void;
1705
1752
  onUpdateShow: (show: boolean) => Promise<void>;
1706
1753
  watchers: import("../../shared/types").AnyFn[];
1707
1754
  stopWatcher: () => void;
@@ -1745,6 +1792,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
1745
1792
  isDateDisabled: {
1746
1793
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1747
1794
  };
1795
+ propKey: {
1796
+ type: StringConstructor;
1797
+ };
1798
+ shortcutListenerConfig: {
1799
+ type: import("vue").PropType<{
1800
+ enable: boolean;
1801
+ callback: (value: string, propKey?: string | undefined) => void;
1802
+ }>;
1803
+ };
1748
1804
  }>> & Readonly<{
1749
1805
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1750
1806
  }>, {
@@ -450,6 +450,15 @@ 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
+ };
456
+ shortcutListenerConfig: {
457
+ type: PropType<{
458
+ enable: boolean;
459
+ callback: (value: string, propKey?: string | undefined) => void;
460
+ }>;
461
+ };
453
462
  }>, {
454
463
  attrs: {
455
464
  [x: string]: unknown;
@@ -489,6 +498,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
489
498
  isDateDisabled: {
490
499
  type: PropType<(current: number, ...arg: any[]) => boolean>;
491
500
  };
501
+ propKey: {
502
+ type: StringConstructor;
503
+ };
504
+ shortcutListenerConfig: {
505
+ type: PropType<{
506
+ enable: boolean;
507
+ callback: (value: string, propKey?: string | undefined) => void;
508
+ }>;
509
+ };
492
510
  }>> & Readonly<{
493
511
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
494
512
  }> & {}>;
@@ -505,6 +523,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
505
523
  focus: () => any;
506
524
  blur: () => any;
507
525
  handleConfirm: (target: HTMLInputElement) => void;
526
+ handleShortcutClick: (event: MouseEvent) => void;
508
527
  onUpdateShow: (show: boolean) => Promise<void>;
509
528
  watchers: import("../../../shared/types").AnyFn[];
510
529
  stopWatcher: () => void;
@@ -548,6 +567,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
548
567
  isDateDisabled: {
549
568
  type: PropType<(current: number, ...arg: any[]) => boolean>;
550
569
  };
570
+ propKey: {
571
+ type: StringConstructor;
572
+ };
573
+ shortcutListenerConfig: {
574
+ type: PropType<{
575
+ enable: boolean;
576
+ callback: (value: string, propKey?: string | undefined) => void;
577
+ }>;
578
+ };
551
579
  }>> & Readonly<{
552
580
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
553
581
  }>, {
@@ -1648,6 +1676,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1648
1676
  isDateDisabled: {
1649
1677
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1650
1678
  };
1679
+ propKey: {
1680
+ type: StringConstructor;
1681
+ };
1682
+ shortcutListenerConfig: {
1683
+ type: PropType<{
1684
+ enable: boolean;
1685
+ callback: (value: string, propKey?: string | undefined) => void;
1686
+ }>;
1687
+ };
1651
1688
  }>, {
1652
1689
  attrs: {
1653
1690
  [x: string]: unknown;
@@ -1687,6 +1724,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1687
1724
  isDateDisabled: {
1688
1725
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1689
1726
  };
1727
+ propKey: {
1728
+ type: StringConstructor;
1729
+ };
1730
+ shortcutListenerConfig: {
1731
+ type: PropType<{
1732
+ enable: boolean;
1733
+ callback: (value: string, propKey?: string | undefined) => void;
1734
+ }>;
1735
+ };
1690
1736
  }>> & Readonly<{
1691
1737
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1692
1738
  }> & {}>;
@@ -1703,6 +1749,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1703
1749
  focus: () => any;
1704
1750
  blur: () => any;
1705
1751
  handleConfirm: (target: HTMLInputElement) => void;
1752
+ handleShortcutClick: (event: MouseEvent) => void;
1706
1753
  onUpdateShow: (show: boolean) => Promise<void>;
1707
1754
  watchers: import("../../../shared/types").AnyFn[];
1708
1755
  stopWatcher: () => void;
@@ -1746,6 +1793,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1746
1793
  isDateDisabled: {
1747
1794
  type: PropType<(current: number, ...arg: any[]) => boolean>;
1748
1795
  };
1796
+ propKey: {
1797
+ type: StringConstructor;
1798
+ };
1799
+ shortcutListenerConfig: {
1800
+ type: PropType<{
1801
+ enable: boolean;
1802
+ callback: (value: string, propKey?: string | undefined) => void;
1803
+ }>;
1804
+ };
1749
1805
  }>> & Readonly<{
1750
1806
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1751
1807
  }>, {
@@ -1018,6 +1018,15 @@ 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
+ };
1024
+ shortcutListenerConfig: {
1025
+ type: import("vue").PropType<{
1026
+ enable: boolean;
1027
+ callback: (value: string, propKey?: string | undefined) => void;
1028
+ }>;
1029
+ };
1021
1030
  }>, {
1022
1031
  attrs: {
1023
1032
  [x: string]: unknown;
@@ -1057,6 +1066,15 @@ declare const _default: import("vue").DefineComponent<{}, {
1057
1066
  isDateDisabled: {
1058
1067
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1059
1068
  };
1069
+ propKey: {
1070
+ type: StringConstructor;
1071
+ };
1072
+ shortcutListenerConfig: {
1073
+ type: import("vue").PropType<{
1074
+ enable: boolean;
1075
+ callback: (value: string, propKey?: string | undefined) => void;
1076
+ }>;
1077
+ };
1060
1078
  }>> & Readonly<{
1061
1079
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1062
1080
  }> & {}>;
@@ -1073,6 +1091,7 @@ declare const _default: import("vue").DefineComponent<{}, {
1073
1091
  focus: () => any;
1074
1092
  blur: () => any;
1075
1093
  handleConfirm: (target: HTMLInputElement) => void;
1094
+ handleShortcutClick: (event: MouseEvent) => void;
1076
1095
  onUpdateShow: (show: boolean) => Promise<void>;
1077
1096
  watchers: import("../../../../shared/types").AnyFn[];
1078
1097
  stopWatcher: () => void;
@@ -1116,6 +1135,15 @@ declare const _default: import("vue").DefineComponent<{}, {
1116
1135
  isDateDisabled: {
1117
1136
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1118
1137
  };
1138
+ propKey: {
1139
+ type: StringConstructor;
1140
+ };
1141
+ shortcutListenerConfig: {
1142
+ type: import("vue").PropType<{
1143
+ enable: boolean;
1144
+ callback: (value: string, propKey?: string | undefined) => void;
1145
+ }>;
1146
+ };
1119
1147
  }>> & Readonly<{
1120
1148
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1121
1149
  }>, {
@@ -601,7 +601,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
601
601
  }, {
602
602
  default: withCtx(() => [!unref(isAudioOrVideoMessage)(item.content) ? (openBlock(), createElementBlock(Fragment, {
603
603
  key: 0
604
- }, [createCommentVNode(' <n-button\r\n quaternary\r\n size="tiny"\r\n @click="(event: MouseEvent) => handleSelectLabel(event, item.id)"\r\n >\r\n <template #icon>\r\n <n-icon size="17" :component="HappyOutline" />\r\n </template>\r\n </n-button> '), createVNode(unref(NButton), {
604
+ }, [createCommentVNode(' <n-button\n quaternary\n size="tiny"\n @click="(event: MouseEvent) => handleSelectLabel(event, item.id)"\n >\n <template #icon>\n <n-icon size="17" :component="HappyOutline" />\n </template>\n </n-button> '), createVNode(unref(NButton), {
605
605
  quaternary: "",
606
606
  size: "tiny",
607
607
  onClick: () => setReferenceMsg(item)
@@ -135,6 +135,15 @@ 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
+ };
141
+ shortcutListenerConfig: {
142
+ type: PropType<{
143
+ enable: boolean;
144
+ callback: (value: string, propKey?: string | undefined) => void;
145
+ }>;
146
+ };
138
147
  }>, {
139
148
  attrs: {
140
149
  [x: string]: unknown;
@@ -174,6 +183,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
174
183
  isDateDisabled: {
175
184
  type: PropType<(current: number, ...arg: any[]) => boolean>;
176
185
  };
186
+ propKey: {
187
+ type: StringConstructor;
188
+ };
189
+ shortcutListenerConfig: {
190
+ type: PropType<{
191
+ enable: boolean;
192
+ callback: (value: string, propKey?: string | undefined) => void;
193
+ }>;
194
+ };
177
195
  }>> & Readonly<{
178
196
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
179
197
  }> & {}>;
@@ -190,6 +208,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
190
208
  focus: () => any;
191
209
  blur: () => any;
192
210
  handleConfirm: (target: HTMLInputElement) => void;
211
+ handleShortcutClick: (event: MouseEvent) => void;
193
212
  onUpdateShow: (show: boolean) => Promise<void>;
194
213
  watchers: import("../../../../shared/types").AnyFn[];
195
214
  stopWatcher: () => void;
@@ -233,6 +252,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
233
252
  isDateDisabled: {
234
253
  type: PropType<(current: number, ...arg: any[]) => boolean>;
235
254
  };
255
+ propKey: {
256
+ type: StringConstructor;
257
+ };
258
+ shortcutListenerConfig: {
259
+ type: PropType<{
260
+ enable: boolean;
261
+ callback: (value: string, propKey?: string | undefined) => void;
262
+ }>;
263
+ };
236
264
  }>> & Readonly<{
237
265
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
238
266
  }>, {
@@ -170,7 +170,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
170
170
  round: "",
171
171
  size: 100,
172
172
  onClickCapture: _cache[0] || (_cache[0] = ($event) => showLargeAvatar.value = true)
173
- }, null, 8, ["src"]), createCommentVNode(' <n-upload abstract accept="image/*" @change="onChange">\r\n <n-upload-trigger #="{ handleClick }" abstract>\r\n <n-button\r\n circle\r\n secondary\r\n class="edit-avatar"\r\n v-show="userDetail.id === state.userInfo.id"\r\n @click="handleClick"\r\n >\r\n <template #icon>\r\n <n-icon size="16" color="#666666" :component="Camera" />\r\n </template>\r\n </n-button>\r\n </n-upload-trigger>\r\n </n-upload> '), createElementVNode("div", _hoisted_4, [createElementVNode("h4", null, [createElementVNode("label", _hoisted_5, toDisplayString(userDetail.name), 1), withDirectives(createElementVNode("label", {
173
+ }, null, 8, ["src"]), createCommentVNode(' <n-upload abstract accept="image/*" @change="onChange">\n <n-upload-trigger #="{ handleClick }" abstract>\n <n-button\n circle\n secondary\n class="edit-avatar"\n v-show="userDetail.id === state.userInfo.id"\n @click="handleClick"\n >\n <template #icon>\n <n-icon size="16" color="#666666" :component="Camera" />\n </template>\n </n-button>\n </n-upload-trigger>\n </n-upload> '), createElementVNode("div", _hoisted_4, [createElementVNode("h4", null, [createElementVNode("label", _hoisted_5, toDisplayString(userDetail.name), 1), withDirectives(createElementVNode("label", {
174
174
  class: normalizeClass(["iho-chatRole", unref(isDoctorRole)(userDetail.roleInfo) ? "isDoctor" : ""])
175
175
  }, toDisplayString(unref(getRoleName)(userDetail.roleInfo)), 3), [[vShow, unref(getRoleName)(userDetail.roleInfo)]])]), createElementVNode("p", null, toDisplayString(userDetail.orgName), 1)]), createVNode(unref(NButton), {
176
176
  strong: "",
@@ -188,6 +188,15 @@ 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
+ };
194
+ shortcutListenerConfig: {
195
+ type: import("vue").PropType<{
196
+ enable: boolean;
197
+ callback: (value: string, propKey?: string | undefined) => void;
198
+ }>;
199
+ };
191
200
  }>, {
192
201
  attrs: {
193
202
  [x: string]: unknown;
@@ -227,6 +236,15 @@ declare const _default: import("vue").DefineComponent<{}, {
227
236
  isDateDisabled: {
228
237
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
229
238
  };
239
+ propKey: {
240
+ type: StringConstructor;
241
+ };
242
+ shortcutListenerConfig: {
243
+ type: import("vue").PropType<{
244
+ enable: boolean;
245
+ callback: (value: string, propKey?: string | undefined) => void;
246
+ }>;
247
+ };
230
248
  }>> & Readonly<{
231
249
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
232
250
  }> & {}>;
@@ -243,6 +261,7 @@ declare const _default: import("vue").DefineComponent<{}, {
243
261
  focus: () => any;
244
262
  blur: () => any;
245
263
  handleConfirm: (target: HTMLInputElement) => void;
264
+ handleShortcutClick: (event: MouseEvent) => void;
246
265
  onUpdateShow: (show: boolean) => Promise<void>;
247
266
  watchers: import("../../../../shared/types").AnyFn[];
248
267
  stopWatcher: () => void;
@@ -286,6 +305,15 @@ declare const _default: import("vue").DefineComponent<{}, {
286
305
  isDateDisabled: {
287
306
  type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
288
307
  };
308
+ propKey: {
309
+ type: StringConstructor;
310
+ };
311
+ shortcutListenerConfig: {
312
+ type: import("vue").PropType<{
313
+ enable: boolean;
314
+ callback: (value: string, propKey?: string | undefined) => void;
315
+ }>;
316
+ };
289
317
  }>> & Readonly<{
290
318
  "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
291
319
  }>, {