next-element-vue 0.4.0 → 0.4.3
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 +2 -2
- package/dist/index.js +218 -57
- package/dist/index.min.js +3 -3
- package/dist/index.umd.js +216 -61
- 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/form/index.d.ts +48 -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/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
|
-
|
|
62
|
+
data: unknown[];
|
|
63
63
|
style: import("vue").CSSProperties;
|
|
64
|
+
className: string;
|
|
64
65
|
options: Record<string, any>;
|
|
65
66
|
loading: boolean;
|
|
66
|
-
data: unknown[];
|
|
67
67
|
page: Record<string, any>;
|
|
68
68
|
}, {}>;
|
|
69
69
|
export default _default;
|
|
@@ -48,6 +48,54 @@ export declare const NextTreeSelect: import("../../utils/install").SFCWithInstal
|
|
|
48
48
|
disabled: boolean;
|
|
49
49
|
formParams: Record<string, any>;
|
|
50
50
|
}, {}>> & Record<string, any>;
|
|
51
|
+
export declare const NextTreeCascader: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
52
|
+
modelValue: {
|
|
53
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
column: {
|
|
57
|
+
type: ObjectConstructor;
|
|
58
|
+
default: () => {};
|
|
59
|
+
};
|
|
60
|
+
disabled: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
formParams: {
|
|
65
|
+
type: ObjectConstructor;
|
|
66
|
+
default: () => {};
|
|
67
|
+
};
|
|
68
|
+
}, () => 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<{
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
column: {
|
|
74
|
+
type: ObjectConstructor;
|
|
75
|
+
default: () => {};
|
|
76
|
+
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
formParams: {
|
|
82
|
+
type: ObjectConstructor;
|
|
83
|
+
default: () => {};
|
|
84
|
+
};
|
|
85
|
+
}>> & {
|
|
86
|
+
onChange?: (...args: any[]) => any;
|
|
87
|
+
onClear?: (...args: any[]) => any;
|
|
88
|
+
"onExpand-change"?: (...args: any[]) => any;
|
|
89
|
+
"onVisible-change"?: (...args: any[]) => any;
|
|
90
|
+
"onRemove-tag"?: (...args: any[]) => any;
|
|
91
|
+
onBlur?: (...args: any[]) => any;
|
|
92
|
+
onFocus?: (...args: any[]) => any;
|
|
93
|
+
}, {
|
|
94
|
+
modelValue: string | number | boolean | Record<string, any> | unknown[];
|
|
95
|
+
column: Record<string, any>;
|
|
96
|
+
disabled: boolean;
|
|
97
|
+
formParams: Record<string, any>;
|
|
98
|
+
}, {}>> & Record<string, any>;
|
|
51
99
|
export declare const NextForm: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
52
100
|
options: {
|
|
53
101
|
type: ObjectConstructor;
|
|
@@ -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;
|