@geelato/web-vue 2.57.1 → 2.58.1

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 (81) hide show
  1. package/dist/arco-vue.js +872 -535
  2. package/dist/arco-vue.js.map +1 -1
  3. package/dist/arco-vue.min.js +1645 -1546
  4. package/dist/arco-vue.min.js.map +1 -1
  5. package/dist/arco.css +39 -8
  6. package/dist/arco.min.css +1 -1
  7. package/es/_components/picker/input-range.d.ts +2 -2
  8. package/es/_components/picker/input.d.ts +1 -1
  9. package/es/_components/virtual-list-v2/virtual-list.d.ts +3 -3
  10. package/es/_utils/array.d.ts +1 -1
  11. package/es/_utils/array.js +18 -1
  12. package/es/date-picker/index.d.ts +7 -7
  13. package/es/date-picker/panels/date/index.d.ts +2 -2
  14. package/es/date-picker/panels/week/index.d.ts +2 -2
  15. package/es/date-picker/picker-panel.d.ts +4 -4
  16. package/es/date-picker/picker.d.ts +5 -5
  17. package/es/date-picker/range-picker-panel.d.ts +4 -4
  18. package/es/date-picker/range-picker.d.ts +7 -7
  19. package/es/drawer/drawer.d.ts +24 -0
  20. package/es/drawer/drawer.js +61 -6
  21. package/es/drawer/index.d.ts +45 -0
  22. package/es/drawer/style/index.css +10 -0
  23. package/es/drawer/style/index.less +12 -0
  24. package/es/index.css +39 -8
  25. package/es/mention/index.d.ts +3 -3
  26. package/es/mention/mention.d.ts +1 -1
  27. package/es/menu/item.d.ts +1 -1
  28. package/es/menu/sub-menu-pop.d.ts +1 -1
  29. package/es/message/message.d.ts +1 -1
  30. package/es/modal/index.d.ts +33 -3
  31. package/es/modal/modal.d.ts +16 -1
  32. package/es/modal/modal.js +23 -6
  33. package/es/modal/modal.vue_vue_type_script_lang.js +26 -2
  34. package/es/modal/style/index.css +7 -1
  35. package/es/modal/style/index.less +8 -1
  36. package/es/pagination/index.d.ts +3 -3
  37. package/es/pagination/pagination.d.ts +1 -1
  38. package/es/table/context.d.ts +3 -0
  39. package/es/table/hooks/use-row-selection.js +5 -3
  40. package/es/table/interface.d.ts +1 -1
  41. package/es/table/style/index.css +22 -7
  42. package/es/table/style/index.less +25 -8
  43. package/es/table/table-operation-td.js +6 -6
  44. package/es/table/table-operation-th.js +19 -7
  45. package/es/table/table-td.js +2 -2
  46. package/es/table/table.js +165 -33
  47. package/es/table/utils.d.ts +1 -1
  48. package/es/table/utils.js +9 -5
  49. package/es/time-picker/index.d.ts +14 -14
  50. package/es/time-picker/panel.d.ts +2 -2
  51. package/es/time-picker/range-panel.d.ts +2 -2
  52. package/es/time-picker/time-picker.d.ts +7 -7
  53. package/es/tree/index.d.ts +6 -6
  54. package/es/tree/tree.d.ts +3 -3
  55. package/es/tree-select/index.d.ts +12 -12
  56. package/es/tree-select/panel.d.ts +6 -6
  57. package/es/tree-select/tree-select.d.ts +6 -6
  58. package/es/typography/index.d.ts +3 -3
  59. package/es/typography/title.d.ts +3 -3
  60. package/json/vetur-attributes.json +2491 -2491
  61. package/json/vetur-tags.json +889 -889
  62. package/json/web-types.json +4726 -4726
  63. package/lib/_utils/array.js +18 -1
  64. package/lib/drawer/drawer.js +63 -8
  65. package/lib/drawer/style/index.css +10 -0
  66. package/lib/drawer/style/index.less +12 -0
  67. package/lib/index.css +39 -8
  68. package/lib/modal/modal.js +23 -6
  69. package/lib/modal/modal.vue_vue_type_script_lang.js +36 -12
  70. package/lib/modal/style/index.css +7 -1
  71. package/lib/modal/style/index.less +8 -1
  72. package/lib/table/hooks/use-row-selection.js +5 -3
  73. package/lib/table/style/index.css +22 -7
  74. package/lib/table/style/index.less +25 -8
  75. package/lib/table/table-operation-td.js +6 -6
  76. package/lib/table/table-operation-th.js +19 -7
  77. package/lib/table/table-td.js +2 -2
  78. package/lib/table/table.js +164 -32
  79. package/lib/table/utils.js +9 -5
  80. package/package.json +25 -24
  81. package/LICENSE +0 -21
@@ -1546,12 +1546,12 @@ declare const TreeSelect: {
1546
1546
  onReachBottom?: ((ev: Event) => any) | undefined;
1547
1547
  }>, {
1548
1548
  data: Record<string, any>[];
1549
- height: string | number;
1550
- threshold: number;
1551
- itemKey: string;
1552
1549
  fixedSize: boolean;
1553
1550
  estimatedSize: number;
1554
1551
  buffer: number;
1552
+ height: string | number;
1553
+ threshold: number;
1554
+ itemKey: string;
1555
1555
  component: string | Record<string, any>;
1556
1556
  paddingPosition: string;
1557
1557
  }, {}, {
@@ -2616,12 +2616,12 @@ declare const TreeSelect: {
2616
2616
  onReachBottom?: ((ev: Event) => any) | undefined;
2617
2617
  }>, {
2618
2618
  data: Record<string, any>[];
2619
- height: string | number;
2620
- threshold: number;
2621
- itemKey: string;
2622
2619
  fixedSize: boolean;
2623
2620
  estimatedSize: number;
2624
2621
  buffer: number;
2622
+ height: string | number;
2623
+ threshold: number;
2624
+ itemKey: string;
2625
2625
  component: string | Record<string, any>;
2626
2626
  paddingPosition: string;
2627
2627
  }, {}, {
@@ -4506,12 +4506,12 @@ declare const TreeSelect: {
4506
4506
  onReachBottom?: ((ev: Event) => any) | undefined;
4507
4507
  }>, {
4508
4508
  data: Record<string, any>[];
4509
- height: string | number;
4510
- threshold: number;
4511
- itemKey: string;
4512
4509
  fixedSize: boolean;
4513
4510
  estimatedSize: number;
4514
4511
  buffer: number;
4512
+ height: string | number;
4513
+ threshold: number;
4514
+ itemKey: string;
4515
4515
  component: string | Record<string, any>;
4516
4516
  paddingPosition: string;
4517
4517
  }, {}, {
@@ -5576,12 +5576,12 @@ declare const TreeSelect: {
5576
5576
  onReachBottom?: ((ev: Event) => any) | undefined;
5577
5577
  }>, {
5578
5578
  data: Record<string, any>[];
5579
- height: string | number;
5580
- threshold: number;
5581
- itemKey: string;
5582
5579
  fixedSize: boolean;
5583
5580
  estimatedSize: number;
5584
5581
  buffer: number;
5582
+ height: string | number;
5583
+ threshold: number;
5584
+ itemKey: string;
5585
5585
  component: string | Record<string, any>;
5586
5586
  paddingPosition: string;
5587
5587
  }, {}, {
@@ -642,12 +642,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
642
642
  onReachBottom?: ((ev: Event) => any) | undefined;
643
643
  }>, {
644
644
  data: Record<string, any>[];
645
- height: string | number;
646
- threshold: number;
647
- itemKey: string;
648
645
  fixedSize: boolean;
649
646
  estimatedSize: number;
650
647
  buffer: number;
648
+ height: string | number;
649
+ threshold: number;
650
+ itemKey: string;
651
651
  component: string | Record<string, any>;
652
652
  paddingPosition: string;
653
653
  }, {}, {
@@ -1712,12 +1712,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1712
1712
  onReachBottom?: ((ev: Event) => any) | undefined;
1713
1713
  }>, {
1714
1714
  data: Record<string, any>[];
1715
- height: string | number;
1716
- threshold: number;
1717
- itemKey: string;
1718
1715
  fixedSize: boolean;
1719
1716
  estimatedSize: number;
1720
1717
  buffer: number;
1718
+ height: string | number;
1719
+ threshold: number;
1720
+ itemKey: string;
1721
1721
  component: string | Record<string, any>;
1722
1722
  paddingPosition: string;
1723
1723
  }, {}, {
@@ -1672,12 +1672,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1672
1672
  onReachBottom?: ((ev: Event) => any) | undefined;
1673
1673
  }>, {
1674
1674
  data: Record<string, any>[];
1675
- height: string | number;
1676
- threshold: number;
1677
- itemKey: string;
1678
1675
  fixedSize: boolean;
1679
1676
  estimatedSize: number;
1680
1677
  buffer: number;
1678
+ height: string | number;
1679
+ threshold: number;
1680
+ itemKey: string;
1681
1681
  component: string | Record<string, any>;
1682
1682
  paddingPosition: string;
1683
1683
  }, {}, {
@@ -2742,12 +2742,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2742
2742
  onReachBottom?: ((ev: Event) => any) | undefined;
2743
2743
  }>, {
2744
2744
  data: Record<string, any>[];
2745
- height: string | number;
2746
- threshold: number;
2747
- itemKey: string;
2748
2745
  fixedSize: boolean;
2749
2746
  estimatedSize: number;
2750
2747
  buffer: number;
2748
+ height: string | number;
2749
+ threshold: number;
2750
+ itemKey: string;
2751
2751
  component: string | Record<string, any>;
2752
2752
  paddingPosition: string;
2753
2753
  }, {}, {
@@ -51,18 +51,18 @@ declare const Typography: {
51
51
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
52
52
  Title: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
53
53
  heading: {
54
- type: import("vue").PropType<1 | 2 | 4 | 3 | 6 | 5>;
54
+ type: import("vue").PropType<1 | 2 | 4 | 3 | 5 | 6>;
55
55
  default: number;
56
56
  };
57
57
  }>, {
58
58
  component: import("vue").ComputedRef<keyof HTMLElementTagNameMap>;
59
59
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
60
60
  heading: {
61
- type: import("vue").PropType<1 | 2 | 4 | 3 | 6 | 5>;
61
+ type: import("vue").PropType<1 | 2 | 4 | 3 | 5 | 6>;
62
62
  default: number;
63
63
  };
64
64
  }>> & Readonly<{}>, {
65
- heading: 1 | 2 | 4 | 3 | 6 | 5;
65
+ heading: 1 | 2 | 4 | 3 | 5 | 6;
66
66
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
67
67
  Text: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
68
68
  ellipsis: {
@@ -1,17 +1,17 @@
1
1
  import { PropType } from 'vue';
2
2
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  heading: {
4
- type: PropType<1 | 2 | 4 | 3 | 6 | 5>;
4
+ type: PropType<1 | 2 | 4 | 3 | 5 | 6>;
5
5
  default: number;
6
6
  };
7
7
  }>, {
8
8
  component: import("vue").ComputedRef<keyof HTMLElementTagNameMap>;
9
9
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
10
  heading: {
11
- type: PropType<1 | 2 | 4 | 3 | 6 | 5>;
11
+ type: PropType<1 | 2 | 4 | 3 | 5 | 6>;
12
12
  default: number;
13
13
  };
14
14
  }>> & Readonly<{}>, {
15
- heading: 1 | 2 | 4 | 3 | 6 | 5;
15
+ heading: 1 | 2 | 4 | 3 | 5 | 6;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
17
17
  export default _default;