fast-element-plus 1.0.10 → 1.0.12
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/dist/index.full.js +79 -41
- package/dist/index.full.js.map +1 -1
- package/dist/index.full.min.js +1 -1
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +1 -1
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +79 -41
- package/dist/index.full.mjs.map +1 -1
- package/es/components/avatar/src/avatar.d.ts +37 -9
- package/es/components/button/src/button.d.ts +1 -1
- package/es/components/dialog/src/dialog.d.ts +3 -3
- package/es/components/form/src/form.d.ts +3 -3
- package/es/components/form/src/formItem.d.ts +7 -7
- package/es/components/icon/src/icon.d.ts +3 -3
- package/es/components/image/src/image.d.ts +2 -2
- package/es/components/inputDialogPage/src/inputDialogPage.d.ts +3 -3
- package/es/components/layoutGrid/src/layoutGrid.d.ts +2 -2
- package/es/components/layoutGrid/src/layoutGridItem.d.ts +4 -4
- package/es/components/select/src/select.d.ts +4 -4
- package/es/components/selectPage/src/selectPage.d.ts +3 -3
- package/es/components/selectV2/src/selectV2.d.ts +7 -7
- package/es/components/table/src/table.d.ts +27 -20
- package/es/components/table/src/table.mjs +1 -1
- package/es/components/table/src/table.mjs.map +1 -1
- package/es/components/table/src/tableColumn.d.ts +8 -8
- package/es/components/table/src/tableColumn.mjs +1 -1
- package/es/components/table/src/tableColumn.mjs.map +1 -1
- package/es/components/table/src/useTable.d.ts +1 -1
- package/es/components/table/src/useTable.mjs +1 -1
- package/es/components/table/src/useTable.mjs.map +1 -1
- package/es/components/table/utils/table.mjs +1 -1
- package/es/components/table/utils/table.mjs.map +1 -1
- package/es/components/tree/src/tree.d.ts +6 -6
- package/es/components/treeSelect/src/treeSelect.d.ts +51 -51
- package/es/components/treeSelect/src/treeSelect.mjs +1 -1
- package/es/components/treeSelect/src/treeSelect.mjs.map +1 -1
- package/es/components/upload/src/upload.d.ts +8 -4
- package/es/components/upload/src/useUpload.d.ts +4 -4
- package/es/components/uploadImage/src/uploadImage.d.ts +17 -13
- package/es/components/uploadImages/src/uploadImages.d.ts +11 -7
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/es/version.mjs.map +1 -1
- package/lib/components/avatar/src/avatar.d.ts +37 -9
- package/lib/components/button/src/button.d.ts +1 -1
- package/lib/components/dialog/src/dialog.d.ts +3 -3
- package/lib/components/form/src/form.d.ts +3 -3
- package/lib/components/form/src/formItem.d.ts +7 -7
- package/lib/components/icon/src/icon.d.ts +3 -3
- package/lib/components/image/src/image.d.ts +2 -2
- package/lib/components/inputDialogPage/src/inputDialogPage.d.ts +3 -3
- package/lib/components/layoutGrid/src/layoutGrid.d.ts +2 -2
- package/lib/components/layoutGrid/src/layoutGridItem.d.ts +4 -4
- package/lib/components/select/src/select.d.ts +4 -4
- package/lib/components/selectPage/src/selectPage.d.ts +3 -3
- package/lib/components/selectV2/src/selectV2.d.ts +7 -7
- package/lib/components/table/src/table.d.ts +27 -20
- package/lib/components/table/src/table.js +1 -1
- package/lib/components/table/src/table.js.map +1 -1
- package/lib/components/table/src/tableColumn.d.ts +8 -8
- package/lib/components/table/src/tableColumn.js +1 -1
- package/lib/components/table/src/tableColumn.js.map +1 -1
- package/lib/components/table/src/useTable.d.ts +1 -1
- package/lib/components/table/src/useTable.js +1 -1
- package/lib/components/table/src/useTable.js.map +1 -1
- package/lib/components/table/utils/table.js +1 -1
- package/lib/components/table/utils/table.js.map +1 -1
- package/lib/components/tree/src/tree.d.ts +6 -6
- package/lib/components/treeSelect/src/treeSelect.d.ts +51 -51
- package/lib/components/treeSelect/src/treeSelect.js +1 -1
- package/lib/components/treeSelect/src/treeSelect.js.map +1 -1
- package/lib/components/upload/src/upload.d.ts +8 -4
- package/lib/components/upload/src/useUpload.d.ts +4 -4
- package/lib/components/uploadImage/src/uploadImage.d.ts +17 -13
- package/lib/components/uploadImages/src/uploadImages.d.ts +11 -7
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +1 -1
|
@@ -15,8 +15,18 @@ export declare const faAvatarProps: {
|
|
|
15
15
|
small: BooleanConstructor;
|
|
16
16
|
/** @description 缩略图 */
|
|
17
17
|
thumb: BooleanConstructor;
|
|
18
|
-
size:
|
|
19
|
-
|
|
18
|
+
size: {
|
|
19
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [NumberConstructor, StringConstructor], "" | "small" | "default" | "large", number>>;
|
|
20
|
+
readonly required: false;
|
|
21
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
22
|
+
__epPropKey: true;
|
|
23
|
+
};
|
|
24
|
+
shape: {
|
|
25
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "circle" | "square", unknown>>;
|
|
26
|
+
readonly required: false;
|
|
27
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
28
|
+
__epPropKey: true;
|
|
29
|
+
};
|
|
20
30
|
src: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
21
31
|
alt: StringConstructor;
|
|
22
32
|
srcSet: StringConstructor;
|
|
@@ -47,8 +57,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
57
|
small: BooleanConstructor;
|
|
48
58
|
/** @description 缩略图 */
|
|
49
59
|
thumb: BooleanConstructor;
|
|
50
|
-
size:
|
|
51
|
-
|
|
60
|
+
size: {
|
|
61
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [NumberConstructor, StringConstructor], "" | "small" | "default" | "large", number>>;
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
64
|
+
__epPropKey: true;
|
|
65
|
+
};
|
|
66
|
+
shape: {
|
|
67
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "circle" | "square", unknown>>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
};
|
|
52
72
|
src: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
53
73
|
alt: StringConstructor;
|
|
54
74
|
srcSet: StringConstructor;
|
|
@@ -74,8 +94,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
74
94
|
small: BooleanConstructor;
|
|
75
95
|
/** @description 缩略图 */
|
|
76
96
|
thumb: BooleanConstructor;
|
|
77
|
-
size:
|
|
78
|
-
|
|
97
|
+
size: {
|
|
98
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [NumberConstructor, StringConstructor], "" | "small" | "default" | "large", number>>;
|
|
99
|
+
readonly required: false;
|
|
100
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
101
|
+
__epPropKey: true;
|
|
102
|
+
};
|
|
103
|
+
shape: {
|
|
104
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "circle" | "square", unknown>>;
|
|
105
|
+
readonly required: false;
|
|
106
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
107
|
+
__epPropKey: true;
|
|
108
|
+
};
|
|
79
109
|
src: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
80
110
|
alt: StringConstructor;
|
|
81
111
|
srcSet: StringConstructor;
|
|
@@ -83,14 +113,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
83
113
|
}>> & Readonly<{
|
|
84
114
|
onError?: (evt: Event) => any;
|
|
85
115
|
}>, {
|
|
86
|
-
small: boolean;
|
|
87
|
-
size: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [NumberConstructor, StringConstructor], "" | "small" | "default" | "large", number>;
|
|
88
116
|
icon: string | Component;
|
|
89
117
|
base64: boolean;
|
|
90
118
|
original: boolean;
|
|
91
119
|
normal: boolean;
|
|
120
|
+
small: boolean;
|
|
92
121
|
thumb: boolean;
|
|
93
|
-
shape: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "circle" | "square", unknown>;
|
|
94
122
|
src: string;
|
|
95
123
|
fit: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "fill" | "contain" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "none" | "cover" | "scale-down") | (() => import("csstype").Property.ObjectFit | undefined) | ((new (...args: any[]) => "fill" | "contain" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "none" | "cover" | "scale-down") | (() => import("csstype").Property.ObjectFit | undefined))[], unknown, unknown>;
|
|
96
124
|
}, import('vue').SlotsType<Partial<import('@fast-china/utils').MakeSlots<FaAvatarSlots>>>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -95,7 +95,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
95
95
|
/** @description 按钮 html 元素 */
|
|
96
96
|
ref: import('vue').ComputedRef<HTMLButtonElement>;
|
|
97
97
|
/** @description 按钮尺寸 */
|
|
98
|
-
size: import('vue').ComputedRef<"" | "
|
|
98
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
99
99
|
/** @description 按钮类型 */
|
|
100
100
|
type: import('vue').ComputedRef<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
101
101
|
/** @description 按钮已禁用 */
|
|
@@ -31,7 +31,7 @@ export declare const faDialogProps: {
|
|
|
31
31
|
};
|
|
32
32
|
/** @description width of Dialog, default is 50% */
|
|
33
33
|
width: {
|
|
34
|
-
type: (
|
|
34
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
37
|
/** @description 显示刷新按钮 */
|
|
@@ -177,7 +177,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
177
177
|
};
|
|
178
178
|
/** @description width of Dialog, default is 50% */
|
|
179
179
|
width: {
|
|
180
|
-
type: (
|
|
180
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
181
181
|
default: string;
|
|
182
182
|
};
|
|
183
183
|
/** @description 显示刷新按钮 */
|
|
@@ -322,7 +322,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
322
322
|
};
|
|
323
323
|
/** @description width of Dialog, default is 50% */
|
|
324
324
|
width: {
|
|
325
|
-
type: (
|
|
325
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
326
326
|
default: string;
|
|
327
327
|
};
|
|
328
328
|
/** @description 显示刷新按钮 */
|
|
@@ -3,7 +3,7 @@ import { FormItemContext, FormValidationResult } from 'element-plus';
|
|
|
3
3
|
export declare const faFormProps: {
|
|
4
4
|
/** @description Width of label, e.g. `'50px'`. All its direct child form items will inherit this value. `auto` is supported. */
|
|
5
5
|
labelWidth: {
|
|
6
|
-
type: (
|
|
6
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
9
|
/** @description Suffix of the label. */
|
|
@@ -59,7 +59,7 @@ type FaFormSlots = {
|
|
|
59
59
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
60
60
|
/** @description Width of label, e.g. `'50px'`. All its direct child form items will inherit this value. `auto` is supported. */
|
|
61
61
|
labelWidth: {
|
|
62
|
-
type: (
|
|
62
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
/** @description Suffix of the label. */
|
|
@@ -125,7 +125,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
125
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
126
126
|
/** @description Width of label, e.g. `'50px'`. All its direct child form items will inherit this value. `auto` is supported. */
|
|
127
127
|
labelWidth: {
|
|
128
|
-
type: (
|
|
128
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
129
129
|
default: string;
|
|
130
130
|
};
|
|
131
131
|
/** @description Suffix of the label. */
|
|
@@ -8,12 +8,12 @@ export declare const faFormItemProps: {
|
|
|
8
8
|
};
|
|
9
9
|
/** @description 偏移量 */
|
|
10
10
|
offset: {
|
|
11
|
-
type: (
|
|
11
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
12
12
|
default: number;
|
|
13
13
|
};
|
|
14
14
|
/** @description 栅格跨度 */
|
|
15
15
|
span: {
|
|
16
|
-
type: (
|
|
16
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
17
17
|
};
|
|
18
18
|
/** @description 独占一行。如果设置 span 则无效 */
|
|
19
19
|
row: BooleanConstructor;
|
|
@@ -77,12 +77,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
77
77
|
};
|
|
78
78
|
/** @description 偏移量 */
|
|
79
79
|
offset: {
|
|
80
|
-
type: (
|
|
80
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
81
81
|
default: number;
|
|
82
82
|
};
|
|
83
83
|
/** @description 栅格跨度 */
|
|
84
84
|
span: {
|
|
85
|
-
type: (
|
|
85
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
86
86
|
};
|
|
87
87
|
/** @description 独占一行。如果设置 span 则无效 */
|
|
88
88
|
row: BooleanConstructor;
|
|
@@ -125,7 +125,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
125
|
};
|
|
126
126
|
}>, {
|
|
127
127
|
/** @description 表单项大小 */
|
|
128
|
-
size: import('vue').ComputedRef<"" | "
|
|
128
|
+
size: import('vue').ComputedRef<"" | "default" | "small" | "large">;
|
|
129
129
|
/** @description 校验消息 */
|
|
130
130
|
validateMessage: import('vue').ComputedRef<string>;
|
|
131
131
|
/** @description 校验状态 */
|
|
@@ -146,12 +146,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
146
146
|
};
|
|
147
147
|
/** @description 偏移量 */
|
|
148
148
|
offset: {
|
|
149
|
-
type: (
|
|
149
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
150
150
|
default: number;
|
|
151
151
|
};
|
|
152
152
|
/** @description 栅格跨度 */
|
|
153
153
|
span: {
|
|
154
|
-
type: (
|
|
154
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
155
155
|
};
|
|
156
156
|
/** @description 独占一行。如果设置 span 则无效 */
|
|
157
157
|
row: BooleanConstructor;
|
|
@@ -6,7 +6,7 @@ export declare const faIconProps: {
|
|
|
6
6
|
};
|
|
7
7
|
/** @description 大小 */
|
|
8
8
|
size: {
|
|
9
|
-
type: (
|
|
9
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
10
10
|
};
|
|
11
11
|
/** @description 颜色*/
|
|
12
12
|
color: StringConstructor;
|
|
@@ -19,7 +19,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
};
|
|
20
20
|
/** @description 大小 */
|
|
21
21
|
size: {
|
|
22
|
-
type: (
|
|
22
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
23
23
|
};
|
|
24
24
|
/** @description 颜色*/
|
|
25
25
|
color: StringConstructor;
|
|
@@ -31,7 +31,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
};
|
|
32
32
|
/** @description 大小 */
|
|
33
33
|
size: {
|
|
34
|
-
type: (
|
|
34
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
35
35
|
};
|
|
36
36
|
/** @description 颜色*/
|
|
37
37
|
color: StringConstructor;
|
|
@@ -208,13 +208,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
208
208
|
__epPropKey: true;
|
|
209
209
|
};
|
|
210
210
|
}>> & Readonly<{}>, {
|
|
211
|
-
small: boolean;
|
|
212
211
|
base64: boolean;
|
|
213
212
|
original: boolean;
|
|
214
213
|
normal: boolean;
|
|
214
|
+
small: boolean;
|
|
215
215
|
thumb: boolean;
|
|
216
216
|
src: string;
|
|
217
|
-
fit: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "
|
|
217
|
+
fit: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "cover" | "fill" | "contain" | "none" | "scale-down", unknown>;
|
|
218
218
|
lazy: boolean;
|
|
219
219
|
closeOnPressEscape: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
220
220
|
hideOnClickModal: boolean;
|
|
@@ -8,7 +8,7 @@ export declare const faInputDialogPageProps: {
|
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
10
|
/** @description v-model绑定值 */
|
|
11
|
-
modelValue: (
|
|
11
|
+
modelValue: (StringConstructor | NumberConstructor)[];
|
|
12
12
|
/** @description v-model:label绑定值 */
|
|
13
13
|
label: StringConstructor;
|
|
14
14
|
/** @description 输入框占位文本 */
|
|
@@ -51,7 +51,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
51
|
default: string;
|
|
52
52
|
};
|
|
53
53
|
/** @description v-model绑定值 */
|
|
54
|
-
modelValue: (
|
|
54
|
+
modelValue: (StringConstructor | NumberConstructor)[];
|
|
55
55
|
/** @description v-model:label绑定值 */
|
|
56
56
|
label: StringConstructor;
|
|
57
57
|
/** @description 输入框占位文本 */
|
|
@@ -95,7 +95,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
97
|
/** @description v-model绑定值 */
|
|
98
|
-
modelValue: (
|
|
98
|
+
modelValue: (StringConstructor | NumberConstructor)[];
|
|
99
99
|
/** @description v-model:label绑定值 */
|
|
100
100
|
label: StringConstructor;
|
|
101
101
|
/** @description 输入框占位文本 */
|
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
collapsed: BooleanConstructor;
|
|
14
14
|
/** @description 折叠行数 */
|
|
15
15
|
collapsedRows: {
|
|
16
|
-
type: (
|
|
16
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
17
17
|
default: number;
|
|
18
18
|
};
|
|
19
19
|
/** @description 间距,偏移 */
|
|
@@ -39,7 +39,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
39
39
|
collapsed: BooleanConstructor;
|
|
40
40
|
/** @description 折叠行数 */
|
|
41
41
|
collapsedRows: {
|
|
42
|
-
type: (
|
|
42
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
43
43
|
default: number;
|
|
44
44
|
};
|
|
45
45
|
/** @description 间距,偏移 */
|
|
@@ -6,12 +6,12 @@ type FaLayoutGridItemSlots = {
|
|
|
6
6
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
7
|
/** @description 偏移 */
|
|
8
8
|
offset: {
|
|
9
|
-
type: (
|
|
9
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
10
10
|
default: number;
|
|
11
11
|
};
|
|
12
12
|
/** @description 占位 */
|
|
13
13
|
span: {
|
|
14
|
-
type: (
|
|
14
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
15
15
|
default: number;
|
|
16
16
|
};
|
|
17
17
|
/** @description 后缀 */
|
|
@@ -49,12 +49,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
49
49
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
50
50
|
/** @description 偏移 */
|
|
51
51
|
offset: {
|
|
52
|
-
type: (
|
|
52
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
53
53
|
default: number;
|
|
54
54
|
};
|
|
55
55
|
/** @description 占位 */
|
|
56
56
|
span: {
|
|
57
|
-
type: (
|
|
57
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
58
58
|
default: number;
|
|
59
59
|
};
|
|
60
60
|
/** @description 后缀 */
|
|
@@ -17,7 +17,7 @@ export declare const SelectProps: {
|
|
|
17
17
|
* @description binding value
|
|
18
18
|
*/
|
|
19
19
|
modelValue: {
|
|
20
|
-
type: (BooleanConstructor | ObjectConstructor |
|
|
20
|
+
type: (BooleanConstructor | ObjectConstructor | StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
21
21
|
default: any;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
@@ -280,7 +280,7 @@ export declare const faSelectProps: {
|
|
|
280
280
|
label: import('vue').PropType<string | string[]>;
|
|
281
281
|
/** @description 宽度 */
|
|
282
282
|
width: {
|
|
283
|
-
type: (
|
|
283
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
284
284
|
default: string;
|
|
285
285
|
};
|
|
286
286
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -593,7 +593,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
593
593
|
label: import('vue').PropType<string | string[]>;
|
|
594
594
|
/** @description 宽度 */
|
|
595
595
|
width: {
|
|
596
|
-
type: (
|
|
596
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
597
597
|
default: string;
|
|
598
598
|
};
|
|
599
599
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -898,7 +898,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
898
898
|
label: import('vue').PropType<string | string[]>;
|
|
899
899
|
/** @description 宽度 */
|
|
900
900
|
width: {
|
|
901
|
-
type: (
|
|
901
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
902
902
|
default: string;
|
|
903
903
|
};
|
|
904
904
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -41,7 +41,7 @@ export declare const faSelectPageProps: {
|
|
|
41
41
|
label: import('vue').PropType<string | string[]>;
|
|
42
42
|
/** @description 宽度 */
|
|
43
43
|
width: {
|
|
44
|
-
type: (
|
|
44
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
47
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -235,7 +235,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
235
235
|
label: import('vue').PropType<string | string[]>;
|
|
236
236
|
/** @description 宽度 */
|
|
237
237
|
width: {
|
|
238
|
-
type: (
|
|
238
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
239
239
|
default: string;
|
|
240
240
|
};
|
|
241
241
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -431,7 +431,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
431
431
|
label: import('vue').PropType<string | string[]>;
|
|
432
432
|
/** @description 宽度 */
|
|
433
433
|
width: {
|
|
434
|
-
type: (
|
|
434
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
435
435
|
default: string;
|
|
436
436
|
};
|
|
437
437
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -278,7 +278,7 @@ export declare const SelectV2Props: {
|
|
|
278
278
|
* @description tabindex for input
|
|
279
279
|
*/
|
|
280
280
|
tabindex: {
|
|
281
|
-
type: (
|
|
281
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
282
282
|
default: number;
|
|
283
283
|
};
|
|
284
284
|
/**
|
|
@@ -335,7 +335,7 @@ export declare const faSelectV2Props: {
|
|
|
335
335
|
label: import('vue').PropType<string | string[]>;
|
|
336
336
|
/** @description 宽度 */
|
|
337
337
|
width: {
|
|
338
|
-
type: (
|
|
338
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
339
339
|
default: string;
|
|
340
340
|
};
|
|
341
341
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -607,7 +607,7 @@ export declare const faSelectV2Props: {
|
|
|
607
607
|
* @description tabindex for input
|
|
608
608
|
*/
|
|
609
609
|
tabindex: {
|
|
610
|
-
type: (
|
|
610
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
611
611
|
default: number;
|
|
612
612
|
};
|
|
613
613
|
/**
|
|
@@ -695,7 +695,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
695
695
|
label: import('vue').PropType<string | string[]>;
|
|
696
696
|
/** @description 宽度 */
|
|
697
697
|
width: {
|
|
698
|
-
type: (
|
|
698
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
699
699
|
default: string;
|
|
700
700
|
};
|
|
701
701
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -967,7 +967,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
967
967
|
* @description tabindex for input
|
|
968
968
|
*/
|
|
969
969
|
tabindex: {
|
|
970
|
-
type: (
|
|
970
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
971
971
|
default: number;
|
|
972
972
|
};
|
|
973
973
|
/**
|
|
@@ -1043,7 +1043,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1043
1043
|
label: import('vue').PropType<string | string[]>;
|
|
1044
1044
|
/** @description 宽度 */
|
|
1045
1045
|
width: {
|
|
1046
|
-
type: (
|
|
1046
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1047
1047
|
default: string;
|
|
1048
1048
|
};
|
|
1049
1049
|
/** @description 更多细节,只有使用slot的时候有用 */
|
|
@@ -1315,7 +1315,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1315
1315
|
* @description tabindex for input
|
|
1316
1316
|
*/
|
|
1317
1317
|
tabindex: {
|
|
1318
|
-
type: (
|
|
1318
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1319
1319
|
default: number;
|
|
1320
1320
|
};
|
|
1321
1321
|
/**
|
|
@@ -27,15 +27,15 @@ export declare const tableProps: {
|
|
|
27
27
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
28
28
|
__epPropKey: true;
|
|
29
29
|
};
|
|
30
|
-
width: (
|
|
30
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
31
31
|
/**
|
|
32
32
|
* @description table's height. By default it has an `auto` height. If its value is a number, the height is measured in pixels; if its value is a string, the value will be assigned to element's style.height, the height is affected by external styles
|
|
33
33
|
*/
|
|
34
|
-
height: (
|
|
34
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
35
35
|
/**
|
|
36
36
|
* @description table's max-height. The legal value is a number or the height in px
|
|
37
37
|
*/
|
|
38
|
-
maxHeight: (
|
|
38
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39
39
|
/**
|
|
40
40
|
* @description whether width of column automatically fits its container
|
|
41
41
|
*/
|
|
@@ -113,7 +113,7 @@ export declare const tableProps: {
|
|
|
113
113
|
/**
|
|
114
114
|
* @description key of current row, a set only prop
|
|
115
115
|
*/
|
|
116
|
-
currentRowKey: (
|
|
116
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
117
117
|
/**
|
|
118
118
|
* @description displayed text when data is empty. You can customize this area with `#empty`
|
|
119
119
|
*/
|
|
@@ -199,7 +199,7 @@ export declare const tableProps: {
|
|
|
199
199
|
*/
|
|
200
200
|
showOverflowTooltip: PropType<TableProps<DefaultRow>["showOverflowTooltip"]>;
|
|
201
201
|
scrollbarTabindex: {
|
|
202
|
-
type: (
|
|
202
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
203
203
|
default: any;
|
|
204
204
|
};
|
|
205
205
|
};
|
|
@@ -300,6 +300,8 @@ export declare const faTableProps: {
|
|
|
300
300
|
};
|
|
301
301
|
/** @description 隐藏搜索时间 */
|
|
302
302
|
hideSearchTime: BooleanConstructor;
|
|
303
|
+
/** @description 未来搜索时间 */
|
|
304
|
+
futureSearchTime: BooleanConstructor;
|
|
303
305
|
/** @description 搜索时间范围 */
|
|
304
306
|
dataSearchRange: {
|
|
305
307
|
type: PropType<FaTableDataRange>;
|
|
@@ -348,15 +350,15 @@ export declare const faTableProps: {
|
|
|
348
350
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
349
351
|
__epPropKey: true;
|
|
350
352
|
};
|
|
351
|
-
width: (
|
|
353
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
352
354
|
/**
|
|
353
355
|
* @description table's height. By default it has an `auto` height. If its value is a number, the height is measured in pixels; if its value is a string, the value will be assigned to element's style.height, the height is affected by external styles
|
|
354
356
|
*/
|
|
355
|
-
height: (
|
|
357
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
356
358
|
/**
|
|
357
359
|
* @description table's max-height. The legal value is a number or the height in px
|
|
358
360
|
*/
|
|
359
|
-
maxHeight: (
|
|
361
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
360
362
|
/**
|
|
361
363
|
* @description whether width of column automatically fits its container
|
|
362
364
|
*/
|
|
@@ -422,7 +424,7 @@ export declare const faTableProps: {
|
|
|
422
424
|
/**
|
|
423
425
|
* @description key of current row, a set only prop
|
|
424
426
|
*/
|
|
425
|
-
currentRowKey: (
|
|
427
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
426
428
|
/**
|
|
427
429
|
* @description displayed text when data is empty. You can customize this area with `#empty`
|
|
428
430
|
*/
|
|
@@ -504,7 +506,7 @@ export declare const faTableProps: {
|
|
|
504
506
|
*/
|
|
505
507
|
showOverflowTooltip: PropType<TableProps<DefaultRow>["showOverflowTooltip"]>;
|
|
506
508
|
scrollbarTabindex: {
|
|
507
|
-
type: (
|
|
509
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
508
510
|
default: any;
|
|
509
511
|
};
|
|
510
512
|
};
|
|
@@ -706,6 +708,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
706
708
|
};
|
|
707
709
|
/** @description 隐藏搜索时间 */
|
|
708
710
|
hideSearchTime: BooleanConstructor;
|
|
711
|
+
/** @description 未来搜索时间 */
|
|
712
|
+
futureSearchTime: BooleanConstructor;
|
|
709
713
|
/** @description 搜索时间范围 */
|
|
710
714
|
dataSearchRange: {
|
|
711
715
|
type: PropType<FaTableDataRange>;
|
|
@@ -754,15 +758,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
754
758
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
755
759
|
__epPropKey: true;
|
|
756
760
|
};
|
|
757
|
-
width: (
|
|
761
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
758
762
|
/**
|
|
759
763
|
* @description table's height. By default it has an `auto` height. If its value is a number, the height is measured in pixels; if its value is a string, the value will be assigned to element's style.height, the height is affected by external styles
|
|
760
764
|
*/
|
|
761
|
-
height: (
|
|
765
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
762
766
|
/**
|
|
763
767
|
* @description table's max-height. The legal value is a number or the height in px
|
|
764
768
|
*/
|
|
765
|
-
maxHeight: (
|
|
769
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
766
770
|
/**
|
|
767
771
|
* @description whether width of column automatically fits its container
|
|
768
772
|
*/
|
|
@@ -828,7 +832,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
828
832
|
/**
|
|
829
833
|
* @description key of current row, a set only prop
|
|
830
834
|
*/
|
|
831
|
-
currentRowKey: (
|
|
835
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
832
836
|
/**
|
|
833
837
|
* @description displayed text when data is empty. You can customize this area with `#empty`
|
|
834
838
|
*/
|
|
@@ -910,7 +914,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
910
914
|
*/
|
|
911
915
|
showOverflowTooltip: PropType<TableProps<DefaultRow>["showOverflowTooltip"]>;
|
|
912
916
|
scrollbarTabindex: {
|
|
913
|
-
type: (
|
|
917
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
914
918
|
default: any;
|
|
915
919
|
};
|
|
916
920
|
}>, {
|
|
@@ -1130,6 +1134,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1130
1134
|
};
|
|
1131
1135
|
/** @description 隐藏搜索时间 */
|
|
1132
1136
|
hideSearchTime: BooleanConstructor;
|
|
1137
|
+
/** @description 未来搜索时间 */
|
|
1138
|
+
futureSearchTime: BooleanConstructor;
|
|
1133
1139
|
/** @description 搜索时间范围 */
|
|
1134
1140
|
dataSearchRange: {
|
|
1135
1141
|
type: PropType<FaTableDataRange>;
|
|
@@ -1178,15 +1184,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1178
1184
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1179
1185
|
__epPropKey: true;
|
|
1180
1186
|
};
|
|
1181
|
-
width: (
|
|
1187
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
1182
1188
|
/**
|
|
1183
1189
|
* @description table's height. By default it has an `auto` height. If its value is a number, the height is measured in pixels; if its value is a string, the value will be assigned to element's style.height, the height is affected by external styles
|
|
1184
1190
|
*/
|
|
1185
|
-
height: (
|
|
1191
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
1186
1192
|
/**
|
|
1187
1193
|
* @description table's max-height. The legal value is a number or the height in px
|
|
1188
1194
|
*/
|
|
1189
|
-
maxHeight: (
|
|
1195
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
1190
1196
|
/**
|
|
1191
1197
|
* @description whether width of column automatically fits its container
|
|
1192
1198
|
*/
|
|
@@ -1252,7 +1258,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1252
1258
|
/**
|
|
1253
1259
|
* @description key of current row, a set only prop
|
|
1254
1260
|
*/
|
|
1255
|
-
currentRowKey: (
|
|
1261
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
1256
1262
|
/**
|
|
1257
1263
|
* @description displayed text when data is empty. You can customize this area with `#empty`
|
|
1258
1264
|
*/
|
|
@@ -1334,7 +1340,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1334
1340
|
*/
|
|
1335
1341
|
showOverflowTooltip: PropType<TableProps<DefaultRow>["showOverflowTooltip"]>;
|
|
1336
1342
|
scrollbarTabindex: {
|
|
1337
|
-
type: (
|
|
1343
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1338
1344
|
default: any;
|
|
1339
1345
|
};
|
|
1340
1346
|
}>> & Readonly<{
|
|
@@ -1394,6 +1400,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1394
1400
|
columnSettingBtn: boolean;
|
|
1395
1401
|
toolBtn: boolean;
|
|
1396
1402
|
hideSearchTime: boolean;
|
|
1403
|
+
futureSearchTime: boolean;
|
|
1397
1404
|
dataSearchRange: FaTableDataRange;
|
|
1398
1405
|
pagination: boolean;
|
|
1399
1406
|
hideImage: boolean;
|