@bscomp/ep-ui 0.0.8-beta → 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/ep-ui.js +2159 -2131
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +9 -9
- package/lib/form/index.d.ts +48 -3
- package/lib/form/src/index.vue.d.ts +28 -1
- package/lib/form/src/useHooks.d.ts +3 -0
- package/lib/style.css +1 -1
- package/package.json +2 -2
package/lib/form/index.d.ts
CHANGED
|
@@ -27,11 +27,23 @@ declare const EPForm: ({
|
|
|
27
27
|
required: true;
|
|
28
28
|
default: () => never[];
|
|
29
29
|
};
|
|
30
|
+
valueWidth: {
|
|
31
|
+
type: import('vue').PropType<string>;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
inline: {
|
|
35
|
+
type: import('vue').PropType<boolean>;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
colNum: {
|
|
39
|
+
type: import('vue').PropType<number>;
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
30
42
|
}>> & Readonly<{
|
|
31
43
|
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
32
44
|
}>, {
|
|
33
45
|
resetFields: () => any;
|
|
34
|
-
validate: () => any;
|
|
46
|
+
validate: (fun: any) => any;
|
|
35
47
|
clearValidate: () => any;
|
|
36
48
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
49
|
getRef: (...args: any[]) => void;
|
|
@@ -41,6 +53,9 @@ declare const EPForm: ({
|
|
|
41
53
|
labelWidth: string;
|
|
42
54
|
isShowDefaultPlaceholder: boolean;
|
|
43
55
|
operatorList: any[] | [];
|
|
56
|
+
valueWidth: string;
|
|
57
|
+
inline: boolean;
|
|
58
|
+
colNum: number;
|
|
44
59
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
45
60
|
P: {};
|
|
46
61
|
B: {};
|
|
@@ -76,11 +91,23 @@ declare const EPForm: ({
|
|
|
76
91
|
required: true;
|
|
77
92
|
default: () => never[];
|
|
78
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
|
+
};
|
|
79
106
|
}>> & Readonly<{
|
|
80
107
|
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
81
108
|
}>, {
|
|
82
109
|
resetFields: () => any;
|
|
83
|
-
validate: () => any;
|
|
110
|
+
validate: (fun: any) => any;
|
|
84
111
|
clearValidate: () => any;
|
|
85
112
|
}, {}, {}, {}, {
|
|
86
113
|
formItems: [] | Record<string, any>[];
|
|
@@ -88,6 +115,9 @@ declare const EPForm: ({
|
|
|
88
115
|
labelWidth: string;
|
|
89
116
|
isShowDefaultPlaceholder: boolean;
|
|
90
117
|
operatorList: any[] | [];
|
|
118
|
+
valueWidth: string;
|
|
119
|
+
inline: boolean;
|
|
120
|
+
colNum: number;
|
|
91
121
|
}>;
|
|
92
122
|
__isFragment?: undefined;
|
|
93
123
|
__isTeleport?: undefined;
|
|
@@ -120,11 +150,23 @@ declare const EPForm: ({
|
|
|
120
150
|
required: true;
|
|
121
151
|
default: () => never[];
|
|
122
152
|
};
|
|
153
|
+
valueWidth: {
|
|
154
|
+
type: import('vue').PropType<string>;
|
|
155
|
+
default: string;
|
|
156
|
+
};
|
|
157
|
+
inline: {
|
|
158
|
+
type: import('vue').PropType<boolean>;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
colNum: {
|
|
162
|
+
type: import('vue').PropType<number>;
|
|
163
|
+
default: number;
|
|
164
|
+
};
|
|
123
165
|
}>> & Readonly<{
|
|
124
166
|
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
125
167
|
}>, {
|
|
126
168
|
resetFields: () => any;
|
|
127
|
-
validate: () => any;
|
|
169
|
+
validate: (fun: any) => any;
|
|
128
170
|
clearValidate: () => any;
|
|
129
171
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
130
172
|
getRef: (...args: any[]) => void;
|
|
@@ -134,6 +176,9 @@ declare const EPForm: ({
|
|
|
134
176
|
labelWidth: string;
|
|
135
177
|
isShowDefaultPlaceholder: boolean;
|
|
136
178
|
operatorList: any[] | [];
|
|
179
|
+
valueWidth: string;
|
|
180
|
+
inline: boolean;
|
|
181
|
+
colNum: number;
|
|
137
182
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
138
183
|
$slots: Partial<Record<any, (_: {
|
|
139
184
|
scope: any;
|
|
@@ -26,9 +26,21 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
26
26
|
required: true;
|
|
27
27
|
default: () => never[];
|
|
28
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>;
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
29
41
|
}>, {
|
|
30
42
|
resetFields: () => any;
|
|
31
|
-
validate: () => any;
|
|
43
|
+
validate: (fun: any) => any;
|
|
32
44
|
clearValidate: () => any;
|
|
33
45
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
46
|
getRef: (...args: any[]) => void;
|
|
@@ -60,6 +72,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
60
72
|
required: true;
|
|
61
73
|
default: () => never[];
|
|
62
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
|
+
};
|
|
63
87
|
}>> & Readonly<{
|
|
64
88
|
onGetRef?: ((...args: any[]) => any) | undefined;
|
|
65
89
|
}>, {
|
|
@@ -68,6 +92,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
68
92
|
labelWidth: string;
|
|
69
93
|
isShowDefaultPlaceholder: boolean;
|
|
70
94
|
operatorList: any[] | [];
|
|
95
|
+
valueWidth: string;
|
|
96
|
+
inline: boolean;
|
|
97
|
+
colNum: number;
|
|
71
98
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<any, (_: {
|
|
72
99
|
scope: any;
|
|
73
100
|
}) => any>> & Partial<Record<any, (_: {
|
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}.e-p-form{display:flex;flex-
|
|
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}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bscomp/ep-ui",
|
|
3
|
-
"version": "0.0.8
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Vue3 中基于Element-plus二次封装基础组件文档",
|
|
5
5
|
"author": "bishang",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"docs:preview": "vitepress preview docs"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@bscomp/ep-ui": "^0.0.
|
|
30
|
+
"@bscomp/ep-ui": "^0.0.8-beta",
|
|
31
31
|
"@element-plus/icons-vue": "^2.0.10",
|
|
32
32
|
"@rollup/plugin-replace": "^6.0.1",
|
|
33
33
|
"@rollup/plugin-terser": "^0.4.4",
|