@dt-frames/ui 2.0.3 → 2.0.5
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.
- package/es/assets/locales/en.ts +1 -1
- package/es/components/curd/index.js +346 -331
- package/es/components/curd/src/components/Curd.d.ts +0 -8
- package/es/components/curd/src/props.d.ts +0 -4
- package/es/components/drawer/index.d.ts +1 -1
- package/es/components/drawer/index.js +27 -27
- package/es/components/drawer/src/index.d.ts +2 -3
- package/es/components/form/index.d.ts +0 -33
- package/es/components/form/index.js +72 -36
- package/es/components/form/index.less +212 -9
- package/es/components/form/src/components/FormItem.d.ts +3 -7
- package/es/components/form/src/components/formIcon.d.ts +14 -14
- package/es/components/form/src/components/formInputUseDialog.d.ts +8 -8
- package/es/components/form/src/enums/index.d.ts +1 -1
- package/es/components/form/src/index.d.ts +0 -25
- package/es/components/form/src/props.d.ts +2 -6
- package/es/components/form/src/types/form.type.d.ts +1 -1
- package/es/components/icons/index.less +5 -0
- package/es/components/modal/index.js +35 -34
- package/es/components/modal/index.less +10 -0
- package/es/components/modal/src/components/ModalFooter.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +9 -9
- package/es/components/source/hooks/useSource.d.ts +14 -0
- package/es/components/source/index.js +72 -31
- package/es/components/source/types/source.type.d.ts +5 -8
- package/es/components/table/index.js +418 -305
- package/es/components/table/index.less +62 -14
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/index.d.ts +30 -10
- package/es/components/table/src/props.d.ts +12 -4
- package/es/components/table/src/types/table.type.d.ts +4 -5
- package/es/components/tree/index.d.ts +2 -0
- package/es/components/tree/index.js +1087 -0
- package/es/components/tree/index.less +119 -0
- package/es/components/tree/src/basicProps.d.ts +146 -0
- package/es/components/tree/src/components/ContextMenu.d.ts +64 -0
- package/es/components/tree/src/components/TreeHeader.d.ts +98 -0
- package/es/components/tree/src/enums/index.d.ts +6 -0
- package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -0
- package/es/components/tree/src/hooks/useTree.d.ts +14 -0
- package/es/components/tree/src/index.d.ts +6526 -0
- package/es/components/tree/src/type/menu.d.ts +33 -0
- package/es/components/tree/src/type/tree.d.ts +55 -0
- package/es/components/tree/src/utils/tree.d.ts +5 -0
- package/es/packages/ui/src/assets/locales/en.d.ts +101 -0
- package/es/packages/ui/src/assets/locales/index.d.ts +2 -0
- package/es/packages/ui/src/assets/locales/zh.d.ts +103 -0
- package/es/packages/ui/src/components/container/index.d.ts +94 -0
- package/es/packages/ui/src/components/container/src/components/bar.d.ts +14 -0
- package/es/packages/ui/src/components/container/src/components/scroll-bar.d.ts +70 -0
- package/es/packages/ui/src/components/container/src/hooks/scroll.d.ts +10 -0
- package/es/packages/ui/src/components/container/src/scroll-container.d.ts +76 -0
- package/es/packages/ui/src/components/container/src/slot-container.d.ts +20 -0
- package/es/packages/ui/src/components/container/src/types/scroll.type.d.ts +22 -0
- package/es/packages/ui/src/components/container/src/utils/scroll.d.ts +5 -0
- package/es/packages/ui/src/global.d.ts +7 -0
- package/es/packages/ui/src/theme/index.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/content/index.d.ts +27 -0
- package/es/packages/ui/src/theme/src/components/feature/back-top.d.ts +5 -0
- package/es/packages/ui/src/theme/src/components/feature/index.d.ts +7 -0
- package/es/packages/ui/src/theme/src/components/footer/index.d.ts +31 -0
- package/es/packages/ui/src/theme/src/components/header/components/bread-crumb.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/header/components/fullscreen.d.ts +5 -0
- package/es/packages/ui/src/theme/src/components/header/components/index.d.ts +11 -0
- package/es/packages/ui/src/theme/src/components/header/components/lang-picker.d.ts +23 -0
- package/es/packages/ui/src/theme/src/components/header/components/logo.d.ts +56 -0
- package/es/packages/ui/src/theme/src/components/header/components/menu-filter.d.ts +22 -0
- package/es/packages/ui/src/theme/src/components/header/components/notify.d.ts +24 -0
- package/es/packages/ui/src/theme/src/components/header/components/setting-theme.d.ts +223 -0
- package/es/packages/ui/src/theme/src/components/header/components/size.d.ts +282 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
- package/es/packages/ui/src/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
- package/es/packages/ui/src/theme/src/components/header/components/trigger.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/header/components/user-info.d.ts +37 -0
- package/es/packages/ui/src/theme/src/components/header/helper/change-theme.d.ts +13 -0
- package/es/packages/ui/src/theme/src/components/header/helper/menu-tree.d.ts +4 -0
- package/es/packages/ui/src/theme/src/components/header/index.d.ts +720 -0
- package/es/packages/ui/src/theme/src/components/header/multiple-header.d.ts +806 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
- package/es/packages/ui/src/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
- package/es/packages/ui/src/theme/src/components/sider/components/drag-bar.d.ts +14 -0
- package/es/packages/ui/src/theme/src/components/sider/components/layout-menu.d.ts +22 -0
- package/es/packages/ui/src/theme/src/components/sider/components/props.d.ts +69 -0
- package/es/packages/ui/src/theme/src/components/sider/components/sider-trigger.d.ts +17 -0
- package/es/packages/ui/src/theme/src/components/sider/helper/sider.d.ts +12 -0
- package/es/packages/ui/src/theme/src/components/sider/helper/split-menu.d.ts +10 -0
- package/es/packages/ui/src/theme/src/components/sider/index.d.ts +235 -0
- package/es/packages/ui/src/theme/src/components/sider/mix-sider.d.ts +167 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/TabContent.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
- package/es/packages/ui/src/theme/src/components/tabs/components/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
- package/es/packages/ui/src/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
- package/es/packages/ui/src/theme/src/components/tabs/index.d.ts +63 -0
- package/es/packages/ui/src/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
- package/es/packages/ui/src/theme/src/enums/index.d.ts +1 -0
- package/es/packages/ui/src/theme/src/enums/theme.enum.d.ts +34 -0
- package/es/packages/ui/src/theme/src/hooks/index.d.ts +6 -0
- package/es/packages/ui/src/theme/src/hooks/useDragLine.d.ts +2 -0
- package/es/packages/ui/src/theme/src/hooks/useHeader.d.ts +25 -0
- package/es/packages/ui/src/theme/src/hooks/useMenu.d.ts +29 -0
- package/es/packages/ui/src/theme/src/hooks/useMultifyTab.d.ts +8 -0
- package/es/packages/ui/src/theme/src/hooks/useOpenKeys.d.ts +7 -0
- package/es/packages/ui/src/theme/src/hooks/useTheme.d.ts +9 -0
- package/es/packages/ui/src/theme/src/index.d.ts +1851 -0
- package/es/packages/ui/src/theme/src/setting/theme.setting.d.ts +2 -0
- package/es/packages/ui/src/theme/src/stores/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/stores/routeReuse.store.d.ts +23 -0
- package/es/packages/ui/src/theme/src/stores/theme.store.d.ts +18 -0
- package/es/packages/ui/src/theme/src/types/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/types/menu.type.d.ts +15 -0
- package/es/packages/ui/src/theme/src/types/theme.type.d.ts +62 -0
- package/es/packages/ui/src/utils/withInstall.d.ts +4 -0
- package/es/theme/index.d.ts +2 -1
- package/es/theme/index.js +898 -683
- package/es/theme/index.less +205 -0
- package/es/theme/src/components/header/components/logo.d.ts +22 -0
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/helper/menu-tree.d.ts +1 -0
- package/es/theme/src/components/header/index.d.ts +92 -5
- package/es/theme/src/components/header/multiple-header.d.ts +94 -7
- package/es/theme/src/components/sider/components/drag-bar.d.ts +1 -1
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -1
- package/es/theme/src/components/sider/index.d.ts +169 -3
- package/es/theme/src/components/sider/mix-sider.d.ts +168 -0
- package/es/theme/src/enums/theme.enum.d.ts +2 -1
- package/es/theme/src/hooks/useMenu.d.ts +5 -3
- package/es/theme/src/hooks/useMultifyTab.d.ts +1 -0
- package/es/theme/src/index.d.ts +356 -15
- package/es/theme/src/stores/theme.store.d.ts +3 -0
- package/es/theme/src/types/theme.type.d.ts +2 -0
- package/index.d.ts +2 -1
- package/index.js +6 -2
- package/package.json +4 -4
- package/tsconfig.json +1 -0
- package/vite.config.ts +1 -0
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
.ant-form-item-control-input .ant-form-item-control-input-content{
|
|
20
|
+
height: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
19
23
|
&__compact {
|
|
20
24
|
.ant-form-item-control-input-content .ant-form-item {
|
|
21
25
|
margin-bottom: 0;
|
|
@@ -26,6 +30,52 @@
|
|
|
26
30
|
}
|
|
27
31
|
}
|
|
28
32
|
|
|
33
|
+
.ant-input{
|
|
34
|
+
font-size: 13px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ant-btn{
|
|
38
|
+
display: flex;
|
|
39
|
+
align-items: center;
|
|
40
|
+
font-size: 13px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ant-btn.ant-btn-sm{
|
|
44
|
+
font-size: 12px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.ant-btn.ant-btn-lg {
|
|
48
|
+
font-size: 14px;
|
|
49
|
+
height: 34px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ant-input-sm{
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.ant-input-lg{
|
|
57
|
+
font-size: 14px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ant-form-item{
|
|
61
|
+
// align-items: center;
|
|
62
|
+
.prefix, .suffix {
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.ant-input-affix-wrapper{
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.ant-picker{
|
|
74
|
+
width: 100%;
|
|
75
|
+
height: 100%;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
29
79
|
.ant-form-item.small {
|
|
30
80
|
line-height: 30px;
|
|
31
81
|
font-size: 12px;
|
|
@@ -35,8 +85,7 @@
|
|
|
35
85
|
height: 30px;
|
|
36
86
|
}
|
|
37
87
|
|
|
38
|
-
.ant-input-affix-wrapper-sm{
|
|
39
|
-
line-height: 30px;
|
|
88
|
+
.ant-input-affix-wrapper-sm:not(.ant-input-affix-wrapper-textarea-with-clear-btn){
|
|
40
89
|
height: 30px;
|
|
41
90
|
|
|
42
91
|
.ant-input-sm{
|
|
@@ -49,10 +98,6 @@
|
|
|
49
98
|
font-size: 12px;
|
|
50
99
|
}
|
|
51
100
|
|
|
52
|
-
.prefix, .suffix {
|
|
53
|
-
height: 30px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
101
|
.ant-form-item-explain{
|
|
57
102
|
height: 16px;
|
|
58
103
|
min-height: 16px;
|
|
@@ -100,21 +145,170 @@
|
|
|
100
145
|
}
|
|
101
146
|
|
|
102
147
|
.ant-picker{
|
|
103
|
-
width: 100%;
|
|
104
|
-
height: 100%;
|
|
105
148
|
&-input input{
|
|
106
149
|
font-size: 12px;
|
|
107
150
|
}
|
|
108
151
|
}
|
|
109
152
|
}
|
|
110
153
|
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
.ant-form-item.middle{
|
|
157
|
+
font-size: 13px;
|
|
158
|
+
.ant-form-item-label label{
|
|
159
|
+
height: 32px;
|
|
160
|
+
font-size: 13px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.ant-input-prefix, .ant-input-suffix{
|
|
164
|
+
font-size: 13px;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-textarea-with-clear-btn){
|
|
168
|
+
height: 32px;
|
|
169
|
+
|
|
170
|
+
.ant-input{
|
|
171
|
+
height: 26px;
|
|
172
|
+
font-size: 13px;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.ant-select-single:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input,
|
|
177
|
+
.ant-select-multiple:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
|
|
178
|
+
height: 32px;
|
|
179
|
+
line-height: 30px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector{
|
|
183
|
+
height: 32px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector::after,
|
|
187
|
+
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
|
|
188
|
+
.ant-select-single:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder{
|
|
189
|
+
line-height: 30px;
|
|
190
|
+
font-size: 13px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.ant-select-multiple {
|
|
194
|
+
font-size: 13px;
|
|
195
|
+
.ant-select-selector{
|
|
196
|
+
min-height: 32px;
|
|
197
|
+
input{
|
|
198
|
+
height: 28px !important;
|
|
199
|
+
line-height: 28px !important;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
.anticon {
|
|
203
|
+
display: flex;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.ant-radio-group-default label, .ant-checkbox-group-item {
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
line-height: 30px;
|
|
210
|
+
height: 30px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.ant-picker{
|
|
214
|
+
&-input input{
|
|
215
|
+
font-size: 13px;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.ant-form-item.large{
|
|
221
|
+
font-size: 14px;
|
|
222
|
+
.ant-form-item-label label{
|
|
223
|
+
height: 34px;
|
|
224
|
+
font-size: 14px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.ant-input-prefix, .ant-input-suffix{
|
|
228
|
+
font-size: 14px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.ant-input-affix-wrapper-lg:not(.ant-input-affix-wrapper-textarea-with-clear-btn){
|
|
232
|
+
height: 34px;
|
|
233
|
+
|
|
234
|
+
.ant-input{
|
|
235
|
+
font-size: 14px;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.ant-select-single.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input,
|
|
240
|
+
.ant-select-multiple.ant-select-lg:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
|
|
241
|
+
height: 34px;
|
|
242
|
+
line-height: 32px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector{
|
|
246
|
+
height: 34px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector::after,
|
|
250
|
+
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
|
|
251
|
+
.ant-select-single.ant-select-lg:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder{
|
|
252
|
+
line-height: 32px;
|
|
253
|
+
font-size: 14px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.ant-select-multiple.ant-select-lg {
|
|
257
|
+
font-size: 14px;
|
|
258
|
+
.ant-select-selector{
|
|
259
|
+
min-height: 34px;
|
|
260
|
+
input{
|
|
261
|
+
height: 16px !important;
|
|
262
|
+
line-height: 16px !important;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.ant-select-selector::after{
|
|
267
|
+
margin: 0;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.ant-select-selection-overflow-item{
|
|
271
|
+
height: 26px;
|
|
272
|
+
.ant-select-selection-item{
|
|
273
|
+
height: 24px;
|
|
274
|
+
line-height: 24px;
|
|
275
|
+
font-size: 13px;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
.anticon {
|
|
279
|
+
display: flex;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.ant-radio-group-large label, .ant-checkbox-group-item {
|
|
284
|
+
font-size: 14px;
|
|
285
|
+
line-height: 32px;
|
|
286
|
+
height: 32px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.ant-picker{
|
|
290
|
+
&-input input{
|
|
291
|
+
font-size: 14px;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
111
296
|
.ant-input-number {
|
|
112
297
|
width: 100%;
|
|
113
298
|
height: 100%;
|
|
299
|
+
font-size: 13px;
|
|
114
300
|
&.ant-input-number-sm{
|
|
115
301
|
line-height: 28px;
|
|
116
302
|
font-size: 12px;
|
|
117
303
|
}
|
|
304
|
+
|
|
305
|
+
&.ant-input-number-lg{
|
|
306
|
+
line-height: 28px;
|
|
307
|
+
font-size: 14px;
|
|
308
|
+
input{
|
|
309
|
+
height: 32px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
118
312
|
}
|
|
119
313
|
|
|
120
314
|
.anticon-swap-right{
|
|
@@ -128,14 +322,23 @@
|
|
|
128
322
|
min-height: 30px;
|
|
129
323
|
}
|
|
130
324
|
|
|
325
|
+
.ant-select-dropdown.middle .ant-select-item.ant-select-item-option {
|
|
326
|
+
font-size: 13px;
|
|
327
|
+
line-height: 24px;
|
|
328
|
+
min-height: 32px;
|
|
329
|
+
}
|
|
330
|
+
|
|
131
331
|
.ant-picker-dropdown.small {
|
|
132
332
|
font-size: 12px;
|
|
133
333
|
}
|
|
134
334
|
|
|
335
|
+
.ant-picker-dropdown.middle {
|
|
336
|
+
font-size: 13px;
|
|
337
|
+
}
|
|
338
|
+
|
|
135
339
|
.dt-form-btns {
|
|
136
340
|
.ant-form-item-control-input-content{
|
|
137
341
|
display: flex;
|
|
138
342
|
gap: 12px;
|
|
139
343
|
}
|
|
140
344
|
}
|
|
141
|
-
|
|
@@ -50,8 +50,8 @@ declare const _sfc_main: {
|
|
|
50
50
|
};
|
|
51
51
|
rowProps: {
|
|
52
52
|
type: PropType<Partial<import("vue").ExtractPropTypes<{
|
|
53
|
-
align: PropType<"
|
|
54
|
-
justify: PropType<"
|
|
53
|
+
align: PropType<"middle" | "top" | "bottom" | "stretch">;
|
|
54
|
+
justify: PropType<"center" | "start" | "space-around" | "space-between" | "end">;
|
|
55
55
|
prefixCls: StringConstructor;
|
|
56
56
|
gutter: {
|
|
57
57
|
type: 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]>;
|
|
@@ -69,7 +69,7 @@ declare const _sfc_main: {
|
|
|
69
69
|
default: () => {};
|
|
70
70
|
};
|
|
71
71
|
size: {
|
|
72
|
-
type: PropType<"small" | "
|
|
72
|
+
type: PropType<"small" | "large" | "middle">;
|
|
73
73
|
default: string;
|
|
74
74
|
};
|
|
75
75
|
disabled: {
|
|
@@ -88,10 +88,6 @@ declare const _sfc_main: {
|
|
|
88
88
|
type: BooleanConstructor;
|
|
89
89
|
default: boolean;
|
|
90
90
|
};
|
|
91
|
-
alwaysShowLines: {
|
|
92
|
-
type: BooleanConstructor;
|
|
93
|
-
default: boolean;
|
|
94
|
-
};
|
|
95
91
|
minShowColumn: {
|
|
96
92
|
type: NumberConstructor;
|
|
97
93
|
default: number;
|
|
@@ -143,7 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
143
143
|
'onUpdate:value': import("vue").PropType<(val: string) => void>;
|
|
144
144
|
valueModifiers: ObjectConstructor;
|
|
145
145
|
hidden: BooleanConstructor;
|
|
146
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "
|
|
146
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "loading" | "disabled" | "bordered" | "autofocus" | "readonly" | "allowClear" | "lazy" | "hidden">;
|
|
147
147
|
$attrs: {
|
|
148
148
|
[x: string]: unknown;
|
|
149
149
|
};
|
|
@@ -153,8 +153,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
153
153
|
$slots: Readonly<{
|
|
154
154
|
[name: string]: import("vue").Slot;
|
|
155
155
|
}>;
|
|
156
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
157
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
156
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
157
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
158
158
|
$emit: (event: string, ...args: any[]) => void;
|
|
159
159
|
$el: any;
|
|
160
160
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -236,7 +236,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
236
236
|
allowClear: boolean;
|
|
237
237
|
bordered: boolean;
|
|
238
238
|
lazy: boolean;
|
|
239
|
-
}
|
|
239
|
+
}> & {
|
|
240
240
|
beforeCreate?: (() => void) | (() => void)[];
|
|
241
241
|
created?: (() => void) | (() => void)[];
|
|
242
242
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -251,7 +251,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
251
251
|
unmounted?: (() => void) | (() => void)[];
|
|
252
252
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
253
253
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
254
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
254
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
|
|
255
255
|
};
|
|
256
256
|
$forceUpdate: () => void;
|
|
257
257
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -407,7 +407,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
407
407
|
allowClear: boolean;
|
|
408
408
|
bordered: boolean;
|
|
409
409
|
lazy: boolean;
|
|
410
|
-
}
|
|
410
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
411
411
|
readonly Group: import("vue").DefineComponent<{
|
|
412
412
|
prefixCls: StringConstructor;
|
|
413
413
|
size: {
|
|
@@ -457,7 +457,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
457
457
|
inputPrefixCls: StringConstructor;
|
|
458
458
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
459
459
|
onSearch: {
|
|
460
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
460
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
461
461
|
};
|
|
462
462
|
id: StringConstructor;
|
|
463
463
|
prefixCls: StringConstructor;
|
|
@@ -529,7 +529,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
529
529
|
inputPrefixCls: StringConstructor;
|
|
530
530
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
531
531
|
onSearch: {
|
|
532
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
532
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
533
533
|
};
|
|
534
534
|
id: StringConstructor;
|
|
535
535
|
prefixCls: StringConstructor;
|
|
@@ -1014,7 +1014,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1014
1014
|
onMousedown: {
|
|
1015
1015
|
type: import("vue").PropType<(event: MouseEvent) => void>;
|
|
1016
1016
|
};
|
|
1017
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
1017
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "htmlType" | "ghost" | "block" | "danger">;
|
|
1018
1018
|
$attrs: {
|
|
1019
1019
|
[x: string]: unknown;
|
|
1020
1020
|
};
|
|
@@ -1024,8 +1024,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1024
1024
|
$slots: Readonly<{
|
|
1025
1025
|
[name: string]: import("vue").Slot;
|
|
1026
1026
|
}>;
|
|
1027
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1028
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1027
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
1028
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
1029
1029
|
$emit: (event: string, ...args: any[]) => void;
|
|
1030
1030
|
$el: any;
|
|
1031
1031
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1084,7 +1084,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1084
1084
|
ghost: boolean;
|
|
1085
1085
|
danger: boolean;
|
|
1086
1086
|
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
1087
|
-
}
|
|
1087
|
+
}> & {
|
|
1088
1088
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1089
1089
|
created?: (() => void) | (() => void)[];
|
|
1090
1090
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -1099,7 +1099,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1099
1099
|
unmounted?: (() => void) | (() => void)[];
|
|
1100
1100
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1101
1101
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1102
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1102
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
|
|
1103
1103
|
};
|
|
1104
1104
|
$forceUpdate: () => void;
|
|
1105
1105
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -1211,7 +1211,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1211
1211
|
ghost: boolean;
|
|
1212
1212
|
danger: boolean;
|
|
1213
1213
|
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
1214
|
-
}
|
|
1214
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
1215
1215
|
readonly Group: import("vue").DefineComponent<{
|
|
1216
1216
|
prefixCls: StringConstructor;
|
|
1217
1217
|
size: {
|
|
@@ -96,7 +96,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
96
96
|
'onUpdate:value': import("vue").PropType<(val: string) => void>;
|
|
97
97
|
valueModifiers: ObjectConstructor;
|
|
98
98
|
hidden: BooleanConstructor;
|
|
99
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "
|
|
99
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "loading" | "disabled" | "bordered" | "autofocus" | "readonly" | "allowClear" | "lazy" | "hidden">;
|
|
100
100
|
$attrs: {
|
|
101
101
|
[x: string]: unknown;
|
|
102
102
|
};
|
|
@@ -106,8 +106,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
106
106
|
$slots: Readonly<{
|
|
107
107
|
[name: string]: import("vue").Slot;
|
|
108
108
|
}>;
|
|
109
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
110
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
109
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
110
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
111
111
|
$emit: (event: string, ...args: any[]) => void;
|
|
112
112
|
$el: any;
|
|
113
113
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -189,7 +189,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
189
189
|
allowClear: boolean;
|
|
190
190
|
bordered: boolean;
|
|
191
191
|
lazy: boolean;
|
|
192
|
-
}
|
|
192
|
+
}> & {
|
|
193
193
|
beforeCreate?: (() => void) | (() => void)[];
|
|
194
194
|
created?: (() => void) | (() => void)[];
|
|
195
195
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -204,7 +204,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
204
204
|
unmounted?: (() => void) | (() => void)[];
|
|
205
205
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
206
206
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
207
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
207
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
|
|
208
208
|
};
|
|
209
209
|
$forceUpdate: () => void;
|
|
210
210
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -360,7 +360,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
360
360
|
allowClear: boolean;
|
|
361
361
|
bordered: boolean;
|
|
362
362
|
lazy: boolean;
|
|
363
|
-
}
|
|
363
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
364
364
|
readonly Group: import("vue").DefineComponent<{
|
|
365
365
|
prefixCls: StringConstructor;
|
|
366
366
|
size: {
|
|
@@ -410,7 +410,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
410
410
|
inputPrefixCls: StringConstructor;
|
|
411
411
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
412
412
|
onSearch: {
|
|
413
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
413
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
414
414
|
};
|
|
415
415
|
id: StringConstructor;
|
|
416
416
|
prefixCls: StringConstructor;
|
|
@@ -482,7 +482,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
482
482
|
inputPrefixCls: StringConstructor;
|
|
483
483
|
enterButton: import("vue-types").VueTypeValidableDef<any>;
|
|
484
484
|
onSearch: {
|
|
485
|
-
type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent |
|
|
485
|
+
type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
|
|
486
486
|
};
|
|
487
487
|
id: StringConstructor;
|
|
488
488
|
prefixCls: StringConstructor;
|
|
@@ -78,10 +78,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
78
78
|
type: BooleanConstructor;
|
|
79
79
|
default: boolean;
|
|
80
80
|
};
|
|
81
|
-
alwaysShowLines: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
81
|
minShowColumn: {
|
|
86
82
|
type: NumberConstructor;
|
|
87
83
|
default: number;
|
|
@@ -214,10 +210,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
214
210
|
type: BooleanConstructor;
|
|
215
211
|
default: boolean;
|
|
216
212
|
};
|
|
217
|
-
alwaysShowLines: {
|
|
218
|
-
type: BooleanConstructor;
|
|
219
|
-
default: boolean;
|
|
220
|
-
};
|
|
221
213
|
minShowColumn: {
|
|
222
214
|
type: NumberConstructor;
|
|
223
215
|
default: number;
|
|
@@ -356,10 +348,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
356
348
|
type: BooleanConstructor;
|
|
357
349
|
default: boolean;
|
|
358
350
|
};
|
|
359
|
-
alwaysShowLines: {
|
|
360
|
-
type: BooleanConstructor;
|
|
361
|
-
default: boolean;
|
|
362
|
-
};
|
|
363
351
|
minShowColumn: {
|
|
364
352
|
type: NumberConstructor;
|
|
365
353
|
default: number;
|
|
@@ -2471,10 +2459,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2471
2459
|
type: BooleanConstructor;
|
|
2472
2460
|
default: boolean;
|
|
2473
2461
|
};
|
|
2474
|
-
alwaysShowLines: {
|
|
2475
|
-
type: BooleanConstructor;
|
|
2476
|
-
default: boolean;
|
|
2477
|
-
};
|
|
2478
2462
|
minShowColumn: {
|
|
2479
2463
|
type: NumberConstructor;
|
|
2480
2464
|
default: number;
|
|
@@ -2644,10 +2628,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2644
2628
|
type: BooleanConstructor;
|
|
2645
2629
|
default: boolean;
|
|
2646
2630
|
};
|
|
2647
|
-
alwaysShowLines: {
|
|
2648
|
-
type: BooleanConstructor;
|
|
2649
|
-
default: boolean;
|
|
2650
|
-
};
|
|
2651
2631
|
minShowColumn: {
|
|
2652
2632
|
type: NumberConstructor;
|
|
2653
2633
|
default: number;
|
|
@@ -2879,10 +2859,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2879
2859
|
type: BooleanConstructor;
|
|
2880
2860
|
default: boolean;
|
|
2881
2861
|
};
|
|
2882
|
-
alwaysShowLines: {
|
|
2883
|
-
type: BooleanConstructor;
|
|
2884
|
-
default: boolean;
|
|
2885
|
-
};
|
|
2886
2862
|
minShowColumn: {
|
|
2887
2863
|
type: NumberConstructor;
|
|
2888
2864
|
default: number;
|
|
@@ -2949,7 +2925,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2949
2925
|
compact: boolean;
|
|
2950
2926
|
schemas: FormSchema[];
|
|
2951
2927
|
autoSearchOnEnter: boolean;
|
|
2952
|
-
alwaysShowLines: boolean;
|
|
2953
2928
|
minShowColumn: number;
|
|
2954
2929
|
showAdvancedButton: boolean;
|
|
2955
2930
|
allowClear: boolean;
|
|
@@ -41,8 +41,8 @@ export declare const BasicProps: {
|
|
|
41
41
|
};
|
|
42
42
|
rowProps: {
|
|
43
43
|
type: PropType<Partial<import("vue").ExtractPropTypes<{
|
|
44
|
-
align: PropType<"
|
|
45
|
-
justify: PropType<"
|
|
44
|
+
align: PropType<"middle" | "top" | "bottom" | "stretch">;
|
|
45
|
+
justify: PropType<"center" | "start" | "space-around" | "space-between" | "end">;
|
|
46
46
|
prefixCls: StringConstructor;
|
|
47
47
|
gutter: {
|
|
48
48
|
type: 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]>;
|
|
@@ -79,10 +79,6 @@ export declare const BasicProps: {
|
|
|
79
79
|
type: BooleanConstructor;
|
|
80
80
|
default: boolean;
|
|
81
81
|
};
|
|
82
|
-
alwaysShowLines: {
|
|
83
|
-
type: BooleanConstructor;
|
|
84
|
-
default: boolean;
|
|
85
|
-
};
|
|
86
82
|
minShowColumn: {
|
|
87
83
|
type: NumberConstructor;
|
|
88
84
|
default: number;
|
|
@@ -55,7 +55,7 @@ export declare type FormSchema = {
|
|
|
55
55
|
};
|
|
56
56
|
export declare type ButtonProps = {
|
|
57
57
|
t?: string;
|
|
58
|
-
|
|
58
|
+
label: string;
|
|
59
59
|
color?: 'error' | 'warning' | 'success' | '';
|
|
60
60
|
type?: 'primary' | 'ghost' | 'dashed' | 'link' | 'text' | 'default' | undefined;
|
|
61
61
|
class?: string;
|