next-element-vue 0.4.1 → 0.4.6
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 +3 -3
- package/dist/index.js +280 -75
- package/dist/index.min.js +3 -3
- package/dist/index.umd.js +281 -81
- package/dist/index.umd.min.js +3 -3
- package/dist/packages/components/dialog/index.d.ts +9 -0
- package/dist/packages/components/dialog/src/index.d.ts +9 -0
- package/dist/packages/components/form/index.d.ts +60 -0
- package/dist/packages/components/form/src/widgets/input-table-select.d.ts +9 -0
- package/dist/packages/components/layout/src/composite/index.d.ts +29 -0
- package/dist/packages/components/layout/src/composite/widgets/header.d.ts +2 -0
- package/dist/packages/components/layout/src/composite/widgets/menu-top.d.ts +34 -0
- package/dist/packages/components/layout/src/composite/widgets/sidebar.d.ts +2 -0
- package/dist/packages/components/upload/index.d.ts +3 -1
- package/dist/packages/components/upload/src/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -60,6 +60,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
|
|
|
60
60
|
type: StringConstructor;
|
|
61
61
|
default: string;
|
|
62
62
|
};
|
|
63
|
+
nofill: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
63
67
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
68
|
className: {
|
|
65
69
|
type: StringConstructor;
|
|
@@ -121,6 +125,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
|
|
|
121
125
|
type: StringConstructor;
|
|
122
126
|
default: string;
|
|
123
127
|
};
|
|
128
|
+
nofill: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
default: boolean;
|
|
131
|
+
};
|
|
124
132
|
}>> & {
|
|
125
133
|
onClose?: (...args: any[]) => any;
|
|
126
134
|
}, {
|
|
@@ -139,5 +147,6 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
|
|
|
139
147
|
destroyOnClose: boolean;
|
|
140
148
|
modal: boolean;
|
|
141
149
|
top: string;
|
|
150
|
+
nofill: boolean;
|
|
142
151
|
}, {}>> & Record<string, any>;
|
|
143
152
|
export default NextDialog;
|
|
@@ -60,6 +60,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
60
60
|
type: StringConstructor;
|
|
61
61
|
default: string;
|
|
62
62
|
};
|
|
63
|
+
nofill: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
63
67
|
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
68
|
className: {
|
|
65
69
|
type: StringConstructor;
|
|
@@ -121,6 +125,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
125
|
type: StringConstructor;
|
|
122
126
|
default: string;
|
|
123
127
|
};
|
|
128
|
+
nofill: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
default: boolean;
|
|
131
|
+
};
|
|
124
132
|
}>> & {
|
|
125
133
|
onClose?: (...args: any[]) => any;
|
|
126
134
|
}, {
|
|
@@ -139,5 +147,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
139
147
|
destroyOnClose: boolean;
|
|
140
148
|
modal: boolean;
|
|
141
149
|
top: string;
|
|
150
|
+
nofill: boolean;
|
|
142
151
|
}, {}>;
|
|
143
152
|
export default _default;
|
|
@@ -96,6 +96,66 @@ export declare const NextTreeCascader: import("../../utils/install").SFCWithInst
|
|
|
96
96
|
disabled: boolean;
|
|
97
97
|
formParams: Record<string, any>;
|
|
98
98
|
}, {}>> & Record<string, any>;
|
|
99
|
+
export declare const NextInputTableSelect: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
100
|
+
modelValue: {
|
|
101
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
102
|
+
default: () => any[];
|
|
103
|
+
};
|
|
104
|
+
column: {
|
|
105
|
+
type: ObjectConstructor;
|
|
106
|
+
default: () => {};
|
|
107
|
+
};
|
|
108
|
+
disabled: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
112
|
+
closable: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
116
|
+
formParams: {
|
|
117
|
+
type: ObjectConstructor;
|
|
118
|
+
default: () => {};
|
|
119
|
+
};
|
|
120
|
+
placeholder: {
|
|
121
|
+
type: StringConstructor;
|
|
122
|
+
default: string;
|
|
123
|
+
};
|
|
124
|
+
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
125
|
+
modelValue: {
|
|
126
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
127
|
+
default: () => any[];
|
|
128
|
+
};
|
|
129
|
+
column: {
|
|
130
|
+
type: ObjectConstructor;
|
|
131
|
+
default: () => {};
|
|
132
|
+
};
|
|
133
|
+
disabled: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
closable: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
formParams: {
|
|
142
|
+
type: ObjectConstructor;
|
|
143
|
+
default: () => {};
|
|
144
|
+
};
|
|
145
|
+
placeholder: {
|
|
146
|
+
type: StringConstructor;
|
|
147
|
+
default: string;
|
|
148
|
+
};
|
|
149
|
+
}>> & {
|
|
150
|
+
onSelect?: (...args: any[]) => any;
|
|
151
|
+
}, {
|
|
152
|
+
modelValue: string | number | boolean | Record<string, any> | unknown[];
|
|
153
|
+
column: Record<string, any>;
|
|
154
|
+
disabled: boolean;
|
|
155
|
+
formParams: Record<string, any>;
|
|
156
|
+
closable: boolean;
|
|
157
|
+
placeholder: string;
|
|
158
|
+
}, {}>> & Record<string, any>;
|
|
99
159
|
export declare const NextForm: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
100
160
|
options: {
|
|
101
161
|
type: ObjectConstructor;
|
|
@@ -11,6 +11,10 @@ declare const InputTableSelect: import("vue").DefineComponent<{
|
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
|
+
closable: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
14
18
|
formParams: {
|
|
15
19
|
type: ObjectConstructor;
|
|
16
20
|
default: () => {};
|
|
@@ -32,6 +36,10 @@ declare const InputTableSelect: import("vue").DefineComponent<{
|
|
|
32
36
|
type: BooleanConstructor;
|
|
33
37
|
default: boolean;
|
|
34
38
|
};
|
|
39
|
+
closable: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
35
43
|
formParams: {
|
|
36
44
|
type: ObjectConstructor;
|
|
37
45
|
default: () => {};
|
|
@@ -46,6 +54,7 @@ declare const InputTableSelect: import("vue").DefineComponent<{
|
|
|
46
54
|
modelValue: string | number | boolean | Record<string, any> | unknown[];
|
|
47
55
|
column: Record<string, any>;
|
|
48
56
|
disabled: boolean;
|
|
57
|
+
closable: boolean;
|
|
49
58
|
formParams: Record<string, any>;
|
|
50
59
|
placeholder: string;
|
|
51
60
|
}, {}>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
|
|
2
|
+
[x: string]: unknown;
|
|
3
|
+
}>>, {
|
|
4
|
+
ns: {
|
|
5
|
+
namespace: import("vue").ComputedRef<string>;
|
|
6
|
+
b: (blockSuffix?: string) => string;
|
|
7
|
+
e: (element?: string) => string;
|
|
8
|
+
m: (modifier?: string) => string;
|
|
9
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
10
|
+
em: (element?: string, modifier?: string) => string;
|
|
11
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
12
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
13
|
+
bf: (...arg: any[]) => string;
|
|
14
|
+
is: {
|
|
15
|
+
(name: string, state: boolean): string;
|
|
16
|
+
(name: string): string;
|
|
17
|
+
};
|
|
18
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
19
|
+
cssVarName: (name: string) => string;
|
|
20
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
21
|
+
cssVarBlockName: (name: string) => string;
|
|
22
|
+
};
|
|
23
|
+
submenuTree: import("vue").Ref<any[]>;
|
|
24
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
|
25
|
+
[x: string]: unknown;
|
|
26
|
+
}>>>>, {
|
|
27
|
+
[x: number]: string;
|
|
28
|
+
} | {}, {}>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { PropType, CSSProperties } from 'vue';
|
|
2
|
+
import type { MenuItemInterface } from 'packages/components/menu/src/interface';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
className: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
style: {
|
|
9
|
+
type: PropType<CSSProperties>;
|
|
10
|
+
default: () => {};
|
|
11
|
+
};
|
|
12
|
+
menuTree: {
|
|
13
|
+
type: PropType<MenuItemInterface[]>;
|
|
14
|
+
default: () => any[];
|
|
15
|
+
};
|
|
16
|
+
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
className: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
style: {
|
|
22
|
+
type: PropType<CSSProperties>;
|
|
23
|
+
default: () => {};
|
|
24
|
+
};
|
|
25
|
+
menuTree: {
|
|
26
|
+
type: PropType<MenuItemInterface[]>;
|
|
27
|
+
default: () => any[];
|
|
28
|
+
};
|
|
29
|
+
}>>, {
|
|
30
|
+
className: string;
|
|
31
|
+
style: CSSProperties;
|
|
32
|
+
menuTree: MenuItemInterface[];
|
|
33
|
+
}, {}>;
|
|
34
|
+
export default _default;
|
|
@@ -20,7 +20,7 @@ export declare const NextUpload: import("../../utils/install").SFCWithInstall<im
|
|
|
20
20
|
}, {
|
|
21
21
|
t: import("../..").Translator;
|
|
22
22
|
appContext: any;
|
|
23
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "remove" | "preview")[], "change" | "remove" | "preview", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
24
|
className: {
|
|
25
25
|
type: StringConstructor;
|
|
26
26
|
default: string;
|
|
@@ -40,6 +40,8 @@ export declare const NextUpload: import("../../utils/install").SFCWithInstall<im
|
|
|
40
40
|
};
|
|
41
41
|
}>> & {
|
|
42
42
|
onChange?: (...args: any[]) => any;
|
|
43
|
+
onRemove?: (...args: any[]) => any;
|
|
44
|
+
onPreview?: (...args: any[]) => any;
|
|
43
45
|
}, {
|
|
44
46
|
className: string;
|
|
45
47
|
style: import("vue").CSSProperties;
|
|
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
}, {
|
|
21
21
|
t: import("packages/hooks").Translator;
|
|
22
22
|
appContext: any;
|
|
23
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "remove" | "preview")[], "change" | "remove" | "preview", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
24
|
className: {
|
|
25
25
|
type: StringConstructor;
|
|
26
26
|
default: string;
|
|
@@ -40,6 +40,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
};
|
|
41
41
|
}>> & {
|
|
42
42
|
onChange?: (...args: any[]) => any;
|
|
43
|
+
onRemove?: (...args: any[]) => any;
|
|
44
|
+
onPreview?: (...args: any[]) => any;
|
|
43
45
|
}, {
|
|
44
46
|
className: string;
|
|
45
47
|
style: CSSProperties;
|