next-element-vue 0.4.6 → 0.4.8
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.css +1 -1
- package/dist/index.js +14 -8
- package/dist/index.min.js +3 -3
- package/dist/index.umd.js +14 -8
- package/dist/index.umd.min.js +3 -3
- package/dist/packages/components/crud-table/index.d.ts +1 -1
- package/dist/packages/components/crud-table/src/config.d.ts +5 -3
- package/dist/packages/components/crud-table/src/index.d.ts +1 -1
- package/dist/packages/components/crud-table-select/index.d.ts +1 -1
- package/dist/packages/components/crud-table-select/src/index.d.ts +1 -1
- package/dist/packages/components/crud-table-virtualized/index.d.ts +1 -1
- package/dist/packages/components/crud-table-virtualized/src/index.d.ts +1 -1
- package/dist/packages/components/drag-resize/index.d.ts +1 -1
- package/dist/packages/components/drag-resize/src/index.d.ts +1 -1
- package/dist/packages/components/form/src/config.d.ts +1 -1
- package/dist/packages/components/labelimg/index.d.ts +1 -1
- package/dist/packages/components/labelimg/src/index.d.ts +1 -1
- package/dist/packages/components/labelme/index.d.ts +1 -1
- package/dist/packages/components/labelme/src/index.d.ts +1 -1
- package/dist/packages/components/layout/src/classic/index.d.ts +2 -2
- package/dist/packages/components/layout/src/columns/index.d.ts +1 -1
- package/dist/packages/components/layout/src/composite/index.d.ts +2 -2
- package/dist/packages/components/layout/src/defaults/index.d.ts +1 -1
- package/dist/packages/components/layout/src/transverse/index.d.ts +1 -1
- package/dist/packages/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -150,11 +150,11 @@ export declare const NextCrudTable: import("../../utils/install").SFCWithInstall
|
|
|
150
150
|
"onDelete-row"?: (...args: any[]) => any;
|
|
151
151
|
"onSubmit-form"?: (...args: any[]) => any;
|
|
152
152
|
}, {
|
|
153
|
+
data: unknown[];
|
|
153
154
|
className: string;
|
|
154
155
|
style: import("vue").CSSProperties;
|
|
155
156
|
options: Record<string, any>;
|
|
156
157
|
loading: boolean;
|
|
157
|
-
data: unknown[];
|
|
158
158
|
page: Record<string, any>;
|
|
159
159
|
rowStyle: Function;
|
|
160
160
|
rowClassName: Function;
|
|
@@ -84,6 +84,7 @@ export interface FormColunmProps extends Column {
|
|
|
84
84
|
formTip?: string;
|
|
85
85
|
formLabel?: string;
|
|
86
86
|
formMutiple?: boolean;
|
|
87
|
+
formDisabledDate?: Function;
|
|
87
88
|
formDivider?: any;
|
|
88
89
|
formRemark?: string;
|
|
89
90
|
formRules?: any[];
|
|
@@ -119,6 +120,7 @@ export interface TableColumnProps extends SearchColumnProps, FormColunmProps {
|
|
|
119
120
|
sortable?: boolean;
|
|
120
121
|
cellUnit?: string;
|
|
121
122
|
children?: TableColumnProps[];
|
|
123
|
+
renderColumnCell?: Function;
|
|
122
124
|
}
|
|
123
125
|
export declare const header_menu_slots_key: string[];
|
|
124
126
|
export declare const operation_column_slots_key: string[];
|
|
@@ -136,7 +138,7 @@ declare const _default: {
|
|
|
136
138
|
headerAlign: string;
|
|
137
139
|
cellAlign: string;
|
|
138
140
|
columnMinWidth: string;
|
|
139
|
-
columns: unknown;
|
|
141
|
+
columns: TableColumnProps | unknown;
|
|
140
142
|
showSearchForm: boolean;
|
|
141
143
|
showHeaderMenu: boolean;
|
|
142
144
|
showSearchLabel: boolean;
|
|
@@ -144,7 +146,7 @@ declare const _default: {
|
|
|
144
146
|
searchGutter: number;
|
|
145
147
|
searchLabelWidth: string;
|
|
146
148
|
searchColumnMinWidth: number;
|
|
147
|
-
searchColumns: unknown;
|
|
149
|
+
searchColumns: SearchColumnProps | unknown;
|
|
148
150
|
addBtn: boolean;
|
|
149
151
|
viewBtn: boolean;
|
|
150
152
|
delBtn: boolean;
|
|
@@ -165,7 +167,7 @@ declare const _default: {
|
|
|
165
167
|
dialogWidth: string;
|
|
166
168
|
dialogFullscreen: boolean;
|
|
167
169
|
closeOnClickModal: boolean;
|
|
168
|
-
formColumns: unknown;
|
|
170
|
+
formColumns: FormColunmProps | unknown;
|
|
169
171
|
formLabelWidth: string;
|
|
170
172
|
formSpan: number;
|
|
171
173
|
formColumnMinWidth: number;
|
|
@@ -149,11 +149,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
149
|
"onDelete-row"?: (...args: any[]) => any;
|
|
150
150
|
"onSubmit-form"?: (...args: any[]) => any;
|
|
151
151
|
}, {
|
|
152
|
+
data: unknown[];
|
|
152
153
|
className: string;
|
|
153
154
|
style: import("vue").CSSProperties;
|
|
154
155
|
options: Record<string, any>;
|
|
155
156
|
loading: boolean;
|
|
156
|
-
data: unknown[];
|
|
157
157
|
page: Record<string, any>;
|
|
158
158
|
rowStyle: Function;
|
|
159
159
|
rowClassName: Function;
|
|
@@ -4,6 +4,6 @@ export declare const NextCrudTableSelect: import("../../utils/install").SFCWithI
|
|
|
4
4
|
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
5
5
|
[x: string]: unknown;
|
|
6
6
|
}>>>>, {
|
|
7
|
-
[x: number]: string;
|
|
7
|
+
readonly [x: number]: string;
|
|
8
8
|
} | {}, {}>> & Record<string, any>;
|
|
9
9
|
export default NextCrudTableSelect;
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
3
3
|
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
4
4
|
[x: string]: unknown;
|
|
5
5
|
}>>>>, {
|
|
6
|
-
[x: number]: string;
|
|
6
|
+
readonly [x: number]: string;
|
|
7
7
|
} | {}, {}>;
|
|
8
8
|
export default _default;
|
|
@@ -58,11 +58,11 @@ export declare const NextCrudTableVirtualized: import("../../utils/install").SFC
|
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
}>>, {
|
|
61
|
+
data: unknown[];
|
|
61
62
|
className: string;
|
|
62
63
|
style: import("vue").CSSProperties;
|
|
63
64
|
options: Record<string, any>;
|
|
64
65
|
loading: boolean;
|
|
65
|
-
data: unknown[];
|
|
66
66
|
page: Record<string, any>;
|
|
67
67
|
}, {}>> & Record<string, any>;
|
|
68
68
|
export default NextCrudTableVirtualized;
|
|
@@ -57,11 +57,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
};
|
|
58
58
|
};
|
|
59
59
|
}>>, {
|
|
60
|
+
data: unknown[];
|
|
60
61
|
className: string;
|
|
61
62
|
style: import("vue").CSSProperties;
|
|
62
63
|
options: Record<string, any>;
|
|
63
64
|
loading: boolean;
|
|
64
|
-
data: unknown[];
|
|
65
65
|
page: Record<string, any>;
|
|
66
66
|
}, {}>;
|
|
67
67
|
export default _default;
|
|
@@ -4,6 +4,6 @@ export declare const NextDragResize: import("../../utils/install").SFCWithInstal
|
|
|
4
4
|
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
5
5
|
[x: string]: unknown;
|
|
6
6
|
}>>>>, {
|
|
7
|
-
[x: number]: string;
|
|
7
|
+
readonly [x: number]: string;
|
|
8
8
|
} | {}, {}>> & Record<string, any>;
|
|
9
9
|
export default NextDragResize;
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
3
3
|
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
4
4
|
[x: string]: unknown;
|
|
5
5
|
}>>>>, {
|
|
6
|
-
[x: number]: string;
|
|
6
|
+
readonly [x: number]: string;
|
|
7
7
|
} | {}, {}>;
|
|
8
8
|
export default _default;
|
|
@@ -47,11 +47,11 @@ export declare const NextLabelimg: import("../../utils/install").SFCWithInstall<
|
|
|
47
47
|
"onPrev-click"?: (...args: any[]) => any;
|
|
48
48
|
"onNext-click"?: (...args: any[]) => any;
|
|
49
49
|
}, {
|
|
50
|
+
data: any[];
|
|
50
51
|
className: string;
|
|
51
52
|
style: import("vue").CSSProperties;
|
|
52
53
|
options: Record<string, any>;
|
|
53
54
|
classes: unknown[];
|
|
54
|
-
data: any[];
|
|
55
55
|
}, {}>> & Record<string, any>;
|
|
56
56
|
export declare const NextLabelimgPreview: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
57
57
|
className: {
|
|
@@ -47,10 +47,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
"onPrev-click"?: (...args: any[]) => any;
|
|
48
48
|
"onNext-click"?: (...args: any[]) => any;
|
|
49
49
|
}, {
|
|
50
|
+
data: any[];
|
|
50
51
|
className: string;
|
|
51
52
|
style: CSSProperties;
|
|
52
53
|
options: Record<string, any>;
|
|
53
54
|
classes: unknown[];
|
|
54
|
-
data: any[];
|
|
55
55
|
}, {}>;
|
|
56
56
|
export default _default;
|
|
@@ -49,10 +49,10 @@ export declare const NextLabelme: import("../../utils/install").SFCWithInstall<i
|
|
|
49
49
|
"onPrev-click"?: (...args: any[]) => any;
|
|
50
50
|
"onNext-click"?: (...args: any[]) => any;
|
|
51
51
|
}, {
|
|
52
|
+
data: any[];
|
|
52
53
|
className: string;
|
|
53
54
|
style: import("vue").CSSProperties;
|
|
54
55
|
options: Record<string, any>;
|
|
55
56
|
classes: unknown[];
|
|
56
|
-
data: any[];
|
|
57
57
|
}, {}>> & Record<string, any>;
|
|
58
58
|
export default NextLabelme;
|
|
@@ -49,10 +49,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
49
|
"onPrev-click"?: (...args: any[]) => any;
|
|
50
50
|
"onNext-click"?: (...args: any[]) => any;
|
|
51
51
|
}, {
|
|
52
|
+
data: any[];
|
|
52
53
|
className: string;
|
|
53
54
|
style: CSSProperties;
|
|
54
55
|
options: Record<string, any>;
|
|
55
56
|
classes: unknown[];
|
|
56
|
-
data: any[];
|
|
57
57
|
}, {}>;
|
|
58
58
|
export default _default;
|
|
@@ -12,7 +12,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
12
12
|
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
13
13
|
bf: (...arg: any[]) => string;
|
|
14
14
|
is: {
|
|
15
|
-
(name: string, state: boolean): string;
|
|
15
|
+
(name: string, state: boolean | undefined): string;
|
|
16
16
|
(name: string): string;
|
|
17
17
|
};
|
|
18
18
|
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
@@ -23,6 +23,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
23
23
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
24
24
|
[x: string]: unknown;
|
|
25
25
|
}>>>>, {
|
|
26
|
-
[x: number]: string;
|
|
26
|
+
readonly [x: number]: string;
|
|
27
27
|
} | {}, {}>;
|
|
28
28
|
export default _default;
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
3
3
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
4
4
|
[x: string]: unknown;
|
|
5
5
|
}>>>>, {
|
|
6
|
-
[x: number]: string;
|
|
6
|
+
readonly [x: number]: string;
|
|
7
7
|
} | {}, {}>;
|
|
8
8
|
export default _default;
|
|
@@ -12,7 +12,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
12
12
|
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
13
13
|
bf: (...arg: any[]) => string;
|
|
14
14
|
is: {
|
|
15
|
-
(name: string, state: boolean): string;
|
|
15
|
+
(name: string, state: boolean | undefined): string;
|
|
16
16
|
(name: string): string;
|
|
17
17
|
};
|
|
18
18
|
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
@@ -24,6 +24,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
24
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
25
25
|
[x: string]: unknown;
|
|
26
26
|
}>>>>, {
|
|
27
|
-
[x: number]: string;
|
|
27
|
+
readonly [x: number]: string;
|
|
28
28
|
} | {}, {}>;
|
|
29
29
|
export default _default;
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
3
3
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
4
4
|
[x: string]: unknown;
|
|
5
5
|
}>>>>, {
|
|
6
|
-
[x: number]: string;
|
|
6
|
+
readonly [x: number]: string;
|
|
7
7
|
} | {}, {}>;
|
|
8
8
|
export default _default;
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
|
|
|
3
3
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
4
4
|
[x: string]: unknown;
|
|
5
5
|
}>>>>, {
|
|
6
|
-
[x: number]: string;
|
|
6
|
+
readonly [x: number]: string;
|
|
7
7
|
} | {}, {}>;
|
|
8
8
|
export default _default;
|
package/dist/packages/index.d.ts
CHANGED