@creatorsn/vfluent3 0.3.23 → 0.3.24
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/types/packages/table-view-cell-base/index.d.ts +68 -52
- package/dist/types/packages/table-view-cell-base/source/index.d.ts +59 -0
- package/dist/types/packages/table-view-cell-base/source/index.vue.d.ts +10 -52
- package/dist/types/packages/table-view-head-base/index.d.ts +53 -40
- package/dist/types/packages/table-view-head-base/source/index.d.ts +50 -0
- package/dist/types/packages/table-view-head-base/source/index.vue.d.ts +4 -40
- package/dist/vfluent3.js +7722 -7728
- package/dist/vfluent3.umd.cjs +15 -15
- package/package.json +1 -1
|
@@ -1,22 +1,66 @@
|
|
|
1
1
|
import "./style";
|
|
2
|
+
export declare const FvTableViewCellProps: {
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default: () => {};
|
|
6
|
+
};
|
|
7
|
+
head: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
11
|
+
i18n: {
|
|
12
|
+
type: FunctionConstructor;
|
|
13
|
+
default: (key: any) => any;
|
|
14
|
+
};
|
|
15
|
+
selectPos: {
|
|
16
|
+
type: ObjectConstructor;
|
|
17
|
+
default: () => {};
|
|
18
|
+
};
|
|
19
|
+
foreground: {
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
fixedLeftWidth: {
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
fixedRightWidth: {
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
wrapperWidth: {
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
formatFunction: {
|
|
32
|
+
type: FunctionConstructor;
|
|
33
|
+
default: null;
|
|
34
|
+
};
|
|
35
|
+
row_index: {
|
|
36
|
+
type: NumberConstructor;
|
|
37
|
+
default: number;
|
|
38
|
+
};
|
|
39
|
+
col_index: {
|
|
40
|
+
type: NumberConstructor;
|
|
41
|
+
default: number;
|
|
42
|
+
};
|
|
43
|
+
isUnder: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
theme: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
disabled: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
lang: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
2
60
|
export declare const FvTableViewCellBase: import("../../types/plugins/component-plugin").ComponentPlugin<{
|
|
3
61
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
62
|
$props: {
|
|
5
|
-
|
|
6
|
-
readonly head?: Record<string, any> | undefined;
|
|
7
|
-
readonly disabled?: boolean | undefined;
|
|
8
|
-
readonly lang?: string | undefined;
|
|
9
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
10
|
-
readonly foreground?: string | undefined;
|
|
11
|
-
readonly row_index?: number | undefined;
|
|
12
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
13
|
-
readonly fixedRightWidth?: number | undefined;
|
|
14
|
-
readonly wrapperWidth?: string | undefined;
|
|
15
|
-
readonly formatFunction?: Function | undefined;
|
|
16
|
-
readonly isUnder?: boolean | undefined;
|
|
17
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
18
|
-
readonly col_index?: number | undefined;
|
|
19
|
-
readonly i18n?: Function | undefined;
|
|
63
|
+
[x: string]: any;
|
|
20
64
|
};
|
|
21
65
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
22
66
|
}, {
|
|
@@ -24,8 +68,8 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
24
68
|
edit: boolean;
|
|
25
69
|
};
|
|
26
70
|
}, {
|
|
27
|
-
isSelected():
|
|
28
|
-
isFirstSelected():
|
|
71
|
+
isSelected(): any;
|
|
72
|
+
isFirstSelected(): any;
|
|
29
73
|
selectBackground(): any;
|
|
30
74
|
outlineColor(): any;
|
|
31
75
|
computedBackground(): any;
|
|
@@ -43,21 +87,7 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
43
87
|
Defaults: {};
|
|
44
88
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
45
89
|
$props: {
|
|
46
|
-
|
|
47
|
-
readonly head?: Record<string, any> | undefined;
|
|
48
|
-
readonly disabled?: boolean | undefined;
|
|
49
|
-
readonly lang?: string | undefined;
|
|
50
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
51
|
-
readonly foreground?: string | undefined;
|
|
52
|
-
readonly row_index?: number | undefined;
|
|
53
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
54
|
-
readonly fixedRightWidth?: number | undefined;
|
|
55
|
-
readonly wrapperWidth?: string | undefined;
|
|
56
|
-
readonly formatFunction?: Function | undefined;
|
|
57
|
-
readonly isUnder?: boolean | undefined;
|
|
58
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
59
|
-
readonly col_index?: number | undefined;
|
|
60
|
-
readonly i18n?: Function | undefined;
|
|
90
|
+
[x: string]: any;
|
|
61
91
|
};
|
|
62
92
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
63
93
|
}, {
|
|
@@ -65,8 +95,8 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
65
95
|
edit: boolean;
|
|
66
96
|
};
|
|
67
97
|
}, {
|
|
68
|
-
isSelected():
|
|
69
|
-
isFirstSelected():
|
|
98
|
+
isSelected(): any;
|
|
99
|
+
isFirstSelected(): any;
|
|
70
100
|
selectBackground(): any;
|
|
71
101
|
outlineColor(): any;
|
|
72
102
|
computedBackground(): any;
|
|
@@ -81,21 +111,7 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
81
111
|
__isSuspense?: undefined;
|
|
82
112
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
83
113
|
$props: {
|
|
84
|
-
|
|
85
|
-
readonly head?: Record<string, any> | undefined;
|
|
86
|
-
readonly disabled?: boolean | undefined;
|
|
87
|
-
readonly lang?: string | undefined;
|
|
88
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
89
|
-
readonly foreground?: string | undefined;
|
|
90
|
-
readonly row_index?: number | undefined;
|
|
91
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
92
|
-
readonly fixedRightWidth?: number | undefined;
|
|
93
|
-
readonly wrapperWidth?: string | undefined;
|
|
94
|
-
readonly formatFunction?: Function | undefined;
|
|
95
|
-
readonly isUnder?: boolean | undefined;
|
|
96
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
97
|
-
readonly col_index?: number | undefined;
|
|
98
|
-
readonly i18n?: Function | undefined;
|
|
114
|
+
[x: string]: any;
|
|
99
115
|
};
|
|
100
116
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
101
117
|
}, {
|
|
@@ -103,8 +119,8 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
103
119
|
edit: boolean;
|
|
104
120
|
};
|
|
105
121
|
}, {
|
|
106
|
-
isSelected():
|
|
107
|
-
isFirstSelected():
|
|
122
|
+
isSelected(): any;
|
|
123
|
+
isFirstSelected(): any;
|
|
108
124
|
selectBackground(): any;
|
|
109
125
|
outlineColor(): any;
|
|
110
126
|
computedBackground(): any;
|
|
@@ -117,7 +133,7 @@ export declare const FvTableViewCellBase: import("../../types/plugins/component-
|
|
|
117
133
|
$slots: {
|
|
118
134
|
default: (_: {}) => any;
|
|
119
135
|
entire: (_: {
|
|
120
|
-
modelValue:
|
|
136
|
+
modelValue: any;
|
|
121
137
|
show: boolean;
|
|
122
138
|
}) => any;
|
|
123
139
|
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export declare const tableViewCellProps: {
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
};
|
|
6
|
+
head: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: () => {};
|
|
9
|
+
};
|
|
10
|
+
i18n: {
|
|
11
|
+
type: FunctionConstructor;
|
|
12
|
+
default: (key: any) => any;
|
|
13
|
+
};
|
|
14
|
+
selectPos: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {};
|
|
17
|
+
};
|
|
18
|
+
foreground: {
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
fixedLeftWidth: {
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
fixedRightWidth: {
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
wrapperWidth: {
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
formatFunction: {
|
|
31
|
+
type: FunctionConstructor;
|
|
32
|
+
default: null;
|
|
33
|
+
};
|
|
34
|
+
row_index: {
|
|
35
|
+
type: NumberConstructor;
|
|
36
|
+
default: number;
|
|
37
|
+
};
|
|
38
|
+
col_index: {
|
|
39
|
+
type: NumberConstructor;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
isUnder: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
theme: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
disabled: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
lang: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export type TableViewCellProps = typeof tableViewCellProps;
|
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
3
|
$props: {
|
|
4
|
-
|
|
5
|
-
readonly head?: Record<string, any> | undefined;
|
|
6
|
-
readonly disabled?: boolean | undefined;
|
|
7
|
-
readonly lang?: string | undefined;
|
|
8
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
9
|
-
readonly foreground?: string | undefined;
|
|
10
|
-
readonly row_index?: number | undefined;
|
|
11
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
12
|
-
readonly fixedRightWidth?: number | undefined;
|
|
13
|
-
readonly wrapperWidth?: string | undefined;
|
|
14
|
-
readonly formatFunction?: Function | undefined;
|
|
15
|
-
readonly isUnder?: boolean | undefined;
|
|
16
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
17
|
-
readonly col_index?: number | undefined;
|
|
18
|
-
readonly i18n?: Function | undefined;
|
|
4
|
+
[x: string]: any;
|
|
19
5
|
};
|
|
20
6
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
21
7
|
}, {
|
|
@@ -23,8 +9,8 @@ declare const _default: {
|
|
|
23
9
|
edit: boolean;
|
|
24
10
|
};
|
|
25
11
|
}, {
|
|
26
|
-
isSelected():
|
|
27
|
-
isFirstSelected():
|
|
12
|
+
isSelected(): any;
|
|
13
|
+
isFirstSelected(): any;
|
|
28
14
|
selectBackground(): any;
|
|
29
15
|
outlineColor(): any;
|
|
30
16
|
computedBackground(): any;
|
|
@@ -42,21 +28,7 @@ declare const _default: {
|
|
|
42
28
|
Defaults: {};
|
|
43
29
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
44
30
|
$props: {
|
|
45
|
-
|
|
46
|
-
readonly head?: Record<string, any> | undefined;
|
|
47
|
-
readonly disabled?: boolean | undefined;
|
|
48
|
-
readonly lang?: string | undefined;
|
|
49
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
50
|
-
readonly foreground?: string | undefined;
|
|
51
|
-
readonly row_index?: number | undefined;
|
|
52
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
53
|
-
readonly fixedRightWidth?: number | undefined;
|
|
54
|
-
readonly wrapperWidth?: string | undefined;
|
|
55
|
-
readonly formatFunction?: Function | undefined;
|
|
56
|
-
readonly isUnder?: boolean | undefined;
|
|
57
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
58
|
-
readonly col_index?: number | undefined;
|
|
59
|
-
readonly i18n?: Function | undefined;
|
|
31
|
+
[x: string]: any;
|
|
60
32
|
};
|
|
61
33
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
62
34
|
}, {
|
|
@@ -64,8 +36,8 @@ declare const _default: {
|
|
|
64
36
|
edit: boolean;
|
|
65
37
|
};
|
|
66
38
|
}, {
|
|
67
|
-
isSelected():
|
|
68
|
-
isFirstSelected():
|
|
39
|
+
isSelected(): any;
|
|
40
|
+
isFirstSelected(): any;
|
|
69
41
|
selectBackground(): any;
|
|
70
42
|
outlineColor(): any;
|
|
71
43
|
computedBackground(): any;
|
|
@@ -80,21 +52,7 @@ declare const _default: {
|
|
|
80
52
|
__isSuspense?: undefined;
|
|
81
53
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
82
54
|
$props: {
|
|
83
|
-
|
|
84
|
-
readonly head?: Record<string, any> | undefined;
|
|
85
|
-
readonly disabled?: boolean | undefined;
|
|
86
|
-
readonly lang?: string | undefined;
|
|
87
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
88
|
-
readonly foreground?: string | undefined;
|
|
89
|
-
readonly row_index?: number | undefined;
|
|
90
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
91
|
-
readonly fixedRightWidth?: number | undefined;
|
|
92
|
-
readonly wrapperWidth?: string | undefined;
|
|
93
|
-
readonly formatFunction?: Function | undefined;
|
|
94
|
-
readonly isUnder?: boolean | undefined;
|
|
95
|
-
readonly selectPos?: Record<string, any> | undefined;
|
|
96
|
-
readonly col_index?: number | undefined;
|
|
97
|
-
readonly i18n?: Function | undefined;
|
|
55
|
+
[x: string]: any;
|
|
98
56
|
};
|
|
99
57
|
$emit: (event: "drop-item" | "show-edit" | "set-select", ...args: any[]) => void;
|
|
100
58
|
}, {
|
|
@@ -102,8 +60,8 @@ declare const _default: {
|
|
|
102
60
|
edit: boolean;
|
|
103
61
|
};
|
|
104
62
|
}, {
|
|
105
|
-
isSelected():
|
|
106
|
-
isFirstSelected():
|
|
63
|
+
isSelected(): any;
|
|
64
|
+
isFirstSelected(): any;
|
|
107
65
|
selectBackground(): any;
|
|
108
66
|
outlineColor(): any;
|
|
109
67
|
computedBackground(): any;
|
|
@@ -116,7 +74,7 @@ declare const _default: {
|
|
|
116
74
|
$slots: {
|
|
117
75
|
default: (_: {}) => any;
|
|
118
76
|
entire: (_: {
|
|
119
|
-
modelValue:
|
|
77
|
+
modelValue: any;
|
|
120
78
|
show: boolean;
|
|
121
79
|
}) => any;
|
|
122
80
|
};
|
|
@@ -1,20 +1,57 @@
|
|
|
1
1
|
import "./style";
|
|
2
|
+
export declare const FvTableViewHeadProps: {
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default: () => {};
|
|
6
|
+
};
|
|
7
|
+
index: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
i18n: {
|
|
12
|
+
type: FunctionConstructor;
|
|
13
|
+
default: (key: any) => any;
|
|
14
|
+
};
|
|
15
|
+
foreground: {
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
dragItem: {
|
|
19
|
+
type: ObjectConstructor;
|
|
20
|
+
default: null;
|
|
21
|
+
};
|
|
22
|
+
fixedLeftWidth: {
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
fixedRightWidth: {
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
wrapperWidth: {
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
formatFunction: {
|
|
32
|
+
default: null;
|
|
33
|
+
};
|
|
34
|
+
isUnder: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
theme: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
disabled: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
lang: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
2
51
|
export declare const FvTableViewHeadBase: import("../../types/plugins/component-plugin").ComponentPlugin<{
|
|
3
52
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
4
53
|
$props: {
|
|
5
|
-
|
|
6
|
-
readonly disabled?: boolean | undefined;
|
|
7
|
-
readonly lang?: string | undefined;
|
|
8
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
9
|
-
readonly index?: number | undefined;
|
|
10
|
-
readonly foreground?: string | undefined;
|
|
11
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
12
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
13
|
-
readonly fixedRightWidth?: number | undefined;
|
|
14
|
-
readonly wrapperWidth?: string | undefined;
|
|
15
|
-
readonly formatFunction?: null | undefined;
|
|
16
|
-
readonly isUnder?: boolean | undefined;
|
|
17
|
-
readonly i18n?: Function | undefined;
|
|
54
|
+
[x: string]: any;
|
|
18
55
|
};
|
|
19
56
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
20
57
|
}, {
|
|
@@ -49,19 +86,7 @@ export declare const FvTableViewHeadBase: import("../../types/plugins/component-
|
|
|
49
86
|
Defaults: {};
|
|
50
87
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
51
88
|
$props: {
|
|
52
|
-
|
|
53
|
-
readonly disabled?: boolean | undefined;
|
|
54
|
-
readonly lang?: string | undefined;
|
|
55
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
56
|
-
readonly index?: number | undefined;
|
|
57
|
-
readonly foreground?: string | undefined;
|
|
58
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
59
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
60
|
-
readonly fixedRightWidth?: number | undefined;
|
|
61
|
-
readonly wrapperWidth?: string | undefined;
|
|
62
|
-
readonly formatFunction?: null | undefined;
|
|
63
|
-
readonly isUnder?: boolean | undefined;
|
|
64
|
-
readonly i18n?: Function | undefined;
|
|
89
|
+
[x: string]: any;
|
|
65
90
|
};
|
|
66
91
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
67
92
|
}, {
|
|
@@ -93,19 +118,7 @@ export declare const FvTableViewHeadBase: import("../../types/plugins/component-
|
|
|
93
118
|
__isSuspense?: undefined;
|
|
94
119
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
95
120
|
$props: {
|
|
96
|
-
|
|
97
|
-
readonly disabled?: boolean | undefined;
|
|
98
|
-
readonly lang?: string | undefined;
|
|
99
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
100
|
-
readonly index?: number | undefined;
|
|
101
|
-
readonly foreground?: string | undefined;
|
|
102
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
103
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
104
|
-
readonly fixedRightWidth?: number | undefined;
|
|
105
|
-
readonly wrapperWidth?: string | undefined;
|
|
106
|
-
readonly formatFunction?: null | undefined;
|
|
107
|
-
readonly isUnder?: boolean | undefined;
|
|
108
|
-
readonly i18n?: Function | undefined;
|
|
121
|
+
[x: string]: any;
|
|
109
122
|
};
|
|
110
123
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
111
124
|
}, {
|
|
@@ -135,7 +148,7 @@ export declare const FvTableViewHeadBase: import("../../types/plugins/component-
|
|
|
135
148
|
$slots: {
|
|
136
149
|
default: (_: {}) => any;
|
|
137
150
|
entire: (_: {
|
|
138
|
-
modelValue:
|
|
151
|
+
modelValue: any;
|
|
139
152
|
show: boolean;
|
|
140
153
|
}) => any;
|
|
141
154
|
menu: (_: {}) => any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export declare const tableViewHeadProps: {
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {};
|
|
5
|
+
};
|
|
6
|
+
index: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
i18n: {
|
|
11
|
+
type: FunctionConstructor;
|
|
12
|
+
default: (key: any) => any;
|
|
13
|
+
};
|
|
14
|
+
foreground: {
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
dragItem: {
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
default: null;
|
|
20
|
+
};
|
|
21
|
+
fixedLeftWidth: {
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
fixedRightWidth: {
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
wrapperWidth: {
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
formatFunction: {
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
isUnder: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
theme: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
disabled: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
lang: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export type TableViewHeadProps = typeof tableViewHeadProps;
|
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
3
3
|
$props: {
|
|
4
|
-
|
|
5
|
-
readonly disabled?: boolean | undefined;
|
|
6
|
-
readonly lang?: string | undefined;
|
|
7
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
8
|
-
readonly index?: number | undefined;
|
|
9
|
-
readonly foreground?: string | undefined;
|
|
10
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
11
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
12
|
-
readonly fixedRightWidth?: number | undefined;
|
|
13
|
-
readonly wrapperWidth?: string | undefined;
|
|
14
|
-
readonly formatFunction?: null | undefined;
|
|
15
|
-
readonly isUnder?: boolean | undefined;
|
|
16
|
-
readonly i18n?: Function | undefined;
|
|
4
|
+
[x: string]: any;
|
|
17
5
|
};
|
|
18
6
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
19
7
|
}, {
|
|
@@ -48,19 +36,7 @@ declare const _default: {
|
|
|
48
36
|
Defaults: {};
|
|
49
37
|
}, Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
50
38
|
$props: {
|
|
51
|
-
|
|
52
|
-
readonly disabled?: boolean | undefined;
|
|
53
|
-
readonly lang?: string | undefined;
|
|
54
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
55
|
-
readonly index?: number | undefined;
|
|
56
|
-
readonly foreground?: string | undefined;
|
|
57
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
58
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
59
|
-
readonly fixedRightWidth?: number | undefined;
|
|
60
|
-
readonly wrapperWidth?: string | undefined;
|
|
61
|
-
readonly formatFunction?: null | undefined;
|
|
62
|
-
readonly isUnder?: boolean | undefined;
|
|
63
|
-
readonly i18n?: Function | undefined;
|
|
39
|
+
[x: string]: any;
|
|
64
40
|
};
|
|
65
41
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
66
42
|
}, {
|
|
@@ -92,19 +68,7 @@ declare const _default: {
|
|
|
92
68
|
__isSuspense?: undefined;
|
|
93
69
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {
|
|
94
70
|
$props: {
|
|
95
|
-
|
|
96
|
-
readonly disabled?: boolean | undefined;
|
|
97
|
-
readonly lang?: string | undefined;
|
|
98
|
-
readonly modelValue?: Record<string, any> | undefined;
|
|
99
|
-
readonly index?: number | undefined;
|
|
100
|
-
readonly foreground?: string | undefined;
|
|
101
|
-
readonly dragItem?: Record<string, any> | undefined;
|
|
102
|
-
readonly fixedLeftWidth?: number | undefined;
|
|
103
|
-
readonly fixedRightWidth?: number | undefined;
|
|
104
|
-
readonly wrapperWidth?: string | undefined;
|
|
105
|
-
readonly formatFunction?: null | undefined;
|
|
106
|
-
readonly isUnder?: boolean | undefined;
|
|
107
|
-
readonly i18n?: Function | undefined;
|
|
71
|
+
[x: string]: any;
|
|
108
72
|
};
|
|
109
73
|
$emit: (event: "drop-item" | "show-edit" | "delete-column" | "duplicate-column", ...args: any[]) => void;
|
|
110
74
|
}, {
|
|
@@ -134,7 +98,7 @@ declare const _default: {
|
|
|
134
98
|
$slots: {
|
|
135
99
|
default: (_: {}) => any;
|
|
136
100
|
entire: (_: {
|
|
137
|
-
modelValue:
|
|
101
|
+
modelValue: any;
|
|
138
102
|
show: boolean;
|
|
139
103
|
}) => any;
|
|
140
104
|
menu: (_: {}) => any;
|