@bscomp/ep-ui 0.0.7 → 0.0.8
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 +5610 -6260
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +16 -16
- package/lib/form/index.d.ts +137 -66
- package/lib/form/src/index.vue.d.ts +81 -57
- package/lib/form/src/useHooks.d.ts +7 -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,61 @@
|
|
|
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;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
operatorList: {
|
|
26
|
+
type: import('vue').PropType<any[] | []>;
|
|
27
|
+
required: true;
|
|
28
|
+
default: () => never[];
|
|
29
|
+
};
|
|
30
|
+
valueWidth: {
|
|
31
|
+
type: import('vue').PropType<string>;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
inline: {
|
|
35
|
+
type: import('vue').PropType<boolean>;
|
|
21
36
|
default: boolean;
|
|
22
37
|
};
|
|
38
|
+
colNum: {
|
|
39
|
+
type: import('vue').PropType<number>;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
23
42
|
}>> & Readonly<{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
43
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
}>, {
|
|
45
|
+
resetFields: () => any;
|
|
46
|
+
validate: (fun: any) => any;
|
|
47
|
+
clearValidate: () => any;
|
|
48
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
|
+
getRef: (...args: any[]) => void;
|
|
31
50
|
}, import('vue').PublicProps, {
|
|
32
|
-
|
|
33
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
51
|
+
formItems: [] | Record<string, any>[];
|
|
34
52
|
labelPosition: "top" | "right" | "left";
|
|
35
|
-
|
|
53
|
+
labelWidth: string;
|
|
54
|
+
isShowDefaultPlaceholder: boolean;
|
|
55
|
+
operatorList: any[] | [];
|
|
56
|
+
valueWidth: string;
|
|
57
|
+
inline: boolean;
|
|
58
|
+
colNum: number;
|
|
36
59
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
37
60
|
P: {};
|
|
38
61
|
B: {};
|
|
@@ -41,78 +64,126 @@ declare const TForm: ({
|
|
|
41
64
|
M: {};
|
|
42
65
|
Defaults: {};
|
|
43
66
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
44
|
-
|
|
45
|
-
|
|
67
|
+
modelValue: import('vue').PropType<any>;
|
|
68
|
+
btnSlotName: {
|
|
69
|
+
type: import('vue').PropType<string>;
|
|
46
70
|
};
|
|
47
|
-
|
|
48
|
-
type:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
widthSize: {
|
|
52
|
-
type: import('vue').PropType<1 | 2 | 3 | 4 | 5 | 6>;
|
|
53
|
-
validator: (value: number) => boolean;
|
|
54
|
-
default: number;
|
|
71
|
+
formItems: {
|
|
72
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
73
|
+
required: true;
|
|
74
|
+
default: () => never[];
|
|
55
75
|
};
|
|
56
76
|
labelPosition: {
|
|
57
77
|
type: import('vue').PropType<"top" | "right" | "left">;
|
|
58
78
|
default: string;
|
|
59
79
|
};
|
|
60
|
-
|
|
61
|
-
type:
|
|
80
|
+
labelWidth: {
|
|
81
|
+
type: import('vue').PropType<string>;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
isShowDefaultPlaceholder: {
|
|
85
|
+
type: import('vue').PropType<boolean>;
|
|
86
|
+
required: true;
|
|
62
87
|
default: boolean;
|
|
63
88
|
};
|
|
89
|
+
operatorList: {
|
|
90
|
+
type: import('vue').PropType<any[] | []>;
|
|
91
|
+
required: true;
|
|
92
|
+
default: () => never[];
|
|
93
|
+
};
|
|
94
|
+
valueWidth: {
|
|
95
|
+
type: import('vue').PropType<string>;
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
inline: {
|
|
99
|
+
type: import('vue').PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
102
|
+
colNum: {
|
|
103
|
+
type: import('vue').PropType<number>;
|
|
104
|
+
default: number;
|
|
105
|
+
};
|
|
64
106
|
}>> & Readonly<{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
107
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
108
|
+
}>, {
|
|
109
|
+
resetFields: () => any;
|
|
110
|
+
validate: (fun: any) => any;
|
|
111
|
+
clearValidate: () => any;
|
|
112
|
+
}, {}, {}, {}, {
|
|
113
|
+
formItems: [] | Record<string, any>[];
|
|
71
114
|
labelPosition: "top" | "right" | "left";
|
|
72
|
-
|
|
115
|
+
labelWidth: string;
|
|
116
|
+
isShowDefaultPlaceholder: boolean;
|
|
117
|
+
operatorList: any[] | [];
|
|
118
|
+
valueWidth: string;
|
|
119
|
+
inline: boolean;
|
|
120
|
+
colNum: number;
|
|
73
121
|
}>;
|
|
74
122
|
__isFragment?: undefined;
|
|
75
123
|
__isTeleport?: undefined;
|
|
76
124
|
__isSuspense?: undefined;
|
|
77
125
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
formOpts: {
|
|
82
|
-
type: ObjectConstructor;
|
|
83
|
-
default: () => {};
|
|
126
|
+
modelValue: import('vue').PropType<any>;
|
|
127
|
+
btnSlotName: {
|
|
128
|
+
type: import('vue').PropType<string>;
|
|
84
129
|
};
|
|
85
|
-
|
|
86
|
-
type: import('vue').PropType<
|
|
87
|
-
|
|
88
|
-
default:
|
|
130
|
+
formItems: {
|
|
131
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
132
|
+
required: true;
|
|
133
|
+
default: () => never[];
|
|
89
134
|
};
|
|
90
135
|
labelPosition: {
|
|
91
136
|
type: import('vue').PropType<"top" | "right" | "left">;
|
|
92
137
|
default: string;
|
|
93
138
|
};
|
|
94
|
-
|
|
95
|
-
type:
|
|
139
|
+
labelWidth: {
|
|
140
|
+
type: import('vue').PropType<string>;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
isShowDefaultPlaceholder: {
|
|
144
|
+
type: import('vue').PropType<boolean>;
|
|
145
|
+
required: true;
|
|
146
|
+
default: boolean;
|
|
147
|
+
};
|
|
148
|
+
operatorList: {
|
|
149
|
+
type: import('vue').PropType<any[] | []>;
|
|
150
|
+
required: true;
|
|
151
|
+
default: () => never[];
|
|
152
|
+
};
|
|
153
|
+
valueWidth: {
|
|
154
|
+
type: import('vue').PropType<string>;
|
|
155
|
+
default: string;
|
|
156
|
+
};
|
|
157
|
+
inline: {
|
|
158
|
+
type: import('vue').PropType<boolean>;
|
|
96
159
|
default: boolean;
|
|
97
160
|
};
|
|
161
|
+
colNum: {
|
|
162
|
+
type: import('vue').PropType<number>;
|
|
163
|
+
default: number;
|
|
164
|
+
};
|
|
98
165
|
}>> & Readonly<{
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
166
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
167
|
+
}>, {
|
|
168
|
+
resetFields: () => any;
|
|
169
|
+
validate: (fun: any) => any;
|
|
170
|
+
clearValidate: () => any;
|
|
171
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
172
|
+
getRef: (...args: any[]) => void;
|
|
106
173
|
}, string, {
|
|
107
|
-
|
|
108
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
174
|
+
formItems: [] | Record<string, any>[];
|
|
109
175
|
labelPosition: "top" | "right" | "left";
|
|
110
|
-
|
|
176
|
+
labelWidth: string;
|
|
177
|
+
isShowDefaultPlaceholder: boolean;
|
|
178
|
+
operatorList: any[] | [];
|
|
179
|
+
valueWidth: string;
|
|
180
|
+
inline: boolean;
|
|
181
|
+
colNum: number;
|
|
111
182
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
112
183
|
$slots: Partial<Record<any, (_: {
|
|
113
184
|
scope: any;
|
|
114
185
|
}) => any>> & Partial<Record<any, (_: {
|
|
115
186
|
scope: any;
|
|
116
|
-
}) => any>> & Partial<Record<
|
|
187
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>>;
|
|
117
188
|
}) & import('vue').Plugin<any[]>) & Record<string, any>;
|
|
118
|
-
export default
|
|
189
|
+
export default EPForm;
|
|
@@ -1,81 +1,105 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
1
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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;
|
|
2
|
+
modelValue: import('vue').PropType<any>;
|
|
3
|
+
btnSlotName: {
|
|
4
|
+
type: import('vue').PropType<string>;
|
|
5
|
+
};
|
|
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
|
-
}
|
|
37
|
-
|
|
38
|
-
type:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
*/
|
|
48
|
-
formOpts: {
|
|
49
|
-
type: ObjectConstructor;
|
|
50
|
-
default: () => {};
|
|
51
|
-
};
|
|
52
|
-
widthSize: {
|
|
53
|
-
type: PropType<1 | 2 | 3 | 4 | 5 | 6>;
|
|
54
|
-
validator: (value: number) => boolean;
|
|
24
|
+
operatorList: {
|
|
25
|
+
type: import('vue').PropType<any[] | []>;
|
|
26
|
+
required: true;
|
|
27
|
+
default: () => never[];
|
|
28
|
+
};
|
|
29
|
+
valueWidth: {
|
|
30
|
+
type: import('vue').PropType<string>;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
inline: {
|
|
34
|
+
type: import('vue').PropType<boolean>;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
colNum: {
|
|
38
|
+
type: import('vue').PropType<number>;
|
|
55
39
|
default: number;
|
|
56
40
|
};
|
|
41
|
+
}>, {
|
|
42
|
+
resetFields: () => any;
|
|
43
|
+
validate: (fun: any) => any;
|
|
44
|
+
clearValidate: () => any;
|
|
45
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
|
+
getRef: (...args: any[]) => void;
|
|
47
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
modelValue: import('vue').PropType<any>;
|
|
49
|
+
btnSlotName: {
|
|
50
|
+
type: import('vue').PropType<string>;
|
|
51
|
+
};
|
|
52
|
+
formItems: {
|
|
53
|
+
type: import('vue').PropType<[] | Record<string, any>[]>;
|
|
54
|
+
required: true;
|
|
55
|
+
default: () => never[];
|
|
56
|
+
};
|
|
57
57
|
labelPosition: {
|
|
58
|
-
type: PropType<"top" | "right" | "left">;
|
|
58
|
+
type: import('vue').PropType<"top" | "right" | "left">;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
labelWidth: {
|
|
62
|
+
type: import('vue').PropType<string>;
|
|
59
63
|
default: string;
|
|
60
64
|
};
|
|
61
|
-
|
|
62
|
-
type:
|
|
65
|
+
isShowDefaultPlaceholder: {
|
|
66
|
+
type: import('vue').PropType<boolean>;
|
|
67
|
+
required: true;
|
|
63
68
|
default: boolean;
|
|
64
69
|
};
|
|
70
|
+
operatorList: {
|
|
71
|
+
type: import('vue').PropType<any[] | []>;
|
|
72
|
+
required: true;
|
|
73
|
+
default: () => never[];
|
|
74
|
+
};
|
|
75
|
+
valueWidth: {
|
|
76
|
+
type: import('vue').PropType<string>;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
inline: {
|
|
80
|
+
type: import('vue').PropType<boolean>;
|
|
81
|
+
default: boolean;
|
|
82
|
+
};
|
|
83
|
+
colNum: {
|
|
84
|
+
type: import('vue').PropType<number>;
|
|
85
|
+
default: number;
|
|
86
|
+
};
|
|
65
87
|
}>> & Readonly<{
|
|
66
|
-
|
|
67
|
-
onHandleEvent?: ((...args: any[]) => any) | undefined;
|
|
68
|
-
onGetRefs?: ((...args: any[]) => any) | undefined;
|
|
88
|
+
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
69
89
|
}>, {
|
|
70
|
-
|
|
71
|
-
widthSize: 1 | 2 | 3 | 4 | 5 | 6;
|
|
90
|
+
formItems: [] | Record<string, any>[];
|
|
72
91
|
labelPosition: "top" | "right" | "left";
|
|
73
|
-
|
|
92
|
+
labelWidth: string;
|
|
93
|
+
isShowDefaultPlaceholder: boolean;
|
|
94
|
+
operatorList: any[] | [];
|
|
95
|
+
valueWidth: string;
|
|
96
|
+
inline: boolean;
|
|
97
|
+
colNum: number;
|
|
74
98
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<any, (_: {
|
|
75
99
|
scope: any;
|
|
76
100
|
}) => any>> & Partial<Record<any, (_: {
|
|
77
101
|
scope: any;
|
|
78
|
-
}) => any>> & Partial<Record<
|
|
102
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>>>;
|
|
79
103
|
export default _default;
|
|
80
104
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
81
105
|
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-direction:column;justify-content:space-between;height:100%}.e-p-form .inline-flex{display:flex;flex-wrap:wrap}.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 .footer{width:100%;display:flex;align-items:center;justify-content:center}
|
|
@@ -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",
|
|
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.8-beta",
|
|
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
|