@aspire-ui/element-component-pro 1.0.16 → 1.0.17
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/README.md +1 -0
- package/dist/CollapseContainer/CollapseContainer.vue.d.ts +101 -0
- package/dist/CollapseContainer/index.d.ts +4 -0
- package/dist/ProDescriptions/ProDescriptions.vue.d.ts +1 -1
- package/dist/ProForm/ProForm.vue.d.ts +1 -1
- package/dist/ProTable/ProTable.vue.d.ts +1 -1
- package/dist/element-component-pro.es.js +931 -853
- package/dist/element-component-pro.es.js.map +1 -1
- package/dist/element-component-pro.umd.js +2 -2
- package/dist/element-component-pro.umd.js.map +1 -1
- package/dist/index.d.ts +529 -94
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +25 -0
- package/package.json +1 -1
- package/src/CollapseContainer/CollapseContainer.vue +284 -0
- package/src/CollapseContainer/index.ts +4 -0
- package/src/ProForm/ApiSelect.vue +25 -4
- package/src/index.ts +4 -0
- package/src/types/index.ts +26 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { VueConstructor } from 'vue';
|
|
|
2
2
|
import { default as ProTable, TableAction } from './ProTable';
|
|
3
3
|
import { default as ProForm, ProFormItem, FormActions, FormattedNumberInput } from './ProForm';
|
|
4
4
|
import { default as ProDescriptions } from './ProDescriptions';
|
|
5
|
+
import { default as CollapseContainer } from './CollapseContainer';
|
|
5
6
|
import { ProTableForm } from './ProTableForm';
|
|
6
7
|
import { useForm } from './ProForm/useForm';
|
|
7
8
|
import { useDescription } from './ProDescriptions/useDescription';
|
|
@@ -11,6 +12,7 @@ import { useComponentSetting } from './useComponentSetting';
|
|
|
11
12
|
export { ProForm, ProFormItem, FormActions, FormattedNumberInput, useForm };
|
|
12
13
|
export { ProTable, useProTable, TableAction };
|
|
13
14
|
export { ProDescriptions, useDescription };
|
|
15
|
+
export { CollapseContainer };
|
|
14
16
|
export { ProTableForm };
|
|
15
17
|
export type { ProTableFormColumn, ProTableFormFixedRow, ProTableFormProps, ProTableFormActionColumn, } from './ProTableForm/types';
|
|
16
18
|
export { useComponentSetting };
|
|
@@ -27,8 +29,12 @@ declare const _default: {
|
|
|
27
29
|
title: {
|
|
28
30
|
type: import('vue').PropType<string>;
|
|
29
31
|
};
|
|
32
|
+
loading: {
|
|
33
|
+
type: import('vue').PropType<boolean>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
30
36
|
size: {
|
|
31
|
-
type: import('vue').PropType<"
|
|
37
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
32
38
|
default: string;
|
|
33
39
|
};
|
|
34
40
|
bordered: {
|
|
@@ -52,10 +58,6 @@ declare const _default: {
|
|
|
52
58
|
lazy: {
|
|
53
59
|
type: import('vue').PropType<boolean>;
|
|
54
60
|
};
|
|
55
|
-
loading: {
|
|
56
|
-
type: import('vue').PropType<boolean>;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
61
|
immediate: {
|
|
60
62
|
type: import('vue').PropType<boolean>;
|
|
61
63
|
default: boolean;
|
|
@@ -199,8 +201,12 @@ declare const _default: {
|
|
|
199
201
|
title: {
|
|
200
202
|
type: import('vue').PropType<string>;
|
|
201
203
|
};
|
|
204
|
+
loading: {
|
|
205
|
+
type: import('vue').PropType<boolean>;
|
|
206
|
+
default: boolean;
|
|
207
|
+
};
|
|
202
208
|
size: {
|
|
203
|
-
type: import('vue').PropType<"
|
|
209
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
204
210
|
default: string;
|
|
205
211
|
};
|
|
206
212
|
bordered: {
|
|
@@ -224,10 +230,6 @@ declare const _default: {
|
|
|
224
230
|
lazy: {
|
|
225
231
|
type: import('vue').PropType<boolean>;
|
|
226
232
|
};
|
|
227
|
-
loading: {
|
|
228
|
-
type: import('vue').PropType<boolean>;
|
|
229
|
-
default: boolean;
|
|
230
|
-
};
|
|
231
233
|
immediate: {
|
|
232
234
|
type: import('vue').PropType<boolean>;
|
|
233
235
|
default: boolean;
|
|
@@ -386,9 +388,9 @@ declare const _default: {
|
|
|
386
388
|
}) => void;
|
|
387
389
|
"expand-change": (row: Record<string, unknown>, expanded: boolean | Record<string, unknown>[]) => void;
|
|
388
390
|
}, {
|
|
391
|
+
loading: boolean;
|
|
389
392
|
size: "medium" | "small" | "large";
|
|
390
393
|
bordered: boolean;
|
|
391
|
-
loading: boolean;
|
|
392
394
|
immediate: boolean;
|
|
393
395
|
rowKey: string;
|
|
394
396
|
striped: boolean;
|
|
@@ -414,8 +416,12 @@ declare const _default: {
|
|
|
414
416
|
title: {
|
|
415
417
|
type: import('vue').PropType<string>;
|
|
416
418
|
};
|
|
419
|
+
loading: {
|
|
420
|
+
type: import('vue').PropType<boolean>;
|
|
421
|
+
default: boolean;
|
|
422
|
+
};
|
|
417
423
|
size: {
|
|
418
|
-
type: import('vue').PropType<"
|
|
424
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
419
425
|
default: string;
|
|
420
426
|
};
|
|
421
427
|
bordered: {
|
|
@@ -439,10 +445,6 @@ declare const _default: {
|
|
|
439
445
|
lazy: {
|
|
440
446
|
type: import('vue').PropType<boolean>;
|
|
441
447
|
};
|
|
442
|
-
loading: {
|
|
443
|
-
type: import('vue').PropType<boolean>;
|
|
444
|
-
default: boolean;
|
|
445
|
-
};
|
|
446
448
|
immediate: {
|
|
447
449
|
type: import('vue').PropType<boolean>;
|
|
448
450
|
default: boolean;
|
|
@@ -620,8 +622,12 @@ declare const _default: {
|
|
|
620
622
|
title: {
|
|
621
623
|
type: import('vue').PropType<string>;
|
|
622
624
|
};
|
|
625
|
+
loading: {
|
|
626
|
+
type: import('vue').PropType<boolean>;
|
|
627
|
+
default: boolean;
|
|
628
|
+
};
|
|
623
629
|
size: {
|
|
624
|
-
type: import('vue').PropType<"
|
|
630
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
625
631
|
default: string;
|
|
626
632
|
};
|
|
627
633
|
bordered: {
|
|
@@ -645,10 +651,6 @@ declare const _default: {
|
|
|
645
651
|
lazy: {
|
|
646
652
|
type: import('vue').PropType<boolean>;
|
|
647
653
|
};
|
|
648
|
-
loading: {
|
|
649
|
-
type: import('vue').PropType<boolean>;
|
|
650
|
-
default: boolean;
|
|
651
|
-
};
|
|
652
654
|
immediate: {
|
|
653
655
|
type: import('vue').PropType<boolean>;
|
|
654
656
|
default: boolean;
|
|
@@ -792,8 +794,12 @@ declare const _default: {
|
|
|
792
794
|
title: {
|
|
793
795
|
type: import('vue').PropType<string>;
|
|
794
796
|
};
|
|
797
|
+
loading: {
|
|
798
|
+
type: import('vue').PropType<boolean>;
|
|
799
|
+
default: boolean;
|
|
800
|
+
};
|
|
795
801
|
size: {
|
|
796
|
-
type: import('vue').PropType<"
|
|
802
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
797
803
|
default: string;
|
|
798
804
|
};
|
|
799
805
|
bordered: {
|
|
@@ -817,10 +823,6 @@ declare const _default: {
|
|
|
817
823
|
lazy: {
|
|
818
824
|
type: import('vue').PropType<boolean>;
|
|
819
825
|
};
|
|
820
|
-
loading: {
|
|
821
|
-
type: import('vue').PropType<boolean>;
|
|
822
|
-
default: boolean;
|
|
823
|
-
};
|
|
824
826
|
immediate: {
|
|
825
827
|
type: import('vue').PropType<boolean>;
|
|
826
828
|
default: boolean;
|
|
@@ -1013,9 +1015,9 @@ declare const _default: {
|
|
|
1013
1015
|
}) => void;
|
|
1014
1016
|
"expand-change": (row: Record<string, unknown>, expanded: boolean | Record<string, unknown>[]) => void;
|
|
1015
1017
|
}, string, {
|
|
1018
|
+
loading: boolean;
|
|
1016
1019
|
size: "medium" | "small" | "large";
|
|
1017
1020
|
bordered: boolean;
|
|
1018
|
-
loading: boolean;
|
|
1019
1021
|
immediate: boolean;
|
|
1020
1022
|
rowKey: string;
|
|
1021
1023
|
striped: boolean;
|
|
@@ -1042,8 +1044,12 @@ declare const _default: {
|
|
|
1042
1044
|
title: {
|
|
1043
1045
|
type: import('vue').PropType<string>;
|
|
1044
1046
|
};
|
|
1047
|
+
loading: {
|
|
1048
|
+
type: import('vue').PropType<boolean>;
|
|
1049
|
+
default: boolean;
|
|
1050
|
+
};
|
|
1045
1051
|
size: {
|
|
1046
|
-
type: import('vue').PropType<"
|
|
1052
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1047
1053
|
default: string;
|
|
1048
1054
|
};
|
|
1049
1055
|
bordered: {
|
|
@@ -1067,10 +1073,6 @@ declare const _default: {
|
|
|
1067
1073
|
lazy: {
|
|
1068
1074
|
type: import('vue').PropType<boolean>;
|
|
1069
1075
|
};
|
|
1070
|
-
loading: {
|
|
1071
|
-
type: import('vue').PropType<boolean>;
|
|
1072
|
-
default: boolean;
|
|
1073
|
-
};
|
|
1074
1076
|
immediate: {
|
|
1075
1077
|
type: import('vue').PropType<boolean>;
|
|
1076
1078
|
default: boolean;
|
|
@@ -1327,16 +1329,16 @@ declare const _default: {
|
|
|
1327
1329
|
};
|
|
1328
1330
|
});
|
|
1329
1331
|
ProForm: import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
|
|
1332
|
+
components: {
|
|
1333
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1334
|
+
};
|
|
1330
1335
|
disabled: {
|
|
1331
1336
|
type: import('vue').PropType<boolean>;
|
|
1332
1337
|
};
|
|
1333
1338
|
size: {
|
|
1334
|
-
type: import('vue').PropType<"
|
|
1339
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1335
1340
|
default: string;
|
|
1336
1341
|
};
|
|
1337
|
-
components: {
|
|
1338
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
1339
|
-
};
|
|
1340
1342
|
showActionButtonGroup: {
|
|
1341
1343
|
type: import('vue').PropType<boolean>;
|
|
1342
1344
|
default: boolean;
|
|
@@ -1443,16 +1445,16 @@ declare const _default: {
|
|
|
1443
1445
|
type: import('vue').PropType<import('./types').FormListeners>;
|
|
1444
1446
|
};
|
|
1445
1447
|
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
1448
|
+
components: {
|
|
1449
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1450
|
+
};
|
|
1446
1451
|
disabled: {
|
|
1447
1452
|
type: import('vue').PropType<boolean>;
|
|
1448
1453
|
};
|
|
1449
1454
|
size: {
|
|
1450
|
-
type: import('vue').PropType<"
|
|
1455
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1451
1456
|
default: string;
|
|
1452
1457
|
};
|
|
1453
|
-
components: {
|
|
1454
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
1455
|
-
};
|
|
1456
1458
|
showActionButtonGroup: {
|
|
1457
1459
|
type: import('vue').PropType<boolean>;
|
|
1458
1460
|
default: boolean;
|
|
@@ -1584,16 +1586,16 @@ declare const _default: {
|
|
|
1584
1586
|
alwaysShowLines: number;
|
|
1585
1587
|
submitOnReset: boolean;
|
|
1586
1588
|
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
1589
|
+
components: {
|
|
1590
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1591
|
+
};
|
|
1587
1592
|
disabled: {
|
|
1588
1593
|
type: import('vue').PropType<boolean>;
|
|
1589
1594
|
};
|
|
1590
1595
|
size: {
|
|
1591
|
-
type: import('vue').PropType<"
|
|
1596
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1592
1597
|
default: string;
|
|
1593
1598
|
};
|
|
1594
|
-
components: {
|
|
1595
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
1596
|
-
};
|
|
1597
1599
|
showActionButtonGroup: {
|
|
1598
1600
|
type: import('vue').PropType<boolean>;
|
|
1599
1601
|
default: boolean;
|
|
@@ -1717,16 +1719,16 @@ declare const _default: {
|
|
|
1717
1719
|
getFieldOptions: import('./types').GetFieldOptions;
|
|
1718
1720
|
isFieldLoading: (field: string) => boolean;
|
|
1719
1721
|
}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
1722
|
+
components: {
|
|
1723
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1724
|
+
};
|
|
1720
1725
|
disabled: {
|
|
1721
1726
|
type: import('vue').PropType<boolean>;
|
|
1722
1727
|
};
|
|
1723
1728
|
size: {
|
|
1724
|
-
type: import('vue').PropType<"
|
|
1729
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1725
1730
|
default: string;
|
|
1726
1731
|
};
|
|
1727
|
-
components: {
|
|
1728
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
1729
|
-
};
|
|
1730
1732
|
showActionButtonGroup: {
|
|
1731
1733
|
type: import('vue').PropType<boolean>;
|
|
1732
1734
|
default: boolean;
|
|
@@ -1833,16 +1835,16 @@ declare const _default: {
|
|
|
1833
1835
|
type: import('vue').PropType<import('./types').FormListeners>;
|
|
1834
1836
|
};
|
|
1835
1837
|
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1838
|
+
components: {
|
|
1839
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1840
|
+
};
|
|
1836
1841
|
disabled: {
|
|
1837
1842
|
type: import('vue').PropType<boolean>;
|
|
1838
1843
|
};
|
|
1839
1844
|
size: {
|
|
1840
|
-
type: import('vue').PropType<"
|
|
1845
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
1841
1846
|
default: string;
|
|
1842
1847
|
};
|
|
1843
|
-
components: {
|
|
1844
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
1845
|
-
};
|
|
1846
1848
|
showActionButtonGroup: {
|
|
1847
1849
|
type: import('vue').PropType<boolean>;
|
|
1848
1850
|
default: boolean;
|
|
@@ -1992,16 +1994,16 @@ declare const _default: {
|
|
|
1992
1994
|
submitOnReset: boolean;
|
|
1993
1995
|
}> & {
|
|
1994
1996
|
props: {
|
|
1997
|
+
components: {
|
|
1998
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
1999
|
+
};
|
|
1995
2000
|
disabled: {
|
|
1996
2001
|
type: import('vue').PropType<boolean>;
|
|
1997
2002
|
};
|
|
1998
2003
|
size: {
|
|
1999
|
-
type: import('vue').PropType<"
|
|
2004
|
+
type: import('vue').PropType<"small" | "medium" | "large">;
|
|
2000
2005
|
default: string;
|
|
2001
2006
|
};
|
|
2002
|
-
components: {
|
|
2003
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2004
|
-
};
|
|
2005
2007
|
showActionButtonGroup: {
|
|
2006
2008
|
type: import('vue').PropType<boolean>;
|
|
2007
2009
|
default: boolean;
|
|
@@ -2166,8 +2168,12 @@ declare const _default: {
|
|
|
2166
2168
|
helpMessage: {
|
|
2167
2169
|
type: import('vue').PropType<string | string[]>;
|
|
2168
2170
|
};
|
|
2171
|
+
data: {
|
|
2172
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2173
|
+
default: () => {};
|
|
2174
|
+
};
|
|
2169
2175
|
size: {
|
|
2170
|
-
type: import('vue').PropType<"
|
|
2176
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2171
2177
|
default: string;
|
|
2172
2178
|
};
|
|
2173
2179
|
bordered: {
|
|
@@ -2189,10 +2195,6 @@ declare const _default: {
|
|
|
2189
2195
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2190
2196
|
default: () => never[];
|
|
2191
2197
|
};
|
|
2192
|
-
data: {
|
|
2193
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2194
|
-
default: () => {};
|
|
2195
|
-
};
|
|
2196
2198
|
emptyText: {
|
|
2197
2199
|
type: import('vue').PropType<string>;
|
|
2198
2200
|
default: string;
|
|
@@ -2225,8 +2227,12 @@ declare const _default: {
|
|
|
2225
2227
|
helpMessage: {
|
|
2226
2228
|
type: import('vue').PropType<string | string[]>;
|
|
2227
2229
|
};
|
|
2230
|
+
data: {
|
|
2231
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2232
|
+
default: () => {};
|
|
2233
|
+
};
|
|
2228
2234
|
size: {
|
|
2229
|
-
type: import('vue').PropType<"
|
|
2235
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2230
2236
|
default: string;
|
|
2231
2237
|
};
|
|
2232
2238
|
bordered: {
|
|
@@ -2248,10 +2254,6 @@ declare const _default: {
|
|
|
2248
2254
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2249
2255
|
default: () => never[];
|
|
2250
2256
|
};
|
|
2251
|
-
data: {
|
|
2252
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2253
|
-
default: () => {};
|
|
2254
|
-
};
|
|
2255
2257
|
emptyText: {
|
|
2256
2258
|
type: import('vue').PropType<string>;
|
|
2257
2259
|
default: string;
|
|
@@ -2280,11 +2282,11 @@ declare const _default: {
|
|
|
2280
2282
|
}>>, {
|
|
2281
2283
|
register: (action: import('./types').DescriptionActionType) => void;
|
|
2282
2284
|
}, {
|
|
2285
|
+
data: Record<string, unknown>;
|
|
2283
2286
|
size: "medium" | "small";
|
|
2284
2287
|
bordered: boolean;
|
|
2285
2288
|
column: import('./types').DescriptionColumn;
|
|
2286
2289
|
schema: import('./types').DescriptionSchema[];
|
|
2287
|
-
data: Record<string, unknown>;
|
|
2288
2290
|
emptyText: string;
|
|
2289
2291
|
useCollapse: boolean;
|
|
2290
2292
|
collapseOptions: {
|
|
@@ -2302,8 +2304,12 @@ declare const _default: {
|
|
|
2302
2304
|
helpMessage: {
|
|
2303
2305
|
type: import('vue').PropType<string | string[]>;
|
|
2304
2306
|
};
|
|
2307
|
+
data: {
|
|
2308
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2309
|
+
default: () => {};
|
|
2310
|
+
};
|
|
2305
2311
|
size: {
|
|
2306
|
-
type: import('vue').PropType<"
|
|
2312
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2307
2313
|
default: string;
|
|
2308
2314
|
};
|
|
2309
2315
|
bordered: {
|
|
@@ -2325,10 +2331,6 @@ declare const _default: {
|
|
|
2325
2331
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2326
2332
|
default: () => never[];
|
|
2327
2333
|
};
|
|
2328
|
-
data: {
|
|
2329
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2330
|
-
default: () => {};
|
|
2331
|
-
};
|
|
2332
2334
|
emptyText: {
|
|
2333
2335
|
type: import('vue').PropType<string>;
|
|
2334
2336
|
default: string;
|
|
@@ -2365,8 +2367,12 @@ declare const _default: {
|
|
|
2365
2367
|
helpMessage: {
|
|
2366
2368
|
type: import('vue').PropType<string | string[]>;
|
|
2367
2369
|
};
|
|
2370
|
+
data: {
|
|
2371
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2372
|
+
default: () => {};
|
|
2373
|
+
};
|
|
2368
2374
|
size: {
|
|
2369
|
-
type: import('vue').PropType<"
|
|
2375
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2370
2376
|
default: string;
|
|
2371
2377
|
};
|
|
2372
2378
|
bordered: {
|
|
@@ -2388,10 +2394,6 @@ declare const _default: {
|
|
|
2388
2394
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2389
2395
|
default: () => never[];
|
|
2390
2396
|
};
|
|
2391
|
-
data: {
|
|
2392
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2393
|
-
default: () => {};
|
|
2394
|
-
};
|
|
2395
2397
|
emptyText: {
|
|
2396
2398
|
type: import('vue').PropType<string>;
|
|
2397
2399
|
default: string;
|
|
@@ -2424,8 +2426,12 @@ declare const _default: {
|
|
|
2424
2426
|
helpMessage: {
|
|
2425
2427
|
type: import('vue').PropType<string | string[]>;
|
|
2426
2428
|
};
|
|
2429
|
+
data: {
|
|
2430
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2431
|
+
default: () => {};
|
|
2432
|
+
};
|
|
2427
2433
|
size: {
|
|
2428
|
-
type: import('vue').PropType<"
|
|
2434
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2429
2435
|
default: string;
|
|
2430
2436
|
};
|
|
2431
2437
|
bordered: {
|
|
@@ -2447,10 +2453,6 @@ declare const _default: {
|
|
|
2447
2453
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2448
2454
|
default: () => never[];
|
|
2449
2455
|
};
|
|
2450
|
-
data: {
|
|
2451
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2452
|
-
default: () => {};
|
|
2453
|
-
};
|
|
2454
2456
|
emptyText: {
|
|
2455
2457
|
type: import('vue').PropType<string>;
|
|
2456
2458
|
default: string;
|
|
@@ -2483,11 +2485,11 @@ declare const _default: {
|
|
|
2483
2485
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2484
2486
|
register: (action: import('./types').DescriptionActionType) => void;
|
|
2485
2487
|
}, string, {
|
|
2488
|
+
data: Record<string, unknown>;
|
|
2486
2489
|
size: "medium" | "small";
|
|
2487
2490
|
bordered: boolean;
|
|
2488
2491
|
column: import('./types').DescriptionColumn;
|
|
2489
2492
|
schema: import('./types').DescriptionSchema[];
|
|
2490
|
-
data: Record<string, unknown>;
|
|
2491
2493
|
emptyText: string;
|
|
2492
2494
|
useCollapse: boolean;
|
|
2493
2495
|
collapseOptions: {
|
|
@@ -2506,8 +2508,12 @@ declare const _default: {
|
|
|
2506
2508
|
helpMessage: {
|
|
2507
2509
|
type: import('vue').PropType<string | string[]>;
|
|
2508
2510
|
};
|
|
2511
|
+
data: {
|
|
2512
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2513
|
+
default: () => {};
|
|
2514
|
+
};
|
|
2509
2515
|
size: {
|
|
2510
|
-
type: import('vue').PropType<"
|
|
2516
|
+
type: import('vue').PropType<"small" | "medium">;
|
|
2511
2517
|
default: string;
|
|
2512
2518
|
};
|
|
2513
2519
|
bordered: {
|
|
@@ -2529,10 +2535,6 @@ declare const _default: {
|
|
|
2529
2535
|
type: import('vue').PropType<import('./types').DescriptionSchema[]>;
|
|
2530
2536
|
default: () => never[];
|
|
2531
2537
|
};
|
|
2532
|
-
data: {
|
|
2533
|
-
type: import('vue').PropType<Record<string, unknown>>;
|
|
2534
|
-
default: () => {};
|
|
2535
|
-
};
|
|
2536
2538
|
emptyText: {
|
|
2537
2539
|
type: import('vue').PropType<string>;
|
|
2538
2540
|
default: string;
|
|
@@ -2568,6 +2570,439 @@ declare const _default: {
|
|
|
2568
2570
|
};
|
|
2569
2571
|
}) => any>>;
|
|
2570
2572
|
});
|
|
2573
|
+
CollapseContainer: import('vue/types/v3-component-public-instance').ComponentPublicInstanceConstructor<import('vue/types/v3-component-public-instance').Vue3Instance<{}, Readonly<import('vue').ExtractPropTypes<{
|
|
2574
|
+
title: {
|
|
2575
|
+
type: import('vue').PropType<string>;
|
|
2576
|
+
};
|
|
2577
|
+
loading: {
|
|
2578
|
+
type: import('vue').PropType<boolean>;
|
|
2579
|
+
default: boolean;
|
|
2580
|
+
};
|
|
2581
|
+
canExpan: {
|
|
2582
|
+
type: import('vue').PropType<boolean>;
|
|
2583
|
+
default: boolean;
|
|
2584
|
+
};
|
|
2585
|
+
canExpand: {
|
|
2586
|
+
type: import('vue').PropType<boolean>;
|
|
2587
|
+
default: undefined;
|
|
2588
|
+
};
|
|
2589
|
+
helpMessage: {
|
|
2590
|
+
type: import('vue').PropType<string | string[]>;
|
|
2591
|
+
};
|
|
2592
|
+
triggerWindowResize: {
|
|
2593
|
+
type: import('vue').PropType<boolean>;
|
|
2594
|
+
default: boolean;
|
|
2595
|
+
};
|
|
2596
|
+
expanded: {
|
|
2597
|
+
type: import('vue').PropType<boolean>;
|
|
2598
|
+
default: undefined;
|
|
2599
|
+
};
|
|
2600
|
+
defaultExpand: {
|
|
2601
|
+
type: import('vue').PropType<boolean>;
|
|
2602
|
+
default: boolean;
|
|
2603
|
+
};
|
|
2604
|
+
ghost: {
|
|
2605
|
+
type: import('vue').PropType<boolean>;
|
|
2606
|
+
default: boolean;
|
|
2607
|
+
};
|
|
2608
|
+
expandButtonText: {
|
|
2609
|
+
type: import('vue').PropType<string>;
|
|
2610
|
+
default: string;
|
|
2611
|
+
};
|
|
2612
|
+
collapseButtonText: {
|
|
2613
|
+
type: import('vue').PropType<string>;
|
|
2614
|
+
default: string;
|
|
2615
|
+
};
|
|
2616
|
+
wrapperProps: {
|
|
2617
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2618
|
+
default: () => {};
|
|
2619
|
+
};
|
|
2620
|
+
headerClass: {
|
|
2621
|
+
type: import('vue').PropType<string>;
|
|
2622
|
+
default: string;
|
|
2623
|
+
};
|
|
2624
|
+
headerStyle: {
|
|
2625
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2626
|
+
default: () => {};
|
|
2627
|
+
};
|
|
2628
|
+
contentClass: {
|
|
2629
|
+
type: import('vue').PropType<string>;
|
|
2630
|
+
default: string;
|
|
2631
|
+
};
|
|
2632
|
+
contentStyle: {
|
|
2633
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2634
|
+
default: () => {};
|
|
2635
|
+
};
|
|
2636
|
+
}>>, Readonly<import('vue').ExtractPropTypes<{
|
|
2637
|
+
title: {
|
|
2638
|
+
type: import('vue').PropType<string>;
|
|
2639
|
+
};
|
|
2640
|
+
loading: {
|
|
2641
|
+
type: import('vue').PropType<boolean>;
|
|
2642
|
+
default: boolean;
|
|
2643
|
+
};
|
|
2644
|
+
canExpan: {
|
|
2645
|
+
type: import('vue').PropType<boolean>;
|
|
2646
|
+
default: boolean;
|
|
2647
|
+
};
|
|
2648
|
+
canExpand: {
|
|
2649
|
+
type: import('vue').PropType<boolean>;
|
|
2650
|
+
default: undefined;
|
|
2651
|
+
};
|
|
2652
|
+
helpMessage: {
|
|
2653
|
+
type: import('vue').PropType<string | string[]>;
|
|
2654
|
+
};
|
|
2655
|
+
triggerWindowResize: {
|
|
2656
|
+
type: import('vue').PropType<boolean>;
|
|
2657
|
+
default: boolean;
|
|
2658
|
+
};
|
|
2659
|
+
expanded: {
|
|
2660
|
+
type: import('vue').PropType<boolean>;
|
|
2661
|
+
default: undefined;
|
|
2662
|
+
};
|
|
2663
|
+
defaultExpand: {
|
|
2664
|
+
type: import('vue').PropType<boolean>;
|
|
2665
|
+
default: boolean;
|
|
2666
|
+
};
|
|
2667
|
+
ghost: {
|
|
2668
|
+
type: import('vue').PropType<boolean>;
|
|
2669
|
+
default: boolean;
|
|
2670
|
+
};
|
|
2671
|
+
expandButtonText: {
|
|
2672
|
+
type: import('vue').PropType<string>;
|
|
2673
|
+
default: string;
|
|
2674
|
+
};
|
|
2675
|
+
collapseButtonText: {
|
|
2676
|
+
type: import('vue').PropType<string>;
|
|
2677
|
+
default: string;
|
|
2678
|
+
};
|
|
2679
|
+
wrapperProps: {
|
|
2680
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2681
|
+
default: () => {};
|
|
2682
|
+
};
|
|
2683
|
+
headerClass: {
|
|
2684
|
+
type: import('vue').PropType<string>;
|
|
2685
|
+
default: string;
|
|
2686
|
+
};
|
|
2687
|
+
headerStyle: {
|
|
2688
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2689
|
+
default: () => {};
|
|
2690
|
+
};
|
|
2691
|
+
contentClass: {
|
|
2692
|
+
type: import('vue').PropType<string>;
|
|
2693
|
+
default: string;
|
|
2694
|
+
};
|
|
2695
|
+
contentStyle: {
|
|
2696
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2697
|
+
default: () => {};
|
|
2698
|
+
};
|
|
2699
|
+
}>>, {
|
|
2700
|
+
"update:expanded": (value: boolean) => void;
|
|
2701
|
+
change: (value: boolean) => void;
|
|
2702
|
+
collapse: () => void;
|
|
2703
|
+
expand: () => void;
|
|
2704
|
+
}, {
|
|
2705
|
+
loading: boolean;
|
|
2706
|
+
canExpan: boolean;
|
|
2707
|
+
canExpand: boolean;
|
|
2708
|
+
triggerWindowResize: boolean;
|
|
2709
|
+
expanded: boolean;
|
|
2710
|
+
defaultExpand: boolean;
|
|
2711
|
+
ghost: boolean;
|
|
2712
|
+
expandButtonText: string;
|
|
2713
|
+
collapseButtonText: string;
|
|
2714
|
+
wrapperProps: Record<string, unknown>;
|
|
2715
|
+
headerClass: string;
|
|
2716
|
+
headerStyle: Record<string, string | number>;
|
|
2717
|
+
contentClass: string;
|
|
2718
|
+
contentStyle: Record<string, string | number>;
|
|
2719
|
+
}, true, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, any>> & Readonly<Readonly<import('vue').ExtractPropTypes<{
|
|
2720
|
+
title: {
|
|
2721
|
+
type: import('vue').PropType<string>;
|
|
2722
|
+
};
|
|
2723
|
+
loading: {
|
|
2724
|
+
type: import('vue').PropType<boolean>;
|
|
2725
|
+
default: boolean;
|
|
2726
|
+
};
|
|
2727
|
+
canExpan: {
|
|
2728
|
+
type: import('vue').PropType<boolean>;
|
|
2729
|
+
default: boolean;
|
|
2730
|
+
};
|
|
2731
|
+
canExpand: {
|
|
2732
|
+
type: import('vue').PropType<boolean>;
|
|
2733
|
+
default: undefined;
|
|
2734
|
+
};
|
|
2735
|
+
helpMessage: {
|
|
2736
|
+
type: import('vue').PropType<string | string[]>;
|
|
2737
|
+
};
|
|
2738
|
+
triggerWindowResize: {
|
|
2739
|
+
type: import('vue').PropType<boolean>;
|
|
2740
|
+
default: boolean;
|
|
2741
|
+
};
|
|
2742
|
+
expanded: {
|
|
2743
|
+
type: import('vue').PropType<boolean>;
|
|
2744
|
+
default: undefined;
|
|
2745
|
+
};
|
|
2746
|
+
defaultExpand: {
|
|
2747
|
+
type: import('vue').PropType<boolean>;
|
|
2748
|
+
default: boolean;
|
|
2749
|
+
};
|
|
2750
|
+
ghost: {
|
|
2751
|
+
type: import('vue').PropType<boolean>;
|
|
2752
|
+
default: boolean;
|
|
2753
|
+
};
|
|
2754
|
+
expandButtonText: {
|
|
2755
|
+
type: import('vue').PropType<string>;
|
|
2756
|
+
default: string;
|
|
2757
|
+
};
|
|
2758
|
+
collapseButtonText: {
|
|
2759
|
+
type: import('vue').PropType<string>;
|
|
2760
|
+
default: string;
|
|
2761
|
+
};
|
|
2762
|
+
wrapperProps: {
|
|
2763
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2764
|
+
default: () => {};
|
|
2765
|
+
};
|
|
2766
|
+
headerClass: {
|
|
2767
|
+
type: import('vue').PropType<string>;
|
|
2768
|
+
default: string;
|
|
2769
|
+
};
|
|
2770
|
+
headerStyle: {
|
|
2771
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2772
|
+
default: () => {};
|
|
2773
|
+
};
|
|
2774
|
+
contentClass: {
|
|
2775
|
+
type: import('vue').PropType<string>;
|
|
2776
|
+
default: string;
|
|
2777
|
+
};
|
|
2778
|
+
contentStyle: {
|
|
2779
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2780
|
+
default: () => {};
|
|
2781
|
+
};
|
|
2782
|
+
}>>> & import('vue').ShallowUnwrapRef<{
|
|
2783
|
+
setExpanded: (value: boolean) => void;
|
|
2784
|
+
toggleExpand: () => void;
|
|
2785
|
+
}> & import('vue/types/v3-component-options').ExtractComputedReturns<{}> & import('vue').ComponentCustomProperties & Readonly<import('vue').ExtractPropTypes<{
|
|
2786
|
+
title: {
|
|
2787
|
+
type: import('vue').PropType<string>;
|
|
2788
|
+
};
|
|
2789
|
+
loading: {
|
|
2790
|
+
type: import('vue').PropType<boolean>;
|
|
2791
|
+
default: boolean;
|
|
2792
|
+
};
|
|
2793
|
+
canExpan: {
|
|
2794
|
+
type: import('vue').PropType<boolean>;
|
|
2795
|
+
default: boolean;
|
|
2796
|
+
};
|
|
2797
|
+
canExpand: {
|
|
2798
|
+
type: import('vue').PropType<boolean>;
|
|
2799
|
+
default: undefined;
|
|
2800
|
+
};
|
|
2801
|
+
helpMessage: {
|
|
2802
|
+
type: import('vue').PropType<string | string[]>;
|
|
2803
|
+
};
|
|
2804
|
+
triggerWindowResize: {
|
|
2805
|
+
type: import('vue').PropType<boolean>;
|
|
2806
|
+
default: boolean;
|
|
2807
|
+
};
|
|
2808
|
+
expanded: {
|
|
2809
|
+
type: import('vue').PropType<boolean>;
|
|
2810
|
+
default: undefined;
|
|
2811
|
+
};
|
|
2812
|
+
defaultExpand: {
|
|
2813
|
+
type: import('vue').PropType<boolean>;
|
|
2814
|
+
default: boolean;
|
|
2815
|
+
};
|
|
2816
|
+
ghost: {
|
|
2817
|
+
type: import('vue').PropType<boolean>;
|
|
2818
|
+
default: boolean;
|
|
2819
|
+
};
|
|
2820
|
+
expandButtonText: {
|
|
2821
|
+
type: import('vue').PropType<string>;
|
|
2822
|
+
default: string;
|
|
2823
|
+
};
|
|
2824
|
+
collapseButtonText: {
|
|
2825
|
+
type: import('vue').PropType<string>;
|
|
2826
|
+
default: string;
|
|
2827
|
+
};
|
|
2828
|
+
wrapperProps: {
|
|
2829
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2830
|
+
default: () => {};
|
|
2831
|
+
};
|
|
2832
|
+
headerClass: {
|
|
2833
|
+
type: import('vue').PropType<string>;
|
|
2834
|
+
default: string;
|
|
2835
|
+
};
|
|
2836
|
+
headerStyle: {
|
|
2837
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2838
|
+
default: () => {};
|
|
2839
|
+
};
|
|
2840
|
+
contentClass: {
|
|
2841
|
+
type: import('vue').PropType<string>;
|
|
2842
|
+
default: string;
|
|
2843
|
+
};
|
|
2844
|
+
contentStyle: {
|
|
2845
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2846
|
+
default: () => {};
|
|
2847
|
+
};
|
|
2848
|
+
}>>> & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
2849
|
+
title: {
|
|
2850
|
+
type: import('vue').PropType<string>;
|
|
2851
|
+
};
|
|
2852
|
+
loading: {
|
|
2853
|
+
type: import('vue').PropType<boolean>;
|
|
2854
|
+
default: boolean;
|
|
2855
|
+
};
|
|
2856
|
+
canExpan: {
|
|
2857
|
+
type: import('vue').PropType<boolean>;
|
|
2858
|
+
default: boolean;
|
|
2859
|
+
};
|
|
2860
|
+
canExpand: {
|
|
2861
|
+
type: import('vue').PropType<boolean>;
|
|
2862
|
+
default: undefined;
|
|
2863
|
+
};
|
|
2864
|
+
helpMessage: {
|
|
2865
|
+
type: import('vue').PropType<string | string[]>;
|
|
2866
|
+
};
|
|
2867
|
+
triggerWindowResize: {
|
|
2868
|
+
type: import('vue').PropType<boolean>;
|
|
2869
|
+
default: boolean;
|
|
2870
|
+
};
|
|
2871
|
+
expanded: {
|
|
2872
|
+
type: import('vue').PropType<boolean>;
|
|
2873
|
+
default: undefined;
|
|
2874
|
+
};
|
|
2875
|
+
defaultExpand: {
|
|
2876
|
+
type: import('vue').PropType<boolean>;
|
|
2877
|
+
default: boolean;
|
|
2878
|
+
};
|
|
2879
|
+
ghost: {
|
|
2880
|
+
type: import('vue').PropType<boolean>;
|
|
2881
|
+
default: boolean;
|
|
2882
|
+
};
|
|
2883
|
+
expandButtonText: {
|
|
2884
|
+
type: import('vue').PropType<string>;
|
|
2885
|
+
default: string;
|
|
2886
|
+
};
|
|
2887
|
+
collapseButtonText: {
|
|
2888
|
+
type: import('vue').PropType<string>;
|
|
2889
|
+
default: string;
|
|
2890
|
+
};
|
|
2891
|
+
wrapperProps: {
|
|
2892
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2893
|
+
default: () => {};
|
|
2894
|
+
};
|
|
2895
|
+
headerClass: {
|
|
2896
|
+
type: import('vue').PropType<string>;
|
|
2897
|
+
default: string;
|
|
2898
|
+
};
|
|
2899
|
+
headerStyle: {
|
|
2900
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2901
|
+
default: () => {};
|
|
2902
|
+
};
|
|
2903
|
+
contentClass: {
|
|
2904
|
+
type: import('vue').PropType<string>;
|
|
2905
|
+
default: string;
|
|
2906
|
+
};
|
|
2907
|
+
contentStyle: {
|
|
2908
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2909
|
+
default: () => {};
|
|
2910
|
+
};
|
|
2911
|
+
}>>, {
|
|
2912
|
+
setExpanded: (value: boolean) => void;
|
|
2913
|
+
toggleExpand: () => void;
|
|
2914
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2915
|
+
"update:expanded": (value: boolean) => void;
|
|
2916
|
+
change: (value: boolean) => void;
|
|
2917
|
+
collapse: () => void;
|
|
2918
|
+
expand: () => void;
|
|
2919
|
+
}, string, {
|
|
2920
|
+
loading: boolean;
|
|
2921
|
+
canExpan: boolean;
|
|
2922
|
+
canExpand: boolean;
|
|
2923
|
+
triggerWindowResize: boolean;
|
|
2924
|
+
expanded: boolean;
|
|
2925
|
+
defaultExpand: boolean;
|
|
2926
|
+
ghost: boolean;
|
|
2927
|
+
expandButtonText: string;
|
|
2928
|
+
collapseButtonText: string;
|
|
2929
|
+
wrapperProps: Record<string, unknown>;
|
|
2930
|
+
headerClass: string;
|
|
2931
|
+
headerStyle: Record<string, string | number>;
|
|
2932
|
+
contentClass: string;
|
|
2933
|
+
contentStyle: Record<string, string | number>;
|
|
2934
|
+
}> & {
|
|
2935
|
+
props: {
|
|
2936
|
+
title: {
|
|
2937
|
+
type: import('vue').PropType<string>;
|
|
2938
|
+
};
|
|
2939
|
+
loading: {
|
|
2940
|
+
type: import('vue').PropType<boolean>;
|
|
2941
|
+
default: boolean;
|
|
2942
|
+
};
|
|
2943
|
+
canExpan: {
|
|
2944
|
+
type: import('vue').PropType<boolean>;
|
|
2945
|
+
default: boolean;
|
|
2946
|
+
};
|
|
2947
|
+
canExpand: {
|
|
2948
|
+
type: import('vue').PropType<boolean>;
|
|
2949
|
+
default: undefined;
|
|
2950
|
+
};
|
|
2951
|
+
helpMessage: {
|
|
2952
|
+
type: import('vue').PropType<string | string[]>;
|
|
2953
|
+
};
|
|
2954
|
+
triggerWindowResize: {
|
|
2955
|
+
type: import('vue').PropType<boolean>;
|
|
2956
|
+
default: boolean;
|
|
2957
|
+
};
|
|
2958
|
+
expanded: {
|
|
2959
|
+
type: import('vue').PropType<boolean>;
|
|
2960
|
+
default: undefined;
|
|
2961
|
+
};
|
|
2962
|
+
defaultExpand: {
|
|
2963
|
+
type: import('vue').PropType<boolean>;
|
|
2964
|
+
default: boolean;
|
|
2965
|
+
};
|
|
2966
|
+
ghost: {
|
|
2967
|
+
type: import('vue').PropType<boolean>;
|
|
2968
|
+
default: boolean;
|
|
2969
|
+
};
|
|
2970
|
+
expandButtonText: {
|
|
2971
|
+
type: import('vue').PropType<string>;
|
|
2972
|
+
default: string;
|
|
2973
|
+
};
|
|
2974
|
+
collapseButtonText: {
|
|
2975
|
+
type: import('vue').PropType<string>;
|
|
2976
|
+
default: string;
|
|
2977
|
+
};
|
|
2978
|
+
wrapperProps: {
|
|
2979
|
+
type: import('vue').PropType<Record<string, unknown>>;
|
|
2980
|
+
default: () => {};
|
|
2981
|
+
};
|
|
2982
|
+
headerClass: {
|
|
2983
|
+
type: import('vue').PropType<string>;
|
|
2984
|
+
default: string;
|
|
2985
|
+
};
|
|
2986
|
+
headerStyle: {
|
|
2987
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2988
|
+
default: () => {};
|
|
2989
|
+
};
|
|
2990
|
+
contentClass: {
|
|
2991
|
+
type: import('vue').PropType<string>;
|
|
2992
|
+
default: string;
|
|
2993
|
+
};
|
|
2994
|
+
contentStyle: {
|
|
2995
|
+
type: import('vue').PropType<Record<string, string | number>>;
|
|
2996
|
+
default: () => {};
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
} & (new () => {
|
|
3000
|
+
$scopedSlots: {
|
|
3001
|
+
title?(_: {}): any;
|
|
3002
|
+
action?(_: {}): any;
|
|
3003
|
+
default?(_: {}): any;
|
|
3004
|
+
};
|
|
3005
|
+
});
|
|
2571
3006
|
TableAction: import('vue').DefineComponent<{
|
|
2572
3007
|
actions: {
|
|
2573
3008
|
type: import('vue').PropType<import('./ProTable').TableActionItem[]>;
|
|
@@ -2600,12 +3035,12 @@ declare const _default: {
|
|
|
2600
3035
|
stopButtonPropagation: boolean;
|
|
2601
3036
|
}>;
|
|
2602
3037
|
FormattedNumberInput: import('vue').DefineComponent<{
|
|
2603
|
-
disabled: {
|
|
2604
|
-
type: import('vue').PropType<boolean>;
|
|
2605
|
-
};
|
|
2606
3038
|
value: {
|
|
2607
3039
|
type: import('vue').PropType<unknown>;
|
|
2608
3040
|
};
|
|
3041
|
+
disabled: {
|
|
3042
|
+
type: import('vue').PropType<boolean>;
|
|
3043
|
+
};
|
|
2609
3044
|
placeholder: {
|
|
2610
3045
|
type: import('vue').PropType<string>;
|
|
2611
3046
|
};
|
|
@@ -2628,12 +3063,12 @@ declare const _default: {
|
|
|
2628
3063
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2629
3064
|
input: (value: unknown) => void;
|
|
2630
3065
|
}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
2631
|
-
disabled: {
|
|
2632
|
-
type: import('vue').PropType<boolean>;
|
|
2633
|
-
};
|
|
2634
3066
|
value: {
|
|
2635
3067
|
type: import('vue').PropType<unknown>;
|
|
2636
3068
|
};
|
|
3069
|
+
disabled: {
|
|
3070
|
+
type: import('vue').PropType<boolean>;
|
|
3071
|
+
};
|
|
2637
3072
|
placeholder: {
|
|
2638
3073
|
type: import('vue').PropType<string>;
|
|
2639
3074
|
};
|