next-element-vue 0.3.8 → 0.4.0
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 +218 -96
- package/dist/index.min.js +3 -3
- package/dist/index.umd.js +217 -95
- package/dist/index.umd.min.js +3 -3
- package/dist/packages/components/crud-table-virtualized/src/index.test.d.ts +2 -2
- package/dist/packages/components/dialog/index.d.ts +18 -0
- package/dist/packages/components/dialog/src/index.d.ts +19 -0
- package/dist/packages/components/form/src/widgets/tree-cascader.d.ts +49 -0
- package/package.json +1 -1
|
@@ -59,11 +59,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
59
|
}>> & {
|
|
60
60
|
[x: `on${Capitalize<any>}`]: (...args: any[]) => any;
|
|
61
61
|
}, {
|
|
62
|
-
data: unknown[];
|
|
63
|
-
style: import("vue").CSSProperties;
|
|
64
62
|
className: string;
|
|
63
|
+
style: import("vue").CSSProperties;
|
|
65
64
|
options: Record<string, any>;
|
|
66
65
|
loading: boolean;
|
|
66
|
+
data: unknown[];
|
|
67
67
|
page: Record<string, any>;
|
|
68
68
|
}, {}>;
|
|
69
69
|
export default _default;
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import './src/index.scss';
|
|
2
2
|
export declare const NextDialog: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
3
|
+
className: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
style: {
|
|
8
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
3
11
|
modelValue: {
|
|
4
12
|
type: BooleanConstructor;
|
|
5
13
|
default: boolean;
|
|
@@ -53,6 +61,14 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
|
|
|
53
61
|
default: string;
|
|
54
62
|
};
|
|
55
63
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
+
className: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
style: {
|
|
69
|
+
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
70
|
+
default: () => {};
|
|
71
|
+
};
|
|
56
72
|
modelValue: {
|
|
57
73
|
type: BooleanConstructor;
|
|
58
74
|
default: boolean;
|
|
@@ -108,6 +124,8 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
|
|
|
108
124
|
}>> & {
|
|
109
125
|
onClose?: (...args: any[]) => any;
|
|
110
126
|
}, {
|
|
127
|
+
className: string;
|
|
128
|
+
style: import("vue").CSSProperties;
|
|
111
129
|
modelValue: boolean;
|
|
112
130
|
title: string;
|
|
113
131
|
fullscreen: boolean;
|
|
@@ -1,4 +1,13 @@
|
|
|
1
|
+
import type { PropType, CSSProperties } from 'vue';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
className: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
style: {
|
|
8
|
+
type: PropType<CSSProperties>;
|
|
9
|
+
default: () => {};
|
|
10
|
+
};
|
|
2
11
|
modelValue: {
|
|
3
12
|
type: BooleanConstructor;
|
|
4
13
|
default: boolean;
|
|
@@ -52,6 +61,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
52
61
|
default: string;
|
|
53
62
|
};
|
|
54
63
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
|
+
className: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
style: {
|
|
69
|
+
type: PropType<CSSProperties>;
|
|
70
|
+
default: () => {};
|
|
71
|
+
};
|
|
55
72
|
modelValue: {
|
|
56
73
|
type: BooleanConstructor;
|
|
57
74
|
default: boolean;
|
|
@@ -107,6 +124,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
107
124
|
}>> & {
|
|
108
125
|
onClose?: (...args: any[]) => any;
|
|
109
126
|
}, {
|
|
127
|
+
className: string;
|
|
128
|
+
style: CSSProperties;
|
|
110
129
|
modelValue: boolean;
|
|
111
130
|
title: string;
|
|
112
131
|
fullscreen: boolean;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
column: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: () => {};
|
|
9
|
+
};
|
|
10
|
+
disabled: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
formParams: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: () => {};
|
|
17
|
+
};
|
|
18
|
+
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus")[], "change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
modelValue: {
|
|
20
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
column: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
formParams: {
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: () => {};
|
|
34
|
+
};
|
|
35
|
+
}>> & {
|
|
36
|
+
onChange?: (...args: any[]) => any;
|
|
37
|
+
onClear?: (...args: any[]) => any;
|
|
38
|
+
"onExpand-change"?: (...args: any[]) => any;
|
|
39
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
40
|
+
"onRemove-tag"?: (...args: any[]) => any;
|
|
41
|
+
onBlur?: (...args: any[]) => any;
|
|
42
|
+
onFocus?: (...args: any[]) => any;
|
|
43
|
+
}, {
|
|
44
|
+
modelValue: string | number | boolean | Record<string, any> | unknown[];
|
|
45
|
+
column: Record<string, any>;
|
|
46
|
+
disabled: boolean;
|
|
47
|
+
formParams: Record<string, any>;
|
|
48
|
+
}, {}>;
|
|
49
|
+
export default _default;
|