@dt-frames/ui 2.0.1 → 2.0.3

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