mwl-components 0.1.3 → 0.1.4
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.cjs.js +1 -0
- package/dist/index.es.js +999 -0
- package/dist/index.umd.js +1 -0
- package/dist/mwl-components.css +1 -1
- package/package.json +12 -2
- package/dist/ContentWarp/index.vue.d.ts +0 -21
- package/dist/Dialog/index.vue.d.ts +0 -63
- package/dist/EasyButton/index.vue.d.ts +0 -17
- package/dist/EasyForm/index.vue.d.ts +0 -60
- package/dist/EasyFormH/index.vue.d.ts +0 -623
- package/dist/EasyTable/index.vue.d.ts +0 -124
- package/dist/EasyTableH/index.vue.d.ts +0 -114
- package/dist/EasyTableH/tableColumnItem.vue.d.ts +0 -19
- package/dist/MenuTree/components/index.vue.d.ts +0 -44
- package/dist/MenuTree/components/menuIcon.vue.d.ts +0 -14
- package/dist/MenuTree/components/subMenu.vue.d.ts +0 -18
- package/dist/Pagination/index.vue.d.ts +0 -54
- package/dist/index.d.ts +0 -14
- package/dist/index.js +0 -807
- package/dist/types/index.d.ts +0 -99
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
import { TableColumn, buttonType } from '../types';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
attrs: Partial<{}>;
|
|
5
|
-
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
6
|
-
refs: {
|
|
7
|
-
tableRef: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
rootEl: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
13
|
-
data: {
|
|
14
|
-
type: {
|
|
15
|
-
(arrayLength: number): Record<string, any>[];
|
|
16
|
-
(...items: Record<string, any>[]): Record<string, any>[];
|
|
17
|
-
new (arrayLength: number): Record<string, any>[];
|
|
18
|
-
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
19
|
-
isArray(arg: any): arg is any[];
|
|
20
|
-
readonly prototype: any[];
|
|
21
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
22
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
23
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
24
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
25
|
-
of<T>(...items: T[]): T[];
|
|
26
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
27
|
-
};
|
|
28
|
-
required: true;
|
|
29
|
-
default: () => never[];
|
|
30
|
-
};
|
|
31
|
-
tableColumns: {
|
|
32
|
-
type: PropType<TableColumn[]>;
|
|
33
|
-
default: () => never[];
|
|
34
|
-
};
|
|
35
|
-
buttons: {
|
|
36
|
-
type: PropType<buttonType[]>;
|
|
37
|
-
default: () => never[];
|
|
38
|
-
};
|
|
39
|
-
buttonWidth: {
|
|
40
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
41
|
-
default: number;
|
|
42
|
-
};
|
|
43
|
-
align: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
height: {
|
|
48
|
-
type: NumberConstructor;
|
|
49
|
-
default: undefined;
|
|
50
|
-
};
|
|
51
|
-
maxHeight: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: undefined;
|
|
54
|
-
};
|
|
55
|
-
footerHeight: {
|
|
56
|
-
type: NumberConstructor;
|
|
57
|
-
default: number;
|
|
58
|
-
};
|
|
59
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
60
|
-
data: {
|
|
61
|
-
type: {
|
|
62
|
-
(arrayLength: number): Record<string, any>[];
|
|
63
|
-
(...items: Record<string, any>[]): Record<string, any>[];
|
|
64
|
-
new (arrayLength: number): Record<string, any>[];
|
|
65
|
-
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
66
|
-
isArray(arg: any): arg is any[];
|
|
67
|
-
readonly prototype: any[];
|
|
68
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
69
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
70
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
71
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
72
|
-
of<T>(...items: T[]): T[];
|
|
73
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
74
|
-
};
|
|
75
|
-
required: true;
|
|
76
|
-
default: () => never[];
|
|
77
|
-
};
|
|
78
|
-
tableColumns: {
|
|
79
|
-
type: PropType<TableColumn[]>;
|
|
80
|
-
default: () => never[];
|
|
81
|
-
};
|
|
82
|
-
buttons: {
|
|
83
|
-
type: PropType<buttonType[]>;
|
|
84
|
-
default: () => never[];
|
|
85
|
-
};
|
|
86
|
-
buttonWidth: {
|
|
87
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
88
|
-
default: number;
|
|
89
|
-
};
|
|
90
|
-
align: {
|
|
91
|
-
type: StringConstructor;
|
|
92
|
-
default: string;
|
|
93
|
-
};
|
|
94
|
-
height: {
|
|
95
|
-
type: NumberConstructor;
|
|
96
|
-
default: undefined;
|
|
97
|
-
};
|
|
98
|
-
maxHeight: {
|
|
99
|
-
type: StringConstructor;
|
|
100
|
-
default: undefined;
|
|
101
|
-
};
|
|
102
|
-
footerHeight: {
|
|
103
|
-
type: NumberConstructor;
|
|
104
|
-
default: number;
|
|
105
|
-
};
|
|
106
|
-
}>> & Readonly<{}>, {
|
|
107
|
-
data: Record<string, any>[];
|
|
108
|
-
maxHeight: string;
|
|
109
|
-
height: number;
|
|
110
|
-
align: string;
|
|
111
|
-
tableColumns: TableColumn[];
|
|
112
|
-
buttons: buttonType[];
|
|
113
|
-
buttonWidth: string | number;
|
|
114
|
-
footerHeight: number;
|
|
115
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
116
|
-
tableRef: HTMLDivElement;
|
|
117
|
-
}, HTMLDivElement>;
|
|
118
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
119
|
-
export default _default;
|
|
120
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
121
|
-
new (): {
|
|
122
|
-
$slots: S;
|
|
123
|
-
};
|
|
124
|
-
};
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { TableColumn, buttonType } from '../types';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
5
|
-
refs: {
|
|
6
|
-
tableRef: HTMLDivElement;
|
|
7
|
-
};
|
|
8
|
-
rootEl: HTMLDivElement;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
12
|
-
data: {
|
|
13
|
-
type: {
|
|
14
|
-
(arrayLength: number): Record<string, any>[];
|
|
15
|
-
(...items: Record<string, any>[]): Record<string, any>[];
|
|
16
|
-
new (arrayLength: number): Record<string, any>[];
|
|
17
|
-
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
18
|
-
isArray(arg: any): arg is any[];
|
|
19
|
-
readonly prototype: any[];
|
|
20
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
21
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
22
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
23
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
24
|
-
of<T>(...items: T[]): T[];
|
|
25
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
26
|
-
};
|
|
27
|
-
required: true;
|
|
28
|
-
default: () => never[];
|
|
29
|
-
};
|
|
30
|
-
tableColumns: {
|
|
31
|
-
type: PropType<TableColumn[]>;
|
|
32
|
-
default: () => never[];
|
|
33
|
-
};
|
|
34
|
-
buttons: {
|
|
35
|
-
type: PropType<buttonType[]>;
|
|
36
|
-
default: () => never[];
|
|
37
|
-
};
|
|
38
|
-
buttonWidth: {
|
|
39
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
40
|
-
default: number;
|
|
41
|
-
};
|
|
42
|
-
align: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
height: {
|
|
47
|
-
type: NumberConstructor;
|
|
48
|
-
default: undefined;
|
|
49
|
-
};
|
|
50
|
-
maxHeight: {
|
|
51
|
-
type: StringConstructor;
|
|
52
|
-
default: undefined;
|
|
53
|
-
};
|
|
54
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
55
|
-
data: {
|
|
56
|
-
type: {
|
|
57
|
-
(arrayLength: number): Record<string, any>[];
|
|
58
|
-
(...items: Record<string, any>[]): Record<string, any>[];
|
|
59
|
-
new (arrayLength: number): Record<string, any>[];
|
|
60
|
-
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
61
|
-
isArray(arg: any): arg is any[];
|
|
62
|
-
readonly prototype: any[];
|
|
63
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
64
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
65
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
66
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
67
|
-
of<T>(...items: T[]): T[];
|
|
68
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
69
|
-
};
|
|
70
|
-
required: true;
|
|
71
|
-
default: () => never[];
|
|
72
|
-
};
|
|
73
|
-
tableColumns: {
|
|
74
|
-
type: PropType<TableColumn[]>;
|
|
75
|
-
default: () => never[];
|
|
76
|
-
};
|
|
77
|
-
buttons: {
|
|
78
|
-
type: PropType<buttonType[]>;
|
|
79
|
-
default: () => never[];
|
|
80
|
-
};
|
|
81
|
-
buttonWidth: {
|
|
82
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
83
|
-
default: number;
|
|
84
|
-
};
|
|
85
|
-
align: {
|
|
86
|
-
type: StringConstructor;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
height: {
|
|
90
|
-
type: NumberConstructor;
|
|
91
|
-
default: undefined;
|
|
92
|
-
};
|
|
93
|
-
maxHeight: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
default: undefined;
|
|
96
|
-
};
|
|
97
|
-
}>> & Readonly<{}>, {
|
|
98
|
-
data: Record<string, any>[];
|
|
99
|
-
maxHeight: string;
|
|
100
|
-
height: number;
|
|
101
|
-
align: string;
|
|
102
|
-
tableColumns: TableColumn[];
|
|
103
|
-
buttons: buttonType[];
|
|
104
|
-
buttonWidth: string | number;
|
|
105
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
106
|
-
tableRef: HTMLDivElement;
|
|
107
|
-
}, HTMLDivElement>;
|
|
108
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
109
|
-
export default _default;
|
|
110
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
111
|
-
new (): {
|
|
112
|
-
$slots: S;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { TableColumn } from '../types';
|
|
2
|
-
type __VLS_Props = {
|
|
3
|
-
tableColumn: TableColumn;
|
|
4
|
-
};
|
|
5
|
-
declare function __VLS_template(): {
|
|
6
|
-
attrs: Partial<{}>;
|
|
7
|
-
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
8
|
-
refs: {};
|
|
9
|
-
rootEl: any;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
|
-
export default _default;
|
|
15
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
|
-
new (): {
|
|
17
|
-
$slots: S;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
-
menuList: {
|
|
3
|
-
type: {
|
|
4
|
-
(arrayLength: number): any[];
|
|
5
|
-
(...items: any[]): any[];
|
|
6
|
-
new (arrayLength: number): any[];
|
|
7
|
-
new (...items: any[]): any[];
|
|
8
|
-
isArray(arg: any): arg is any[];
|
|
9
|
-
readonly prototype: any[];
|
|
10
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
11
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
12
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
13
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
14
|
-
of<T>(...items: T[]): T[];
|
|
15
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
16
|
-
};
|
|
17
|
-
default: () => never[];
|
|
18
|
-
};
|
|
19
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
|
-
handleMenuItemClick: (...args: any[]) => void;
|
|
21
|
-
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
22
|
-
menuList: {
|
|
23
|
-
type: {
|
|
24
|
-
(arrayLength: number): any[];
|
|
25
|
-
(...items: any[]): any[];
|
|
26
|
-
new (arrayLength: number): any[];
|
|
27
|
-
new (...items: any[]): any[];
|
|
28
|
-
isArray(arg: any): arg is any[];
|
|
29
|
-
readonly prototype: any[];
|
|
30
|
-
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
31
|
-
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
32
|
-
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
33
|
-
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
-
of<T>(...items: T[]): T[];
|
|
35
|
-
readonly [Symbol.species]: ArrayConstructor;
|
|
36
|
-
};
|
|
37
|
-
default: () => never[];
|
|
38
|
-
};
|
|
39
|
-
}>> & Readonly<{
|
|
40
|
-
onHandleMenuItemClick?: ((...args: any[]) => any) | undefined;
|
|
41
|
-
}>, {
|
|
42
|
-
menuList: any[];
|
|
43
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
44
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
-
icon: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
7
|
-
icon: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
}>> & Readonly<{}>, {
|
|
12
|
-
icon: string;
|
|
13
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
-
export default _default;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
-
routeData: {
|
|
3
|
-
type: ObjectConstructor;
|
|
4
|
-
default: () => {};
|
|
5
|
-
};
|
|
6
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
-
handleMenuItemClick: (...args: any[]) => void;
|
|
8
|
-
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
9
|
-
routeData: {
|
|
10
|
-
type: ObjectConstructor;
|
|
11
|
-
default: () => {};
|
|
12
|
-
};
|
|
13
|
-
}>> & Readonly<{
|
|
14
|
-
onHandleMenuItemClick?: ((...args: any[]) => any) | undefined;
|
|
15
|
-
}>, {
|
|
16
|
-
routeData: Record<string, any>;
|
|
17
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
export default _default;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<globalThis.ExtractPropTypes<{
|
|
2
|
-
total: {
|
|
3
|
-
required: true;
|
|
4
|
-
type: NumberConstructor;
|
|
5
|
-
};
|
|
6
|
-
page: {
|
|
7
|
-
type: NumberConstructor;
|
|
8
|
-
default: number;
|
|
9
|
-
};
|
|
10
|
-
limit: {
|
|
11
|
-
type: NumberConstructor;
|
|
12
|
-
default: number;
|
|
13
|
-
};
|
|
14
|
-
pagerCount: {
|
|
15
|
-
type: NumberConstructor;
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
onPagination: {
|
|
19
|
-
type: FunctionConstructor;
|
|
20
|
-
};
|
|
21
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
-
"update:page": (...args: any[]) => void;
|
|
23
|
-
"update:limit": (...args: any[]) => void;
|
|
24
|
-
pagination: (...args: any[]) => void;
|
|
25
|
-
}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
26
|
-
total: {
|
|
27
|
-
required: true;
|
|
28
|
-
type: NumberConstructor;
|
|
29
|
-
};
|
|
30
|
-
page: {
|
|
31
|
-
type: NumberConstructor;
|
|
32
|
-
default: number;
|
|
33
|
-
};
|
|
34
|
-
limit: {
|
|
35
|
-
type: NumberConstructor;
|
|
36
|
-
default: number;
|
|
37
|
-
};
|
|
38
|
-
pagerCount: {
|
|
39
|
-
type: NumberConstructor;
|
|
40
|
-
default: number;
|
|
41
|
-
};
|
|
42
|
-
onPagination: {
|
|
43
|
-
type: FunctionConstructor;
|
|
44
|
-
};
|
|
45
|
-
}>> & Readonly<{
|
|
46
|
-
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
|
|
47
|
-
"onUpdate:limit"?: ((...args: any[]) => any) | undefined;
|
|
48
|
-
onPagination?: ((...args: any[]) => any) | undefined;
|
|
49
|
-
}>, {
|
|
50
|
-
page: number;
|
|
51
|
-
limit: number;
|
|
52
|
-
pagerCount: number;
|
|
53
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
54
|
-
export default _default;
|
package/dist/index.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { default as EasyButton } from './EasyButton/index.vue';
|
|
2
|
-
import { default as ContentWarp } from './ContentWarp/index.vue';
|
|
3
|
-
import { default as Dialog } from './Dialog/index.vue';
|
|
4
|
-
import { default as EasyForm, componentsMap, getPlaceholder } from './EasyForm/index.vue';
|
|
5
|
-
import { default as EasyTable } from './EasyTable/index.vue';
|
|
6
|
-
import { default as MenuTree } from './MenuTree/components/index.vue';
|
|
7
|
-
import { default as Pagination } from './Pagination/index.vue';
|
|
8
|
-
export { EasyButton, ContentWarp, Dialog, EasyForm, EasyTable, MenuTree, Pagination, componentsMap, getPlaceholder };
|
|
9
|
-
export declare const install: (app: any, options: any) => void;
|
|
10
|
-
declare const _default: {
|
|
11
|
-
install: (app: any, options: any) => void;
|
|
12
|
-
};
|
|
13
|
-
export default _default;
|
|
14
|
-
export type { Options, FormItem, Rule, Placement, TableColumn, buttonType, ComponentMapType, } from './types';
|