@bscomp/ep-ui 0.0.7 → 0.0.8-beta
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/lib/date-picker/index.d.ts +3 -60
- package/lib/date-picker/src/index.vue.d.ts +1 -35
- package/lib/ep-ui.js +5668 -6346
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +16 -16
- package/lib/form/index.d.ts +92 -66
- package/lib/form/src/index.vue.d.ts +52 -55
- package/lib/form/src/useHooks.d.ts +4 -0
- package/lib/index.d.ts +3 -2
- package/lib/style.css +1 -1
- package/lib/table/src/RowEdit.vue.d.ts +3 -3
- package/lib/utils.d.ts +6 -0
- package/package.json +4 -2
- package/lib/form/src/renderComp.vue.d.ts +0 -8
- /package/lib/form/src/{renderBtn.vue.d.ts → CustomRender.vue.d.ts} +0 -0
package/lib/form/index.d.ts
CHANGED
|
@@ -1,38 +1,46 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const EPForm: ({
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
modelValue: import('vue').PropType<any>;
|
|
4
|
+
btnSlotName: {
|
|
5
|
+
type: import('vue').PropType<string>;
|
|
5
6
|
};
|
|
6
|
-
|
|
7
|
-
type:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
widthSize: {
|
|
11
|
-
type: import('vue').PropType<1 | 2 | 3 | 4 | 5 | 6>;
|
|
12
|
-
validator: (value: number) => boolean;
|
|
13
|
-
default: number;
|
|
7
|
+
formItems: {
|
|
8
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
9
|
+
required: true;
|
|
10
|
+
default: () => never[];
|
|
14
11
|
};
|
|
15
12
|
labelPosition: {
|
|
16
13
|
type: import('vue').PropType<"top" | "right" | "left">;
|
|
17
14
|
default: string;
|
|
18
15
|
};
|
|
19
|
-
|
|
20
|
-
type:
|
|
16
|
+
labelWidth: {
|
|
17
|
+
type: import('vue').PropType<string>;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
isShowDefaultPlaceholder: {
|
|
21
|
+
type: import('vue').PropType<boolean>;
|
|
22
|
+
required: true;
|
|
21
23
|
default: boolean;
|
|
22
24
|
};
|
|
25
|
+
operatorList: {
|
|
26
|
+
type: import('vue').PropType<any[] | []>;
|
|
27
|
+
required: true;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
23
30
|
}>> & Readonly<{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
resetFields: () => any;
|
|
34
|
+
validate: () => any;
|
|
35
|
+
clearValidate: () => any;
|
|
36
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
getRef: (...args: any[]) => void;
|
|
31
38
|
}, import('vue').PublicProps, {
|
|
32
|
-
|
|
33
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
39
|
+
formItems: [] | Record<string, any>[];
|
|
34
40
|
labelPosition: "top" | "right" | "left";
|
|
35
|
-
|
|
41
|
+
labelWidth: string;
|
|
42
|
+
isShowDefaultPlaceholder: boolean;
|
|
43
|
+
operatorList: any[] | [];
|
|
36
44
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
37
45
|
P: {};
|
|
38
46
|
B: {};
|
|
@@ -41,78 +49,96 @@ declare const TForm: ({
|
|
|
41
49
|
M: {};
|
|
42
50
|
Defaults: {};
|
|
43
51
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
formOpts: {
|
|
48
|
-
type: ObjectConstructor;
|
|
49
|
-
default: () => {};
|
|
52
|
+
modelValue: import('vue').PropType<any>;
|
|
53
|
+
btnSlotName: {
|
|
54
|
+
type: import('vue').PropType<string>;
|
|
50
55
|
};
|
|
51
|
-
|
|
52
|
-
type: import('vue').PropType<
|
|
53
|
-
|
|
54
|
-
default:
|
|
56
|
+
formItems: {
|
|
57
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
58
|
+
required: true;
|
|
59
|
+
default: () => never[];
|
|
55
60
|
};
|
|
56
61
|
labelPosition: {
|
|
57
62
|
type: import('vue').PropType<"top" | "right" | "left">;
|
|
58
63
|
default: string;
|
|
59
64
|
};
|
|
60
|
-
|
|
61
|
-
type:
|
|
65
|
+
labelWidth: {
|
|
66
|
+
type: import('vue').PropType<string>;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
isShowDefaultPlaceholder: {
|
|
70
|
+
type: import('vue').PropType<boolean>;
|
|
71
|
+
required: true;
|
|
62
72
|
default: boolean;
|
|
63
73
|
};
|
|
74
|
+
operatorList: {
|
|
75
|
+
type: import('vue').PropType<any[] | []>;
|
|
76
|
+
required: true;
|
|
77
|
+
default: () => never[];
|
|
78
|
+
};
|
|
64
79
|
}>> & Readonly<{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
80
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
81
|
+
}>, {
|
|
82
|
+
resetFields: () => any;
|
|
83
|
+
validate: () => any;
|
|
84
|
+
clearValidate: () => any;
|
|
85
|
+
}, {}, {}, {}, {
|
|
86
|
+
formItems: [] | Record<string, any>[];
|
|
71
87
|
labelPosition: "top" | "right" | "left";
|
|
72
|
-
|
|
88
|
+
labelWidth: string;
|
|
89
|
+
isShowDefaultPlaceholder: boolean;
|
|
90
|
+
operatorList: any[] | [];
|
|
73
91
|
}>;
|
|
74
92
|
__isFragment?: undefined;
|
|
75
93
|
__isTeleport?: undefined;
|
|
76
94
|
__isSuspense?: undefined;
|
|
77
95
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
formOpts: {
|
|
82
|
-
type: ObjectConstructor;
|
|
83
|
-
default: () => {};
|
|
96
|
+
modelValue: import('vue').PropType<any>;
|
|
97
|
+
btnSlotName: {
|
|
98
|
+
type: import('vue').PropType<string>;
|
|
84
99
|
};
|
|
85
|
-
|
|
86
|
-
type: import('vue').PropType<
|
|
87
|
-
|
|
88
|
-
default:
|
|
100
|
+
formItems: {
|
|
101
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
102
|
+
required: true;
|
|
103
|
+
default: () => never[];
|
|
89
104
|
};
|
|
90
105
|
labelPosition: {
|
|
91
106
|
type: import('vue').PropType<"top" | "right" | "left">;
|
|
92
107
|
default: string;
|
|
93
108
|
};
|
|
94
|
-
|
|
95
|
-
type:
|
|
109
|
+
labelWidth: {
|
|
110
|
+
type: import('vue').PropType<string>;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
isShowDefaultPlaceholder: {
|
|
114
|
+
type: import('vue').PropType<boolean>;
|
|
115
|
+
required: true;
|
|
96
116
|
default: boolean;
|
|
97
117
|
};
|
|
118
|
+
operatorList: {
|
|
119
|
+
type: import('vue').PropType<any[] | []>;
|
|
120
|
+
required: true;
|
|
121
|
+
default: () => never[];
|
|
122
|
+
};
|
|
98
123
|
}>> & Readonly<{
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
124
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
125
|
+
}>, {
|
|
126
|
+
resetFields: () => any;
|
|
127
|
+
validate: () => any;
|
|
128
|
+
clearValidate: () => any;
|
|
129
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
130
|
+
getRef: (...args: any[]) => void;
|
|
106
131
|
}, string, {
|
|
107
|
-
|
|
108
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
132
|
+
formItems: [] | Record<string, any>[];
|
|
109
133
|
labelPosition: "top" | "right" | "left";
|
|
110
|
-
|
|
134
|
+
labelWidth: string;
|
|
135
|
+
isShowDefaultPlaceholder: boolean;
|
|
136
|
+
operatorList: any[] | [];
|
|
111
137
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
112
138
|
$slots: Partial<Record<any, (_: {
|
|
113
139
|
scope: any;
|
|
114
140
|
}) => any>> & Partial<Record<any, (_: {
|
|
115
141
|
scope: any;
|
|
116
|
-
}) => any>> & Partial<Record<
|
|
142
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>>;
|
|
117
143
|
}) & import('vue').Plugin<any[]>) & Record<string, any>;
|
|
118
|
-
export default
|
|
144
|
+
export default EPForm;
|
|
@@ -1,81 +1,78 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
1
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
modelValue: import('vue').PropType<any>;
|
|
3
|
+
btnSlotName: {
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
6
5
|
};
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
* operatorList Array 操作按钮list
|
|
12
|
-
* listTypeInfo object 下拉选项数据
|
|
13
|
-
* labelWidth String label宽度
|
|
14
|
-
*/
|
|
15
|
-
formOpts: {
|
|
16
|
-
type: ObjectConstructor;
|
|
17
|
-
default: () => {};
|
|
18
|
-
};
|
|
19
|
-
widthSize: {
|
|
20
|
-
type: PropType<1 | 2 | 3 | 4 | 5 | 6>;
|
|
21
|
-
validator: (value: number) => boolean;
|
|
22
|
-
default: number;
|
|
6
|
+
formItems: {
|
|
7
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
8
|
+
required: true;
|
|
9
|
+
default: () => never[];
|
|
23
10
|
};
|
|
24
11
|
labelPosition: {
|
|
25
|
-
type: PropType<"top" | "right" | "left">;
|
|
12
|
+
type: import('vue').PropType<"top" | "right" | "left">;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
labelWidth: {
|
|
16
|
+
type: import('vue').PropType<string>;
|
|
26
17
|
default: string;
|
|
27
18
|
};
|
|
28
|
-
|
|
29
|
-
type:
|
|
19
|
+
isShowDefaultPlaceholder: {
|
|
20
|
+
type: import('vue').PropType<boolean>;
|
|
21
|
+
required: true;
|
|
30
22
|
default: boolean;
|
|
31
23
|
};
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
className: {
|
|
38
|
-
type: StringConstructor;
|
|
24
|
+
operatorList: {
|
|
25
|
+
type: import('vue').PropType<any[] | []>;
|
|
26
|
+
required: true;
|
|
27
|
+
default: () => never[];
|
|
39
28
|
};
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
type:
|
|
50
|
-
default: () => {};
|
|
29
|
+
}>, {
|
|
30
|
+
resetFields: () => any;
|
|
31
|
+
validate: () => any;
|
|
32
|
+
clearValidate: () => any;
|
|
33
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
|
+
getRef: (...args: any[]) => void;
|
|
35
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
36
|
+
modelValue: import('vue').PropType<any>;
|
|
37
|
+
btnSlotName: {
|
|
38
|
+
type: import('vue').PropType<string>;
|
|
51
39
|
};
|
|
52
|
-
|
|
53
|
-
type: PropType<
|
|
54
|
-
|
|
55
|
-
default:
|
|
40
|
+
formItems: {
|
|
41
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
42
|
+
required: true;
|
|
43
|
+
default: () => never[];
|
|
56
44
|
};
|
|
57
45
|
labelPosition: {
|
|
58
|
-
type: PropType<"top" | "right" | "left">;
|
|
46
|
+
type: import('vue').PropType<"top" | "right" | "left">;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
labelWidth: {
|
|
50
|
+
type: import('vue').PropType<string>;
|
|
59
51
|
default: string;
|
|
60
52
|
};
|
|
61
|
-
|
|
62
|
-
type:
|
|
53
|
+
isShowDefaultPlaceholder: {
|
|
54
|
+
type: import('vue').PropType<boolean>;
|
|
55
|
+
required: true;
|
|
63
56
|
default: boolean;
|
|
64
57
|
};
|
|
58
|
+
operatorList: {
|
|
59
|
+
type: import('vue').PropType<any[] | []>;
|
|
60
|
+
required: true;
|
|
61
|
+
default: () => never[];
|
|
62
|
+
};
|
|
65
63
|
}>> & Readonly<{
|
|
66
|
-
|
|
67
|
-
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
68
|
-
onGetRefs?: ((...args: any[]) => any) | undefined;
|
|
64
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
69
65
|
}>, {
|
|
70
|
-
|
|
71
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
66
|
+
formItems: [] | Record<string, any>[];
|
|
72
67
|
labelPosition: "top" | "right" | "left";
|
|
73
|
-
|
|
68
|
+
labelWidth: string;
|
|
69
|
+
isShowDefaultPlaceholder: boolean;
|
|
70
|
+
operatorList: any[] | [];
|
|
74
71
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<any, (_: {
|
|
75
72
|
scope: any;
|
|
76
73
|
}) => any>> & Partial<Record<any, (_: {
|
|
77
74
|
scope: any;
|
|
78
|
-
}) => any>> & Partial<Record<
|
|
75
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>>>;
|
|
79
76
|
export default _default;
|
|
80
77
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
81
78
|
new (): {
|
package/lib/index.d.ts
CHANGED
|
@@ -3,11 +3,12 @@ import { default as EPInput } from './input';
|
|
|
3
3
|
import { default as EPCheckbox } from './checkbox';
|
|
4
4
|
import { default as EPButton } from './button';
|
|
5
5
|
import { default as EPTable } from './table';
|
|
6
|
-
import { default as
|
|
6
|
+
import { default as EPForm } from './form';
|
|
7
7
|
import { default as EPDatePicker } from './date-picker';
|
|
8
8
|
import { default as EPRadio } from './radio';
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
import * as tools from "./utils";
|
|
11
|
+
export { EPTable, EPForm, EPSelect, EPButton, EPDatePicker, EPRadio, EPCheckbox, EPInput, tools };
|
|
11
12
|
declare const _default: {
|
|
12
13
|
install: any;
|
|
13
14
|
};
|
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-p-select .el-select-dropdown .all-checkbox[data-v-9867f523]{margin-left:20px}.column_set .el-dropdown-menu{padding:0;font-size:14px}.column_set .el-dropdown-menu .el-dropdown-menu__item{display:flex;flex-direction:column;align-items:flex-start}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown{display:flex;flex-direction:column;max-height:300px;overflow-y:auto;gap:10px}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label{cursor:move;color:var(--el-text-color-primary)}div[data-v-f89568d3]{box-sizing:border-box}.e-p-table[data-v-f89568d3]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-f89568d3]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box}.e-p-table .table-content .header-wapper[data-v-f89568d3]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-f89568d3],.e-p-table .table-content .header[data-v-f89568d3]{padding-bottom:16px}.e-p-table .el-pagination-com[data-v-f89568d3]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-f89568d3]{display:flex;justify-content:space-between;align-items:center}.e-p-table .radioStyle[data-v-f89568d3] tbody .el-table__row{cursor:pointer}.
|
|
1
|
+
.e-p-select .el-select-dropdown .all-checkbox[data-v-9867f523]{margin-left:20px}.column_set .el-dropdown-menu{padding:0;font-size:14px}.column_set .el-dropdown-menu .el-dropdown-menu__item{display:flex;flex-direction:column;align-items:flex-start}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown{display:flex;flex-direction:column;max-height:300px;overflow-y:auto;gap:10px}.column_set .el-dropdown-menu .el-dropdown-menu__item .t_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label{cursor:move;color:var(--el-text-color-primary)}div[data-v-f89568d3]{box-sizing:border-box}.e-p-table[data-v-f89568d3]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-f89568d3]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box}.e-p-table .table-content .header-wapper[data-v-f89568d3]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-f89568d3],.e-p-table .table-content .header[data-v-f89568d3]{padding-bottom:16px}.e-p-table .el-pagination-com[data-v-f89568d3]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-f89568d3]{display:flex;justify-content:space-between;align-items:center}.e-p-table .radioStyle[data-v-f89568d3] tbody .el-table__row{cursor:pointer}.e-p-form{display:flex;flex-wrap:wrap}.e-p-form .el-form-item{align-items:center}.e-p-form .el-form-item .el-form-item__content .el-input,.e-p-form .el-form-item .el-form-item__content .el-select,.e-p-form .el-form-item .el-form-item__content .el-date-editor,.e-p-form .el-form-item .el-form-item__content .el-textarea{width:100%}.e-p-form .el-form-item .el-form-item__content .el-input-number .el-input{width:inherit}.e-p-form .asterisk-left .el-form-item__label{margin-left:5px}.e-p-form .t-margin-top-5{margin-top:5px}.e-p-form .el-input-number .el-input .el-input__inner{text-align:left}.e-p-form .render_label .el-form-item__label{display:flex;align-items:center;justify-content:flex-end}.e-p-form .render_laber_position_left .el-form-item__label,.e-p-form.el-form--label-top .render_label .el-form-item__label{justify-content:flex-start}.e-p-form .label_render{display:flex;align-items:center;justify-content:flex-end}.e-p-form .text_show{color:var(--el-text-color-primary)}.e-p-form .slot_label .el-form-item__content label{color:var(--el-text-color-primary);margin-right:12px}.e-p-form .flex-box{display:-webkit-box;display:-webkit-flex;display:flex}.e-p-form .flex-ver{align-items:center;justify-content:center}.e-p-form .footer_btn{width:100%}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
modelValue: import('vue').PropType<any>;
|
|
3
3
|
type: {
|
|
4
|
-
type: import('vue').PropType<"input" | "select" | "
|
|
4
|
+
type: import('vue').PropType<"input" | "select" | "custom" | "radio" | "date-picker">;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
7
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
8
8
|
modelValue: import('vue').PropType<any>;
|
|
9
9
|
type: {
|
|
10
|
-
type: import('vue').PropType<"input" | "select" | "
|
|
10
|
+
type: import('vue').PropType<"input" | "select" | "custom" | "radio" | "date-picker">;
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
13
|
}>> & Readonly<{}>, {
|
|
14
|
-
type: "input" | "select" | "
|
|
14
|
+
type: "input" | "select" | "custom" | "radio" | "date-picker";
|
|
15
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
export default _default;
|
package/lib/utils.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bscomp/ep-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8-beta",
|
|
4
4
|
"description": "Vue3 中基于Element-plus二次封装基础组件文档",
|
|
5
5
|
"author": "bishang",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,9 +23,11 @@
|
|
|
23
23
|
"prettier": "prettier --write \"packages/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
|
|
24
24
|
"docs:prettier": "prettier --write \"docs/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
|
|
25
25
|
"docs:dev": "vitepress dev docs",
|
|
26
|
-
"docs:build": "vitepress build docs"
|
|
26
|
+
"docs:build": "vitepress build docs",
|
|
27
|
+
"docs:preview": "vitepress preview docs"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
30
|
+
"@bscomp/ep-ui": "^0.0.7",
|
|
29
31
|
"@element-plus/icons-vue": "^2.0.10",
|
|
30
32
|
"@rollup/plugin-replace": "^6.0.1",
|
|
31
33
|
"@rollup/plugin-terser": "^0.4.4",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
-
render: FunctionConstructor;
|
|
3
|
-
item: ObjectConstructor;
|
|
4
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
5
|
-
render: FunctionConstructor;
|
|
6
|
-
item: ObjectConstructor;
|
|
7
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
|
-
export default _default;
|
|
File without changes
|