@dt-frames/ui 2.0.1 → 2.0.2

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