@dt-frames/ui 2.0.1 → 2.0.3

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 (220) hide show
  1. package/es/assets/data/icons/actions.d.ts +1 -0
  2. package/es/assets/data/icons/actions.ts +423 -0
  3. package/es/assets/data/icons/code.d.ts +1 -0
  4. package/es/assets/data/icons/code.ts +10 -0
  5. package/es/assets/data/icons/commuticate.d.ts +1 -0
  6. package/es/assets/data/icons/commuticate.ts +182 -0
  7. package/es/assets/data/icons/currency.d.ts +1 -0
  8. package/es/assets/data/icons/currency.ts +44 -0
  9. package/es/assets/data/icons/devices.d.ts +1 -0
  10. package/es/assets/data/icons/devices.ts +126 -0
  11. package/es/assets/data/icons/edit.d.ts +1 -0
  12. package/es/assets/data/icons/edit.ts +163 -0
  13. package/es/assets/data/icons/file.d.ts +1 -0
  14. package/es/assets/data/icons/file.ts +99 -0
  15. package/es/assets/data/icons/math.d.ts +1 -0
  16. package/es/assets/data/icons/math.ts +53 -0
  17. package/es/assets/data/icons/message.d.ts +1 -0
  18. package/es/assets/data/icons/message.ts +68 -0
  19. package/es/assets/data/icons/navigate.d.ts +1 -0
  20. package/es/assets/data/icons/navigate.ts +181 -0
  21. package/es/assets/data/icons/other.d.ts +1 -0
  22. package/es/assets/data/icons/other.ts +324 -0
  23. package/es/assets/data/index.d.ts +4 -0
  24. package/es/assets/data/index.ts +58 -0
  25. package/es/assets/icons/iconfont.css +7266 -0
  26. package/es/assets/icons/iconfont.eot +0 -0
  27. package/es/assets/icons/iconfont.svg +5445 -0
  28. package/es/assets/icons/iconfont.ttf +0 -0
  29. package/es/assets/icons/iconfont.woff +0 -0
  30. package/es/assets/icons/iconfont.woff2 +0 -0
  31. package/es/assets/imgs/header/avatar.png +0 -0
  32. package/es/assets/imgs/logo/logo.png +0 -0
  33. package/es/assets/imgs/table/empty.png +0 -0
  34. package/es/assets/locales/en.d.ts +101 -0
  35. package/es/assets/locales/en.ts +101 -0
  36. package/es/assets/locales/index.d.ts +2 -0
  37. package/es/assets/locales/index.ts +5 -0
  38. package/es/assets/locales/zh.d.ts +103 -0
  39. package/es/assets/locales/zh.ts +103 -0
  40. package/es/components/container/index.d.ts +94 -0
  41. package/es/components/container/index.js +290 -0
  42. package/es/components/container/index.less +64 -0
  43. package/es/components/container/src/components/bar.d.ts +14 -0
  44. package/es/components/container/src/components/scroll-bar.d.ts +70 -0
  45. package/es/components/container/src/hooks/scroll.d.ts +10 -0
  46. package/es/components/container/src/scroll-container.d.ts +76 -0
  47. package/es/components/container/src/slot-container.d.ts +20 -0
  48. package/es/components/container/src/types/scroll.type.d.ts +22 -0
  49. package/es/components/container/src/utils/scroll.d.ts +5 -0
  50. package/es/components/curd/index.d.ts +2 -0
  51. package/es/components/curd/index.js +3120 -0
  52. package/es/components/curd/src/components/Curd.d.ts +1246 -0
  53. package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
  54. package/es/components/curd/src/props.d.ts +187 -0
  55. package/es/components/curd/src/types/curd.type.d.ts +19 -0
  56. package/es/components/drawer/index.d.ts +8039 -0
  57. package/es/components/drawer/index.js +838 -0
  58. package/es/components/drawer/index.less +10 -0
  59. package/es/components/drawer/src/components/DrawerFooter.d.ts +139 -0
  60. package/es/components/drawer/src/components/DrawerHeader.d.ts +11 -0
  61. package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
  62. package/es/components/drawer/src/index.d.ts +8041 -0
  63. package/es/components/drawer/src/props.d.ts +64 -0
  64. package/es/components/drawer/src/types/index.type.d.ts +48 -0
  65. package/es/components/form/index.d.ts +3219 -0
  66. package/es/components/form/index.js +1896 -0
  67. package/es/components/form/index.less +141 -0
  68. package/es/components/form/src/components/FormButtons.d.ts +88 -0
  69. package/es/components/form/src/components/FormItem.d.ts +165 -0
  70. package/es/components/form/src/components/componentMap.d.ts +4 -0
  71. package/es/components/form/src/components/formIcon.d.ts +1231 -0
  72. package/es/components/form/src/components/formInputUseDialog.d.ts +911 -0
  73. package/es/components/form/src/components/index.d.ts +4 -0
  74. package/es/components/form/src/components/radioButton.d.ts +34 -0
  75. package/es/components/form/src/enums/index.d.ts +7 -0
  76. package/es/components/form/src/hooks/helper.d.ts +14 -0
  77. package/es/components/form/src/hooks/useForm.d.ts +6 -0
  78. package/es/components/form/src/hooks/useFormActions.d.ts +12 -0
  79. package/es/components/form/src/hooks/useFormEvent.d.ts +25 -0
  80. package/es/components/form/src/hooks/useFormValue.d.ts +3 -0
  81. package/es/components/form/src/hooks/useFormValues.d.ts +11 -0
  82. package/es/components/form/src/hooks/useLabelWidth.d.ts +22 -0
  83. package/es/components/form/src/index.d.ts +2965 -0
  84. package/es/components/form/src/props.d.ts +133 -0
  85. package/es/components/form/src/types/actions.type.d.ts +15 -0
  86. package/es/components/form/src/types/form.type.d.ts +70 -0
  87. package/es/components/icons/index.d.ts +497 -0
  88. package/es/components/icons/index.js +1969 -0
  89. package/es/components/icons/index.less +42 -0
  90. package/es/components/icons/src/pick-icon.d.ts +455 -0
  91. package/es/components/icons/src/svg-icon.d.ts +44 -0
  92. package/es/components/modal/index.d.ts +3 -0
  93. package/es/components/modal/index.js +1193 -0
  94. package/es/components/modal/index.less +54 -0
  95. package/es/components/modal/src/components/CloseIcon.d.ts +40 -0
  96. package/es/components/modal/src/components/Modal.d.ts +108 -0
  97. package/es/components/modal/src/components/ModalFooter.d.ts +139 -0
  98. package/es/components/modal/src/components/ModalWrap.d.ts +153 -0
  99. package/es/components/modal/src/hooks/useDrag.d.ts +7 -0
  100. package/es/components/modal/src/hooks/useFullScreen.d.ts +6 -0
  101. package/es/components/modal/src/hooks/useModal.d.ts +5 -0
  102. package/es/components/modal/src/index.d.ts +774 -0
  103. package/es/components/modal/src/props.d.ts +100 -0
  104. package/es/components/modal/src/types/modal.type.d.ts +17 -0
  105. package/es/components/source/hooks/useDownload.d.ts +8 -0
  106. package/es/components/source/hooks/useSource.d.ts +40 -0
  107. package/es/components/source/index.d.ts +2 -0
  108. package/es/components/source/index.js +332 -0
  109. package/es/components/source/types/source.type.d.ts +37 -0
  110. package/es/components/source/utils/index.d.ts +8 -0
  111. package/es/components/table/index.d.ts +3 -0
  112. package/es/components/table/index.js +3983 -0
  113. package/es/components/table/index.less +192 -0
  114. package/es/components/table/src/components/TableAction.d.ts +70 -0
  115. package/es/components/table/src/components/TableHeader.d.ts +1136 -0
  116. package/es/components/table/src/components/TableRender.d.ts +17 -0
  117. package/es/components/table/src/components/editTable/CellComponent.d.ts +22 -0
  118. package/es/components/table/src/components/editTable/EditTableCell.d.ts +93 -0
  119. package/es/components/table/src/components/editTable/componentMap.d.ts +4 -0
  120. package/es/components/table/src/components/editTable/index.d.ts +9 -0
  121. package/es/components/table/src/components/editTable/props.d.ts +27 -0
  122. package/es/components/table/src/components/tableSetting/Column.d.ts +69 -0
  123. package/es/components/table/src/components/tableSetting/Download.d.ts +922 -0
  124. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +888 -0
  125. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +22 -0
  126. package/es/components/table/src/components/tableSetting/index.d.ts +1030 -0
  127. package/es/components/table/src/hooks/useColumns.d.ts +14 -0
  128. package/es/components/table/src/hooks/useCustomRow.d.ts +20 -0
  129. package/es/components/table/src/hooks/useDataSource.d.ts +15 -0
  130. package/es/components/table/src/hooks/useHeader.d.ts +8 -0
  131. package/es/components/table/src/hooks/useHeaderCode.d.ts +3 -0
  132. package/es/components/table/src/hooks/useLoading.d.ts +6 -0
  133. package/es/components/table/src/hooks/usePagination.d.ts +7 -0
  134. package/es/components/table/src/hooks/useRow.d.ts +5 -0
  135. package/es/components/table/src/hooks/useRowSelection.d.ts +12 -0
  136. package/es/components/table/src/hooks/useTable.d.ts +9 -0
  137. package/es/components/table/src/hooks/useTableInstance.d.ts +16 -0
  138. package/es/components/table/src/hooks/useTableScroll.d.ts +13 -0
  139. package/es/components/table/src/index.d.ts +644 -0
  140. package/es/components/table/src/props.d.ts +185 -0
  141. package/es/components/table/src/types/actions.type.d.ts +21 -0
  142. package/es/components/table/src/types/header.type.d.ts +23 -0
  143. package/es/components/table/src/types/table.type.d.ts +98 -0
  144. package/es/directives/icon.d.ts +2 -0
  145. package/es/directives/index.d.ts +7 -0
  146. package/es/directives/index.js +2015 -0
  147. package/es/directives/permission.d.ts +2 -0
  148. package/es/global.d.ts +7 -0
  149. package/es/index.d.ts +1 -0
  150. package/es/index.js +4 -0
  151. package/es/theme/index.d.ts +10 -0
  152. package/es/theme/index.js +3255 -0
  153. package/es/theme/index.less +603 -0
  154. package/es/theme/src/components/content/index.d.ts +27 -0
  155. package/es/theme/src/components/feature/back-top.d.ts +5 -0
  156. package/es/theme/src/components/feature/index.d.ts +7 -0
  157. package/es/theme/src/components/footer/index.d.ts +31 -0
  158. package/es/theme/src/components/header/components/bread-crumb.d.ts +6 -0
  159. package/es/theme/src/components/header/components/fullscreen.d.ts +5 -0
  160. package/es/theme/src/components/header/components/index.d.ts +11 -0
  161. package/es/theme/src/components/header/components/lang-picker.d.ts +23 -0
  162. package/es/theme/src/components/header/components/logo.d.ts +35 -0
  163. package/es/theme/src/components/header/components/menu-filter.d.ts +22 -0
  164. package/es/theme/src/components/header/components/notify.d.ts +24 -0
  165. package/es/theme/src/components/header/components/setting-theme.d.ts +223 -0
  166. package/es/theme/src/components/header/components/size.d.ts +282 -0
  167. package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
  168. package/es/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
  169. package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
  170. package/es/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
  171. package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
  172. package/es/theme/src/components/header/components/trigger.d.ts +10 -0
  173. package/es/theme/src/components/header/components/user-info.d.ts +37 -0
  174. package/es/theme/src/components/header/helper/change-theme.d.ts +13 -0
  175. package/es/theme/src/components/header/helper/menu-tree.d.ts +3 -0
  176. package/es/theme/src/components/header/index.d.ts +699 -0
  177. package/es/theme/src/components/header/multiple-header.d.ts +785 -0
  178. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
  179. package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
  180. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
  181. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
  182. package/es/theme/src/components/sider/components/drag-bar.d.ts +14 -0
  183. package/es/theme/src/components/sider/components/layout-menu.d.ts +22 -0
  184. package/es/theme/src/components/sider/components/props.d.ts +69 -0
  185. package/es/theme/src/components/sider/components/sider-trigger.d.ts +18 -0
  186. package/es/theme/src/components/sider/helper/sider.d.ts +12 -0
  187. package/es/theme/src/components/sider/helper/split-menu.d.ts +10 -0
  188. package/es/theme/src/components/sider/index.d.ts +70 -0
  189. package/es/theme/src/components/tabs/components/TabContent.d.ts +6 -0
  190. package/es/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
  191. package/es/theme/src/components/tabs/components/index.d.ts +3 -0
  192. package/es/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
  193. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
  194. package/es/theme/src/components/tabs/index.d.ts +63 -0
  195. package/es/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
  196. package/es/theme/src/enums/index.d.ts +1 -0
  197. package/es/theme/src/enums/theme.enum.d.ts +33 -0
  198. package/es/theme/src/hooks/index.d.ts +6 -0
  199. package/es/theme/src/hooks/useDragLine.d.ts +2 -0
  200. package/es/theme/src/hooks/useHeader.d.ts +25 -0
  201. package/es/theme/src/hooks/useMenu.d.ts +27 -0
  202. package/es/theme/src/hooks/useMultifyTab.d.ts +7 -0
  203. package/es/theme/src/hooks/useOpenKeys.d.ts +7 -0
  204. package/es/theme/src/hooks/useTheme.d.ts +9 -0
  205. package/es/theme/src/index.d.ts +1643 -0
  206. package/es/theme/src/setting/theme.setting.d.ts +2 -0
  207. package/es/theme/src/stores/index.d.ts +3 -0
  208. package/es/theme/src/stores/routeReuse.store.d.ts +23 -0
  209. package/es/theme/src/stores/theme.store.d.ts +15 -0
  210. package/es/theme/src/types/index.d.ts +3 -0
  211. package/es/theme/src/types/menu.type.d.ts +15 -0
  212. package/es/theme/src/types/theme.type.d.ts +60 -0
  213. package/es/utils/withInstall.d.ts +4 -0
  214. package/index.d.ts +10 -0
  215. package/index.js +34 -0
  216. package/package.json +3 -6
  217. package/tailwind.config.cjs +11 -0
  218. package/tsconfig.json +41 -0
  219. package/tsconfig.node.json +9 -0
  220. package/vite.config.ts +51 -0
@@ -0,0 +1,1231 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ value: StringConstructor;
3
+ placeholder: StringConstructor;
4
+ }, {
5
+ t: {
6
+ (key: string): string;
7
+ (key: string, locale: string): string;
8
+ (key: string, locale: string, list: unknown[]): string;
9
+ (key: string, locale: string, named: Record<string, unknown>): string;
10
+ (key: string, list: unknown[]): string;
11
+ (key: string, named: Record<string, unknown>): string;
12
+ };
13
+ getUiSize: import("vue").ComputedRef<import("../../../../theme/src/enums").UiSize>;
14
+ iconRef: any;
15
+ props: any;
16
+ state: any;
17
+ setState: any;
18
+ readonly InputGroup: import("vue").DefineComponent<{
19
+ prefixCls: StringConstructor;
20
+ size: {
21
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
22
+ };
23
+ compact: {
24
+ type: BooleanConstructor;
25
+ default: any;
26
+ };
27
+ onMouseenter: {
28
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
29
+ };
30
+ onMouseleave: {
31
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
32
+ };
33
+ onFocus: {
34
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
35
+ };
36
+ onBlur: {
37
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
38
+ };
39
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
40
+ prefixCls: StringConstructor;
41
+ size: {
42
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
43
+ };
44
+ compact: {
45
+ type: BooleanConstructor;
46
+ default: any;
47
+ };
48
+ onMouseenter: {
49
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
50
+ };
51
+ onMouseleave: {
52
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
53
+ };
54
+ onFocus: {
55
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
56
+ };
57
+ onBlur: {
58
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
59
+ };
60
+ }>>, {
61
+ compact: boolean;
62
+ }>;
63
+ readonly Input: {
64
+ new (...args: any[]): {
65
+ $: import("vue").ComponentInternalInstance;
66
+ $data: {};
67
+ $props: Partial<{
68
+ hidden: boolean;
69
+ disabled: boolean;
70
+ value: string | number;
71
+ type: string;
72
+ readonly: boolean;
73
+ autofocus: boolean;
74
+ loading: boolean;
75
+ allowClear: boolean;
76
+ bordered: boolean;
77
+ lazy: boolean;
78
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
79
+ id: StringConstructor;
80
+ prefixCls: StringConstructor;
81
+ inputPrefixCls: StringConstructor;
82
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
83
+ value: {
84
+ type: import("vue").PropType<string | number>;
85
+ default: any;
86
+ };
87
+ placeholder: {
88
+ type: import("vue").PropType<string | number>;
89
+ };
90
+ autocomplete: StringConstructor;
91
+ type: {
92
+ type: import("vue").PropType<string>;
93
+ default: string;
94
+ };
95
+ name: StringConstructor;
96
+ size: {
97
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
98
+ };
99
+ disabled: {
100
+ type: BooleanConstructor;
101
+ default: any;
102
+ };
103
+ readonly: {
104
+ type: BooleanConstructor;
105
+ default: any;
106
+ };
107
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
108
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
109
+ prefix: import("vue-types").VueTypeValidableDef<any>;
110
+ suffix: import("vue-types").VueTypeValidableDef<any>;
111
+ autofocus: {
112
+ type: BooleanConstructor;
113
+ default: any;
114
+ };
115
+ allowClear: {
116
+ type: BooleanConstructor;
117
+ default: any;
118
+ };
119
+ lazy: {
120
+ type: BooleanConstructor;
121
+ default: boolean;
122
+ };
123
+ maxlength: NumberConstructor;
124
+ loading: {
125
+ type: BooleanConstructor;
126
+ default: any;
127
+ };
128
+ bordered: {
129
+ type: BooleanConstructor;
130
+ default: any;
131
+ };
132
+ showCount: {
133
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
134
+ };
135
+ htmlSize: NumberConstructor;
136
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
137
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
138
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
139
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
140
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
141
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
142
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
143
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
144
+ valueModifiers: ObjectConstructor;
145
+ hidden: BooleanConstructor;
146
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "disabled" | "allowClear" | "loading" | "hidden" | "readonly" | "autofocus" | "lazy" | "bordered">;
147
+ $attrs: {
148
+ [x: string]: unknown;
149
+ };
150
+ $refs: {
151
+ [x: string]: unknown;
152
+ };
153
+ $slots: Readonly<{
154
+ [name: string]: import("vue").Slot;
155
+ }>;
156
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
157
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
158
+ $emit: (event: string, ...args: any[]) => void;
159
+ $el: any;
160
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
161
+ id: StringConstructor;
162
+ prefixCls: StringConstructor;
163
+ inputPrefixCls: StringConstructor;
164
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
165
+ value: {
166
+ type: import("vue").PropType<string | number>;
167
+ default: any;
168
+ };
169
+ placeholder: {
170
+ type: import("vue").PropType<string | number>;
171
+ };
172
+ autocomplete: StringConstructor;
173
+ type: {
174
+ type: import("vue").PropType<string>;
175
+ default: string;
176
+ };
177
+ name: StringConstructor;
178
+ size: {
179
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
180
+ };
181
+ disabled: {
182
+ type: BooleanConstructor;
183
+ default: any;
184
+ };
185
+ readonly: {
186
+ type: BooleanConstructor;
187
+ default: any;
188
+ };
189
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
190
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
191
+ prefix: import("vue-types").VueTypeValidableDef<any>;
192
+ suffix: import("vue-types").VueTypeValidableDef<any>;
193
+ autofocus: {
194
+ type: BooleanConstructor;
195
+ default: any;
196
+ };
197
+ allowClear: {
198
+ type: BooleanConstructor;
199
+ default: any;
200
+ };
201
+ lazy: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ maxlength: NumberConstructor;
206
+ loading: {
207
+ type: BooleanConstructor;
208
+ default: any;
209
+ };
210
+ bordered: {
211
+ type: BooleanConstructor;
212
+ default: any;
213
+ };
214
+ showCount: {
215
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
216
+ };
217
+ htmlSize: NumberConstructor;
218
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
219
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
220
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
221
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
222
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
223
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
224
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
225
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
226
+ valueModifiers: ObjectConstructor;
227
+ hidden: BooleanConstructor;
228
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
229
+ hidden: boolean;
230
+ disabled: boolean;
231
+ value: string | number;
232
+ type: string;
233
+ readonly: boolean;
234
+ autofocus: boolean;
235
+ loading: boolean;
236
+ allowClear: boolean;
237
+ bordered: boolean;
238
+ lazy: boolean;
239
+ }, {}, string> & {
240
+ beforeCreate?: (() => void) | (() => void)[];
241
+ created?: (() => void) | (() => void)[];
242
+ beforeMount?: (() => void) | (() => void)[];
243
+ mounted?: (() => void) | (() => void)[];
244
+ beforeUpdate?: (() => void) | (() => void)[];
245
+ updated?: (() => void) | (() => void)[];
246
+ activated?: (() => void) | (() => void)[];
247
+ deactivated?: (() => void) | (() => void)[];
248
+ beforeDestroy?: (() => void) | (() => void)[];
249
+ beforeUnmount?: (() => void) | (() => void)[];
250
+ destroyed?: (() => void) | (() => void)[];
251
+ unmounted?: (() => void) | (() => void)[];
252
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
253
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
254
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
255
+ };
256
+ $forceUpdate: () => void;
257
+ $nextTick: typeof import("vue").nextTick;
258
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
259
+ } & Readonly<import("vue").ExtractPropTypes<{
260
+ id: StringConstructor;
261
+ prefixCls: StringConstructor;
262
+ inputPrefixCls: StringConstructor;
263
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
264
+ value: {
265
+ type: import("vue").PropType<string | number>;
266
+ default: any;
267
+ };
268
+ placeholder: {
269
+ type: import("vue").PropType<string | number>;
270
+ };
271
+ autocomplete: StringConstructor;
272
+ type: {
273
+ type: import("vue").PropType<string>;
274
+ default: string;
275
+ };
276
+ name: StringConstructor;
277
+ size: {
278
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
279
+ };
280
+ disabled: {
281
+ type: BooleanConstructor;
282
+ default: any;
283
+ };
284
+ readonly: {
285
+ type: BooleanConstructor;
286
+ default: any;
287
+ };
288
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
289
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
290
+ prefix: import("vue-types").VueTypeValidableDef<any>;
291
+ suffix: import("vue-types").VueTypeValidableDef<any>;
292
+ autofocus: {
293
+ type: BooleanConstructor;
294
+ default: any;
295
+ };
296
+ allowClear: {
297
+ type: BooleanConstructor;
298
+ default: any;
299
+ };
300
+ lazy: {
301
+ type: BooleanConstructor;
302
+ default: boolean;
303
+ };
304
+ maxlength: NumberConstructor;
305
+ loading: {
306
+ type: BooleanConstructor;
307
+ default: any;
308
+ };
309
+ bordered: {
310
+ type: BooleanConstructor;
311
+ default: any;
312
+ };
313
+ showCount: {
314
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
315
+ };
316
+ htmlSize: NumberConstructor;
317
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
318
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
319
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
320
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
321
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
322
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
323
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
324
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
325
+ valueModifiers: ObjectConstructor;
326
+ hidden: BooleanConstructor;
327
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
328
+ __isFragment?: never;
329
+ __isTeleport?: never;
330
+ __isSuspense?: never;
331
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
332
+ id: StringConstructor;
333
+ prefixCls: StringConstructor;
334
+ inputPrefixCls: StringConstructor;
335
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
336
+ value: {
337
+ type: import("vue").PropType<string | number>;
338
+ default: any;
339
+ };
340
+ placeholder: {
341
+ type: import("vue").PropType<string | number>;
342
+ };
343
+ autocomplete: StringConstructor;
344
+ type: {
345
+ type: import("vue").PropType<string>;
346
+ default: string;
347
+ };
348
+ name: StringConstructor;
349
+ size: {
350
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
351
+ };
352
+ disabled: {
353
+ type: BooleanConstructor;
354
+ default: any;
355
+ };
356
+ readonly: {
357
+ type: BooleanConstructor;
358
+ default: any;
359
+ };
360
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
361
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
362
+ prefix: import("vue-types").VueTypeValidableDef<any>;
363
+ suffix: import("vue-types").VueTypeValidableDef<any>;
364
+ autofocus: {
365
+ type: BooleanConstructor;
366
+ default: any;
367
+ };
368
+ allowClear: {
369
+ type: BooleanConstructor;
370
+ default: any;
371
+ };
372
+ lazy: {
373
+ type: BooleanConstructor;
374
+ default: boolean;
375
+ };
376
+ maxlength: NumberConstructor;
377
+ loading: {
378
+ type: BooleanConstructor;
379
+ default: any;
380
+ };
381
+ bordered: {
382
+ type: BooleanConstructor;
383
+ default: any;
384
+ };
385
+ showCount: {
386
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
387
+ };
388
+ htmlSize: NumberConstructor;
389
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
390
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
391
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
392
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
393
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
394
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
395
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
396
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
397
+ valueModifiers: ObjectConstructor;
398
+ hidden: BooleanConstructor;
399
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
400
+ hidden: boolean;
401
+ disabled: boolean;
402
+ value: string | number;
403
+ type: string;
404
+ readonly: boolean;
405
+ autofocus: boolean;
406
+ loading: boolean;
407
+ allowClear: boolean;
408
+ bordered: boolean;
409
+ lazy: boolean;
410
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
411
+ readonly Group: import("vue").DefineComponent<{
412
+ prefixCls: StringConstructor;
413
+ size: {
414
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
415
+ };
416
+ compact: {
417
+ type: BooleanConstructor;
418
+ default: any;
419
+ };
420
+ onMouseenter: {
421
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
422
+ };
423
+ onMouseleave: {
424
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
425
+ };
426
+ onFocus: {
427
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
428
+ };
429
+ onBlur: {
430
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
431
+ };
432
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
433
+ prefixCls: StringConstructor;
434
+ size: {
435
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
436
+ };
437
+ compact: {
438
+ type: BooleanConstructor;
439
+ default: any;
440
+ };
441
+ onMouseenter: {
442
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
443
+ };
444
+ onMouseleave: {
445
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").MouseEventHandler>;
446
+ };
447
+ onFocus: {
448
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
449
+ };
450
+ onBlur: {
451
+ type: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
452
+ };
453
+ }>>, {
454
+ compact: boolean;
455
+ }>;
456
+ readonly Search: import("vue").DefineComponent<{
457
+ inputPrefixCls: StringConstructor;
458
+ enterButton: import("vue-types").VueTypeValidableDef<any>;
459
+ onSearch: {
460
+ type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
461
+ };
462
+ id: StringConstructor;
463
+ prefixCls: StringConstructor;
464
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
465
+ value: {
466
+ type: import("vue").PropType<string | number>;
467
+ default: any;
468
+ };
469
+ placeholder: {
470
+ type: import("vue").PropType<string | number>;
471
+ };
472
+ autocomplete: StringConstructor;
473
+ type: {
474
+ type: import("vue").PropType<string>;
475
+ default: string;
476
+ };
477
+ name: StringConstructor;
478
+ size: {
479
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
480
+ };
481
+ disabled: {
482
+ type: BooleanConstructor;
483
+ default: any;
484
+ };
485
+ readonly: {
486
+ type: BooleanConstructor;
487
+ default: any;
488
+ };
489
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
490
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
491
+ prefix: import("vue-types").VueTypeValidableDef<any>;
492
+ suffix: import("vue-types").VueTypeValidableDef<any>;
493
+ autofocus: {
494
+ type: BooleanConstructor;
495
+ default: any;
496
+ };
497
+ allowClear: {
498
+ type: BooleanConstructor;
499
+ default: any;
500
+ };
501
+ lazy: {
502
+ type: BooleanConstructor;
503
+ default: boolean;
504
+ };
505
+ maxlength: NumberConstructor;
506
+ loading: {
507
+ type: BooleanConstructor;
508
+ default: any;
509
+ };
510
+ bordered: {
511
+ type: BooleanConstructor;
512
+ default: any;
513
+ };
514
+ showCount: {
515
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
516
+ };
517
+ htmlSize: NumberConstructor;
518
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
519
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
520
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
521
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
522
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
523
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
524
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
525
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
526
+ valueModifiers: ObjectConstructor;
527
+ hidden: BooleanConstructor;
528
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
529
+ inputPrefixCls: StringConstructor;
530
+ enterButton: import("vue-types").VueTypeValidableDef<any>;
531
+ onSearch: {
532
+ type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
533
+ };
534
+ id: StringConstructor;
535
+ prefixCls: StringConstructor;
536
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
537
+ value: {
538
+ type: import("vue").PropType<string | number>;
539
+ default: any;
540
+ };
541
+ placeholder: {
542
+ type: import("vue").PropType<string | number>;
543
+ };
544
+ autocomplete: StringConstructor;
545
+ type: {
546
+ type: import("vue").PropType<string>;
547
+ default: string;
548
+ };
549
+ name: StringConstructor;
550
+ size: {
551
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
552
+ };
553
+ disabled: {
554
+ type: BooleanConstructor;
555
+ default: any;
556
+ };
557
+ readonly: {
558
+ type: BooleanConstructor;
559
+ default: any;
560
+ };
561
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
562
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
563
+ prefix: import("vue-types").VueTypeValidableDef<any>;
564
+ suffix: import("vue-types").VueTypeValidableDef<any>;
565
+ autofocus: {
566
+ type: BooleanConstructor;
567
+ default: any;
568
+ };
569
+ allowClear: {
570
+ type: BooleanConstructor;
571
+ default: any;
572
+ };
573
+ lazy: {
574
+ type: BooleanConstructor;
575
+ default: boolean;
576
+ };
577
+ maxlength: NumberConstructor;
578
+ loading: {
579
+ type: BooleanConstructor;
580
+ default: any;
581
+ };
582
+ bordered: {
583
+ type: BooleanConstructor;
584
+ default: any;
585
+ };
586
+ showCount: {
587
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
588
+ };
589
+ htmlSize: NumberConstructor;
590
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
591
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
592
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
593
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
594
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
595
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
596
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
597
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
598
+ valueModifiers: ObjectConstructor;
599
+ hidden: BooleanConstructor;
600
+ }>>, {
601
+ hidden: boolean;
602
+ disabled: boolean;
603
+ value: string | number;
604
+ type: string;
605
+ readonly: boolean;
606
+ autofocus: boolean;
607
+ loading: boolean;
608
+ allowClear: boolean;
609
+ bordered: boolean;
610
+ lazy: boolean;
611
+ }>;
612
+ readonly TextArea: import("vue").DefineComponent<{
613
+ rows: NumberConstructor;
614
+ autosize: {
615
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").AutoSizeType>;
616
+ default: any;
617
+ };
618
+ autoSize: {
619
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").AutoSizeType>;
620
+ default: any;
621
+ };
622
+ onResize: {
623
+ type: import("vue").PropType<(size: {
624
+ width: number;
625
+ height: number;
626
+ }) => void>;
627
+ };
628
+ onCompositionstart: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").CompositionEventHandler>;
629
+ onCompositionend: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").CompositionEventHandler>;
630
+ valueModifiers: ObjectConstructor;
631
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
632
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
633
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
634
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
635
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
636
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
637
+ hidden: BooleanConstructor;
638
+ prefixCls: StringConstructor;
639
+ size: {
640
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
641
+ };
642
+ disabled: {
643
+ type: BooleanConstructor;
644
+ default: any;
645
+ };
646
+ value: {
647
+ type: import("vue").PropType<string | number>;
648
+ default: any;
649
+ };
650
+ name: StringConstructor;
651
+ type: {
652
+ type: import("vue").PropType<string>;
653
+ default: string;
654
+ };
655
+ id: StringConstructor;
656
+ readonly: {
657
+ type: BooleanConstructor;
658
+ default: any;
659
+ };
660
+ autofocus: {
661
+ type: BooleanConstructor;
662
+ default: any;
663
+ };
664
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
665
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
666
+ autocomplete: StringConstructor;
667
+ placeholder: {
668
+ type: import("vue").PropType<string | number>;
669
+ };
670
+ loading: {
671
+ type: BooleanConstructor;
672
+ default: any;
673
+ };
674
+ allowClear: {
675
+ type: BooleanConstructor;
676
+ default: any;
677
+ };
678
+ bordered: {
679
+ type: BooleanConstructor;
680
+ default: any;
681
+ };
682
+ inputPrefixCls: StringConstructor;
683
+ lazy: {
684
+ type: BooleanConstructor;
685
+ default: boolean;
686
+ };
687
+ maxlength: NumberConstructor;
688
+ showCount: {
689
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
690
+ };
691
+ htmlSize: NumberConstructor;
692
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
693
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
694
+ rows: NumberConstructor;
695
+ autosize: {
696
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").AutoSizeType>;
697
+ default: any;
698
+ };
699
+ autoSize: {
700
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").AutoSizeType>;
701
+ default: any;
702
+ };
703
+ onResize: {
704
+ type: import("vue").PropType<(size: {
705
+ width: number;
706
+ height: number;
707
+ }) => void>;
708
+ };
709
+ onCompositionstart: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").CompositionEventHandler>;
710
+ onCompositionend: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").CompositionEventHandler>;
711
+ valueModifiers: ObjectConstructor;
712
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
713
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
714
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
715
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
716
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
717
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
718
+ hidden: BooleanConstructor;
719
+ prefixCls: StringConstructor;
720
+ size: {
721
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
722
+ };
723
+ disabled: {
724
+ type: BooleanConstructor;
725
+ default: any;
726
+ };
727
+ value: {
728
+ type: import("vue").PropType<string | number>;
729
+ default: any;
730
+ };
731
+ name: StringConstructor;
732
+ type: {
733
+ type: import("vue").PropType<string>;
734
+ default: string;
735
+ };
736
+ id: StringConstructor;
737
+ readonly: {
738
+ type: BooleanConstructor;
739
+ default: any;
740
+ };
741
+ autofocus: {
742
+ type: BooleanConstructor;
743
+ default: any;
744
+ };
745
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
746
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
747
+ autocomplete: StringConstructor;
748
+ placeholder: {
749
+ type: import("vue").PropType<string | number>;
750
+ };
751
+ loading: {
752
+ type: BooleanConstructor;
753
+ default: any;
754
+ };
755
+ allowClear: {
756
+ type: BooleanConstructor;
757
+ default: any;
758
+ };
759
+ bordered: {
760
+ type: BooleanConstructor;
761
+ default: any;
762
+ };
763
+ inputPrefixCls: StringConstructor;
764
+ lazy: {
765
+ type: BooleanConstructor;
766
+ default: boolean;
767
+ };
768
+ maxlength: NumberConstructor;
769
+ showCount: {
770
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
771
+ };
772
+ htmlSize: NumberConstructor;
773
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
774
+ }>>, {
775
+ hidden: boolean;
776
+ disabled: boolean;
777
+ value: string | number;
778
+ type: string;
779
+ readonly: boolean;
780
+ autofocus: boolean;
781
+ loading: boolean;
782
+ allowClear: boolean;
783
+ bordered: boolean;
784
+ lazy: boolean;
785
+ autosize: any;
786
+ autoSize: any;
787
+ }>;
788
+ readonly Password: import("vue").DefineComponent<{
789
+ prefixCls: StringConstructor;
790
+ inputPrefixCls: StringConstructor;
791
+ action: {
792
+ type: StringConstructor;
793
+ default: string;
794
+ };
795
+ visibilityToggle: {
796
+ type: BooleanConstructor;
797
+ default: boolean;
798
+ };
799
+ iconRender: FunctionConstructor;
800
+ id: StringConstructor;
801
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
802
+ value: {
803
+ type: import("vue").PropType<string | number>;
804
+ default: any;
805
+ };
806
+ placeholder: {
807
+ type: import("vue").PropType<string | number>;
808
+ };
809
+ autocomplete: StringConstructor;
810
+ type: {
811
+ type: import("vue").PropType<string>;
812
+ default: string;
813
+ };
814
+ name: StringConstructor;
815
+ size: {
816
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
817
+ };
818
+ disabled: {
819
+ type: BooleanConstructor;
820
+ default: any;
821
+ };
822
+ readonly: {
823
+ type: BooleanConstructor;
824
+ default: any;
825
+ };
826
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
827
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
828
+ prefix: import("vue-types").VueTypeValidableDef<any>;
829
+ suffix: import("vue-types").VueTypeValidableDef<any>;
830
+ autofocus: {
831
+ type: BooleanConstructor;
832
+ default: any;
833
+ };
834
+ allowClear: {
835
+ type: BooleanConstructor;
836
+ default: any;
837
+ };
838
+ lazy: {
839
+ type: BooleanConstructor;
840
+ default: boolean;
841
+ };
842
+ maxlength: NumberConstructor;
843
+ loading: {
844
+ type: BooleanConstructor;
845
+ default: any;
846
+ };
847
+ bordered: {
848
+ type: BooleanConstructor;
849
+ default: any;
850
+ };
851
+ showCount: {
852
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
853
+ };
854
+ htmlSize: NumberConstructor;
855
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
856
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
857
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
858
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
859
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
860
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
861
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
862
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
863
+ valueModifiers: ObjectConstructor;
864
+ hidden: BooleanConstructor;
865
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
866
+ prefixCls: StringConstructor;
867
+ inputPrefixCls: StringConstructor;
868
+ action: {
869
+ type: StringConstructor;
870
+ default: string;
871
+ };
872
+ visibilityToggle: {
873
+ type: BooleanConstructor;
874
+ default: boolean;
875
+ };
876
+ iconRender: FunctionConstructor;
877
+ id: StringConstructor;
878
+ defaultValue: import("vue-types").VueTypeDef<string | number>;
879
+ value: {
880
+ type: import("vue").PropType<string | number>;
881
+ default: any;
882
+ };
883
+ placeholder: {
884
+ type: import("vue").PropType<string | number>;
885
+ };
886
+ autocomplete: StringConstructor;
887
+ type: {
888
+ type: import("vue").PropType<string>;
889
+ default: string;
890
+ };
891
+ name: StringConstructor;
892
+ size: {
893
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
894
+ };
895
+ disabled: {
896
+ type: BooleanConstructor;
897
+ default: any;
898
+ };
899
+ readonly: {
900
+ type: BooleanConstructor;
901
+ default: any;
902
+ };
903
+ addonBefore: import("vue-types").VueTypeValidableDef<any>;
904
+ addonAfter: import("vue-types").VueTypeValidableDef<any>;
905
+ prefix: import("vue-types").VueTypeValidableDef<any>;
906
+ suffix: import("vue-types").VueTypeValidableDef<any>;
907
+ autofocus: {
908
+ type: BooleanConstructor;
909
+ default: any;
910
+ };
911
+ allowClear: {
912
+ type: BooleanConstructor;
913
+ default: any;
914
+ };
915
+ lazy: {
916
+ type: BooleanConstructor;
917
+ default: boolean;
918
+ };
919
+ maxlength: NumberConstructor;
920
+ loading: {
921
+ type: BooleanConstructor;
922
+ default: any;
923
+ };
924
+ bordered: {
925
+ type: BooleanConstructor;
926
+ default: any;
927
+ };
928
+ showCount: {
929
+ type: import("vue").PropType<boolean | import("ant-design-vue/lib/input/inputProps").ShowCountProps>;
930
+ };
931
+ htmlSize: NumberConstructor;
932
+ onPressEnter: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
933
+ onKeydown: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
934
+ onKeyup: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").KeyboardEventHandler>;
935
+ onFocus: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
936
+ onBlur: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").FocusEventHandler>;
937
+ onChange: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
938
+ onInput: import("vue").PropType<import("ant-design-vue/lib/_util/EventInterface").ChangeEventHandler>;
939
+ 'onUpdate:value': import("vue").PropType<(val: string) => void>;
940
+ valueModifiers: ObjectConstructor;
941
+ hidden: BooleanConstructor;
942
+ }>>, {
943
+ hidden: boolean;
944
+ disabled: boolean;
945
+ value: string | number;
946
+ type: string;
947
+ action: string;
948
+ readonly: boolean;
949
+ autofocus: boolean;
950
+ loading: boolean;
951
+ allowClear: boolean;
952
+ bordered: boolean;
953
+ lazy: boolean;
954
+ visibilityToggle: boolean;
955
+ }>;
956
+ };
957
+ readonly Button: {
958
+ new (...args: any[]): {
959
+ $: import("vue").ComponentInternalInstance;
960
+ $data: {};
961
+ $props: Partial<{
962
+ block: boolean;
963
+ disabled: boolean;
964
+ loading: boolean | {
965
+ delay?: number;
966
+ };
967
+ ghost: boolean;
968
+ danger: boolean;
969
+ htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
970
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
971
+ prefixCls: StringConstructor;
972
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
973
+ htmlType: {
974
+ type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
975
+ default: string;
976
+ };
977
+ shape: {
978
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
979
+ };
980
+ size: {
981
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
982
+ };
983
+ loading: {
984
+ type: import("vue").PropType<boolean | {
985
+ delay?: number;
986
+ }>;
987
+ default: () => boolean | {
988
+ delay?: number;
989
+ };
990
+ };
991
+ disabled: {
992
+ type: BooleanConstructor;
993
+ default: any;
994
+ };
995
+ ghost: {
996
+ type: BooleanConstructor;
997
+ default: any;
998
+ };
999
+ block: {
1000
+ type: BooleanConstructor;
1001
+ default: any;
1002
+ };
1003
+ danger: {
1004
+ type: BooleanConstructor;
1005
+ default: any;
1006
+ };
1007
+ icon: import("vue-types").VueTypeValidableDef<any>;
1008
+ href: StringConstructor;
1009
+ target: StringConstructor;
1010
+ title: StringConstructor;
1011
+ onClick: {
1012
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1013
+ };
1014
+ onMousedown: {
1015
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1016
+ };
1017
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "block" | "htmlType" | "ghost" | "danger">;
1018
+ $attrs: {
1019
+ [x: string]: unknown;
1020
+ };
1021
+ $refs: {
1022
+ [x: string]: unknown;
1023
+ };
1024
+ $slots: Readonly<{
1025
+ [name: string]: import("vue").Slot;
1026
+ }>;
1027
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1028
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1029
+ $emit: (event: string, ...args: any[]) => void;
1030
+ $el: any;
1031
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1032
+ prefixCls: StringConstructor;
1033
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
1034
+ htmlType: {
1035
+ type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
1036
+ default: string;
1037
+ };
1038
+ shape: {
1039
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
1040
+ };
1041
+ size: {
1042
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
1043
+ };
1044
+ loading: {
1045
+ type: import("vue").PropType<boolean | {
1046
+ delay?: number;
1047
+ }>;
1048
+ default: () => boolean | {
1049
+ delay?: number;
1050
+ };
1051
+ };
1052
+ disabled: {
1053
+ type: BooleanConstructor;
1054
+ default: any;
1055
+ };
1056
+ ghost: {
1057
+ type: BooleanConstructor;
1058
+ default: any;
1059
+ };
1060
+ block: {
1061
+ type: BooleanConstructor;
1062
+ default: any;
1063
+ };
1064
+ danger: {
1065
+ type: BooleanConstructor;
1066
+ default: any;
1067
+ };
1068
+ icon: import("vue-types").VueTypeValidableDef<any>;
1069
+ href: StringConstructor;
1070
+ target: StringConstructor;
1071
+ title: StringConstructor;
1072
+ onClick: {
1073
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1074
+ };
1075
+ onMousedown: {
1076
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1077
+ };
1078
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1079
+ block: boolean;
1080
+ disabled: boolean;
1081
+ loading: boolean | {
1082
+ delay?: number;
1083
+ };
1084
+ ghost: boolean;
1085
+ danger: boolean;
1086
+ htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
1087
+ }, {}, string> & {
1088
+ beforeCreate?: (() => void) | (() => void)[];
1089
+ created?: (() => void) | (() => void)[];
1090
+ beforeMount?: (() => void) | (() => void)[];
1091
+ mounted?: (() => void) | (() => void)[];
1092
+ beforeUpdate?: (() => void) | (() => void)[];
1093
+ updated?: (() => void) | (() => void)[];
1094
+ activated?: (() => void) | (() => void)[];
1095
+ deactivated?: (() => void) | (() => void)[];
1096
+ beforeDestroy?: (() => void) | (() => void)[];
1097
+ beforeUnmount?: (() => void) | (() => void)[];
1098
+ destroyed?: (() => void) | (() => void)[];
1099
+ unmounted?: (() => void) | (() => void)[];
1100
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1101
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1102
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1103
+ };
1104
+ $forceUpdate: () => void;
1105
+ $nextTick: typeof import("vue").nextTick;
1106
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
1107
+ } & Readonly<import("vue").ExtractPropTypes<{
1108
+ prefixCls: StringConstructor;
1109
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
1110
+ htmlType: {
1111
+ type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
1112
+ default: string;
1113
+ };
1114
+ shape: {
1115
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
1116
+ };
1117
+ size: {
1118
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
1119
+ };
1120
+ loading: {
1121
+ type: import("vue").PropType<boolean | {
1122
+ delay?: number;
1123
+ }>;
1124
+ default: () => boolean | {
1125
+ delay?: number;
1126
+ };
1127
+ };
1128
+ disabled: {
1129
+ type: BooleanConstructor;
1130
+ default: any;
1131
+ };
1132
+ ghost: {
1133
+ type: BooleanConstructor;
1134
+ default: any;
1135
+ };
1136
+ block: {
1137
+ type: BooleanConstructor;
1138
+ default: any;
1139
+ };
1140
+ danger: {
1141
+ type: BooleanConstructor;
1142
+ default: any;
1143
+ };
1144
+ icon: import("vue-types").VueTypeValidableDef<any>;
1145
+ href: StringConstructor;
1146
+ target: StringConstructor;
1147
+ title: StringConstructor;
1148
+ onClick: {
1149
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1150
+ };
1151
+ onMousedown: {
1152
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1153
+ };
1154
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
1155
+ __isFragment?: never;
1156
+ __isTeleport?: never;
1157
+ __isSuspense?: never;
1158
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1159
+ prefixCls: StringConstructor;
1160
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
1161
+ htmlType: {
1162
+ type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
1163
+ default: string;
1164
+ };
1165
+ shape: {
1166
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
1167
+ };
1168
+ size: {
1169
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
1170
+ };
1171
+ loading: {
1172
+ type: import("vue").PropType<boolean | {
1173
+ delay?: number;
1174
+ }>;
1175
+ default: () => boolean | {
1176
+ delay?: number;
1177
+ };
1178
+ };
1179
+ disabled: {
1180
+ type: BooleanConstructor;
1181
+ default: any;
1182
+ };
1183
+ ghost: {
1184
+ type: BooleanConstructor;
1185
+ default: any;
1186
+ };
1187
+ block: {
1188
+ type: BooleanConstructor;
1189
+ default: any;
1190
+ };
1191
+ danger: {
1192
+ type: BooleanConstructor;
1193
+ default: any;
1194
+ };
1195
+ icon: import("vue-types").VueTypeValidableDef<any>;
1196
+ href: StringConstructor;
1197
+ target: StringConstructor;
1198
+ title: StringConstructor;
1199
+ onClick: {
1200
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1201
+ };
1202
+ onMousedown: {
1203
+ type: import("vue").PropType<(event: MouseEvent) => void>;
1204
+ };
1205
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1206
+ block: boolean;
1207
+ disabled: boolean;
1208
+ loading: boolean | {
1209
+ delay?: number;
1210
+ };
1211
+ ghost: boolean;
1212
+ danger: boolean;
1213
+ htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
1214
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
1215
+ readonly Group: import("vue").DefineComponent<{
1216
+ prefixCls: StringConstructor;
1217
+ size: {
1218
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
1219
+ };
1220
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1221
+ prefixCls: StringConstructor;
1222
+ size: {
1223
+ type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
1224
+ };
1225
+ }>>, {}>;
1226
+ };
1227
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1228
+ value: StringConstructor;
1229
+ placeholder: StringConstructor;
1230
+ }>>, {}>;
1231
+ export default _sfc_main;