x-next 0.0.0-alpha.66 → 0.0.0-alpha.68

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 (168) hide show
  1. package/README.md +70 -39
  2. package/dist/_container/resize-trigger.vue.d.ts +2 -2
  3. package/dist/_utils/style.d.ts +3 -0
  4. package/dist/_utils/vue-eco.d.ts +6 -1
  5. package/dist/components/_components/input-label/input-label.d.ts +1 -1
  6. package/dist/components/_components/select-view/select-view.d.ts +1 -1
  7. package/dist/components/_components/transition/expand-transition.vue.d.ts +9 -0
  8. package/dist/components/alert/Alert.vue.d.ts +5 -5
  9. package/dist/components/alert/index.d.ts +10 -10
  10. package/dist/components/button/Button.d.ts +1 -1
  11. package/dist/components/button/index.d.ts +3 -3
  12. package/dist/components/dialog/Dialog.d.ts +1 -1
  13. package/dist/components/dialog/index.d.ts +3 -3
  14. package/dist/components/draggable/Draggable.d.ts +168 -0
  15. package/dist/components/draggable/directive.d.ts +6 -0
  16. package/dist/components/draggable/index.d.ts +289 -0
  17. package/dist/components/draggable/types/index.d.ts +13 -0
  18. package/dist/components/draggable/useDraggable.d.ts +38 -0
  19. package/dist/components/draggable/utils/index.d.ts +100 -0
  20. package/dist/components/draggable/utils/log.d.ts +10 -0
  21. package/dist/components/drawer/index.d.ts +12 -12
  22. package/dist/components/drawer/src/Drawer.vue.d.ts +6 -6
  23. package/dist/components/dropdown/Dropdown.vue.d.ts +3 -3
  24. package/dist/components/dropdown/DropdownButton.vue.d.ts +7 -7
  25. package/dist/components/dropdown/DropdownSubmenu.vue.d.ts +4 -4
  26. package/dist/components/dropdown/dropdown-panel.vue.d.ts +3 -3
  27. package/dist/components/dropdown/index.d.ts +28 -28
  28. package/dist/components/empty/Empty.d.ts +1 -1
  29. package/dist/components/empty/index.d.ts +3 -3
  30. package/dist/components/form/FormItem.vue.d.ts +1 -1
  31. package/dist/components/form/form-item-label.vue.d.ts +1 -1
  32. package/dist/components/form/index.d.ts +2 -2
  33. package/dist/components/form-checkbox/Checkbox.d.ts +1 -1
  34. package/dist/components/form-checkbox/CheckboxGroup.d.ts +1 -1
  35. package/dist/components/form-checkbox/index.d.ts +6 -6
  36. package/dist/components/form-input/Input.d.ts +1 -1
  37. package/dist/components/form-input/InputPassword.vue.d.ts +3 -3
  38. package/dist/components/form-input/InputSearch.d.ts +1 -1
  39. package/dist/components/form-input/index.d.ts +12 -12
  40. package/dist/components/form-input-number/InputNumber.d.ts +1 -1
  41. package/dist/components/form-input-number/index.d.ts +3 -3
  42. package/dist/components/form-input-tag/InputTag.d.ts +1 -1
  43. package/dist/components/form-input-tag/index.d.ts +3 -3
  44. package/dist/components/form-radio/Radio.d.ts +1 -1
  45. package/dist/components/form-radio/RadioGroup.d.ts +1 -1
  46. package/dist/components/form-radio/index.d.ts +6 -6
  47. package/dist/components/form-select/Select.d.ts +2 -2
  48. package/dist/components/form-select/SelectDropdown.vue.d.ts +6 -6
  49. package/dist/components/form-select/SelectOption.vue.d.ts +1 -1
  50. package/dist/components/form-select/index.d.ts +19 -19
  51. package/dist/components/form-slider/Slider.vue.d.ts +3 -3
  52. package/dist/components/form-slider/index.d.ts +6 -6
  53. package/dist/components/form-slider/slider-input.vue.d.ts +3 -3
  54. package/dist/components/form-switch/Switch.vue.d.ts +1 -1
  55. package/dist/components/form-switch/index.d.ts +2 -2
  56. package/dist/components/image/Image.vue.d.ts +6 -6
  57. package/dist/components/image/ImagePreview.vue.d.ts +4 -4
  58. package/dist/components/image/ImagePreviewGroup.vue.d.ts +4 -4
  59. package/dist/components/image/index.d.ts +28 -28
  60. package/dist/components/image/preview-arrow.vue.d.ts +2 -2
  61. package/dist/components/index.d.ts +4 -0
  62. package/dist/components/layout/LayoutSidebar.vue.d.ts +6 -6
  63. package/dist/components/layout/index.d.ts +12 -12
  64. package/dist/components/menu/Menu.d.ts +326 -0
  65. package/dist/components/menu/MenuItem.d.ts +39 -0
  66. package/dist/components/menu/base-menu.vue.d.ts +480 -0
  67. package/dist/components/menu/context.d.ts +26 -0
  68. package/dist/components/menu/hooks/use-level.d.ts +7 -0
  69. package/dist/components/menu/hooks/use-menu-context.d.ts +2 -0
  70. package/dist/components/menu/hooks/use-menu-data-collector.d.ts +22 -0
  71. package/dist/components/menu/hooks/use-menu-open-state.d.ts +18 -0
  72. package/dist/components/menu/hooks/use-menu.d.ts +4 -0
  73. package/dist/components/menu/interface.d.ts +71 -0
  74. package/dist/components/menu/item-group.vue.d.ts +24 -0
  75. package/dist/components/menu/overflow-wrap.d.ts +2 -0
  76. package/dist/components/menu/sub-menu-inline.vue.d.ts +36 -0
  77. package/dist/components/menu/sub-menu-pop.vue.d.ts +872 -0
  78. package/dist/components/menu/utils/index.d.ts +6 -0
  79. package/dist/components/message/Message.d.ts +1 -1
  80. package/dist/components/message/index.d.ts +3 -3
  81. package/dist/components/message/message.vue.d.ts +5 -5
  82. package/dist/components/notification/Notification.d.ts +1 -1
  83. package/dist/components/notification/index.d.ts +3 -3
  84. package/dist/components/popconfirm/src/popup.vue.d.ts +7 -7
  85. package/dist/components/popup/Popup.d.ts +1 -1
  86. package/dist/components/popup/index.d.ts +3 -3
  87. package/dist/components/progress/Progress.vue.d.ts +4 -4
  88. package/dist/components/progress/circle.vue.d.ts +2 -2
  89. package/dist/components/progress/index.d.ts +8 -8
  90. package/dist/components/progress/line.vue.d.ts +1 -1
  91. package/dist/components/progress/steps.vue.d.ts +1 -1
  92. package/dist/components/resize-box/ResizeBox.vue.d.ts +2 -2
  93. package/dist/components/resize-box/index.d.ts +4 -4
  94. package/dist/components/space/Space.d.ts +1 -1
  95. package/dist/components/space/index.d.ts +3 -3
  96. package/dist/components/spin/Spin.d.ts +1 -1
  97. package/dist/components/spin/dot-loading.d.ts +1 -1
  98. package/dist/components/spin/index.d.ts +3 -3
  99. package/dist/components/steps/Step.vue.d.ts +2 -2
  100. package/dist/components/steps/index.d.ts +4 -4
  101. package/dist/components/tabs/Tabs.d.ts +1 -1
  102. package/dist/components/tabs/index.d.ts +3 -3
  103. package/dist/components/tabs/tabs-button.d.ts +1 -1
  104. package/dist/components/tabs/tabs-nav.d.ts +2 -2
  105. package/dist/components/tabs/tabs-tab.vue.d.ts +1 -1
  106. package/dist/components/tag/Tag.vue.d.ts +2 -2
  107. package/dist/components/tag/index.d.ts +4 -4
  108. package/dist/components/time-range-selector/TimeRangeSelector.vue.d.ts +18 -0
  109. package/dist/components/time-range-selector/index.d.ts +59 -0
  110. package/dist/components/timeline/index.d.ts +3 -3
  111. package/dist/components/timeline/src/Timeline.d.ts +1 -1
  112. package/dist/components/timeline/src/TimelineItem.d.ts +1 -1
  113. package/dist/components/timeline-item/index.d.ts +3 -3
  114. package/dist/components/trend-chart/components/TrendChart.d.ts +8 -4
  115. package/dist/components/trend-chart/components/trend-chart-curve.d.ts +7 -3
  116. package/dist/components/trend-chart/index.d.ts +17 -9
  117. package/dist/components/trend-chart/props.d.ts +3 -1
  118. package/dist/icons/_self/down.d.ts +1 -1
  119. package/dist/icons/_self/empty-better.d.ts +1 -1
  120. package/dist/icons/_self/empty.d.ts +1 -1
  121. package/dist/icons/_self/eye-invisible.d.ts +1 -1
  122. package/dist/icons/_self/eye.d.ts +1 -1
  123. package/dist/icons/_self/full-screen.d.ts +1 -1
  124. package/dist/icons/_self/left.d.ts +1 -1
  125. package/dist/icons/_self/more-dot.d.ts +1 -1
  126. package/dist/icons/_self/next.d.ts +1 -1
  127. package/dist/icons/_self/original-size.d.ts +1 -1
  128. package/dist/icons/_self/plus.d.ts +1 -1
  129. package/dist/icons/_self/prev.d.ts +1 -1
  130. package/dist/icons/_self/question-message.d.ts +1 -1
  131. package/dist/icons/_self/right.d.ts +1 -1
  132. package/dist/icons/_self/rotate-left.d.ts +1 -1
  133. package/dist/icons/_self/rotate-right.d.ts +1 -1
  134. package/dist/icons/_self/search.d.ts +1 -1
  135. package/dist/icons/_self/up.d.ts +1 -1
  136. package/dist/icons/_self/zoom-in.d.ts +1 -1
  137. package/dist/icons/_self/zoom-out.d.ts +1 -1
  138. package/dist/icons/animation/animation-loading.d.ts +1 -1
  139. package/dist/icons/default/check-circle-fill.d.ts +1 -1
  140. package/dist/icons/default/check.d.ts +1 -1
  141. package/dist/icons/default/close-circle-fill.d.ts +1 -1
  142. package/dist/icons/default/close.d.ts +1 -1
  143. package/dist/icons/default/exclamation-circle-fill.d.ts +1 -1
  144. package/dist/icons/default/exclamation.d.ts +1 -1
  145. package/dist/icons/default/info-circle-fill.d.ts +1 -1
  146. package/dist/icons/default/left.d.ts +1 -1
  147. package/dist/icons/default/logo-simple.d.ts +1 -1
  148. package/dist/icons/default/minus-circle-fill.d.ts +1 -1
  149. package/dist/icons/default/right.d.ts +1 -1
  150. package/dist/icons/icon.d.ts +1 -1
  151. package/dist/index.d.ts +1 -0
  152. package/dist/index.es.js +10339 -6877
  153. package/dist/index.umd.js +6 -1
  154. package/dist/style.css +1 -1
  155. package/dist/types.d.ts +6 -0
  156. package/package.json +4 -2
  157. package/volar.d.ts +5 -0
  158. package/dist/components/trend-chart.bak/components/trend-chart-curve.d.ts +0 -111
  159. package/dist/components/trend-chart.bak/components/trend-chart-grid.d.ts +0 -55
  160. package/dist/components/trend-chart.bak/components/trend-chart-labels.d.ts +0 -22
  161. package/dist/components/trend-chart.bak/components/trend-chart.d.ts +0 -274
  162. package/dist/components/trend-chart.bak/helpers/genPath.d.ts +0 -8
  163. package/dist/components/trend-chart.bak/helpers/genPoints.d.ts +0 -3
  164. package/dist/components/trend-chart.bak/helpers/getPadding.d.ts +0 -7
  165. package/dist/components/trend-chart.bak/helpers/validatePadding.d.ts +0 -2
  166. package/dist/components/trend-chart.bak/index.d.ts +0 -530
  167. package/dist/components/trend-chart.bak/props.d.ts +0 -211
  168. package/dist/components/trend-chart.bak/themes.d.ts +0 -152
@@ -229,7 +229,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
229
229
  type: ArrayConstructor;
230
230
  default: undefined;
231
231
  };
232
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
232
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
233
233
  size: {
234
234
  type: (StringConstructor | NumberConstructor)[];
235
235
  default: undefined;
@@ -307,7 +307,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
307
307
  };
308
308
  }>> & Readonly<{
309
309
  onClick?: ((...args: any[]) => any) | undefined;
310
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
310
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
311
311
  type: ButtonTypes;
312
312
  size: ButtonSize;
313
313
  disabled: boolean;
@@ -377,7 +377,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
377
377
  };
378
378
  }>> & Readonly<{
379
379
  onClick?: ((...args: any[]) => any) | undefined;
380
- }>, () => any, {}, {}, {}, {
380
+ }>, () => VNode, {}, {}, {}, {
381
381
  type: ButtonTypes;
382
382
  size: ButtonSize;
383
383
  disabled: boolean;
@@ -444,7 +444,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
444
444
  };
445
445
  }>> & Readonly<{
446
446
  onClick?: ((...args: any[]) => any) | undefined;
447
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
447
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
448
448
  type: ButtonTypes;
449
449
  size: ButtonSize;
450
450
  disabled: boolean;
@@ -1587,7 +1587,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1587
1587
  type: BooleanConstructor;
1588
1588
  default: boolean;
1589
1589
  };
1590
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1590
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1591
1591
  inConfigProvider: boolean;
1592
1592
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1593
1593
  P: {};
@@ -1603,7 +1603,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1603
1603
  type: BooleanConstructor;
1604
1604
  default: boolean;
1605
1605
  };
1606
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
1606
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
1607
1607
  inConfigProvider: boolean;
1608
1608
  }>;
1609
1609
  __isFragment?: never;
@@ -1616,7 +1616,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1616
1616
  type: BooleanConstructor;
1617
1617
  default: boolean;
1618
1618
  };
1619
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1619
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1620
1620
  inConfigProvider: boolean;
1621
1621
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
1622
1622
  install(app: import('vue').App): void;
@@ -1105,7 +1105,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1105
1105
  type: BooleanConstructor;
1106
1106
  default: boolean;
1107
1107
  };
1108
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1108
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1109
1109
  inConfigProvider: boolean;
1110
1110
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1111
1111
  P: {};
@@ -1121,7 +1121,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1121
1121
  type: BooleanConstructor;
1122
1122
  default: boolean;
1123
1123
  };
1124
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
1124
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
1125
1125
  inConfigProvider: boolean;
1126
1126
  }>;
1127
1127
  __isFragment?: never;
@@ -1134,7 +1134,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1134
1134
  type: BooleanConstructor;
1135
1135
  default: boolean;
1136
1136
  };
1137
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1137
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1138
1138
  inConfigProvider: boolean;
1139
1139
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
1140
1140
  install(app: import('vue').App): void;
@@ -1202,7 +1202,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1202
1202
  type: ArrayConstructor;
1203
1203
  default: undefined;
1204
1204
  };
1205
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1205
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1206
1206
  size: {
1207
1207
  type: (StringConstructor | NumberConstructor)[];
1208
1208
  default: undefined;
@@ -394,7 +394,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
394
394
  type: BooleanConstructor;
395
395
  default: boolean;
396
396
  };
397
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
397
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
398
398
  inConfigProvider: boolean;
399
399
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
400
400
  P: {};
@@ -410,7 +410,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
410
410
  type: BooleanConstructor;
411
411
  default: boolean;
412
412
  };
413
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
413
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
414
414
  inConfigProvider: boolean;
415
415
  }>;
416
416
  __isFragment?: never;
@@ -423,7 +423,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
423
423
  type: BooleanConstructor;
424
424
  default: boolean;
425
425
  };
426
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
426
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
427
427
  inConfigProvider: boolean;
428
428
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
429
429
  install(app: import('vue').App): void;
@@ -1007,7 +1007,7 @@ export declare const Dropdown: {
1007
1007
  type: BooleanConstructor;
1008
1008
  default: boolean;
1009
1009
  };
1010
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1010
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1011
1011
  inConfigProvider: boolean;
1012
1012
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1013
1013
  P: {};
@@ -1023,7 +1023,7 @@ export declare const Dropdown: {
1023
1023
  type: BooleanConstructor;
1024
1024
  default: boolean;
1025
1025
  };
1026
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
1026
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
1027
1027
  inConfigProvider: boolean;
1028
1028
  }>;
1029
1029
  __isFragment?: never;
@@ -1036,7 +1036,7 @@ export declare const Dropdown: {
1036
1036
  type: BooleanConstructor;
1037
1037
  default: boolean;
1038
1038
  };
1039
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1039
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
1040
1040
  inConfigProvider: boolean;
1041
1041
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
1042
1042
  install(app: import('vue').App): void;
@@ -2109,7 +2109,7 @@ export declare const Dropdown: {
2109
2109
  type: BooleanConstructor;
2110
2110
  default: boolean;
2111
2111
  };
2112
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
2112
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
2113
2113
  inConfigProvider: boolean;
2114
2114
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
2115
2115
  P: {};
@@ -2125,7 +2125,7 @@ export declare const Dropdown: {
2125
2125
  type: BooleanConstructor;
2126
2126
  default: boolean;
2127
2127
  };
2128
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
2128
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
2129
2129
  inConfigProvider: boolean;
2130
2130
  }>;
2131
2131
  __isFragment?: never;
@@ -2138,7 +2138,7 @@ export declare const Dropdown: {
2138
2138
  type: BooleanConstructor;
2139
2139
  default: boolean;
2140
2140
  };
2141
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
2141
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
2142
2142
  inConfigProvider: boolean;
2143
2143
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
2144
2144
  install(app: import('vue').App): void;
@@ -3297,7 +3297,7 @@ export declare const DropdownSubmenu: {
3297
3297
  type: BooleanConstructor;
3298
3298
  default: boolean;
3299
3299
  };
3300
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
3300
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
3301
3301
  inConfigProvider: boolean;
3302
3302
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
3303
3303
  P: {};
@@ -3313,7 +3313,7 @@ export declare const DropdownSubmenu: {
3313
3313
  type: BooleanConstructor;
3314
3314
  default: boolean;
3315
3315
  };
3316
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
3316
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
3317
3317
  inConfigProvider: boolean;
3318
3318
  }>;
3319
3319
  __isFragment?: never;
@@ -3326,7 +3326,7 @@ export declare const DropdownSubmenu: {
3326
3326
  type: BooleanConstructor;
3327
3327
  default: boolean;
3328
3328
  };
3329
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
3329
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
3330
3330
  inConfigProvider: boolean;
3331
3331
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
3332
3332
  install(app: import('vue').App): void;
@@ -3394,7 +3394,7 @@ export declare const DropdownSubmenu: {
3394
3394
  type: ArrayConstructor;
3395
3395
  default: undefined;
3396
3396
  };
3397
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3397
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
3398
3398
  size: {
3399
3399
  type: (StringConstructor | NumberConstructor)[];
3400
3400
  default: undefined;
@@ -4482,7 +4482,7 @@ export declare const DropdownSubmenu: {
4482
4482
  type: BooleanConstructor;
4483
4483
  default: boolean;
4484
4484
  };
4485
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4485
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
4486
4486
  inConfigProvider: boolean;
4487
4487
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
4488
4488
  P: {};
@@ -4498,7 +4498,7 @@ export declare const DropdownSubmenu: {
4498
4498
  type: BooleanConstructor;
4499
4499
  default: boolean;
4500
4500
  };
4501
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
4501
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
4502
4502
  inConfigProvider: boolean;
4503
4503
  }>;
4504
4504
  __isFragment?: never;
@@ -4511,7 +4511,7 @@ export declare const DropdownSubmenu: {
4511
4511
  type: BooleanConstructor;
4512
4512
  default: boolean;
4513
4513
  };
4514
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
4514
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
4515
4515
  inConfigProvider: boolean;
4516
4516
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
4517
4517
  install(app: import('vue').App): void;
@@ -4579,7 +4579,7 @@ export declare const DropdownSubmenu: {
4579
4579
  type: ArrayConstructor;
4580
4580
  default: undefined;
4581
4581
  };
4582
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4582
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4583
4583
  size: {
4584
4584
  type: (StringConstructor | NumberConstructor)[];
4585
4585
  default: undefined;
@@ -4696,7 +4696,7 @@ export declare const DropdownButton: {
4696
4696
  type: ArrayConstructor;
4697
4697
  default: undefined;
4698
4698
  };
4699
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4699
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4700
4700
  size: {
4701
4701
  type: (StringConstructor | NumberConstructor)[];
4702
4702
  default: undefined;
@@ -4774,7 +4774,7 @@ export declare const DropdownButton: {
4774
4774
  };
4775
4775
  }>> & Readonly<{
4776
4776
  onClick?: ((...args: any[]) => any) | undefined;
4777
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
4777
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
4778
4778
  type: import('../button/props').ButtonTypes;
4779
4779
  size: import('../button/props').ButtonSize;
4780
4780
  disabled: boolean;
@@ -4844,7 +4844,7 @@ export declare const DropdownButton: {
4844
4844
  };
4845
4845
  }>> & Readonly<{
4846
4846
  onClick?: ((...args: any[]) => any) | undefined;
4847
- }>, () => any, {}, {}, {}, {
4847
+ }>, () => VNode, {}, {}, {}, {
4848
4848
  type: import('../button/props').ButtonTypes;
4849
4849
  size: import('../button/props').ButtonSize;
4850
4850
  disabled: boolean;
@@ -4911,7 +4911,7 @@ export declare const DropdownButton: {
4911
4911
  };
4912
4912
  }>> & Readonly<{
4913
4913
  onClick?: ((...args: any[]) => any) | undefined;
4914
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
4914
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
4915
4915
  type: import('../button/props').ButtonTypes;
4916
4916
  size: import('../button/props').ButtonSize;
4917
4917
  disabled: boolean;
@@ -6054,7 +6054,7 @@ export declare const DropdownButton: {
6054
6054
  type: BooleanConstructor;
6055
6055
  default: boolean;
6056
6056
  };
6057
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6057
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
6058
6058
  inConfigProvider: boolean;
6059
6059
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
6060
6060
  P: {};
@@ -6070,7 +6070,7 @@ export declare const DropdownButton: {
6070
6070
  type: BooleanConstructor;
6071
6071
  default: boolean;
6072
6072
  };
6073
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
6073
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
6074
6074
  inConfigProvider: boolean;
6075
6075
  }>;
6076
6076
  __isFragment?: never;
@@ -6083,7 +6083,7 @@ export declare const DropdownButton: {
6083
6083
  type: BooleanConstructor;
6084
6084
  default: boolean;
6085
6085
  };
6086
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
6086
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
6087
6087
  inConfigProvider: boolean;
6088
6088
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
6089
6089
  install(app: import('vue').App): void;
@@ -6244,7 +6244,7 @@ export declare const DropdownButton: {
6244
6244
  type: ArrayConstructor;
6245
6245
  default: undefined;
6246
6246
  };
6247
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
6247
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
6248
6248
  size: {
6249
6249
  type: (StringConstructor | NumberConstructor)[];
6250
6250
  default: undefined;
@@ -6322,7 +6322,7 @@ export declare const DropdownButton: {
6322
6322
  };
6323
6323
  }>> & Readonly<{
6324
6324
  onClick?: ((...args: any[]) => any) | undefined;
6325
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
6325
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], import('vue').PublicProps, {
6326
6326
  type: import('../button/props').ButtonTypes;
6327
6327
  size: import('../button/props').ButtonSize;
6328
6328
  disabled: boolean;
@@ -6392,7 +6392,7 @@ export declare const DropdownButton: {
6392
6392
  };
6393
6393
  }>> & Readonly<{
6394
6394
  onClick?: ((...args: any[]) => any) | undefined;
6395
- }>, () => any, {}, {}, {}, {
6395
+ }>, () => VNode, {}, {}, {}, {
6396
6396
  type: import('../button/props').ButtonTypes;
6397
6397
  size: import('../button/props').ButtonSize;
6398
6398
  disabled: boolean;
@@ -6459,7 +6459,7 @@ export declare const DropdownButton: {
6459
6459
  };
6460
6460
  }>> & Readonly<{
6461
6461
  onClick?: ((...args: any[]) => any) | undefined;
6462
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
6462
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "click"[], "click", {
6463
6463
  type: import('../button/props').ButtonTypes;
6464
6464
  size: import('../button/props').ButtonSize;
6465
6465
  disabled: boolean;
@@ -7602,7 +7602,7 @@ export declare const DropdownButton: {
7602
7602
  type: BooleanConstructor;
7603
7603
  default: boolean;
7604
7604
  };
7605
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
7605
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
7606
7606
  inConfigProvider: boolean;
7607
7607
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
7608
7608
  P: {};
@@ -7618,7 +7618,7 @@ export declare const DropdownButton: {
7618
7618
  type: BooleanConstructor;
7619
7619
  default: boolean;
7620
7620
  };
7621
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
7621
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
7622
7622
  inConfigProvider: boolean;
7623
7623
  }>;
7624
7624
  __isFragment?: never;
@@ -7631,7 +7631,7 @@ export declare const DropdownButton: {
7631
7631
  type: BooleanConstructor;
7632
7632
  default: boolean;
7633
7633
  };
7634
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
7634
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
7635
7635
  inConfigProvider: boolean;
7636
7636
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
7637
7637
  install(app: import('vue').App): void;
@@ -18,7 +18,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
18
18
  type: BooleanConstructor;
19
19
  default: boolean;
20
20
  };
21
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
22
22
  /**
23
23
  * @zh 描述内容
24
24
  * @en Description
@@ -6,7 +6,7 @@ export declare const Empty: {
6
6
  type: BooleanConstructor;
7
7
  default: boolean;
8
8
  };
9
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
9
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
10
10
  inConfigProvider: boolean;
11
11
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
12
12
  P: {};
@@ -22,7 +22,7 @@ export declare const Empty: {
22
22
  type: BooleanConstructor;
23
23
  default: boolean;
24
24
  };
25
- }>> & Readonly<{}>, () => any, {}, {}, {}, {
25
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, {
26
26
  inConfigProvider: boolean;
27
27
  }>;
28
28
  __isFragment?: never;
@@ -35,7 +35,7 @@ export declare const Empty: {
35
35
  type: BooleanConstructor;
36
36
  default: boolean;
37
37
  };
38
- }>> & Readonly<{}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
38
+ }>> & Readonly<{}>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
39
39
  inConfigProvider: boolean;
40
40
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
41
41
  install(app: import('vue').App): void;
@@ -2163,7 +2163,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
2163
2163
  type: ArrayConstructor;
2164
2164
  default: undefined;
2165
2165
  };
2166
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2166
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2167
2167
  size: {
2168
2168
  type: (StringConstructor | NumberConstructor)[];
2169
2169
  default: undefined;
@@ -1403,7 +1403,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1403
1403
  type: ArrayConstructor;
1404
1404
  default: undefined;
1405
1405
  };
1406
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1406
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1407
1407
  size: {
1408
1408
  type: (StringConstructor | NumberConstructor)[];
1409
1409
  default: undefined;
@@ -2126,7 +2126,7 @@ export declare const FormItem: {
2126
2126
  type: ArrayConstructor;
2127
2127
  default: undefined;
2128
2128
  };
2129
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2129
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2130
2130
  size: {
2131
2131
  type: (StringConstructor | NumberConstructor)[];
2132
2132
  default: undefined;
@@ -4132,7 +4132,7 @@ export declare const FormItem: {
4132
4132
  type: ArrayConstructor;
4133
4133
  default: undefined;
4134
4134
  };
4135
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4135
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
4136
4136
  size: {
4137
4137
  type: (StringConstructor | NumberConstructor)[];
4138
4138
  default: undefined;
@@ -44,7 +44,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
44
44
  type: BooleanConstructor;
45
45
  default: boolean;
46
46
  };
47
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
47
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
48
48
  'update:modelValue': (value: boolean | (string | number | boolean)[]) => true;
49
49
  /**
50
50
  * @zh 值改变时触发
@@ -51,7 +51,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
51
51
  type: BooleanConstructor;
52
52
  default: boolean;
53
53
  };
54
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
54
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
55
55
  'update:modelValue': (value: (string | number | boolean)[]) => true;
56
56
  /**
57
57
  * @zh 值改变时触发
@@ -26,7 +26,7 @@ export declare const Checkbox: {
26
26
  }>> & Readonly<{
27
27
  onChange?: ((value: boolean | (string | number | boolean)[], ev: Event) => any) | undefined;
28
28
  "onUpdate:modelValue"?: ((value: boolean | (string | number | boolean)[]) => any) | undefined;
29
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
30
30
  'update:modelValue': (value: boolean | (string | number | boolean)[]) => true;
31
31
  change: (value: boolean | (string | number | boolean)[], ev: Event) => true;
32
32
  }, import('vue').PublicProps, {
@@ -106,7 +106,7 @@ export declare const Checkbox: {
106
106
  }>> & Readonly<{
107
107
  onChange?: ((value: boolean | (string | number | boolean)[], ev: Event) => any) | undefined;
108
108
  "onUpdate:modelValue"?: ((value: boolean | (string | number | boolean)[]) => any) | undefined;
109
- }>, () => any, {}, {}, {}, {
109
+ }>, () => VNode, {}, {}, {}, {
110
110
  disabled: boolean;
111
111
  modelValue: boolean | (string | number | boolean)[];
112
112
  defaultChecked: boolean;
@@ -143,7 +143,7 @@ export declare const Checkbox: {
143
143
  }>> & Readonly<{
144
144
  onChange?: ((value: boolean | (string | number | boolean)[], ev: Event) => any) | undefined;
145
145
  "onUpdate:modelValue"?: ((value: boolean | (string | number | boolean)[]) => any) | undefined;
146
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
146
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
147
147
  'update:modelValue': (value: boolean | (string | number | boolean)[]) => true;
148
148
  change: (value: boolean | (string | number | boolean)[], ev: Event) => true;
149
149
  }, string, {
@@ -219,7 +219,7 @@ export declare const CheckboxGroup: {
219
219
  }>> & Readonly<{
220
220
  onChange?: ((value: (string | number | boolean)[], ev: Event) => any) | undefined;
221
221
  "onUpdate:modelValue"?: ((value: (string | number | boolean)[]) => any) | undefined;
222
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
222
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
223
223
  'update:modelValue': (value: (string | number | boolean)[]) => true;
224
224
  change: (value: (string | number | boolean)[], ev: Event) => true;
225
225
  }, import('vue').PublicProps, {
@@ -260,7 +260,7 @@ export declare const CheckboxGroup: {
260
260
  }>> & Readonly<{
261
261
  onChange?: ((value: (string | number | boolean)[], ev: Event) => any) | undefined;
262
262
  "onUpdate:modelValue"?: ((value: (string | number | boolean)[]) => any) | undefined;
263
- }>, () => any, {}, {}, {}, {
263
+ }>, () => VNode, {}, {}, {}, {
264
264
  disabled: boolean;
265
265
  direction: "horizontal" | "vertical";
266
266
  modelValue: (string | number | boolean)[];
@@ -295,7 +295,7 @@ export declare const CheckboxGroup: {
295
295
  }>> & Readonly<{
296
296
  onChange?: ((value: (string | number | boolean)[], ev: Event) => any) | undefined;
297
297
  "onUpdate:modelValue"?: ((value: (string | number | boolean)[]) => any) | undefined;
298
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
298
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
299
299
  'update:modelValue': (value: (string | number | boolean)[]) => true;
300
300
  change: (value: (string | number | boolean)[], ev: Event) => true;
301
301
  }, string, {
@@ -108,7 +108,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
108
108
  };
109
109
  }>, {
110
110
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
111
- render: () => any;
111
+ render: () => VNode;
112
112
  }, {}, {}, {
113
113
  /**
114
114
  * @zh 使输入框获取焦点
@@ -86,7 +86,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
86
86
  type: ArrayConstructor;
87
87
  default: undefined;
88
88
  };
89
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
89
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
90
90
  size: {
91
91
  type: (StringConstructor | NumberConstructor)[];
92
92
  default: undefined;
@@ -135,7 +135,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
135
135
  type: ArrayConstructor;
136
136
  default: undefined;
137
137
  };
138
- }>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
138
+ }>, () => VNode, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
139
139
  size: {
140
140
  type: (StringConstructor | NumberConstructor)[];
141
141
  default: undefined;
@@ -250,7 +250,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
250
250
  };
251
251
  }>, {
252
252
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
253
- render: () => any;
253
+ render: () => VNode;
254
254
  }, {}, {}, {
255
255
  focus(): void;
256
256
  blur(): void;
@@ -52,7 +52,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
52
52
  };
53
53
  }>, {
54
54
  inputRef: import('vue').Ref<any, any>;
55
- render: () => any;
55
+ render: () => VNode;
56
56
  }, {}, {}, {
57
57
  focus(): void;
58
58
  blur(): void;