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