@dt-frames/ui 2.0.1 → 2.0.2

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 +93 -0
  41. package/es/components/container/index.js +288 -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 +18 -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 +3098 -0
  52. package/es/components/curd/src/components/Curd.d.ts +1451 -0
  53. package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
  54. package/es/components/curd/src/props.d.ts +188 -0
  55. package/es/components/curd/src/types/curd.type.d.ts +19 -0
  56. package/es/components/drawer/index.d.ts +8041 -0
  57. package/es/components/drawer/index.js +837 -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 +13 -0
  61. package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
  62. package/es/components/drawer/src/index.d.ts +8043 -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 +3367 -0
  66. package/es/components/form/index.js +1895 -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 +313 -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 +3113 -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 +3 -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 +1192 -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 +215 -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 +881 -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 +331 -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 +4414 -0
  113. package/es/components/table/index.less +183 -0
  114. package/es/components/table/src/components/TableAction.d.ts +70 -0
  115. package/es/components/table/src/components/TableHeader.d.ts +1243 -0
  116. package/es/components/table/src/components/TableRender.d.ts +13 -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 +1029 -0
  124. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +995 -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 +1137 -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 +16 -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 +122 -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 +990 -0
  140. package/es/components/table/src/props.d.ts +244 -0
  141. package/es/components/table/src/types/actions.type.d.ts +22 -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 +92 -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 +3242 -0
  151. package/es/theme/index.d.ts +10 -0
  152. package/es/theme/index.js +3242 -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 +36 -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 +23 -0
  165. package/es/theme/src/components/header/components/setting-theme.d.ts +222 -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 +36 -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 +698 -0
  177. package/es/theme/src/components/header/multiple-header.d.ts +787 -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 +1644 -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 +1 -5
  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 +78 -0
@@ -0,0 +1,3113 @@
1
+ import { Recordable } from '@dt-frames/core';
2
+ import { FormActionType } from './types/actions.type';
3
+ import { ButtonProps, FormProps, FormSchema } from './types/form.type';
4
+ declare const _sfc_main: import("vue").DefineComponent<{
5
+ mode: {
6
+ type: import("vue").PropType<"search" | "dialog">;
7
+ default: string;
8
+ };
9
+ autoFetch: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ model: {
14
+ type: import("vue").PropType<Recordable<any>>;
15
+ default: {};
16
+ };
17
+ layout: {
18
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
19
+ default: string;
20
+ };
21
+ labelWidth: {
22
+ type: import("vue").PropType<string | number>;
23
+ default: number;
24
+ };
25
+ enLabelWidth: {
26
+ type: import("vue").PropType<string | number>;
27
+ default: number;
28
+ };
29
+ labelAlign: {
30
+ type: import("vue").PropType<"left" | "right">;
31
+ default: string;
32
+ };
33
+ labelCol: {
34
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
35
+ default: () => void;
36
+ };
37
+ wrapperCol: {
38
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
39
+ default: () => void;
40
+ };
41
+ rowProps: {
42
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
43
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
44
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
45
+ prefixCls: StringConstructor;
46
+ gutter: {
47
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
48
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
49
+ };
50
+ wrap: {
51
+ type: BooleanConstructor;
52
+ default: any;
53
+ };
54
+ }>>>;
55
+ default: () => void;
56
+ };
57
+ colProps: {
58
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
59
+ default: () => void;
60
+ };
61
+ size: {
62
+ type: import("vue").PropType<"small" | "middle" | "large">;
63
+ default: string;
64
+ };
65
+ disabled: {
66
+ type: BooleanConstructor;
67
+ default: boolean;
68
+ };
69
+ compact: {
70
+ type: BooleanConstructor;
71
+ default: any;
72
+ };
73
+ schemas: {
74
+ type: import("vue").PropType<FormSchema[]>;
75
+ default: () => any[];
76
+ };
77
+ autoSearchOnEnter: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ alwaysShowLines: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ minShowColumn: {
86
+ type: NumberConstructor;
87
+ default: number;
88
+ };
89
+ showAdvancedButton: {
90
+ type: BooleanConstructor;
91
+ default: boolean;
92
+ };
93
+ allowClear: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ scrollToFirstError: {
98
+ type: BooleanConstructor;
99
+ default: boolean;
100
+ };
101
+ colon: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ loading: {
106
+ type: import("vue").PropType<{
107
+ [key: string]: import("vue").Ref<boolean>;
108
+ }>;
109
+ default: () => {
110
+ onSearch: import("vue").Ref<boolean>;
111
+ onReset: import("vue").Ref<boolean>;
112
+ };
113
+ };
114
+ onSearch: {
115
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
116
+ default: (params: Recordable<any>) => void;
117
+ };
118
+ onReset: {
119
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
120
+ default: (params: Recordable<any>) => void;
121
+ };
122
+ buttons: {
123
+ type: import("vue").PropType<boolean | ButtonProps[]>;
124
+ default: boolean;
125
+ };
126
+ resetFunc: {
127
+ type: import("vue").PropType<() => void>;
128
+ };
129
+ registerInstance: {
130
+ type: import("vue").PropType<(instance: FormActionType) => void>;
131
+ };
132
+ }, {
133
+ getAppConf: import("@dt-frames/core/es/types/app.type").AppConf;
134
+ props: any;
135
+ attrs: {
136
+ [x: string]: unknown;
137
+ };
138
+ emits: (event: "register", ...args: any[]) => void;
139
+ formElRef: import("vue").Ref<{
140
+ setProps: (props: Partial<import("vue").ExtractPropTypes<{
141
+ mode: {
142
+ type: import("vue").PropType<"search" | "dialog">;
143
+ default: string;
144
+ };
145
+ autoFetch: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
149
+ model: {
150
+ type: import("vue").PropType<Recordable<any>>;
151
+ default: {};
152
+ };
153
+ layout: {
154
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
155
+ default: string;
156
+ };
157
+ labelWidth: {
158
+ type: import("vue").PropType<string | number>;
159
+ default: number;
160
+ };
161
+ enLabelWidth: {
162
+ type: import("vue").PropType<string | number>;
163
+ default: number;
164
+ };
165
+ labelAlign: {
166
+ type: import("vue").PropType<"left" | "right">;
167
+ default: string;
168
+ };
169
+ labelCol: {
170
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
171
+ default: () => void;
172
+ };
173
+ wrapperCol: {
174
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
175
+ default: () => void;
176
+ };
177
+ rowProps: {
178
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
179
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
180
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
181
+ prefixCls: StringConstructor;
182
+ gutter: {
183
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
184
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
185
+ };
186
+ wrap: {
187
+ type: BooleanConstructor;
188
+ default: any;
189
+ };
190
+ }>>>;
191
+ default: () => void;
192
+ };
193
+ colProps: {
194
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
195
+ default: () => void;
196
+ };
197
+ size: {
198
+ type: import("vue").PropType<"small" | "middle" | "large">;
199
+ default: string;
200
+ };
201
+ disabled: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
205
+ compact: {
206
+ type: BooleanConstructor;
207
+ default: any;
208
+ };
209
+ schemas: {
210
+ type: import("vue").PropType<FormSchema[]>;
211
+ default: () => any[];
212
+ };
213
+ autoSearchOnEnter: {
214
+ type: BooleanConstructor;
215
+ default: boolean;
216
+ };
217
+ alwaysShowLines: {
218
+ type: BooleanConstructor;
219
+ default: boolean;
220
+ };
221
+ minShowColumn: {
222
+ type: NumberConstructor;
223
+ default: number;
224
+ };
225
+ showAdvancedButton: {
226
+ type: BooleanConstructor;
227
+ default: boolean;
228
+ };
229
+ allowClear: {
230
+ type: BooleanConstructor;
231
+ default: boolean;
232
+ };
233
+ scrollToFirstError: {
234
+ type: BooleanConstructor;
235
+ default: boolean;
236
+ };
237
+ colon: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ loading: {
242
+ type: import("vue").PropType<{
243
+ [key: string]: import("vue").Ref<boolean>;
244
+ }>;
245
+ default: () => {
246
+ onSearch: import("vue").Ref<boolean>;
247
+ onReset: import("vue").Ref<boolean>;
248
+ };
249
+ };
250
+ onSearch: {
251
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
252
+ default: (params: Recordable<any>) => void;
253
+ };
254
+ onReset: {
255
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
256
+ default: (params: Recordable<any>) => void;
257
+ };
258
+ buttons: {
259
+ type: import("vue").PropType<boolean | ButtonProps[]>;
260
+ default: boolean;
261
+ };
262
+ resetFunc: {
263
+ type: import("vue").PropType<() => void>;
264
+ };
265
+ registerInstance: {
266
+ type: import("vue").PropType<(instance: FormActionType) => void>;
267
+ };
268
+ }>>) => void;
269
+ updateSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
270
+ resetSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
271
+ clearValidate: (name?: string | string[]) => Promise<void>;
272
+ resetForms: () => void;
273
+ removeFormByName: (name: string | string[]) => void;
274
+ setFormValues: (values: Recordable<any>) => Promise<void>;
275
+ appendFormItems: (schema: FormSchema[], prefixField: string, first?: boolean) => void;
276
+ validate: (nameList?: (string | number)[]) => Promise<any>;
277
+ validateFields: (nameList?: (string | number)[]) => Promise<any>;
278
+ getFormValues: () => Recordable<any>;
279
+ }>;
280
+ formModel: Recordable<any>;
281
+ defaultValue: import("vue").Ref<Recordable<any>>;
282
+ propsRef: import("vue").Ref<Partial<import("vue").ExtractPropTypes<{
283
+ mode: {
284
+ type: import("vue").PropType<"search" | "dialog">;
285
+ default: string;
286
+ };
287
+ autoFetch: {
288
+ type: BooleanConstructor;
289
+ default: boolean;
290
+ };
291
+ model: {
292
+ type: import("vue").PropType<Recordable<any>>;
293
+ default: {};
294
+ };
295
+ layout: {
296
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
297
+ default: string;
298
+ };
299
+ labelWidth: {
300
+ type: import("vue").PropType<string | number>;
301
+ default: number;
302
+ };
303
+ enLabelWidth: {
304
+ type: import("vue").PropType<string | number>;
305
+ default: number;
306
+ };
307
+ labelAlign: {
308
+ type: import("vue").PropType<"left" | "right">;
309
+ default: string;
310
+ };
311
+ labelCol: {
312
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
313
+ default: () => void;
314
+ };
315
+ wrapperCol: {
316
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
317
+ default: () => void;
318
+ };
319
+ rowProps: {
320
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
321
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
322
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
323
+ prefixCls: StringConstructor;
324
+ gutter: {
325
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
326
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
327
+ };
328
+ wrap: {
329
+ type: BooleanConstructor;
330
+ default: any;
331
+ };
332
+ }>>>;
333
+ default: () => void;
334
+ };
335
+ colProps: {
336
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
337
+ default: () => void;
338
+ };
339
+ size: {
340
+ type: import("vue").PropType<"small" | "middle" | "large">;
341
+ default: string;
342
+ };
343
+ disabled: {
344
+ type: BooleanConstructor;
345
+ default: boolean;
346
+ };
347
+ compact: {
348
+ type: BooleanConstructor;
349
+ default: any;
350
+ };
351
+ schemas: {
352
+ type: import("vue").PropType<FormSchema[]>;
353
+ default: () => any[];
354
+ };
355
+ autoSearchOnEnter: {
356
+ type: BooleanConstructor;
357
+ default: boolean;
358
+ };
359
+ alwaysShowLines: {
360
+ type: BooleanConstructor;
361
+ default: boolean;
362
+ };
363
+ minShowColumn: {
364
+ type: NumberConstructor;
365
+ default: number;
366
+ };
367
+ showAdvancedButton: {
368
+ type: BooleanConstructor;
369
+ default: boolean;
370
+ };
371
+ allowClear: {
372
+ type: BooleanConstructor;
373
+ default: boolean;
374
+ };
375
+ scrollToFirstError: {
376
+ type: BooleanConstructor;
377
+ default: boolean;
378
+ };
379
+ colon: {
380
+ type: BooleanConstructor;
381
+ default: boolean;
382
+ };
383
+ loading: {
384
+ type: import("vue").PropType<{
385
+ [key: string]: import("vue").Ref<boolean>;
386
+ }>;
387
+ default: () => {
388
+ onSearch: import("vue").Ref<boolean>;
389
+ onReset: import("vue").Ref<boolean>;
390
+ };
391
+ };
392
+ onSearch: {
393
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
394
+ default: (params: Recordable<any>) => void;
395
+ };
396
+ onReset: {
397
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
398
+ default: (params: Recordable<any>) => void;
399
+ };
400
+ buttons: {
401
+ type: import("vue").PropType<boolean | ButtonProps[]>;
402
+ default: boolean;
403
+ };
404
+ resetFunc: {
405
+ type: import("vue").PropType<() => void>;
406
+ };
407
+ registerInstance: {
408
+ type: import("vue").PropType<(instance: FormActionType) => void>;
409
+ };
410
+ }>>>;
411
+ schemaRef: import("vue").Ref<{
412
+ t?: string;
413
+ name?: string | string[];
414
+ changeEvent?: string;
415
+ valueField?: string;
416
+ label?: string;
417
+ subLabel?: string;
418
+ labelWidth?: string | number;
419
+ enLabelWidth?: string | number;
420
+ toolTip?: boolean | ((model: Recordable<any>) => boolean);
421
+ toolTipProps?: {
422
+ align?: {
423
+ points?: string[];
424
+ offset?: number[];
425
+ targetOffset?: number[];
426
+ overflow?: {
427
+ adjustX?: number | boolean;
428
+ adjustY?: number | boolean;
429
+ };
430
+ useCssRight?: boolean;
431
+ useCssBottom?: boolean;
432
+ useCssTransform?: boolean;
433
+ ignoreShake?: boolean;
434
+ };
435
+ overlayStyle?: {
436
+ [x: `--${string}`]: string | number;
437
+ accentColor?: string;
438
+ alignContent?: string;
439
+ alignItems?: string;
440
+ alignSelf?: string;
441
+ alignTracks?: string;
442
+ animationComposition?: string;
443
+ animationDelay?: string;
444
+ animationDirection?: string;
445
+ animationDuration?: string;
446
+ animationFillMode?: string;
447
+ animationIterationCount?: import("csstype").AnimationIterationCountProperty;
448
+ animationName?: string;
449
+ animationPlayState?: string;
450
+ animationTimeline?: string;
451
+ animationTimingFunction?: string;
452
+ appearance?: import("csstype").AppearanceProperty;
453
+ aspectRatio?: import("csstype").AspectRatioProperty;
454
+ backdropFilter?: string;
455
+ backfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
456
+ backgroundAttachment?: string;
457
+ backgroundBlendMode?: string;
458
+ backgroundClip?: string;
459
+ backgroundColor?: string;
460
+ backgroundImage?: string;
461
+ backgroundOrigin?: string;
462
+ backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number>;
463
+ backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number>;
464
+ backgroundRepeat?: string;
465
+ backgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
466
+ blockOverflow?: string;
467
+ blockSize?: import("csstype").BlockSizeProperty<string | number>;
468
+ borderBlockColor?: string;
469
+ borderBlockEndColor?: string;
470
+ borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty;
471
+ borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number>;
472
+ borderBlockStartColor?: string;
473
+ borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty;
474
+ borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number>;
475
+ borderBlockStyle?: import("csstype").BorderBlockStyleProperty;
476
+ borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number>;
477
+ borderBottomColor?: string;
478
+ borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
479
+ borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
480
+ borderBottomStyle?: import("csstype").BorderBottomStyleProperty;
481
+ borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number>;
482
+ borderCollapse?: import("csstype").BorderCollapseProperty;
483
+ borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number>;
484
+ borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number>;
485
+ borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number>;
486
+ borderImageRepeat?: string;
487
+ borderImageSlice?: import("csstype").BorderImageSliceProperty;
488
+ borderImageSource?: string;
489
+ borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number>;
490
+ borderInlineColor?: string;
491
+ borderInlineEndColor?: string;
492
+ borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty;
493
+ borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
494
+ borderInlineStartColor?: string;
495
+ borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty;
496
+ borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number>;
497
+ borderInlineStyle?: import("csstype").BorderInlineStyleProperty;
498
+ borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number>;
499
+ borderLeftColor?: string;
500
+ borderLeftStyle?: import("csstype").BorderLeftStyleProperty;
501
+ borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number>;
502
+ borderRightColor?: string;
503
+ borderRightStyle?: import("csstype").BorderRightStyleProperty;
504
+ borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number>;
505
+ borderSpacing?: import("csstype").BorderSpacingProperty<string | number>;
506
+ borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number>;
507
+ borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number>;
508
+ borderTopColor?: string;
509
+ borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
510
+ borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
511
+ borderTopStyle?: import("csstype").BorderTopStyleProperty;
512
+ borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number>;
513
+ bottom?: import("csstype").BottomProperty<string | number>;
514
+ boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
515
+ boxShadow?: string;
516
+ boxSizing?: import("csstype").BoxSizingProperty;
517
+ breakAfter?: import("csstype").BreakAfterProperty;
518
+ breakBefore?: import("csstype").BreakBeforeProperty;
519
+ breakInside?: import("csstype").BreakInsideProperty;
520
+ captionSide?: import("csstype").CaptionSideProperty;
521
+ caretColor?: string;
522
+ clear?: import("csstype").ClearProperty;
523
+ clipPath?: string;
524
+ color?: string;
525
+ colorAdjust?: import("csstype").PrintColorAdjustProperty;
526
+ colorScheme?: string;
527
+ columnCount?: import("csstype").ColumnCountProperty;
528
+ columnFill?: import("csstype").ColumnFillProperty;
529
+ columnGap?: import("csstype").ColumnGapProperty<string | number>;
530
+ columnRuleColor?: string;
531
+ columnRuleStyle?: string;
532
+ columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
533
+ columnSpan?: import("csstype").ColumnSpanProperty;
534
+ columnWidth?: import("csstype").ColumnWidthProperty<string | number>;
535
+ contain?: string;
536
+ content?: string;
537
+ contentVisibility?: import("csstype").ContentVisibilityProperty;
538
+ counterIncrement?: string;
539
+ counterReset?: string;
540
+ counterSet?: string;
541
+ cursor?: string;
542
+ direction?: import("csstype").DirectionProperty;
543
+ display?: string;
544
+ emptyCells?: import("csstype").EmptyCellsProperty;
545
+ filter?: string;
546
+ flexBasis?: import("csstype").FlexBasisProperty<string | number>;
547
+ flexDirection?: import("csstype").FlexDirectionProperty;
548
+ flexGrow?: import("csstype").GlobalsNumber;
549
+ flexShrink?: import("csstype").GlobalsNumber;
550
+ flexWrap?: import("csstype").FlexWrapProperty;
551
+ float?: import("csstype").FloatProperty;
552
+ fontFamily?: string;
553
+ fontFeatureSettings?: string;
554
+ fontKerning?: import("csstype").FontKerningProperty;
555
+ fontLanguageOverride?: string;
556
+ fontOpticalSizing?: import("csstype").FontOpticalSizingProperty;
557
+ fontSize?: import("csstype").FontSizeProperty<string | number>;
558
+ fontSizeAdjust?: import("csstype").FontSizeAdjustProperty;
559
+ fontSmooth?: import("csstype").FontSmoothProperty<string | number>;
560
+ fontStretch?: string;
561
+ fontStyle?: string;
562
+ fontSynthesis?: string;
563
+ fontVariant?: string;
564
+ fontVariantAlternates?: string;
565
+ fontVariantCaps?: import("csstype").FontVariantCapsProperty;
566
+ fontVariantEastAsian?: string;
567
+ fontVariantLigatures?: string;
568
+ fontVariantNumeric?: string;
569
+ fontVariantPosition?: import("csstype").FontVariantPositionProperty;
570
+ fontVariationSettings?: string;
571
+ fontWeight?: import("csstype").FontWeightProperty;
572
+ forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty;
573
+ gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number>;
574
+ gridAutoFlow?: string;
575
+ gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number>;
576
+ gridColumnEnd?: import("csstype").GridColumnEndProperty;
577
+ gridColumnStart?: import("csstype").GridColumnStartProperty;
578
+ gridRowEnd?: import("csstype").GridRowEndProperty;
579
+ gridRowStart?: import("csstype").GridRowStartProperty;
580
+ gridTemplateAreas?: string;
581
+ gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number>;
582
+ gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number>;
583
+ hangingPunctuation?: string;
584
+ height?: import("csstype").HeightProperty<string | number>;
585
+ hyphenateCharacter?: string;
586
+ hyphens?: import("csstype").HyphensProperty;
587
+ imageOrientation?: string;
588
+ imageRendering?: import("csstype").ImageRenderingProperty;
589
+ imageResolution?: string;
590
+ initialLetter?: import("csstype").InitialLetterProperty;
591
+ inlineSize?: import("csstype").InlineSizeProperty<string | number>;
592
+ inputSecurity?: import("csstype").InputSecurityProperty;
593
+ inset?: import("csstype").InsetProperty<string | number>;
594
+ insetBlock?: import("csstype").InsetBlockProperty<string | number>;
595
+ insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
596
+ insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
597
+ insetInline?: import("csstype").InsetInlineProperty<string | number>;
598
+ insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
599
+ insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
600
+ isolation?: import("csstype").IsolationProperty;
601
+ justifyContent?: string;
602
+ justifyItems?: string;
603
+ justifySelf?: string;
604
+ justifyTracks?: string;
605
+ left?: import("csstype").LeftProperty<string | number>;
606
+ letterSpacing?: import("csstype").LetterSpacingProperty<string | number>;
607
+ lineBreak?: import("csstype").LineBreakProperty;
608
+ lineHeight?: import("csstype").LineHeightProperty<string | number>;
609
+ lineHeightStep?: import("csstype").LineHeightStepProperty<string | number>;
610
+ listStyleImage?: string;
611
+ listStylePosition?: import("csstype").ListStylePositionProperty;
612
+ listStyleType?: string;
613
+ marginBlock?: import("csstype").MarginBlockProperty<string | number>;
614
+ marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number>;
615
+ marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number>;
616
+ marginBottom?: import("csstype").MarginBottomProperty<string | number>;
617
+ marginInline?: import("csstype").MarginInlineProperty<string | number>;
618
+ marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number>;
619
+ marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number>;
620
+ marginLeft?: import("csstype").MarginLeftProperty<string | number>;
621
+ marginRight?: import("csstype").MarginRightProperty<string | number>;
622
+ marginTop?: import("csstype").MarginTopProperty<string | number>;
623
+ maskBorderMode?: import("csstype").MaskBorderModeProperty;
624
+ maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
625
+ maskBorderRepeat?: string;
626
+ maskBorderSlice?: import("csstype").MaskBorderSliceProperty;
627
+ maskBorderSource?: string;
628
+ maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
629
+ maskClip?: string;
630
+ maskComposite?: string;
631
+ maskImage?: string;
632
+ maskMode?: string;
633
+ maskOrigin?: string;
634
+ maskPosition?: import("csstype").MaskPositionProperty<string | number>;
635
+ maskRepeat?: string;
636
+ maskSize?: import("csstype").MaskSizeProperty<string | number>;
637
+ maskType?: import("csstype").MaskTypeProperty;
638
+ mathDepth?: import("csstype").MathDepthProperty;
639
+ mathShift?: import("csstype").MathShiftProperty;
640
+ mathStyle?: import("csstype").MathStyleProperty;
641
+ maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number>;
642
+ maxHeight?: import("csstype").MaxHeightProperty<string | number>;
643
+ maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
644
+ maxLines?: import("csstype").MaxLinesProperty;
645
+ maxWidth?: import("csstype").MaxWidthProperty<string | number>;
646
+ minBlockSize?: import("csstype").MinBlockSizeProperty<string | number>;
647
+ minHeight?: import("csstype").MinHeightProperty<string | number>;
648
+ minInlineSize?: import("csstype").MinInlineSizeProperty<string | number>;
649
+ minWidth?: import("csstype").MinWidthProperty<string | number>;
650
+ mixBlendMode?: import("csstype").MixBlendModeProperty;
651
+ motionDistance?: import("csstype").OffsetDistanceProperty<string | number>;
652
+ motionPath?: string;
653
+ motionRotation?: string;
654
+ objectFit?: import("csstype").ObjectFitProperty;
655
+ objectPosition?: import("csstype").ObjectPositionProperty<string | number>;
656
+ offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number>;
657
+ offsetDistance?: import("csstype").OffsetDistanceProperty<string | number>;
658
+ offsetPath?: string;
659
+ offsetRotate?: string;
660
+ offsetRotation?: string;
661
+ opacity?: import("csstype").OpacityProperty;
662
+ order?: import("csstype").GlobalsNumber;
663
+ orphans?: import("csstype").GlobalsNumber;
664
+ outlineColor?: string;
665
+ outlineOffset?: import("csstype").OutlineOffsetProperty<string | number>;
666
+ outlineStyle?: string;
667
+ outlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
668
+ overflowAnchor?: import("csstype").OverflowAnchorProperty;
669
+ overflowBlock?: import("csstype").OverflowBlockProperty;
670
+ overflowClipBox?: import("csstype").OverflowClipBoxProperty;
671
+ overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number>;
672
+ overflowInline?: import("csstype").OverflowInlineProperty;
673
+ overflowWrap?: import("csstype").OverflowWrapProperty;
674
+ overflowX?: import("csstype").OverflowXProperty;
675
+ overflowY?: import("csstype").OverflowYProperty;
676
+ overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty;
677
+ overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty;
678
+ overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty;
679
+ overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty;
680
+ paddingBlock?: import("csstype").PaddingBlockProperty<string | number>;
681
+ paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number>;
682
+ paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number>;
683
+ paddingBottom?: import("csstype").PaddingBottomProperty<string | number>;
684
+ paddingInline?: import("csstype").PaddingInlineProperty<string | number>;
685
+ paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
686
+ paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number>;
687
+ paddingLeft?: import("csstype").PaddingLeftProperty<string | number>;
688
+ paddingRight?: import("csstype").PaddingRightProperty<string | number>;
689
+ paddingTop?: import("csstype").PaddingTopProperty<string | number>;
690
+ pageBreakAfter?: import("csstype").PageBreakAfterProperty;
691
+ pageBreakBefore?: import("csstype").PageBreakBeforeProperty;
692
+ pageBreakInside?: import("csstype").PageBreakInsideProperty;
693
+ paintOrder?: string;
694
+ perspective?: import("csstype").PerspectiveProperty<string | number>;
695
+ perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
696
+ placeContent?: string;
697
+ pointerEvents?: import("csstype").PointerEventsProperty;
698
+ position?: import("csstype").PositionProperty;
699
+ printColorAdjust?: import("csstype").PrintColorAdjustProperty;
700
+ quotes?: string;
701
+ resize?: import("csstype").ResizeProperty;
702
+ right?: import("csstype").RightProperty<string | number>;
703
+ rotate?: string;
704
+ rowGap?: import("csstype").RowGapProperty<string | number>;
705
+ rubyAlign?: import("csstype").RubyAlignProperty;
706
+ rubyMerge?: import("csstype").RubyMergeProperty;
707
+ rubyPosition?: string;
708
+ scale?: import("csstype").ScaleProperty;
709
+ scrollBehavior?: import("csstype").ScrollBehaviorProperty;
710
+ scrollMargin?: import("csstype").ScrollMarginProperty<string | number>;
711
+ scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number>;
712
+ scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
713
+ scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
714
+ scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
715
+ scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number>;
716
+ scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
717
+ scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
718
+ scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
719
+ scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
720
+ scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
721
+ scrollPadding?: import("csstype").ScrollPaddingProperty<string | number>;
722
+ scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number>;
723
+ scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
724
+ scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
725
+ scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number>;
726
+ scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number>;
727
+ scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
728
+ scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
729
+ scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number>;
730
+ scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number>;
731
+ scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number>;
732
+ scrollSnapAlign?: string;
733
+ scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number>;
734
+ scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
735
+ scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
736
+ scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
737
+ scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
738
+ scrollSnapStop?: import("csstype").ScrollSnapStopProperty;
739
+ scrollSnapType?: string;
740
+ scrollbarColor?: string;
741
+ scrollbarGutter?: string;
742
+ scrollbarWidth?: import("csstype").ScrollbarWidthProperty;
743
+ shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty;
744
+ shapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
745
+ shapeOutside?: string;
746
+ tabSize?: import("csstype").TabSizeProperty<string | number>;
747
+ tableLayout?: import("csstype").TableLayoutProperty;
748
+ textAlign?: import("csstype").TextAlignProperty;
749
+ textAlignLast?: import("csstype").TextAlignLastProperty;
750
+ textCombineUpright?: string;
751
+ textDecorationColor?: string;
752
+ textDecorationLine?: string;
753
+ textDecorationSkip?: string;
754
+ textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty;
755
+ textDecorationStyle?: import("csstype").TextDecorationStyleProperty;
756
+ textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number>;
757
+ textEmphasisColor?: string;
758
+ textEmphasisPosition?: string;
759
+ textEmphasisStyle?: string;
760
+ textIndent?: import("csstype").TextIndentProperty<string | number>;
761
+ textJustify?: import("csstype").TextJustifyProperty;
762
+ textOrientation?: import("csstype").TextOrientationProperty;
763
+ textOverflow?: string;
764
+ textRendering?: import("csstype").TextRenderingProperty;
765
+ textShadow?: string;
766
+ textSizeAdjust?: string;
767
+ textTransform?: import("csstype").TextTransformProperty;
768
+ textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number>;
769
+ textUnderlinePosition?: string;
770
+ top?: import("csstype").TopProperty<string | number>;
771
+ touchAction?: string;
772
+ transform?: string;
773
+ transformBox?: import("csstype").TransformBoxProperty;
774
+ transformOrigin?: import("csstype").TransformOriginProperty<string | number>;
775
+ transformStyle?: import("csstype").TransformStyleProperty;
776
+ transitionDelay?: string;
777
+ transitionDuration?: string;
778
+ transitionProperty?: string;
779
+ transitionTimingFunction?: string;
780
+ translate?: import("csstype").TranslateProperty<string | number>;
781
+ unicodeBidi?: import("csstype").UnicodeBidiProperty;
782
+ userSelect?: import("csstype").UserSelectProperty;
783
+ verticalAlign?: import("csstype").VerticalAlignProperty<string | number>;
784
+ visibility?: import("csstype").VisibilityProperty;
785
+ whiteSpace?: import("csstype").WhiteSpaceProperty;
786
+ widows?: import("csstype").GlobalsNumber;
787
+ width?: import("csstype").WidthProperty<string | number>;
788
+ willChange?: string;
789
+ wordBreak?: import("csstype").WordBreakProperty;
790
+ wordSpacing?: import("csstype").WordSpacingProperty<string | number>;
791
+ wordWrap?: import("csstype").WordWrapProperty;
792
+ writingMode?: import("csstype").WritingModeProperty;
793
+ zIndex?: import("csstype").ZIndexProperty;
794
+ zoom?: import("csstype").ZoomProperty;
795
+ all?: import("csstype").Globals;
796
+ animation?: import("csstype").AnimationProperty;
797
+ background?: import("csstype").BackgroundProperty<string | number>;
798
+ backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number>;
799
+ border?: import("csstype").BorderProperty<string | number>;
800
+ borderBlock?: import("csstype").BorderBlockProperty<string | number>;
801
+ borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number>;
802
+ borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number>;
803
+ borderBottom?: import("csstype").BorderBottomProperty<string | number>;
804
+ borderColor?: string;
805
+ borderImage?: import("csstype").BorderImageProperty;
806
+ borderInline?: import("csstype").BorderInlineProperty<string | number>;
807
+ borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number>;
808
+ borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number>;
809
+ borderLeft?: import("csstype").BorderLeftProperty<string | number>;
810
+ borderRadius?: import("csstype").BorderRadiusProperty<string | number>;
811
+ borderRight?: import("csstype").BorderRightProperty<string | number>;
812
+ borderStyle?: string;
813
+ borderTop?: import("csstype").BorderTopProperty<string | number>;
814
+ borderWidth?: import("csstype").BorderWidthProperty<string | number>;
815
+ columnRule?: import("csstype").ColumnRuleProperty<string | number>;
816
+ columns?: import("csstype").ColumnsProperty<string | number>;
817
+ flex?: import("csstype").FlexProperty<string | number>;
818
+ flexFlow?: string;
819
+ font?: string;
820
+ gap?: import("csstype").GapProperty<string | number>;
821
+ grid?: string;
822
+ gridArea?: import("csstype").GridAreaProperty;
823
+ gridColumn?: import("csstype").GridColumnProperty;
824
+ gridRow?: import("csstype").GridRowProperty;
825
+ gridTemplate?: string;
826
+ lineClamp?: import("csstype").LineClampProperty;
827
+ listStyle?: string;
828
+ margin?: import("csstype").MarginProperty<string | number>;
829
+ mask?: import("csstype").MaskProperty<string | number>;
830
+ maskBorder?: import("csstype").MaskBorderProperty;
831
+ motion?: import("csstype").OffsetProperty<string | number>;
832
+ offset?: import("csstype").OffsetProperty<string | number>;
833
+ outline?: import("csstype").OutlineProperty<string | number>;
834
+ overflow?: string;
835
+ overscrollBehavior?: string;
836
+ padding?: import("csstype").PaddingProperty<string | number>;
837
+ placeItems?: string;
838
+ placeSelf?: string;
839
+ textDecoration?: import("csstype").TextDecorationProperty<string | number>;
840
+ textEmphasis?: string;
841
+ transition?: string;
842
+ MozAnimationDelay?: string;
843
+ MozAnimationDirection?: string;
844
+ MozAnimationDuration?: string;
845
+ MozAnimationFillMode?: string;
846
+ MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
847
+ MozAnimationName?: string;
848
+ MozAnimationPlayState?: string;
849
+ MozAnimationTimingFunction?: string;
850
+ MozAppearance?: import("csstype").MozAppearanceProperty;
851
+ MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
852
+ MozBorderBottomColors?: string;
853
+ MozBorderEndColor?: string;
854
+ MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty;
855
+ MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
856
+ MozBorderLeftColors?: string;
857
+ MozBorderRightColors?: string;
858
+ MozBorderStartColor?: string;
859
+ MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty;
860
+ MozBorderTopColors?: string;
861
+ MozBoxSizing?: import("csstype").BoxSizingProperty;
862
+ MozColumnCount?: import("csstype").ColumnCountProperty;
863
+ MozColumnFill?: import("csstype").ColumnFillProperty;
864
+ MozColumnRuleColor?: string;
865
+ MozColumnRuleStyle?: string;
866
+ MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
867
+ MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
868
+ MozContextProperties?: string;
869
+ MozFontFeatureSettings?: string;
870
+ MozFontLanguageOverride?: string;
871
+ MozHyphens?: import("csstype").HyphensProperty;
872
+ MozImageRegion?: string;
873
+ MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
874
+ MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
875
+ MozOrient?: import("csstype").MozOrientProperty;
876
+ MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
877
+ MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
878
+ MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
879
+ MozPerspective?: import("csstype").PerspectiveProperty<string | number>;
880
+ MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
881
+ MozStackSizing?: import("csstype").MozStackSizingProperty;
882
+ MozTabSize?: import("csstype").TabSizeProperty<string | number>;
883
+ MozTextBlink?: import("csstype").MozTextBlinkProperty;
884
+ MozTextSizeAdjust?: string;
885
+ MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
886
+ MozTransformStyle?: import("csstype").TransformStyleProperty;
887
+ MozTransitionDelay?: string;
888
+ MozTransitionDuration?: string;
889
+ MozTransitionProperty?: string;
890
+ MozTransitionTimingFunction?: string;
891
+ MozUserFocus?: import("csstype").MozUserFocusProperty;
892
+ MozUserModify?: import("csstype").MozUserModifyProperty;
893
+ MozUserSelect?: import("csstype").UserSelectProperty;
894
+ MozWindowDragging?: import("csstype").MozWindowDraggingProperty;
895
+ MozWindowShadow?: import("csstype").MozWindowShadowProperty;
896
+ msAccelerator?: import("csstype").MsAcceleratorProperty;
897
+ msBlockProgression?: import("csstype").MsBlockProgressionProperty;
898
+ msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty;
899
+ msContentZoomLimitMax?: string;
900
+ msContentZoomLimitMin?: string;
901
+ msContentZoomSnapPoints?: string;
902
+ msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty;
903
+ msContentZooming?: import("csstype").MsContentZoomingProperty;
904
+ msFilter?: string;
905
+ msFlexDirection?: import("csstype").FlexDirectionProperty;
906
+ msFlexPositive?: import("csstype").GlobalsNumber;
907
+ msFlowFrom?: string;
908
+ msFlowInto?: string;
909
+ msGridColumns?: import("csstype").MsGridColumnsProperty<string | number>;
910
+ msGridRows?: import("csstype").MsGridRowsProperty<string | number>;
911
+ msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty;
912
+ msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty;
913
+ msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty;
914
+ msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
915
+ msHyphens?: import("csstype").HyphensProperty;
916
+ msImeAlign?: import("csstype").MsImeAlignProperty;
917
+ msLineBreak?: import("csstype").LineBreakProperty;
918
+ msOrder?: import("csstype").GlobalsNumber;
919
+ msOverflowStyle?: import("csstype").MsOverflowStyleProperty;
920
+ msOverflowX?: import("csstype").OverflowXProperty;
921
+ msOverflowY?: import("csstype").OverflowYProperty;
922
+ msScrollChaining?: import("csstype").MsScrollChainingProperty;
923
+ msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
924
+ msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number>;
925
+ msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
926
+ msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number>;
927
+ msScrollRails?: import("csstype").MsScrollRailsProperty;
928
+ msScrollSnapPointsX?: string;
929
+ msScrollSnapPointsY?: string;
930
+ msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty;
931
+ msScrollTranslation?: import("csstype").MsScrollTranslationProperty;
932
+ msScrollbar3dlightColor?: string;
933
+ msScrollbarArrowColor?: string;
934
+ msScrollbarBaseColor?: string;
935
+ msScrollbarDarkshadowColor?: string;
936
+ msScrollbarFaceColor?: string;
937
+ msScrollbarHighlightColor?: string;
938
+ msScrollbarShadowColor?: string;
939
+ msScrollbarTrackColor?: string;
940
+ msTextAutospace?: import("csstype").MsTextAutospaceProperty;
941
+ msTextCombineHorizontal?: string;
942
+ msTextOverflow?: string;
943
+ msTouchAction?: string;
944
+ msTouchSelect?: import("csstype").MsTouchSelectProperty;
945
+ msTransform?: string;
946
+ msTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
947
+ msTransitionDelay?: string;
948
+ msTransitionDuration?: string;
949
+ msTransitionProperty?: string;
950
+ msTransitionTimingFunction?: string;
951
+ msUserSelect?: import("csstype").MsUserSelectProperty;
952
+ msWordBreak?: import("csstype").WordBreakProperty;
953
+ msWrapFlow?: import("csstype").MsWrapFlowProperty;
954
+ msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number>;
955
+ msWrapThrough?: import("csstype").MsWrapThroughProperty;
956
+ msWritingMode?: import("csstype").WritingModeProperty;
957
+ WebkitAlignContent?: string;
958
+ WebkitAlignItems?: string;
959
+ WebkitAlignSelf?: string;
960
+ WebkitAnimationDelay?: string;
961
+ WebkitAnimationDirection?: string;
962
+ WebkitAnimationDuration?: string;
963
+ WebkitAnimationFillMode?: string;
964
+ WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
965
+ WebkitAnimationName?: string;
966
+ WebkitAnimationPlayState?: string;
967
+ WebkitAnimationTimingFunction?: string;
968
+ WebkitAppearance?: import("csstype").WebkitAppearanceProperty;
969
+ WebkitBackdropFilter?: string;
970
+ WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
971
+ WebkitBackgroundClip?: string;
972
+ WebkitBackgroundOrigin?: string;
973
+ WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
974
+ WebkitBorderBeforeColor?: string;
975
+ WebkitBorderBeforeStyle?: string;
976
+ WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
977
+ WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
978
+ WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
979
+ WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty;
980
+ WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
981
+ WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
982
+ WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
983
+ WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number>;
984
+ WebkitBoxShadow?: string;
985
+ WebkitBoxSizing?: import("csstype").BoxSizingProperty;
986
+ WebkitClipPath?: string;
987
+ WebkitColumnCount?: import("csstype").ColumnCountProperty;
988
+ WebkitColumnFill?: import("csstype").ColumnFillProperty;
989
+ WebkitColumnRuleColor?: string;
990
+ WebkitColumnRuleStyle?: string;
991
+ WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
992
+ WebkitColumnSpan?: import("csstype").ColumnSpanProperty;
993
+ WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
994
+ WebkitFilter?: string;
995
+ WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number>;
996
+ WebkitFlexDirection?: import("csstype").FlexDirectionProperty;
997
+ WebkitFlexGrow?: import("csstype").GlobalsNumber;
998
+ WebkitFlexShrink?: import("csstype").GlobalsNumber;
999
+ WebkitFlexWrap?: import("csstype").FlexWrapProperty;
1000
+ WebkitFontFeatureSettings?: string;
1001
+ WebkitFontKerning?: import("csstype").FontKerningProperty;
1002
+ WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
1003
+ WebkitFontVariantLigatures?: string;
1004
+ WebkitHyphenateCharacter?: string;
1005
+ WebkitHyphens?: import("csstype").HyphensProperty;
1006
+ WebkitInitialLetter?: import("csstype").InitialLetterProperty;
1007
+ WebkitJustifyContent?: string;
1008
+ WebkitLineBreak?: import("csstype").LineBreakProperty;
1009
+ WebkitLineClamp?: import("csstype").WebkitLineClampProperty;
1010
+ WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
1011
+ WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
1012
+ WebkitMaskAttachment?: string;
1013
+ WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
1014
+ WebkitMaskBoxImageRepeat?: string;
1015
+ WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty;
1016
+ WebkitMaskBoxImageSource?: string;
1017
+ WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
1018
+ WebkitMaskClip?: string;
1019
+ WebkitMaskComposite?: string;
1020
+ WebkitMaskImage?: string;
1021
+ WebkitMaskOrigin?: string;
1022
+ WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number>;
1023
+ WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number>;
1024
+ WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number>;
1025
+ WebkitMaskRepeat?: string;
1026
+ WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty;
1027
+ WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty;
1028
+ WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number>;
1029
+ WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
1030
+ WebkitOrder?: import("csstype").GlobalsNumber;
1031
+ WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty;
1032
+ WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
1033
+ WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
1034
+ WebkitPerspective?: import("csstype").PerspectiveProperty<string | number>;
1035
+ WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
1036
+ WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty;
1037
+ WebkitRubyPosition?: string;
1038
+ WebkitScrollSnapType?: string;
1039
+ WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
1040
+ WebkitTapHighlightColor?: string;
1041
+ WebkitTextCombine?: string;
1042
+ WebkitTextDecorationColor?: string;
1043
+ WebkitTextDecorationLine?: string;
1044
+ WebkitTextDecorationSkip?: string;
1045
+ WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
1046
+ WebkitTextEmphasisColor?: string;
1047
+ WebkitTextEmphasisPosition?: string;
1048
+ WebkitTextEmphasisStyle?: string;
1049
+ WebkitTextFillColor?: string;
1050
+ WebkitTextOrientation?: import("csstype").TextOrientationProperty;
1051
+ WebkitTextSizeAdjust?: string;
1052
+ WebkitTextStrokeColor?: string;
1053
+ WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
1054
+ WebkitTextUnderlinePosition?: string;
1055
+ WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty;
1056
+ WebkitTransform?: string;
1057
+ WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
1058
+ WebkitTransformStyle?: import("csstype").TransformStyleProperty;
1059
+ WebkitTransitionDelay?: string;
1060
+ WebkitTransitionDuration?: string;
1061
+ WebkitTransitionProperty?: string;
1062
+ WebkitTransitionTimingFunction?: string;
1063
+ WebkitUserModify?: import("csstype").WebkitUserModifyProperty;
1064
+ WebkitUserSelect?: import("csstype").UserSelectProperty;
1065
+ WebkitWritingMode?: import("csstype").WritingModeProperty;
1066
+ MozAnimation?: import("csstype").AnimationProperty;
1067
+ MozBorderImage?: import("csstype").BorderImageProperty;
1068
+ MozColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
1069
+ MozColumns?: import("csstype").ColumnsProperty<string | number>;
1070
+ MozTransition?: string;
1071
+ msContentZoomLimit?: string;
1072
+ msContentZoomSnap?: string;
1073
+ msFlex?: import("csstype").FlexProperty<string | number>;
1074
+ msScrollLimit?: string;
1075
+ msScrollSnapX?: string;
1076
+ msScrollSnapY?: string;
1077
+ msTransition?: string;
1078
+ WebkitAnimation?: import("csstype").AnimationProperty;
1079
+ WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number>;
1080
+ WebkitBorderImage?: import("csstype").BorderImageProperty;
1081
+ WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
1082
+ WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
1083
+ WebkitColumns?: import("csstype").ColumnsProperty<string | number>;
1084
+ WebkitFlex?: import("csstype").FlexProperty<string | number>;
1085
+ WebkitFlexFlow?: string;
1086
+ WebkitMask?: import("csstype").WebkitMaskProperty<string | number>;
1087
+ WebkitMaskBoxImage?: import("csstype").MaskBorderProperty;
1088
+ WebkitTextEmphasis?: string;
1089
+ WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number>;
1090
+ WebkitTransition?: string;
1091
+ azimuth?: string;
1092
+ boxAlign?: import("csstype").BoxAlignProperty;
1093
+ boxDirection?: import("csstype").BoxDirectionProperty;
1094
+ boxFlex?: import("csstype").GlobalsNumber;
1095
+ boxFlexGroup?: import("csstype").GlobalsNumber;
1096
+ boxLines?: import("csstype").BoxLinesProperty;
1097
+ boxOrdinalGroup?: import("csstype").GlobalsNumber;
1098
+ boxOrient?: import("csstype").BoxOrientProperty;
1099
+ boxPack?: import("csstype").BoxPackProperty;
1100
+ clip?: string;
1101
+ gridColumnGap?: import("csstype").GridColumnGapProperty<string | number>;
1102
+ gridGap?: import("csstype").GridGapProperty<string | number>;
1103
+ gridRowGap?: import("csstype").GridRowGapProperty<string | number>;
1104
+ imeMode?: import("csstype").ImeModeProperty;
1105
+ offsetBlock?: import("csstype").InsetBlockProperty<string | number>;
1106
+ offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
1107
+ offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
1108
+ offsetInline?: import("csstype").InsetInlineProperty<string | number>;
1109
+ offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
1110
+ offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
1111
+ scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
1112
+ scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number>;
1113
+ scrollSnapPointsX?: string;
1114
+ scrollSnapPointsY?: string;
1115
+ scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty;
1116
+ scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty;
1117
+ KhtmlBoxAlign?: import("csstype").BoxAlignProperty;
1118
+ KhtmlBoxDirection?: import("csstype").BoxDirectionProperty;
1119
+ KhtmlBoxFlex?: import("csstype").GlobalsNumber;
1120
+ KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber;
1121
+ KhtmlBoxLines?: import("csstype").BoxLinesProperty;
1122
+ KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber;
1123
+ KhtmlBoxOrient?: import("csstype").BoxOrientProperty;
1124
+ KhtmlBoxPack?: import("csstype").BoxPackProperty;
1125
+ KhtmlLineBreak?: import("csstype").LineBreakProperty;
1126
+ KhtmlOpacity?: import("csstype").OpacityProperty;
1127
+ KhtmlUserSelect?: import("csstype").UserSelectProperty;
1128
+ MozBackgroundClip?: string;
1129
+ MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty;
1130
+ MozBackgroundOrigin?: string;
1131
+ MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
1132
+ MozBinding?: string;
1133
+ MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
1134
+ MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1135
+ MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1136
+ MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1137
+ MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1138
+ MozBoxAlign?: import("csstype").BoxAlignProperty;
1139
+ MozBoxDirection?: import("csstype").BoxDirectionProperty;
1140
+ MozBoxFlex?: import("csstype").GlobalsNumber;
1141
+ MozBoxOrdinalGroup?: import("csstype").GlobalsNumber;
1142
+ MozBoxOrient?: import("csstype").BoxOrientProperty;
1143
+ MozBoxPack?: import("csstype").BoxPackProperty;
1144
+ MozBoxShadow?: string;
1145
+ MozFloatEdge?: import("csstype").MozFloatEdgeProperty;
1146
+ MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty;
1147
+ MozOpacity?: import("csstype").OpacityProperty;
1148
+ MozOutline?: import("csstype").OutlineProperty<string | number>;
1149
+ MozOutlineColor?: string;
1150
+ MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number>;
1151
+ MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
1152
+ MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
1153
+ MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
1154
+ MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
1155
+ MozOutlineStyle?: string;
1156
+ MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
1157
+ MozTextAlignLast?: import("csstype").TextAlignLastProperty;
1158
+ MozTextDecorationColor?: string;
1159
+ MozTextDecorationLine?: string;
1160
+ MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
1161
+ MozUserInput?: import("csstype").MozUserInputProperty;
1162
+ msImeMode?: import("csstype").ImeModeProperty;
1163
+ OAnimation?: import("csstype").AnimationProperty;
1164
+ OAnimationDelay?: string;
1165
+ OAnimationDirection?: string;
1166
+ OAnimationDuration?: string;
1167
+ OAnimationFillMode?: string;
1168
+ OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
1169
+ OAnimationName?: string;
1170
+ OAnimationPlayState?: string;
1171
+ OAnimationTimingFunction?: string;
1172
+ OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
1173
+ OBorderImage?: import("csstype").BorderImageProperty;
1174
+ OObjectFit?: import("csstype").ObjectFitProperty;
1175
+ OObjectPosition?: import("csstype").ObjectPositionProperty<string | number>;
1176
+ OTabSize?: import("csstype").TabSizeProperty<string | number>;
1177
+ OTextOverflow?: string;
1178
+ OTransform?: string;
1179
+ OTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
1180
+ OTransition?: string;
1181
+ OTransitionDelay?: string;
1182
+ OTransitionDuration?: string;
1183
+ OTransitionProperty?: string;
1184
+ OTransitionTimingFunction?: string;
1185
+ WebkitBoxAlign?: import("csstype").BoxAlignProperty;
1186
+ WebkitBoxDirection?: import("csstype").BoxDirectionProperty;
1187
+ WebkitBoxFlex?: import("csstype").GlobalsNumber;
1188
+ WebkitBoxFlexGroup?: import("csstype").GlobalsNumber;
1189
+ WebkitBoxLines?: import("csstype").BoxLinesProperty;
1190
+ WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber;
1191
+ WebkitBoxOrient?: import("csstype").BoxOrientProperty;
1192
+ WebkitBoxPack?: import("csstype").BoxPackProperty;
1193
+ WebkitScrollSnapPointsX?: string;
1194
+ WebkitScrollSnapPointsY?: string;
1195
+ alignmentBaseline?: import("csstype").AlignmentBaselineProperty;
1196
+ baselineShift?: import("csstype").BaselineShiftProperty<string | number>;
1197
+ clipRule?: import("csstype").ClipRuleProperty;
1198
+ colorInterpolation?: import("csstype").ColorInterpolationProperty;
1199
+ colorRendering?: import("csstype").ColorRenderingProperty;
1200
+ dominantBaseline?: import("csstype").DominantBaselineProperty;
1201
+ fill?: string;
1202
+ fillOpacity?: import("csstype").GlobalsNumber;
1203
+ fillRule?: import("csstype").FillRuleProperty;
1204
+ floodColor?: string;
1205
+ floodOpacity?: import("csstype").GlobalsNumber;
1206
+ glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty;
1207
+ lightingColor?: string;
1208
+ marker?: string;
1209
+ markerEnd?: string;
1210
+ markerMid?: string;
1211
+ markerStart?: string;
1212
+ shapeRendering?: import("csstype").ShapeRenderingProperty;
1213
+ stopColor?: string;
1214
+ stopOpacity?: import("csstype").GlobalsNumber;
1215
+ stroke?: string;
1216
+ strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number>;
1217
+ strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number>;
1218
+ strokeLinecap?: import("csstype").StrokeLinecapProperty;
1219
+ strokeLinejoin?: import("csstype").StrokeLinejoinProperty;
1220
+ strokeMiterlimit?: import("csstype").GlobalsNumber;
1221
+ strokeOpacity?: import("csstype").GlobalsNumber;
1222
+ strokeWidth?: import("csstype").StrokeWidthProperty<string | number>;
1223
+ textAnchor?: import("csstype").TextAnchorProperty;
1224
+ vectorEffect?: import("csstype").VectorEffectProperty;
1225
+ "accent-color"?: string;
1226
+ "align-content"?: string;
1227
+ "align-items"?: string;
1228
+ "align-self"?: string;
1229
+ "align-tracks"?: string;
1230
+ "animation-composition"?: string;
1231
+ "animation-delay"?: string;
1232
+ "animation-direction"?: string;
1233
+ "animation-duration"?: string;
1234
+ "animation-fill-mode"?: string;
1235
+ "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1236
+ "animation-name"?: string;
1237
+ "animation-play-state"?: string;
1238
+ "animation-timeline"?: string;
1239
+ "animation-timing-function"?: string;
1240
+ "aspect-ratio"?: import("csstype").AspectRatioProperty;
1241
+ "backdrop-filter"?: string;
1242
+ "backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
1243
+ "background-attachment"?: string;
1244
+ "background-blend-mode"?: string;
1245
+ "background-clip"?: string;
1246
+ "background-color"?: string;
1247
+ "background-image"?: string;
1248
+ "background-origin"?: string;
1249
+ "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number>;
1250
+ "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number>;
1251
+ "background-repeat"?: string;
1252
+ "background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1253
+ "block-overflow"?: string;
1254
+ "block-size"?: import("csstype").BlockSizeProperty<string | number>;
1255
+ "border-block-color"?: string;
1256
+ "border-block-end-color"?: string;
1257
+ "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty;
1258
+ "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number>;
1259
+ "border-block-start-color"?: string;
1260
+ "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty;
1261
+ "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number>;
1262
+ "border-block-style"?: import("csstype").BorderBlockStyleProperty;
1263
+ "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number>;
1264
+ "border-bottom-color"?: string;
1265
+ "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1266
+ "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1267
+ "border-bottom-style"?: import("csstype").BorderBottomStyleProperty;
1268
+ "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number>;
1269
+ "border-collapse"?: import("csstype").BorderCollapseProperty;
1270
+ "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number>;
1271
+ "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number>;
1272
+ "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number>;
1273
+ "border-image-repeat"?: string;
1274
+ "border-image-slice"?: import("csstype").BorderImageSliceProperty;
1275
+ "border-image-source"?: string;
1276
+ "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number>;
1277
+ "border-inline-color"?: string;
1278
+ "border-inline-end-color"?: string;
1279
+ "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty;
1280
+ "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
1281
+ "border-inline-start-color"?: string;
1282
+ "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty;
1283
+ "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number>;
1284
+ "border-inline-style"?: import("csstype").BorderInlineStyleProperty;
1285
+ "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number>;
1286
+ "border-left-color"?: string;
1287
+ "border-left-style"?: import("csstype").BorderLeftStyleProperty;
1288
+ "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number>;
1289
+ "border-right-color"?: string;
1290
+ "border-right-style"?: import("csstype").BorderRightStyleProperty;
1291
+ "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number>;
1292
+ "border-spacing"?: import("csstype").BorderSpacingProperty<string | number>;
1293
+ "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number>;
1294
+ "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number>;
1295
+ "border-top-color"?: string;
1296
+ "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1297
+ "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1298
+ "border-top-style"?: import("csstype").BorderTopStyleProperty;
1299
+ "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number>;
1300
+ "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
1301
+ "box-shadow"?: string;
1302
+ "box-sizing"?: import("csstype").BoxSizingProperty;
1303
+ "break-after"?: import("csstype").BreakAfterProperty;
1304
+ "break-before"?: import("csstype").BreakBeforeProperty;
1305
+ "break-inside"?: import("csstype").BreakInsideProperty;
1306
+ "caption-side"?: import("csstype").CaptionSideProperty;
1307
+ "caret-color"?: string;
1308
+ "clip-path"?: string;
1309
+ "color-adjust"?: import("csstype").PrintColorAdjustProperty;
1310
+ "color-scheme"?: string;
1311
+ "column-count"?: import("csstype").ColumnCountProperty;
1312
+ "column-fill"?: import("csstype").ColumnFillProperty;
1313
+ "column-gap"?: import("csstype").ColumnGapProperty<string | number>;
1314
+ "column-rule-color"?: string;
1315
+ "column-rule-style"?: string;
1316
+ "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
1317
+ "column-span"?: import("csstype").ColumnSpanProperty;
1318
+ "column-width"?: import("csstype").ColumnWidthProperty<string | number>;
1319
+ "content-visibility"?: import("csstype").ContentVisibilityProperty;
1320
+ "counter-increment"?: string;
1321
+ "counter-reset"?: string;
1322
+ "counter-set"?: string;
1323
+ "empty-cells"?: import("csstype").EmptyCellsProperty;
1324
+ "flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
1325
+ "flex-direction"?: import("csstype").FlexDirectionProperty;
1326
+ "flex-grow"?: import("csstype").GlobalsNumber;
1327
+ "flex-shrink"?: import("csstype").GlobalsNumber;
1328
+ "flex-wrap"?: import("csstype").FlexWrapProperty;
1329
+ "font-family"?: string;
1330
+ "font-feature-settings"?: string;
1331
+ "font-kerning"?: import("csstype").FontKerningProperty;
1332
+ "font-language-override"?: string;
1333
+ "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty;
1334
+ "font-size"?: import("csstype").FontSizeProperty<string | number>;
1335
+ "font-size-adjust"?: import("csstype").FontSizeAdjustProperty;
1336
+ "font-smooth"?: import("csstype").FontSmoothProperty<string | number>;
1337
+ "font-stretch"?: string;
1338
+ "font-style"?: string;
1339
+ "font-synthesis"?: string;
1340
+ "font-variant"?: string;
1341
+ "font-variant-alternates"?: string;
1342
+ "font-variant-caps"?: import("csstype").FontVariantCapsProperty;
1343
+ "font-variant-east-asian"?: string;
1344
+ "font-variant-ligatures"?: string;
1345
+ "font-variant-numeric"?: string;
1346
+ "font-variant-position"?: import("csstype").FontVariantPositionProperty;
1347
+ "font-variation-settings"?: string;
1348
+ "font-weight"?: import("csstype").FontWeightProperty;
1349
+ "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty;
1350
+ "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number>;
1351
+ "grid-auto-flow"?: string;
1352
+ "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number>;
1353
+ "grid-column-end"?: import("csstype").GridColumnEndProperty;
1354
+ "grid-column-start"?: import("csstype").GridColumnStartProperty;
1355
+ "grid-row-end"?: import("csstype").GridRowEndProperty;
1356
+ "grid-row-start"?: import("csstype").GridRowStartProperty;
1357
+ "grid-template-areas"?: string;
1358
+ "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number>;
1359
+ "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number>;
1360
+ "hanging-punctuation"?: string;
1361
+ "hyphenate-character"?: string;
1362
+ "image-orientation"?: string;
1363
+ "image-rendering"?: import("csstype").ImageRenderingProperty;
1364
+ "image-resolution"?: string;
1365
+ "initial-letter"?: import("csstype").InitialLetterProperty;
1366
+ "inline-size"?: import("csstype").InlineSizeProperty<string | number>;
1367
+ "input-security"?: import("csstype").InputSecurityProperty;
1368
+ "inset-block"?: import("csstype").InsetBlockProperty<string | number>;
1369
+ "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
1370
+ "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
1371
+ "inset-inline"?: import("csstype").InsetInlineProperty<string | number>;
1372
+ "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
1373
+ "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
1374
+ "justify-content"?: string;
1375
+ "justify-items"?: string;
1376
+ "justify-self"?: string;
1377
+ "justify-tracks"?: string;
1378
+ "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number>;
1379
+ "line-break"?: import("csstype").LineBreakProperty;
1380
+ "line-height"?: import("csstype").LineHeightProperty<string | number>;
1381
+ "line-height-step"?: import("csstype").LineHeightStepProperty<string | number>;
1382
+ "list-style-image"?: string;
1383
+ "list-style-position"?: import("csstype").ListStylePositionProperty;
1384
+ "list-style-type"?: string;
1385
+ "margin-block"?: import("csstype").MarginBlockProperty<string | number>;
1386
+ "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number>;
1387
+ "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number>;
1388
+ "margin-bottom"?: import("csstype").MarginBottomProperty<string | number>;
1389
+ "margin-inline"?: import("csstype").MarginInlineProperty<string | number>;
1390
+ "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1391
+ "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1392
+ "margin-left"?: import("csstype").MarginLeftProperty<string | number>;
1393
+ "margin-right"?: import("csstype").MarginRightProperty<string | number>;
1394
+ "margin-top"?: import("csstype").MarginTopProperty<string | number>;
1395
+ "mask-border-mode"?: import("csstype").MaskBorderModeProperty;
1396
+ "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
1397
+ "mask-border-repeat"?: string;
1398
+ "mask-border-slice"?: import("csstype").MaskBorderSliceProperty;
1399
+ "mask-border-source"?: string;
1400
+ "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
1401
+ "mask-clip"?: string;
1402
+ "mask-composite"?: string;
1403
+ "mask-image"?: string;
1404
+ "mask-mode"?: string;
1405
+ "mask-origin"?: string;
1406
+ "mask-position"?: import("csstype").MaskPositionProperty<string | number>;
1407
+ "mask-repeat"?: string;
1408
+ "mask-size"?: import("csstype").MaskSizeProperty<string | number>;
1409
+ "mask-type"?: import("csstype").MaskTypeProperty;
1410
+ "math-depth"?: import("csstype").MathDepthProperty;
1411
+ "math-shift"?: import("csstype").MathShiftProperty;
1412
+ "math-style"?: import("csstype").MathStyleProperty;
1413
+ "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number>;
1414
+ "max-height"?: import("csstype").MaxHeightProperty<string | number>;
1415
+ "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
1416
+ "max-lines"?: import("csstype").MaxLinesProperty;
1417
+ "max-width"?: import("csstype").MaxWidthProperty<string | number>;
1418
+ "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number>;
1419
+ "min-height"?: import("csstype").MinHeightProperty<string | number>;
1420
+ "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number>;
1421
+ "min-width"?: import("csstype").MinWidthProperty<string | number>;
1422
+ "mix-blend-mode"?: import("csstype").MixBlendModeProperty;
1423
+ "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
1424
+ "motion-path"?: string;
1425
+ "motion-rotation"?: string;
1426
+ "object-fit"?: import("csstype").ObjectFitProperty;
1427
+ "object-position"?: import("csstype").ObjectPositionProperty<string | number>;
1428
+ "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number>;
1429
+ "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
1430
+ "offset-path"?: string;
1431
+ "offset-rotate"?: string;
1432
+ "offset-rotation"?: string;
1433
+ "outline-color"?: string;
1434
+ "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number>;
1435
+ "outline-style"?: string;
1436
+ "outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
1437
+ "overflow-anchor"?: import("csstype").OverflowAnchorProperty;
1438
+ "overflow-block"?: import("csstype").OverflowBlockProperty;
1439
+ "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty;
1440
+ "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number>;
1441
+ "overflow-inline"?: import("csstype").OverflowInlineProperty;
1442
+ "overflow-wrap"?: import("csstype").OverflowWrapProperty;
1443
+ "overflow-x"?: import("csstype").OverflowXProperty;
1444
+ "overflow-y"?: import("csstype").OverflowYProperty;
1445
+ "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty;
1446
+ "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty;
1447
+ "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty;
1448
+ "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty;
1449
+ "padding-block"?: import("csstype").PaddingBlockProperty<string | number>;
1450
+ "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number>;
1451
+ "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number>;
1452
+ "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number>;
1453
+ "padding-inline"?: import("csstype").PaddingInlineProperty<string | number>;
1454
+ "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1455
+ "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1456
+ "padding-left"?: import("csstype").PaddingLeftProperty<string | number>;
1457
+ "padding-right"?: import("csstype").PaddingRightProperty<string | number>;
1458
+ "padding-top"?: import("csstype").PaddingTopProperty<string | number>;
1459
+ "page-break-after"?: import("csstype").PageBreakAfterProperty;
1460
+ "page-break-before"?: import("csstype").PageBreakBeforeProperty;
1461
+ "page-break-inside"?: import("csstype").PageBreakInsideProperty;
1462
+ "paint-order"?: string;
1463
+ "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1464
+ "place-content"?: string;
1465
+ "pointer-events"?: import("csstype").PointerEventsProperty;
1466
+ "print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
1467
+ "row-gap"?: import("csstype").RowGapProperty<string | number>;
1468
+ "ruby-align"?: import("csstype").RubyAlignProperty;
1469
+ "ruby-merge"?: import("csstype").RubyMergeProperty;
1470
+ "ruby-position"?: string;
1471
+ "scroll-behavior"?: import("csstype").ScrollBehaviorProperty;
1472
+ "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number>;
1473
+ "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number>;
1474
+ "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
1475
+ "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
1476
+ "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
1477
+ "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number>;
1478
+ "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
1479
+ "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
1480
+ "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
1481
+ "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
1482
+ "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
1483
+ "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number>;
1484
+ "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number>;
1485
+ "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
1486
+ "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
1487
+ "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number>;
1488
+ "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number>;
1489
+ "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
1490
+ "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
1491
+ "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number>;
1492
+ "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number>;
1493
+ "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number>;
1494
+ "scroll-snap-align"?: string;
1495
+ "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number>;
1496
+ "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
1497
+ "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
1498
+ "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
1499
+ "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
1500
+ "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty;
1501
+ "scroll-snap-type"?: string;
1502
+ "scrollbar-color"?: string;
1503
+ "scrollbar-gutter"?: string;
1504
+ "scrollbar-width"?: import("csstype").ScrollbarWidthProperty;
1505
+ "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty;
1506
+ "shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
1507
+ "shape-outside"?: string;
1508
+ "tab-size"?: import("csstype").TabSizeProperty<string | number>;
1509
+ "table-layout"?: import("csstype").TableLayoutProperty;
1510
+ "text-align"?: import("csstype").TextAlignProperty;
1511
+ "text-align-last"?: import("csstype").TextAlignLastProperty;
1512
+ "text-combine-upright"?: string;
1513
+ "text-decoration-color"?: string;
1514
+ "text-decoration-line"?: string;
1515
+ "text-decoration-skip"?: string;
1516
+ "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty;
1517
+ "text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1518
+ "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number>;
1519
+ "text-emphasis-color"?: string;
1520
+ "text-emphasis-position"?: string;
1521
+ "text-emphasis-style"?: string;
1522
+ "text-indent"?: import("csstype").TextIndentProperty<string | number>;
1523
+ "text-justify"?: import("csstype").TextJustifyProperty;
1524
+ "text-orientation"?: import("csstype").TextOrientationProperty;
1525
+ "text-overflow"?: string;
1526
+ "text-rendering"?: import("csstype").TextRenderingProperty;
1527
+ "text-shadow"?: string;
1528
+ "text-size-adjust"?: string;
1529
+ "text-transform"?: import("csstype").TextTransformProperty;
1530
+ "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number>;
1531
+ "text-underline-position"?: string;
1532
+ "touch-action"?: string;
1533
+ "transform-box"?: import("csstype").TransformBoxProperty;
1534
+ "transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1535
+ "transform-style"?: import("csstype").TransformStyleProperty;
1536
+ "transition-delay"?: string;
1537
+ "transition-duration"?: string;
1538
+ "transition-property"?: string;
1539
+ "transition-timing-function"?: string;
1540
+ "unicode-bidi"?: import("csstype").UnicodeBidiProperty;
1541
+ "user-select"?: import("csstype").UserSelectProperty;
1542
+ "vertical-align"?: import("csstype").VerticalAlignProperty<string | number>;
1543
+ "white-space"?: import("csstype").WhiteSpaceProperty;
1544
+ "will-change"?: string;
1545
+ "word-break"?: import("csstype").WordBreakProperty;
1546
+ "word-spacing"?: import("csstype").WordSpacingProperty<string | number>;
1547
+ "word-wrap"?: import("csstype").WordWrapProperty;
1548
+ "writing-mode"?: import("csstype").WritingModeProperty;
1549
+ "z-index"?: import("csstype").ZIndexProperty;
1550
+ "background-position"?: import("csstype").BackgroundPositionProperty<string | number>;
1551
+ "border-block"?: import("csstype").BorderBlockProperty<string | number>;
1552
+ "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number>;
1553
+ "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number>;
1554
+ "border-bottom"?: import("csstype").BorderBottomProperty<string | number>;
1555
+ "border-color"?: string;
1556
+ "border-image"?: import("csstype").BorderImageProperty;
1557
+ "border-inline"?: import("csstype").BorderInlineProperty<string | number>;
1558
+ "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number>;
1559
+ "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number>;
1560
+ "border-left"?: import("csstype").BorderLeftProperty<string | number>;
1561
+ "border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1562
+ "border-right"?: import("csstype").BorderRightProperty<string | number>;
1563
+ "border-style"?: string;
1564
+ "border-top"?: import("csstype").BorderTopProperty<string | number>;
1565
+ "border-width"?: import("csstype").BorderWidthProperty<string | number>;
1566
+ "column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1567
+ "flex-flow"?: string;
1568
+ "grid-area"?: import("csstype").GridAreaProperty;
1569
+ "grid-column"?: import("csstype").GridColumnProperty;
1570
+ "grid-row"?: import("csstype").GridRowProperty;
1571
+ "grid-template"?: string;
1572
+ "line-clamp"?: import("csstype").LineClampProperty;
1573
+ "list-style"?: string;
1574
+ "mask-border"?: import("csstype").MaskBorderProperty;
1575
+ "overscroll-behavior"?: string;
1576
+ "place-items"?: string;
1577
+ "place-self"?: string;
1578
+ "text-decoration"?: import("csstype").TextDecorationProperty<string | number>;
1579
+ "text-emphasis"?: string;
1580
+ "-moz-animation-delay"?: string;
1581
+ "-moz-animation-direction"?: string;
1582
+ "-moz-animation-duration"?: string;
1583
+ "-moz-animation-fill-mode"?: string;
1584
+ "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1585
+ "-moz-animation-name"?: string;
1586
+ "-moz-animation-play-state"?: string;
1587
+ "-moz-animation-timing-function"?: string;
1588
+ "-moz-appearance"?: import("csstype").MozAppearanceProperty;
1589
+ "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
1590
+ "-moz-border-bottom-colors"?: string;
1591
+ "-moz-border-end-color"?: string;
1592
+ "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty;
1593
+ "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
1594
+ "-moz-border-left-colors"?: string;
1595
+ "-moz-border-right-colors"?: string;
1596
+ "-moz-border-start-color"?: string;
1597
+ "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty;
1598
+ "-moz-border-top-colors"?: string;
1599
+ "-moz-box-sizing"?: import("csstype").BoxSizingProperty;
1600
+ "-moz-column-count"?: import("csstype").ColumnCountProperty;
1601
+ "-moz-column-fill"?: import("csstype").ColumnFillProperty;
1602
+ "-moz-column-rule-color"?: string;
1603
+ "-moz-column-rule-style"?: string;
1604
+ "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
1605
+ "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
1606
+ "-moz-context-properties"?: string;
1607
+ "-moz-font-feature-settings"?: string;
1608
+ "-moz-font-language-override"?: string;
1609
+ "-moz-hyphens"?: import("csstype").HyphensProperty;
1610
+ "-moz-image-region"?: string;
1611
+ "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1612
+ "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1613
+ "-moz-orient"?: import("csstype").MozOrientProperty;
1614
+ "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
1615
+ "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1616
+ "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1617
+ "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number>;
1618
+ "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1619
+ "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty;
1620
+ "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number>;
1621
+ "-moz-text-blink"?: import("csstype").MozTextBlinkProperty;
1622
+ "-moz-text-size-adjust"?: string;
1623
+ "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1624
+ "-moz-transform-style"?: import("csstype").TransformStyleProperty;
1625
+ "-moz-transition-delay"?: string;
1626
+ "-moz-transition-duration"?: string;
1627
+ "-moz-transition-property"?: string;
1628
+ "-moz-transition-timing-function"?: string;
1629
+ "-moz-user-focus"?: import("csstype").MozUserFocusProperty;
1630
+ "-moz-user-modify"?: import("csstype").MozUserModifyProperty;
1631
+ "-moz-user-select"?: import("csstype").UserSelectProperty;
1632
+ "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty;
1633
+ "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty;
1634
+ "-ms-accelerator"?: import("csstype").MsAcceleratorProperty;
1635
+ "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty;
1636
+ "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty;
1637
+ "-ms-content-zoom-limit-max"?: string;
1638
+ "-ms-content-zoom-limit-min"?: string;
1639
+ "-ms-content-zoom-snap-points"?: string;
1640
+ "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty;
1641
+ "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty;
1642
+ "-ms-filter"?: string;
1643
+ "-ms-flex-direction"?: import("csstype").FlexDirectionProperty;
1644
+ "-ms-flex-positive"?: import("csstype").GlobalsNumber;
1645
+ "-ms-flow-from"?: string;
1646
+ "-ms-flow-into"?: string;
1647
+ "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number>;
1648
+ "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number>;
1649
+ "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty;
1650
+ "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty;
1651
+ "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty;
1652
+ "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
1653
+ "-ms-hyphens"?: import("csstype").HyphensProperty;
1654
+ "-ms-ime-align"?: import("csstype").MsImeAlignProperty;
1655
+ "-ms-line-break"?: import("csstype").LineBreakProperty;
1656
+ "-ms-order"?: import("csstype").GlobalsNumber;
1657
+ "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty;
1658
+ "-ms-overflow-x"?: import("csstype").OverflowXProperty;
1659
+ "-ms-overflow-y"?: import("csstype").OverflowYProperty;
1660
+ "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty;
1661
+ "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
1662
+ "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number>;
1663
+ "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
1664
+ "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number>;
1665
+ "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty;
1666
+ "-ms-scroll-snap-points-x"?: string;
1667
+ "-ms-scroll-snap-points-y"?: string;
1668
+ "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty;
1669
+ "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty;
1670
+ "-ms-scrollbar-3dlight-color"?: string;
1671
+ "-ms-scrollbar-arrow-color"?: string;
1672
+ "-ms-scrollbar-base-color"?: string;
1673
+ "-ms-scrollbar-darkshadow-color"?: string;
1674
+ "-ms-scrollbar-face-color"?: string;
1675
+ "-ms-scrollbar-highlight-color"?: string;
1676
+ "-ms-scrollbar-shadow-color"?: string;
1677
+ "-ms-scrollbar-track-color"?: string;
1678
+ "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty;
1679
+ "-ms-text-combine-horizontal"?: string;
1680
+ "-ms-text-overflow"?: string;
1681
+ "-ms-touch-action"?: string;
1682
+ "-ms-touch-select"?: import("csstype").MsTouchSelectProperty;
1683
+ "-ms-transform"?: string;
1684
+ "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1685
+ "-ms-transition-delay"?: string;
1686
+ "-ms-transition-duration"?: string;
1687
+ "-ms-transition-property"?: string;
1688
+ "-ms-transition-timing-function"?: string;
1689
+ "-ms-user-select"?: import("csstype").MsUserSelectProperty;
1690
+ "-ms-word-break"?: import("csstype").WordBreakProperty;
1691
+ "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty;
1692
+ "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number>;
1693
+ "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty;
1694
+ "-ms-writing-mode"?: import("csstype").WritingModeProperty;
1695
+ "-webkit-align-content"?: string;
1696
+ "-webkit-align-items"?: string;
1697
+ "-webkit-align-self"?: string;
1698
+ "-webkit-animation-delay"?: string;
1699
+ "-webkit-animation-direction"?: string;
1700
+ "-webkit-animation-duration"?: string;
1701
+ "-webkit-animation-fill-mode"?: string;
1702
+ "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1703
+ "-webkit-animation-name"?: string;
1704
+ "-webkit-animation-play-state"?: string;
1705
+ "-webkit-animation-timing-function"?: string;
1706
+ "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty;
1707
+ "-webkit-backdrop-filter"?: string;
1708
+ "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
1709
+ "-webkit-background-clip"?: string;
1710
+ "-webkit-background-origin"?: string;
1711
+ "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1712
+ "-webkit-border-before-color"?: string;
1713
+ "-webkit-border-before-style"?: string;
1714
+ "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
1715
+ "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1716
+ "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1717
+ "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty;
1718
+ "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1719
+ "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1720
+ "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
1721
+ "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number>;
1722
+ "-webkit-box-shadow"?: string;
1723
+ "-webkit-box-sizing"?: import("csstype").BoxSizingProperty;
1724
+ "-webkit-clip-path"?: string;
1725
+ "-webkit-column-count"?: import("csstype").ColumnCountProperty;
1726
+ "-webkit-column-fill"?: import("csstype").ColumnFillProperty;
1727
+ "-webkit-column-rule-color"?: string;
1728
+ "-webkit-column-rule-style"?: string;
1729
+ "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
1730
+ "-webkit-column-span"?: import("csstype").ColumnSpanProperty;
1731
+ "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
1732
+ "-webkit-filter"?: string;
1733
+ "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
1734
+ "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty;
1735
+ "-webkit-flex-grow"?: import("csstype").GlobalsNumber;
1736
+ "-webkit-flex-shrink"?: import("csstype").GlobalsNumber;
1737
+ "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty;
1738
+ "-webkit-font-feature-settings"?: string;
1739
+ "-webkit-font-kerning"?: import("csstype").FontKerningProperty;
1740
+ "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
1741
+ "-webkit-font-variant-ligatures"?: string;
1742
+ "-webkit-hyphenate-character"?: string;
1743
+ "-webkit-hyphens"?: import("csstype").HyphensProperty;
1744
+ "-webkit-initial-letter"?: import("csstype").InitialLetterProperty;
1745
+ "-webkit-justify-content"?: string;
1746
+ "-webkit-line-break"?: import("csstype").LineBreakProperty;
1747
+ "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty;
1748
+ "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1749
+ "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1750
+ "-webkit-mask-attachment"?: string;
1751
+ "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
1752
+ "-webkit-mask-box-image-repeat"?: string;
1753
+ "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty;
1754
+ "-webkit-mask-box-image-source"?: string;
1755
+ "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
1756
+ "-webkit-mask-clip"?: string;
1757
+ "-webkit-mask-composite"?: string;
1758
+ "-webkit-mask-image"?: string;
1759
+ "-webkit-mask-origin"?: string;
1760
+ "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number>;
1761
+ "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number>;
1762
+ "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number>;
1763
+ "-webkit-mask-repeat"?: string;
1764
+ "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty;
1765
+ "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty;
1766
+ "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number>;
1767
+ "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
1768
+ "-webkit-order"?: import("csstype").GlobalsNumber;
1769
+ "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty;
1770
+ "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1771
+ "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1772
+ "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number>;
1773
+ "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1774
+ "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
1775
+ "-webkit-ruby-position"?: string;
1776
+ "-webkit-scroll-snap-type"?: string;
1777
+ "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
1778
+ "-webkit-tap-highlight-color"?: string;
1779
+ "-webkit-text-combine"?: string;
1780
+ "-webkit-text-decoration-color"?: string;
1781
+ "-webkit-text-decoration-line"?: string;
1782
+ "-webkit-text-decoration-skip"?: string;
1783
+ "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1784
+ "-webkit-text-emphasis-color"?: string;
1785
+ "-webkit-text-emphasis-position"?: string;
1786
+ "-webkit-text-emphasis-style"?: string;
1787
+ "-webkit-text-fill-color"?: string;
1788
+ "-webkit-text-orientation"?: import("csstype").TextOrientationProperty;
1789
+ "-webkit-text-size-adjust"?: string;
1790
+ "-webkit-text-stroke-color"?: string;
1791
+ "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
1792
+ "-webkit-text-underline-position"?: string;
1793
+ "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty;
1794
+ "-webkit-transform"?: string;
1795
+ "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1796
+ "-webkit-transform-style"?: import("csstype").TransformStyleProperty;
1797
+ "-webkit-transition-delay"?: string;
1798
+ "-webkit-transition-duration"?: string;
1799
+ "-webkit-transition-property"?: string;
1800
+ "-webkit-transition-timing-function"?: string;
1801
+ "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty;
1802
+ "-webkit-user-select"?: import("csstype").UserSelectProperty;
1803
+ "-webkit-writing-mode"?: import("csstype").WritingModeProperty;
1804
+ "-moz-animation"?: import("csstype").AnimationProperty;
1805
+ "-moz-border-image"?: import("csstype").BorderImageProperty;
1806
+ "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1807
+ "-moz-columns"?: import("csstype").ColumnsProperty<string | number>;
1808
+ "-moz-transition"?: string;
1809
+ "-ms-content-zoom-limit"?: string;
1810
+ "-ms-content-zoom-snap"?: string;
1811
+ "-ms-flex"?: import("csstype").FlexProperty<string | number>;
1812
+ "-ms-scroll-limit"?: string;
1813
+ "-ms-scroll-snap-x"?: string;
1814
+ "-ms-scroll-snap-y"?: string;
1815
+ "-ms-transition"?: string;
1816
+ "-webkit-animation"?: import("csstype").AnimationProperty;
1817
+ "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number>;
1818
+ "-webkit-border-image"?: import("csstype").BorderImageProperty;
1819
+ "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1820
+ "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1821
+ "-webkit-columns"?: import("csstype").ColumnsProperty<string | number>;
1822
+ "-webkit-flex"?: import("csstype").FlexProperty<string | number>;
1823
+ "-webkit-flex-flow"?: string;
1824
+ "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number>;
1825
+ "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty;
1826
+ "-webkit-text-emphasis"?: string;
1827
+ "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number>;
1828
+ "-webkit-transition"?: string;
1829
+ "box-align"?: import("csstype").BoxAlignProperty;
1830
+ "box-direction"?: import("csstype").BoxDirectionProperty;
1831
+ "box-flex"?: import("csstype").GlobalsNumber;
1832
+ "box-flex-group"?: import("csstype").GlobalsNumber;
1833
+ "box-lines"?: import("csstype").BoxLinesProperty;
1834
+ "box-ordinal-group"?: import("csstype").GlobalsNumber;
1835
+ "box-orient"?: import("csstype").BoxOrientProperty;
1836
+ "box-pack"?: import("csstype").BoxPackProperty;
1837
+ "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number>;
1838
+ "grid-gap"?: import("csstype").GridGapProperty<string | number>;
1839
+ "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number>;
1840
+ "ime-mode"?: import("csstype").ImeModeProperty;
1841
+ "offset-block"?: import("csstype").InsetBlockProperty<string | number>;
1842
+ "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
1843
+ "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
1844
+ "offset-inline"?: import("csstype").InsetInlineProperty<string | number>;
1845
+ "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
1846
+ "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
1847
+ "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
1848
+ "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number>;
1849
+ "scroll-snap-points-x"?: string;
1850
+ "scroll-snap-points-y"?: string;
1851
+ "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty;
1852
+ "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty;
1853
+ "-khtml-box-align"?: import("csstype").BoxAlignProperty;
1854
+ "-khtml-box-direction"?: import("csstype").BoxDirectionProperty;
1855
+ "-khtml-box-flex"?: import("csstype").GlobalsNumber;
1856
+ "-khtml-box-flex-group"?: import("csstype").GlobalsNumber;
1857
+ "-khtml-box-lines"?: import("csstype").BoxLinesProperty;
1858
+ "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber;
1859
+ "-khtml-box-orient"?: import("csstype").BoxOrientProperty;
1860
+ "-khtml-box-pack"?: import("csstype").BoxPackProperty;
1861
+ "-khtml-line-break"?: import("csstype").LineBreakProperty;
1862
+ "-khtml-opacity"?: import("csstype").OpacityProperty;
1863
+ "-khtml-user-select"?: import("csstype").UserSelectProperty;
1864
+ "-moz-background-clip"?: string;
1865
+ "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty;
1866
+ "-moz-background-origin"?: string;
1867
+ "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1868
+ "-moz-binding"?: string;
1869
+ "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1870
+ "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1871
+ "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1872
+ "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1873
+ "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1874
+ "-moz-box-align"?: import("csstype").BoxAlignProperty;
1875
+ "-moz-box-direction"?: import("csstype").BoxDirectionProperty;
1876
+ "-moz-box-flex"?: import("csstype").GlobalsNumber;
1877
+ "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber;
1878
+ "-moz-box-orient"?: import("csstype").BoxOrientProperty;
1879
+ "-moz-box-pack"?: import("csstype").BoxPackProperty;
1880
+ "-moz-box-shadow"?: string;
1881
+ "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty;
1882
+ "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty;
1883
+ "-moz-opacity"?: import("csstype").OpacityProperty;
1884
+ "-moz-outline"?: import("csstype").OutlineProperty<string | number>;
1885
+ "-moz-outline-color"?: string;
1886
+ "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number>;
1887
+ "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
1888
+ "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
1889
+ "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
1890
+ "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
1891
+ "-moz-outline-style"?: string;
1892
+ "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
1893
+ "-moz-text-align-last"?: import("csstype").TextAlignLastProperty;
1894
+ "-moz-text-decoration-color"?: string;
1895
+ "-moz-text-decoration-line"?: string;
1896
+ "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1897
+ "-moz-user-input"?: import("csstype").MozUserInputProperty;
1898
+ "-ms-ime-mode"?: import("csstype").ImeModeProperty;
1899
+ "-o-animation"?: import("csstype").AnimationProperty;
1900
+ "-o-animation-delay"?: string;
1901
+ "-o-animation-direction"?: string;
1902
+ "-o-animation-duration"?: string;
1903
+ "-o-animation-fill-mode"?: string;
1904
+ "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1905
+ "-o-animation-name"?: string;
1906
+ "-o-animation-play-state"?: string;
1907
+ "-o-animation-timing-function"?: string;
1908
+ "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1909
+ "-o-border-image"?: import("csstype").BorderImageProperty;
1910
+ "-o-object-fit"?: import("csstype").ObjectFitProperty;
1911
+ "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number>;
1912
+ "-o-tab-size"?: import("csstype").TabSizeProperty<string | number>;
1913
+ "-o-text-overflow"?: string;
1914
+ "-o-transform"?: string;
1915
+ "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1916
+ "-o-transition"?: string;
1917
+ "-o-transition-delay"?: string;
1918
+ "-o-transition-duration"?: string;
1919
+ "-o-transition-property"?: string;
1920
+ "-o-transition-timing-function"?: string;
1921
+ "-webkit-box-align"?: import("csstype").BoxAlignProperty;
1922
+ "-webkit-box-direction"?: import("csstype").BoxDirectionProperty;
1923
+ "-webkit-box-flex"?: import("csstype").GlobalsNumber;
1924
+ "-webkit-box-flex-group"?: import("csstype").GlobalsNumber;
1925
+ "-webkit-box-lines"?: import("csstype").BoxLinesProperty;
1926
+ "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber;
1927
+ "-webkit-box-orient"?: import("csstype").BoxOrientProperty;
1928
+ "-webkit-box-pack"?: import("csstype").BoxPackProperty;
1929
+ "-webkit-scroll-snap-points-x"?: string;
1930
+ "-webkit-scroll-snap-points-y"?: string;
1931
+ "alignment-baseline"?: import("csstype").AlignmentBaselineProperty;
1932
+ "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number>;
1933
+ "clip-rule"?: import("csstype").ClipRuleProperty;
1934
+ "color-interpolation"?: import("csstype").ColorInterpolationProperty;
1935
+ "color-rendering"?: import("csstype").ColorRenderingProperty;
1936
+ "dominant-baseline"?: import("csstype").DominantBaselineProperty;
1937
+ "fill-opacity"?: import("csstype").GlobalsNumber;
1938
+ "fill-rule"?: import("csstype").FillRuleProperty;
1939
+ "flood-color"?: string;
1940
+ "flood-opacity"?: import("csstype").GlobalsNumber;
1941
+ "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty;
1942
+ "lighting-color"?: string;
1943
+ "marker-end"?: string;
1944
+ "marker-mid"?: string;
1945
+ "marker-start"?: string;
1946
+ "shape-rendering"?: import("csstype").ShapeRenderingProperty;
1947
+ "stop-color"?: string;
1948
+ "stop-opacity"?: import("csstype").GlobalsNumber;
1949
+ "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number>;
1950
+ "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number>;
1951
+ "stroke-linecap"?: import("csstype").StrokeLinecapProperty;
1952
+ "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty;
1953
+ "stroke-miterlimit"?: import("csstype").GlobalsNumber;
1954
+ "stroke-opacity"?: import("csstype").GlobalsNumber;
1955
+ "stroke-width"?: import("csstype").StrokeWidthProperty<string | number>;
1956
+ "text-anchor"?: import("csstype").TextAnchorProperty;
1957
+ "vector-effect"?: import("csstype").VectorEffectProperty;
1958
+ };
1959
+ autoAdjustOverflow?: boolean | {
1960
+ adjustX?: 0 | 1;
1961
+ adjustY?: 0 | 1;
1962
+ };
1963
+ builtinPlacements?: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
1964
+ prefixCls?: string;
1965
+ title?: any;
1966
+ trigger?: import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[];
1967
+ visible?: boolean;
1968
+ defaultVisible?: boolean;
1969
+ placement?: import("ant-design-vue/es/tooltip").TooltipPlacement;
1970
+ color?: string;
1971
+ transitionName?: string;
1972
+ overlayClassName?: string;
1973
+ openClassName?: string;
1974
+ mouseEnterDelay?: number;
1975
+ mouseLeaveDelay?: number;
1976
+ getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
1977
+ arrowPointAtCenter?: boolean;
1978
+ destroyTooltipOnHide?: boolean;
1979
+ children?: unknown[];
1980
+ onVisibleChange?: (vis: boolean) => void;
1981
+ 'onUpdate:visible'?: (vis: boolean) => void;
1982
+ };
1983
+ component?: import("./types/form.type").ComponentType;
1984
+ props?: object | ((model: Recordable<any>) => Recordable<any>);
1985
+ required?: boolean | ((model: Recordable<any>) => boolean);
1986
+ suffix?: string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1987
+ [key: string]: any;
1988
+ }> | ((model: Recordable<any>) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1989
+ [key: string]: any;
1990
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1991
+ [key: string]: any;
1992
+ }>[]);
1993
+ prefix?: string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1994
+ [key: string]: any;
1995
+ }> | ((model: Recordable<any>) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1996
+ [key: string]: any;
1997
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
1998
+ [key: string]: any;
1999
+ }>[]);
2000
+ rules?: ({
2001
+ warningOnly?: boolean;
2002
+ enum?: any[];
2003
+ len?: number;
2004
+ max?: number;
2005
+ message?: (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2006
+ [key: string]: any;
2007
+ }>) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2008
+ [key: string]: any;
2009
+ }>)[];
2010
+ min?: number;
2011
+ pattern?: {
2012
+ exec: (string: string) => RegExpExecArray;
2013
+ test: (string: string) => boolean;
2014
+ readonly source: string;
2015
+ readonly global: boolean;
2016
+ readonly ignoreCase: boolean;
2017
+ readonly multiline: boolean;
2018
+ lastIndex: number;
2019
+ compile: (pattern: string, flags?: string) => RegExp;
2020
+ readonly flags: string;
2021
+ readonly sticky: boolean;
2022
+ readonly unicode: boolean;
2023
+ readonly dotAll: boolean;
2024
+ [Symbol.match]: (string: string) => RegExpMatchArray;
2025
+ [Symbol.replace]: {
2026
+ (string: string, replaceValue: string): string;
2027
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2028
+ };
2029
+ [Symbol.search]: (string: string) => number;
2030
+ [Symbol.split]: (string: string, limit?: number) => string[];
2031
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2032
+ };
2033
+ required?: boolean;
2034
+ transform?: (value: any) => any;
2035
+ type?: import("ant-design-vue/lib/form/interface").RuleType;
2036
+ whitespace?: boolean;
2037
+ validateTrigger?: string | string[];
2038
+ trigger?: "blur" | "change" | ("blur" & ["change", "blur"]) | ("change" & ["change", "blur"]) | (("blur" | "change")[] & "blur") | (("blur" | "change")[] & "change") | {
2039
+ [x: number]: "blur" | "change";
2040
+ length: 2;
2041
+ toString: () => string;
2042
+ toLocaleString: () => string;
2043
+ pop: () => "blur" | "change";
2044
+ push: (...items: ("blur" | "change")[]) => number;
2045
+ concat: {
2046
+ (...items: ConcatArray<"blur" | "change">[]): ("blur" | "change")[];
2047
+ (...items: ("blur" | "change" | ConcatArray<"blur" | "change">)[]): ("blur" | "change")[];
2048
+ };
2049
+ join: (separator?: string) => string;
2050
+ reverse: () => ("blur" | "change")[];
2051
+ shift: () => "blur" | "change";
2052
+ slice: (start?: number, end?: number) => ("blur" | "change")[];
2053
+ sort: (compareFn?: (a: "blur" | "change", b: "blur" | "change") => number) => ("blur" | "change")[] & ["change", "blur"];
2054
+ splice: {
2055
+ (start: number, deleteCount?: number): ("blur" | "change")[];
2056
+ (start: number, deleteCount: number, ...items: ("blur" | "change")[]): ("blur" | "change")[];
2057
+ };
2058
+ unshift: (...items: ("blur" | "change")[]) => number;
2059
+ indexOf: (searchElement: "blur" | "change", fromIndex?: number) => number;
2060
+ lastIndexOf: (searchElement: "blur" | "change", fromIndex?: number) => number;
2061
+ every: {
2062
+ <S extends "blur" | "change">(predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => value is S, thisArg?: any): this is S[];
2063
+ (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any): boolean;
2064
+ };
2065
+ some: (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any) => boolean;
2066
+ forEach: (callbackfn: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => void, thisArg?: any) => void;
2067
+ map: <U>(callbackfn: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => U, thisArg?: any) => U[];
2068
+ filter: {
2069
+ <S_1 extends "blur" | "change">(predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => value is S_1, thisArg?: any): S_1[];
2070
+ (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any): ("blur" | "change")[];
2071
+ };
2072
+ reduce: {
2073
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change"): "blur" | "change";
2074
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change", initialValue: "blur" | "change"): "blur" | "change";
2075
+ <U_1>(callbackfn: (previousValue: U_1, currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => U_1, initialValue: U_1): U_1;
2076
+ };
2077
+ reduceRight: {
2078
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change"): "blur" | "change";
2079
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change", initialValue: "blur" | "change"): "blur" | "change";
2080
+ <U_2>(callbackfn: (previousValue: U_2, currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => U_2, initialValue: U_2): U_2;
2081
+ };
2082
+ find: {
2083
+ <S_2 extends "blur" | "change">(predicate: (this: void, value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => value is S_2, thisArg?: any): S_2;
2084
+ (predicate: (value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => unknown, thisArg?: any): "blur" | "change";
2085
+ };
2086
+ findIndex: (predicate: (value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => unknown, thisArg?: any) => number;
2087
+ fill: (value: "blur" | "change", start?: number, end?: number) => ("blur" | "change")[] & ["change", "blur"];
2088
+ copyWithin: (target: number, start: number, end?: number) => ("blur" | "change")[] & ["change", "blur"];
2089
+ entries: () => IterableIterator<[number, "blur" | "change"]>;
2090
+ keys: () => IterableIterator<number>;
2091
+ values: () => IterableIterator<"blur" | "change">;
2092
+ includes: (searchElement: "blur" | "change", fromIndex?: number) => boolean;
2093
+ flatMap: <U_3, This = undefined>(callback: (this: This, value: "blur" | "change", index: number, array: ("blur" | "change")[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
2094
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2095
+ at: (index: number) => "blur" | "change";
2096
+ [Symbol.iterator]: () => IterableIterator<"blur" | "change">;
2097
+ [Symbol.unscopables]: () => {
2098
+ copyWithin: boolean;
2099
+ entries: boolean;
2100
+ fill: boolean;
2101
+ find: boolean;
2102
+ findIndex: boolean;
2103
+ keys: boolean;
2104
+ values: boolean;
2105
+ };
2106
+ 0: "change";
2107
+ 1: "blur";
2108
+ };
2109
+ validator?: (rule: import("ant-design-vue/lib/form").RuleObject, value: any, callback: (error?: string) => void) => void | Promise<void>;
2110
+ } | {
2111
+ type: "array";
2112
+ defaultField?: {
2113
+ warningOnly?: boolean;
2114
+ enum?: any[];
2115
+ len?: number;
2116
+ max?: number;
2117
+ message?: (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2118
+ [key: string]: any;
2119
+ }>) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2120
+ [key: string]: any;
2121
+ }>)[];
2122
+ min?: number;
2123
+ pattern?: {
2124
+ exec: (string: string) => RegExpExecArray;
2125
+ test: (string: string) => boolean;
2126
+ readonly source: string;
2127
+ readonly global: boolean;
2128
+ readonly ignoreCase: boolean;
2129
+ readonly multiline: boolean;
2130
+ lastIndex: number;
2131
+ compile: (pattern: string, flags?: string) => RegExp;
2132
+ readonly flags: string;
2133
+ readonly sticky: boolean;
2134
+ readonly unicode: boolean;
2135
+ readonly dotAll: boolean;
2136
+ [Symbol.match]: (string: string) => RegExpMatchArray;
2137
+ [Symbol.replace]: {
2138
+ (string: string, replaceValue: string): string;
2139
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2140
+ };
2141
+ [Symbol.search]: (string: string) => number;
2142
+ [Symbol.split]: (string: string, limit?: number) => string[];
2143
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2144
+ };
2145
+ required?: boolean;
2146
+ transform?: (value: any) => any;
2147
+ type?: import("ant-design-vue/lib/form/interface").RuleType;
2148
+ whitespace?: boolean;
2149
+ validateTrigger?: string | string[];
2150
+ trigger?: "blur" | "change" | ("blur" | "change")[];
2151
+ validator?: (rule: import("ant-design-vue/lib/form").RuleObject, value: any, callback: (error?: string) => void) => void | Promise<void>;
2152
+ } | {
2153
+ type: "array";
2154
+ defaultField?: {
2155
+ warningOnly?: boolean;
2156
+ enum?: any[];
2157
+ len?: number;
2158
+ max?: number;
2159
+ message?: (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2160
+ [key: string]: any;
2161
+ }>) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2162
+ [key: string]: any;
2163
+ }>)[];
2164
+ min?: number;
2165
+ pattern?: {
2166
+ exec: (string: string) => RegExpExecArray;
2167
+ test: (string: string) => boolean;
2168
+ readonly source: string;
2169
+ readonly global: boolean;
2170
+ readonly ignoreCase: boolean;
2171
+ readonly multiline: boolean;
2172
+ lastIndex: number;
2173
+ compile: (pattern: string, flags?: string) => RegExp;
2174
+ readonly flags: string;
2175
+ readonly sticky: boolean;
2176
+ readonly unicode: boolean;
2177
+ readonly dotAll: boolean;
2178
+ [Symbol.match]: (string: string) => RegExpMatchArray;
2179
+ [Symbol.replace]: {
2180
+ (string: string, replaceValue: string): string;
2181
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2182
+ };
2183
+ [Symbol.search]: (string: string) => number;
2184
+ [Symbol.split]: (string: string, limit?: number) => string[];
2185
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2186
+ };
2187
+ required?: boolean;
2188
+ transform?: (value: any) => any;
2189
+ type?: import("ant-design-vue/lib/form/interface").RuleType;
2190
+ whitespace?: boolean;
2191
+ validateTrigger?: string | string[];
2192
+ trigger?: "blur" | "change" | ("blur" | "change")[];
2193
+ validator?: (rule: import("ant-design-vue/lib/form").RuleObject, value: any, callback: (error?: string) => void) => void | Promise<void>;
2194
+ } | any;
2195
+ required?: boolean;
2196
+ validator?: (rule: import("ant-design-vue/lib/form").RuleObject, value: any, callback: (error?: string) => void) => void | Promise<void>;
2197
+ trigger?: "blur" | "change" | ("blur" | "change")[];
2198
+ transform?: (value: any) => any;
2199
+ warningOnly?: boolean;
2200
+ message?: (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2201
+ [key: string]: any;
2202
+ }>) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2203
+ [key: string]: any;
2204
+ }>)[];
2205
+ enum?: any[];
2206
+ len?: number;
2207
+ max?: number;
2208
+ min?: number;
2209
+ pattern?: {
2210
+ exec: (string: string) => RegExpExecArray;
2211
+ test: (string: string) => boolean;
2212
+ readonly source: string;
2213
+ readonly global: boolean;
2214
+ readonly ignoreCase: boolean;
2215
+ readonly multiline: boolean;
2216
+ lastIndex: number;
2217
+ compile: (pattern: string, flags?: string) => RegExp;
2218
+ readonly flags: string;
2219
+ readonly sticky: boolean;
2220
+ readonly unicode: boolean;
2221
+ readonly dotAll: boolean;
2222
+ [Symbol.match]: (string: string) => RegExpMatchArray;
2223
+ [Symbol.replace]: {
2224
+ (string: string, replaceValue: string): string;
2225
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2226
+ };
2227
+ [Symbol.search]: (string: string) => number;
2228
+ [Symbol.split]: (string: string, limit?: number) => string[];
2229
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2230
+ };
2231
+ whitespace?: boolean;
2232
+ validateTrigger?: string | string[];
2233
+ };
2234
+ required?: boolean;
2235
+ validator?: (rule: import("ant-design-vue/lib/form").RuleObject, value: any, callback: (error?: string) => void) => void | Promise<void>;
2236
+ trigger?: "blur" | "change" | ("blur" & ["change", "blur"]) | ("change" & ["change", "blur"]) | (("blur" | "change")[] & "blur") | (("blur" | "change")[] & "change") | {
2237
+ [x: number]: "blur" | "change";
2238
+ length: 2;
2239
+ toString: () => string;
2240
+ toLocaleString: () => string;
2241
+ pop: () => "blur" | "change";
2242
+ push: (...items: ("blur" | "change")[]) => number;
2243
+ concat: {
2244
+ (...items: ConcatArray<"blur" | "change">[]): ("blur" | "change")[];
2245
+ (...items: ("blur" | "change" | ConcatArray<"blur" | "change">)[]): ("blur" | "change")[];
2246
+ };
2247
+ join: (separator?: string) => string;
2248
+ reverse: () => ("blur" | "change")[];
2249
+ shift: () => "blur" | "change";
2250
+ slice: (start?: number, end?: number) => ("blur" | "change")[];
2251
+ sort: (compareFn?: (a: "blur" | "change", b: "blur" | "change") => number) => ("blur" | "change")[] & ["change", "blur"];
2252
+ splice: {
2253
+ (start: number, deleteCount?: number): ("blur" | "change")[];
2254
+ (start: number, deleteCount: number, ...items: ("blur" | "change")[]): ("blur" | "change")[];
2255
+ };
2256
+ unshift: (...items: ("blur" | "change")[]) => number;
2257
+ indexOf: (searchElement: "blur" | "change", fromIndex?: number) => number;
2258
+ lastIndexOf: (searchElement: "blur" | "change", fromIndex?: number) => number;
2259
+ every: {
2260
+ <S extends "blur" | "change">(predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => value is S, thisArg?: any): this is S[];
2261
+ (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any): boolean;
2262
+ };
2263
+ some: (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any) => boolean;
2264
+ forEach: (callbackfn: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => void, thisArg?: any) => void;
2265
+ map: <U>(callbackfn: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => U, thisArg?: any) => U[];
2266
+ filter: {
2267
+ <S_1 extends "blur" | "change">(predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => value is S_1, thisArg?: any): S_1[];
2268
+ (predicate: (value: "blur" | "change", index: number, array: ("blur" | "change")[]) => unknown, thisArg?: any): ("blur" | "change")[];
2269
+ };
2270
+ reduce: {
2271
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change"): "blur" | "change";
2272
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change", initialValue: "blur" | "change"): "blur" | "change";
2273
+ <U_1>(callbackfn: (previousValue: U_1, currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => U_1, initialValue: U_1): U_1;
2274
+ };
2275
+ reduceRight: {
2276
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change"): "blur" | "change";
2277
+ (callbackfn: (previousValue: "blur" | "change", currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => "blur" | "change", initialValue: "blur" | "change"): "blur" | "change";
2278
+ <U_2>(callbackfn: (previousValue: U_2, currentValue: "blur" | "change", currentIndex: number, array: ("blur" | "change")[]) => U_2, initialValue: U_2): U_2;
2279
+ };
2280
+ find: {
2281
+ <S_2 extends "blur" | "change">(predicate: (this: void, value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => value is S_2, thisArg?: any): S_2;
2282
+ (predicate: (value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => unknown, thisArg?: any): "blur" | "change";
2283
+ };
2284
+ findIndex: (predicate: (value: "blur" | "change", index: number, obj: ("blur" | "change")[]) => unknown, thisArg?: any) => number;
2285
+ fill: (value: "blur" | "change", start?: number, end?: number) => ("blur" | "change")[] & ["change", "blur"];
2286
+ copyWithin: (target: number, start: number, end?: number) => ("blur" | "change")[] & ["change", "blur"];
2287
+ entries: () => IterableIterator<[number, "blur" | "change"]>;
2288
+ keys: () => IterableIterator<number>;
2289
+ values: () => IterableIterator<"blur" | "change">;
2290
+ includes: (searchElement: "blur" | "change", fromIndex?: number) => boolean;
2291
+ flatMap: <U_3, This = undefined>(callback: (this: This, value: "blur" | "change", index: number, array: ("blur" | "change")[]) => U_3 | readonly U_3[], thisArg?: This) => U_3[];
2292
+ flat: <A, D extends number = 1>(this: A, depth?: D) => FlatArray<A, D>[];
2293
+ at: (index: number) => "blur" | "change";
2294
+ [Symbol.iterator]: () => IterableIterator<"blur" | "change">;
2295
+ [Symbol.unscopables]: () => {
2296
+ copyWithin: boolean;
2297
+ entries: boolean;
2298
+ fill: boolean;
2299
+ find: boolean;
2300
+ findIndex: boolean;
2301
+ keys: boolean;
2302
+ values: boolean;
2303
+ };
2304
+ 0: "change";
2305
+ 1: "blur";
2306
+ };
2307
+ transform?: (value: any) => any;
2308
+ warningOnly?: boolean;
2309
+ message?: (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2310
+ [key: string]: any;
2311
+ }>) | JSX.Element | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2312
+ [key: string]: any;
2313
+ }>)[];
2314
+ enum?: any[];
2315
+ len?: number;
2316
+ max?: number;
2317
+ min?: number;
2318
+ pattern?: {
2319
+ exec: (string: string) => RegExpExecArray;
2320
+ test: (string: string) => boolean;
2321
+ readonly source: string;
2322
+ readonly global: boolean;
2323
+ readonly ignoreCase: boolean;
2324
+ readonly multiline: boolean;
2325
+ lastIndex: number;
2326
+ compile: (pattern: string, flags?: string) => RegExp;
2327
+ readonly flags: string;
2328
+ readonly sticky: boolean;
2329
+ readonly unicode: boolean;
2330
+ readonly dotAll: boolean;
2331
+ [Symbol.match]: (string: string) => RegExpMatchArray;
2332
+ [Symbol.replace]: {
2333
+ (string: string, replaceValue: string): string;
2334
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2335
+ };
2336
+ [Symbol.search]: (string: string) => number;
2337
+ [Symbol.split]: (string: string, limit?: number) => string[];
2338
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2339
+ };
2340
+ whitespace?: boolean;
2341
+ validateTrigger?: string | string[];
2342
+ })[];
2343
+ rulesMessageJoinLabel?: boolean;
2344
+ defaultValue?: any;
2345
+ show?: boolean | ((model: Recordable<any>) => boolean);
2346
+ render?: (model: Recordable<any>) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2347
+ [key: string]: any;
2348
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2349
+ [key: string]: any;
2350
+ }>[];
2351
+ renderCol?: (model: Recordable<any>) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2352
+ [key: string]: any;
2353
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2354
+ [key: string]: any;
2355
+ }>[];
2356
+ colProps?: {
2357
+ style?: any;
2358
+ span?: string | number;
2359
+ order?: string | number;
2360
+ offset?: string | number;
2361
+ md?: string | number;
2362
+ xl?: string | number;
2363
+ xxl?: string | number;
2364
+ };
2365
+ renderComponent?: string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2366
+ [key: string]: any;
2367
+ }> | ((model: Recordable<any>) => Recordable<any>) | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2368
+ [key: string]: any;
2369
+ }>[];
2370
+ slot?: string;
2371
+ colSlot?: string;
2372
+ disabled?: boolean | ((model: Recordable<any>) => boolean);
2373
+ dynamicRules?: (model: Recordable<any>) => import("./types/form.type").Rule[];
2374
+ colon?: boolean;
2375
+ labelCol?: {
2376
+ style?: any;
2377
+ span?: string | number;
2378
+ order?: string | number;
2379
+ offset?: string | number;
2380
+ md?: string | number;
2381
+ xl?: string | number;
2382
+ xxl?: string | number;
2383
+ };
2384
+ wrapperCol?: {
2385
+ style?: any;
2386
+ span?: string | number;
2387
+ order?: string | number;
2388
+ offset?: string | number;
2389
+ md?: string | number;
2390
+ xl?: string | number;
2391
+ xxl?: string | number;
2392
+ };
2393
+ isAdvanced?: boolean;
2394
+ openDialog?: (parms: Recordable<any>) => void;
2395
+ extraName?: string[];
2396
+ }[]>;
2397
+ getProps: import("vue").ComputedRef<Partial<import("vue").ExtractPropTypes<{
2398
+ mode: {
2399
+ type: import("vue").PropType<"search" | "dialog">;
2400
+ default: string;
2401
+ };
2402
+ autoFetch: {
2403
+ type: BooleanConstructor;
2404
+ default: boolean;
2405
+ };
2406
+ model: {
2407
+ type: import("vue").PropType<Recordable<any>>;
2408
+ default: {};
2409
+ };
2410
+ layout: {
2411
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2412
+ default: string;
2413
+ };
2414
+ labelWidth: {
2415
+ type: import("vue").PropType<string | number>;
2416
+ default: number;
2417
+ };
2418
+ enLabelWidth: {
2419
+ type: import("vue").PropType<string | number>;
2420
+ default: number;
2421
+ };
2422
+ labelAlign: {
2423
+ type: import("vue").PropType<"left" | "right">;
2424
+ default: string;
2425
+ };
2426
+ labelCol: {
2427
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2428
+ default: () => void;
2429
+ };
2430
+ wrapperCol: {
2431
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2432
+ default: () => void;
2433
+ };
2434
+ rowProps: {
2435
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2436
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2437
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2438
+ prefixCls: StringConstructor;
2439
+ gutter: {
2440
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2441
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2442
+ };
2443
+ wrap: {
2444
+ type: BooleanConstructor;
2445
+ default: any;
2446
+ };
2447
+ }>>>;
2448
+ default: () => void;
2449
+ };
2450
+ colProps: {
2451
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2452
+ default: () => void;
2453
+ };
2454
+ size: {
2455
+ type: import("vue").PropType<"small" | "middle" | "large">;
2456
+ default: string;
2457
+ };
2458
+ disabled: {
2459
+ type: BooleanConstructor;
2460
+ default: boolean;
2461
+ };
2462
+ compact: {
2463
+ type: BooleanConstructor;
2464
+ default: any;
2465
+ };
2466
+ schemas: {
2467
+ type: import("vue").PropType<FormSchema[]>;
2468
+ default: () => any[];
2469
+ };
2470
+ autoSearchOnEnter: {
2471
+ type: BooleanConstructor;
2472
+ default: boolean;
2473
+ };
2474
+ alwaysShowLines: {
2475
+ type: BooleanConstructor;
2476
+ default: boolean;
2477
+ };
2478
+ minShowColumn: {
2479
+ type: NumberConstructor;
2480
+ default: number;
2481
+ };
2482
+ showAdvancedButton: {
2483
+ type: BooleanConstructor;
2484
+ default: boolean;
2485
+ };
2486
+ allowClear: {
2487
+ type: BooleanConstructor;
2488
+ default: boolean;
2489
+ };
2490
+ scrollToFirstError: {
2491
+ type: BooleanConstructor;
2492
+ default: boolean;
2493
+ };
2494
+ colon: {
2495
+ type: BooleanConstructor;
2496
+ default: boolean;
2497
+ };
2498
+ loading: {
2499
+ type: import("vue").PropType<{
2500
+ [key: string]: import("vue").Ref<boolean>;
2501
+ }>;
2502
+ default: () => {
2503
+ onSearch: import("vue").Ref<boolean>;
2504
+ onReset: import("vue").Ref<boolean>;
2505
+ };
2506
+ };
2507
+ onSearch: {
2508
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2509
+ default: (params: Recordable<any>) => void;
2510
+ };
2511
+ onReset: {
2512
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2513
+ default: (params: Recordable<any>) => void;
2514
+ };
2515
+ buttons: {
2516
+ type: import("vue").PropType<boolean | ButtonProps[]>;
2517
+ default: boolean;
2518
+ };
2519
+ resetFunc: {
2520
+ type: import("vue").PropType<() => void>;
2521
+ };
2522
+ registerInstance: {
2523
+ type: import("vue").PropType<(instance: FormActionType) => void>;
2524
+ };
2525
+ }>>>;
2526
+ getBindValue: import("vue").ComputedRef<Recordable<any>>;
2527
+ getSchema: import("vue").ComputedRef<FormSchema[]>;
2528
+ getFormClass: import("vue").ComputedRef<(string | {
2529
+ 'basic-form__compact': boolean;
2530
+ })[]>;
2531
+ setProps: (formProps: FormProps) => any;
2532
+ setFormModel: (key: string, value: any) => void;
2533
+ handleEnterPress: () => void;
2534
+ initDefault: () => void;
2535
+ handleFormValues: (model: Recordable<any>) => Recordable<any>;
2536
+ updateSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
2537
+ resetSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
2538
+ clearValidate: (name?: string | string[]) => Promise<void>;
2539
+ resetForms: () => void;
2540
+ removeFormByName: (names: string | string[]) => void;
2541
+ setFormValues: (values: Recordable<any>) => Promise<void>;
2542
+ appendFormItems: (schema: FormSchema[], prefixName?: string, first?: boolean) => void;
2543
+ validate: (nameList: (string | number)[]) => Promise<any>;
2544
+ validateFields: (nameList: (string | number)[]) => Promise<any>;
2545
+ getFormValues: () => Recordable<any>;
2546
+ formActionMethods: {
2547
+ setProps: (formProps: FormProps) => any;
2548
+ updateSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
2549
+ resetSchema: (data: Partial<FormSchema> | Partial<FormSchema>[]) => void;
2550
+ clearValidate: (name?: string | string[]) => Promise<void>;
2551
+ resetForms: () => void;
2552
+ removeFormByName: (names: string | string[]) => void;
2553
+ setFormValues: (values: Recordable<any>) => Promise<void>;
2554
+ appendFormItems: (schema: FormSchema[], prefixName?: string, first?: boolean) => void;
2555
+ validate: (nameList: (string | number)[]) => Promise<any>;
2556
+ validateFields: (nameList: (string | number)[]) => Promise<any>;
2557
+ getFormValues: () => Recordable<any>;
2558
+ };
2559
+ getActionsProps: import("vue").ComputedRef<Recordable<any>>;
2560
+ handleMethod: (params: boolean | ButtonProps) => void;
2561
+ readonly DtFormItem: import("vue").DefineComponent<{
2562
+ schema: {
2563
+ type: import("vue").PropType<FormSchema>;
2564
+ default: () => {};
2565
+ };
2566
+ formProps: {
2567
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2568
+ mode: {
2569
+ type: import("vue").PropType<"search" | "dialog">;
2570
+ default: string;
2571
+ };
2572
+ autoFetch: {
2573
+ type: BooleanConstructor;
2574
+ default: boolean;
2575
+ };
2576
+ model: {
2577
+ type: import("vue").PropType<Recordable<any>>;
2578
+ default: {};
2579
+ };
2580
+ layout: {
2581
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2582
+ default: string;
2583
+ };
2584
+ labelWidth: {
2585
+ type: import("vue").PropType<string | number>;
2586
+ default: number;
2587
+ };
2588
+ enLabelWidth: {
2589
+ type: import("vue").PropType<string | number>;
2590
+ default: number;
2591
+ };
2592
+ labelAlign: {
2593
+ type: import("vue").PropType<"left" | "right">;
2594
+ default: string;
2595
+ };
2596
+ labelCol: {
2597
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2598
+ default: () => void;
2599
+ };
2600
+ wrapperCol: {
2601
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2602
+ default: () => void;
2603
+ };
2604
+ rowProps: {
2605
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2606
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2607
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2608
+ prefixCls: StringConstructor;
2609
+ gutter: {
2610
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2611
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2612
+ };
2613
+ wrap: {
2614
+ type: BooleanConstructor;
2615
+ default: any;
2616
+ };
2617
+ }>>>;
2618
+ default: () => void;
2619
+ };
2620
+ colProps: {
2621
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2622
+ default: () => void;
2623
+ };
2624
+ size: {
2625
+ type: import("vue").PropType<"small" | "middle" | "large">;
2626
+ default: string;
2627
+ };
2628
+ disabled: {
2629
+ type: BooleanConstructor;
2630
+ default: boolean;
2631
+ };
2632
+ compact: {
2633
+ type: BooleanConstructor;
2634
+ default: any;
2635
+ };
2636
+ schemas: {
2637
+ type: import("vue").PropType<FormSchema[]>;
2638
+ default: () => any[];
2639
+ };
2640
+ autoSearchOnEnter: {
2641
+ type: BooleanConstructor;
2642
+ default: boolean;
2643
+ };
2644
+ alwaysShowLines: {
2645
+ type: BooleanConstructor;
2646
+ default: boolean;
2647
+ };
2648
+ minShowColumn: {
2649
+ type: NumberConstructor;
2650
+ default: number;
2651
+ };
2652
+ showAdvancedButton: {
2653
+ type: BooleanConstructor;
2654
+ default: boolean;
2655
+ };
2656
+ allowClear: {
2657
+ type: BooleanConstructor;
2658
+ default: boolean;
2659
+ };
2660
+ scrollToFirstError: {
2661
+ type: BooleanConstructor;
2662
+ default: boolean;
2663
+ };
2664
+ colon: {
2665
+ type: BooleanConstructor;
2666
+ default: boolean;
2667
+ };
2668
+ loading: {
2669
+ type: import("vue").PropType<{
2670
+ [key: string]: import("vue").Ref<boolean>;
2671
+ }>;
2672
+ default: () => {
2673
+ onSearch: import("vue").Ref<boolean>;
2674
+ onReset: import("vue").Ref<boolean>;
2675
+ };
2676
+ };
2677
+ onSearch: {
2678
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2679
+ default: (params: Recordable<any>) => void;
2680
+ };
2681
+ onReset: {
2682
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2683
+ default: (params: Recordable<any>) => void;
2684
+ };
2685
+ buttons: {
2686
+ type: import("vue").PropType<boolean | ButtonProps[]>;
2687
+ default: boolean;
2688
+ };
2689
+ resetFunc: {
2690
+ type: import("vue").PropType<() => void>;
2691
+ };
2692
+ registerInstance: {
2693
+ type: import("vue").PropType<(instance: FormActionType) => void>;
2694
+ };
2695
+ }>>>;
2696
+ default: () => {};
2697
+ };
2698
+ defaultValues: {
2699
+ type: import("vue").PropType<Recordable<any>>;
2700
+ default: () => {};
2701
+ };
2702
+ formModel: {
2703
+ type: import("vue").PropType<Recordable<any>>;
2704
+ default: () => {};
2705
+ };
2706
+ setFormModel: {
2707
+ type: import("vue").PropType<(key: string, value: any) => void>;
2708
+ };
2709
+ formActionType: {
2710
+ type: import("vue").PropType<FormActionType>;
2711
+ };
2712
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2713
+ schema: {
2714
+ type: import("vue").PropType<FormSchema>;
2715
+ default: () => {};
2716
+ };
2717
+ formProps: {
2718
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2719
+ mode: {
2720
+ type: import("vue").PropType<"search" | "dialog">;
2721
+ default: string;
2722
+ };
2723
+ autoFetch: {
2724
+ type: BooleanConstructor;
2725
+ default: boolean;
2726
+ };
2727
+ model: {
2728
+ type: import("vue").PropType<Recordable<any>>;
2729
+ default: {};
2730
+ };
2731
+ layout: {
2732
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2733
+ default: string;
2734
+ };
2735
+ labelWidth: {
2736
+ type: import("vue").PropType<string | number>;
2737
+ default: number;
2738
+ };
2739
+ enLabelWidth: {
2740
+ type: import("vue").PropType<string | number>;
2741
+ default: number;
2742
+ };
2743
+ labelAlign: {
2744
+ type: import("vue").PropType<"left" | "right">;
2745
+ default: string;
2746
+ };
2747
+ labelCol: {
2748
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2749
+ default: () => void;
2750
+ };
2751
+ wrapperCol: {
2752
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2753
+ default: () => void;
2754
+ };
2755
+ rowProps: {
2756
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2757
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2758
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2759
+ prefixCls: StringConstructor;
2760
+ gutter: {
2761
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2762
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2763
+ };
2764
+ wrap: {
2765
+ type: BooleanConstructor;
2766
+ default: any;
2767
+ };
2768
+ }>>>;
2769
+ default: () => void;
2770
+ };
2771
+ colProps: {
2772
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2773
+ default: () => void;
2774
+ };
2775
+ size: {
2776
+ type: import("vue").PropType<"small" | "middle" | "large">;
2777
+ default: string;
2778
+ };
2779
+ disabled: {
2780
+ type: BooleanConstructor;
2781
+ default: boolean;
2782
+ };
2783
+ compact: {
2784
+ type: BooleanConstructor;
2785
+ default: any;
2786
+ };
2787
+ schemas: {
2788
+ type: import("vue").PropType<FormSchema[]>;
2789
+ default: () => any[];
2790
+ };
2791
+ autoSearchOnEnter: {
2792
+ type: BooleanConstructor;
2793
+ default: boolean;
2794
+ };
2795
+ alwaysShowLines: {
2796
+ type: BooleanConstructor;
2797
+ default: boolean;
2798
+ };
2799
+ minShowColumn: {
2800
+ type: NumberConstructor;
2801
+ default: number;
2802
+ };
2803
+ showAdvancedButton: {
2804
+ type: BooleanConstructor;
2805
+ default: boolean;
2806
+ };
2807
+ allowClear: {
2808
+ type: BooleanConstructor;
2809
+ default: boolean;
2810
+ };
2811
+ scrollToFirstError: {
2812
+ type: BooleanConstructor;
2813
+ default: boolean;
2814
+ };
2815
+ colon: {
2816
+ type: BooleanConstructor;
2817
+ default: boolean;
2818
+ };
2819
+ loading: {
2820
+ type: import("vue").PropType<{
2821
+ [key: string]: import("vue").Ref<boolean>;
2822
+ }>;
2823
+ default: () => {
2824
+ onSearch: import("vue").Ref<boolean>;
2825
+ onReset: import("vue").Ref<boolean>;
2826
+ };
2827
+ };
2828
+ onSearch: {
2829
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2830
+ default: (params: Recordable<any>) => void;
2831
+ };
2832
+ onReset: {
2833
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
2834
+ default: (params: Recordable<any>) => void;
2835
+ };
2836
+ buttons: {
2837
+ type: import("vue").PropType<boolean | ButtonProps[]>;
2838
+ default: boolean;
2839
+ };
2840
+ resetFunc: {
2841
+ type: import("vue").PropType<() => void>;
2842
+ };
2843
+ registerInstance: {
2844
+ type: import("vue").PropType<(instance: FormActionType) => void>;
2845
+ };
2846
+ }>>>;
2847
+ default: () => {};
2848
+ };
2849
+ defaultValues: {
2850
+ type: import("vue").PropType<Recordable<any>>;
2851
+ default: () => {};
2852
+ };
2853
+ formModel: {
2854
+ type: import("vue").PropType<Recordable<any>>;
2855
+ default: () => {};
2856
+ };
2857
+ setFormModel: {
2858
+ type: import("vue").PropType<(key: string, value: any) => void>;
2859
+ };
2860
+ formActionType: {
2861
+ type: import("vue").PropType<FormActionType>;
2862
+ };
2863
+ }>>, {
2864
+ formModel: {};
2865
+ schema: {};
2866
+ formProps: {};
2867
+ defaultValues: {};
2868
+ }>;
2869
+ readonly DtFormButtons: import("vue").DefineComponent<{
2870
+ mode: {
2871
+ type: import("vue").PropType<"search" | "dialog">;
2872
+ default: string;
2873
+ };
2874
+ show: {
2875
+ type: BooleanConstructor;
2876
+ default: boolean;
2877
+ };
2878
+ showAdvancedButton: {
2879
+ type: BooleanConstructor;
2880
+ default: boolean;
2881
+ };
2882
+ minShowColumn: {
2883
+ type: NumberConstructor;
2884
+ default: number;
2885
+ };
2886
+ buttonList: {
2887
+ type: import("vue").PropType<ButtonProps[]>;
2888
+ default: any[];
2889
+ };
2890
+ isAdvanced: {
2891
+ type: BooleanConstructor;
2892
+ default: boolean;
2893
+ };
2894
+ }, {
2895
+ props: any;
2896
+ emits: (event: "handle-method", ...args: any[]) => void;
2897
+ t: {
2898
+ (key: string): string;
2899
+ (key: string, locale: string): string;
2900
+ (key: string, locale: string, list: unknown[]): string;
2901
+ (key: string, locale: string, named: Record<string, unknown>): string;
2902
+ (key: string, list: unknown[]): string;
2903
+ (key: string, named: Record<string, unknown>): string;
2904
+ };
2905
+ advancedRef: import("vue").Ref<{
2906
+ valueOf: () => boolean;
2907
+ }>;
2908
+ key: number;
2909
+ showAdvanceRef: import("vue").ComputedRef<boolean>;
2910
+ colOpt: import("vue").ComputedRef<{
2911
+ style: Recordable<any>;
2912
+ }>;
2913
+ getAdvanceClass: import("vue").ComputedRef<(string | {
2914
+ 'basic-arrow--active': boolean;
2915
+ })[]>;
2916
+ toggleAdvanced: () => void;
2917
+ handleBtnClick: (button: ButtonProps) => void;
2918
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2919
+ mode: {
2920
+ type: import("vue").PropType<"search" | "dialog">;
2921
+ default: string;
2922
+ };
2923
+ show: {
2924
+ type: BooleanConstructor;
2925
+ default: boolean;
2926
+ };
2927
+ showAdvancedButton: {
2928
+ type: BooleanConstructor;
2929
+ default: boolean;
2930
+ };
2931
+ minShowColumn: {
2932
+ type: NumberConstructor;
2933
+ default: number;
2934
+ };
2935
+ buttonList: {
2936
+ type: import("vue").PropType<ButtonProps[]>;
2937
+ default: any[];
2938
+ };
2939
+ isAdvanced: {
2940
+ type: BooleanConstructor;
2941
+ default: boolean;
2942
+ };
2943
+ }>> & {
2944
+ "onHandle-method"?: (...args: any[]) => any;
2945
+ }, {
2946
+ mode: "search" | "dialog";
2947
+ minShowColumn: number;
2948
+ showAdvancedButton: boolean;
2949
+ show: boolean;
2950
+ isAdvanced: boolean;
2951
+ buttonList: ButtonProps[];
2952
+ }>;
2953
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "register"[], "register", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2954
+ mode: {
2955
+ type: import("vue").PropType<"search" | "dialog">;
2956
+ default: string;
2957
+ };
2958
+ autoFetch: {
2959
+ type: BooleanConstructor;
2960
+ default: boolean;
2961
+ };
2962
+ model: {
2963
+ type: import("vue").PropType<Recordable<any>>;
2964
+ default: {};
2965
+ };
2966
+ layout: {
2967
+ type: import("vue").PropType<"vertical" | "horizontal" | "inline">;
2968
+ default: string;
2969
+ };
2970
+ labelWidth: {
2971
+ type: import("vue").PropType<string | number>;
2972
+ default: number;
2973
+ };
2974
+ enLabelWidth: {
2975
+ type: import("vue").PropType<string | number>;
2976
+ default: number;
2977
+ };
2978
+ labelAlign: {
2979
+ type: import("vue").PropType<"left" | "right">;
2980
+ default: string;
2981
+ };
2982
+ labelCol: {
2983
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2984
+ default: () => void;
2985
+ };
2986
+ wrapperCol: {
2987
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
2988
+ default: () => void;
2989
+ };
2990
+ rowProps: {
2991
+ type: import("vue").PropType<Partial<import("vue").ExtractPropTypes<{
2992
+ align: import("vue").PropType<"stretch" | "bottom" | "top" | "middle">;
2993
+ justify: import("vue").PropType<"space-around" | "space-between" | "center" | "end" | "start">;
2994
+ prefixCls: StringConstructor;
2995
+ gutter: {
2996
+ type: import("vue").PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
2997
+ default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
2998
+ };
2999
+ wrap: {
3000
+ type: BooleanConstructor;
3001
+ default: any;
3002
+ };
3003
+ }>>>;
3004
+ default: () => void;
3005
+ };
3006
+ colProps: {
3007
+ type: import("vue").PropType<Partial<import("./types/form.type").ColEx>>;
3008
+ default: () => void;
3009
+ };
3010
+ size: {
3011
+ type: import("vue").PropType<"small" | "middle" | "large">;
3012
+ default: string;
3013
+ };
3014
+ disabled: {
3015
+ type: BooleanConstructor;
3016
+ default: boolean;
3017
+ };
3018
+ compact: {
3019
+ type: BooleanConstructor;
3020
+ default: any;
3021
+ };
3022
+ schemas: {
3023
+ type: import("vue").PropType<FormSchema[]>;
3024
+ default: () => any[];
3025
+ };
3026
+ autoSearchOnEnter: {
3027
+ type: BooleanConstructor;
3028
+ default: boolean;
3029
+ };
3030
+ alwaysShowLines: {
3031
+ type: BooleanConstructor;
3032
+ default: boolean;
3033
+ };
3034
+ minShowColumn: {
3035
+ type: NumberConstructor;
3036
+ default: number;
3037
+ };
3038
+ showAdvancedButton: {
3039
+ type: BooleanConstructor;
3040
+ default: boolean;
3041
+ };
3042
+ allowClear: {
3043
+ type: BooleanConstructor;
3044
+ default: boolean;
3045
+ };
3046
+ scrollToFirstError: {
3047
+ type: BooleanConstructor;
3048
+ default: boolean;
3049
+ };
3050
+ colon: {
3051
+ type: BooleanConstructor;
3052
+ default: boolean;
3053
+ };
3054
+ loading: {
3055
+ type: import("vue").PropType<{
3056
+ [key: string]: import("vue").Ref<boolean>;
3057
+ }>;
3058
+ default: () => {
3059
+ onSearch: import("vue").Ref<boolean>;
3060
+ onReset: import("vue").Ref<boolean>;
3061
+ };
3062
+ };
3063
+ onSearch: {
3064
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
3065
+ default: (params: Recordable<any>) => void;
3066
+ };
3067
+ onReset: {
3068
+ type: import("vue").PropType<(params: Recordable<any>) => void>;
3069
+ default: (params: Recordable<any>) => void;
3070
+ };
3071
+ buttons: {
3072
+ type: import("vue").PropType<boolean | ButtonProps[]>;
3073
+ default: boolean;
3074
+ };
3075
+ resetFunc: {
3076
+ type: import("vue").PropType<() => void>;
3077
+ };
3078
+ registerInstance: {
3079
+ type: import("vue").PropType<(instance: FormActionType) => void>;
3080
+ };
3081
+ }>> & {
3082
+ onRegister?: (...args: any[]) => any;
3083
+ }, {
3084
+ mode: "search" | "dialog";
3085
+ size: "small" | "middle" | "large";
3086
+ autoFetch: boolean;
3087
+ model: {};
3088
+ layout: "vertical" | "horizontal" | "inline";
3089
+ labelWidth: string | number;
3090
+ enLabelWidth: string | number;
3091
+ labelAlign: "left" | "right";
3092
+ labelCol: void;
3093
+ wrapperCol: void;
3094
+ rowProps: void;
3095
+ colProps: void;
3096
+ disabled: boolean;
3097
+ compact: boolean;
3098
+ schemas: FormSchema[];
3099
+ autoSearchOnEnter: boolean;
3100
+ alwaysShowLines: boolean;
3101
+ minShowColumn: number;
3102
+ showAdvancedButton: boolean;
3103
+ allowClear: boolean;
3104
+ scrollToFirstError: boolean;
3105
+ colon: boolean;
3106
+ loading: {
3107
+ [key: string]: import("vue").Ref<boolean>;
3108
+ };
3109
+ onSearch: (params: Recordable<any>) => void;
3110
+ onReset: (params: Recordable<any>) => void;
3111
+ buttons: boolean | ButtonProps[];
3112
+ }>;
3113
+ export default _sfc_main;