@bscomp/ep-ui 0.1.4 → 0.1.6
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 +4210 -3456
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +13 -13
- package/lib/img/favicon.ico +0 -0
- package/lib/style.css +1 -1
- package/lib/table/index.d.ts +42 -0
- package/lib/table/src/ColumnSet.vue.d.ts +9 -2
- package/lib/table/src/index.vue.d.ts +27 -0
- package/package.json +1 -1
- package/lib/favicon.ico +0 -0
|
Binary file
|
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-p-select .all-checkbox[data-v-174adf96]{margin-left:20px}.column_set .
|
|
1
|
+
.e-p-select .all-checkbox[data-v-174adf96]{margin-left:20px}.column_set .ep_table_column_setting_dropdown{font-size:14px;display:flex;flex-direction:column;max-height:450px;overflow-y:auto}.column_set .ep_table_column_setting_dropdown .item{padding:0 16px}.column_set .ep_table_column_setting_dropdown .item:hover{background-color:#ecf5ff}.column_set .ep_table_column_setting_dropdown .footer{box-sizing:border-box;padding-top:6px;border-top:1px solid #dcdfe6}.column_set .ep_table_column_setting_dropdown .footer:hover{border-top:1px solid #dcdfe6}.column_set .ep_table_column_setting_dropdown .footer .el-button{border-radius:none}.column_set .ep_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label,.column_set .ep_table_column_setting_dropdown .el-checkbox .ep-checkbox__input.is-checked+.ep-checkbox__label{cursor:move}div[data-v-23839a60]{box-sizing:border-box}.e-p-table[data-v-23839a60]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-23839a60]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box}.e-p-table .table-content .header-wapper[data-v-23839a60]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-23839a60],.e-p-table .table-content .header[data-v-23839a60]{padding-bottom:16px}.e-p-table .el-pagination-com[data-v-23839a60]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-23839a60]{display:flex;justify-content:space-between;align-items:center}.e-p-table .radioStyle[data-v-23839a60] tbody .el-table__row{cursor:pointer}.btn-wrapper[data-v-23839a60],.input-content[data-v-23839a60]{display:flex;gap:8px}.btn-wrapper[data-v-23839a60] .el-button+.el-button,.input-content[data-v-23839a60] .el-button+.el-button{margin-left:0!important}.e-p-form-wrapper:not(.inline-flex-form){display:flex;flex-direction:column;justify-content:space-between;height:100%}.e-p-form-wrapper:not(.inline-flex-form) .inline-flex{display:flex}.e-p-form-wrapper:not(.inline-flex-form) .text_show{color:var(--el-text-color-primary)}.e-p-form-wrapper:not(.inline-flex-form) .slot_label .el-form-item__content label{color:var(--el-text-color-primary);margin-right:12px}.e-p-form-wrapper:not(.inline-flex-form) .footer{width:100%;display:flex;align-items:center;justify-content:center}.inline-flex-form{display:flex;justify-content:space-between}.inline-flex-form .e-p-form{flex:1}.inline-flex-form .inline-flex>div{display:inline-block}.inline-flex-form .footer{display:inline}.el-form--inline .el-form-item{margin:0}
|
package/lib/table/index.d.ts
CHANGED
|
@@ -24,6 +24,9 @@ declare const EPTable: ({
|
|
|
24
24
|
minWidth?: string | number | undefined;
|
|
25
25
|
isLink?: boolean | undefined;
|
|
26
26
|
slotName?: string | undefined;
|
|
27
|
+
hiddenMenu?: boolean | undefined;
|
|
28
|
+
hiddenAll?: boolean | undefined;
|
|
29
|
+
hidden?: boolean | undefined;
|
|
27
30
|
render?: Function | undefined;
|
|
28
31
|
operation?: [] | {
|
|
29
32
|
label?: string | undefined;
|
|
@@ -93,6 +96,14 @@ declare const EPTable: ({
|
|
|
93
96
|
type: import('vue').PropType<boolean>;
|
|
94
97
|
default: boolean;
|
|
95
98
|
};
|
|
99
|
+
ascs: {
|
|
100
|
+
type: import('vue').PropType<string>;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
descs: {
|
|
104
|
+
type: import('vue').PropType<string>;
|
|
105
|
+
default: string;
|
|
106
|
+
};
|
|
96
107
|
}>> & Readonly<{
|
|
97
108
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
98
109
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -1033,6 +1044,8 @@ declare const EPTable: ({
|
|
|
1033
1044
|
};
|
|
1034
1045
|
extra: number;
|
|
1035
1046
|
isShowRefresh: boolean;
|
|
1047
|
+
ascs: string;
|
|
1048
|
+
descs: string;
|
|
1036
1049
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1037
1050
|
P: {};
|
|
1038
1051
|
B: {};
|
|
@@ -1065,6 +1078,9 @@ declare const EPTable: ({
|
|
|
1065
1078
|
minWidth?: string | number | undefined;
|
|
1066
1079
|
isLink?: boolean | undefined;
|
|
1067
1080
|
slotName?: string | undefined;
|
|
1081
|
+
hiddenMenu?: boolean | undefined;
|
|
1082
|
+
hiddenAll?: boolean | undefined;
|
|
1083
|
+
hidden?: boolean | undefined;
|
|
1068
1084
|
render?: Function | undefined;
|
|
1069
1085
|
operation?: [] | {
|
|
1070
1086
|
label?: string | undefined;
|
|
@@ -1134,6 +1150,14 @@ declare const EPTable: ({
|
|
|
1134
1150
|
type: import('vue').PropType<boolean>;
|
|
1135
1151
|
default: boolean;
|
|
1136
1152
|
};
|
|
1153
|
+
ascs: {
|
|
1154
|
+
type: import('vue').PropType<string>;
|
|
1155
|
+
default: string;
|
|
1156
|
+
};
|
|
1157
|
+
descs: {
|
|
1158
|
+
type: import('vue').PropType<string>;
|
|
1159
|
+
default: string;
|
|
1160
|
+
};
|
|
1137
1161
|
}>> & Readonly<{
|
|
1138
1162
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
1139
1163
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -2068,6 +2092,8 @@ declare const EPTable: ({
|
|
|
2068
2092
|
};
|
|
2069
2093
|
extra: number;
|
|
2070
2094
|
isShowRefresh: boolean;
|
|
2095
|
+
ascs: string;
|
|
2096
|
+
descs: string;
|
|
2071
2097
|
}>;
|
|
2072
2098
|
__isFragment?: undefined;
|
|
2073
2099
|
__isTeleport?: undefined;
|
|
@@ -2097,6 +2123,9 @@ declare const EPTable: ({
|
|
|
2097
2123
|
minWidth?: string | number | undefined;
|
|
2098
2124
|
isLink?: boolean | undefined;
|
|
2099
2125
|
slotName?: string | undefined;
|
|
2126
|
+
hiddenMenu?: boolean | undefined;
|
|
2127
|
+
hiddenAll?: boolean | undefined;
|
|
2128
|
+
hidden?: boolean | undefined;
|
|
2100
2129
|
render?: Function | undefined;
|
|
2101
2130
|
operation?: [] | {
|
|
2102
2131
|
label?: string | undefined;
|
|
@@ -2166,6 +2195,14 @@ declare const EPTable: ({
|
|
|
2166
2195
|
type: import('vue').PropType<boolean>;
|
|
2167
2196
|
default: boolean;
|
|
2168
2197
|
};
|
|
2198
|
+
ascs: {
|
|
2199
|
+
type: import('vue').PropType<string>;
|
|
2200
|
+
default: string;
|
|
2201
|
+
};
|
|
2202
|
+
descs: {
|
|
2203
|
+
type: import('vue').PropType<string>;
|
|
2204
|
+
default: string;
|
|
2205
|
+
};
|
|
2169
2206
|
}>> & Readonly<{
|
|
2170
2207
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
2171
2208
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -3106,6 +3143,8 @@ declare const EPTable: ({
|
|
|
3106
3143
|
};
|
|
3107
3144
|
extra: number;
|
|
3108
3145
|
isShowRefresh: boolean;
|
|
3146
|
+
ascs: string;
|
|
3147
|
+
descs: string;
|
|
3109
3148
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3110
3149
|
$slots: Partial<Record<any, (_: {
|
|
3111
3150
|
scope: {
|
|
@@ -3117,6 +3156,9 @@ declare const EPTable: ({
|
|
|
3117
3156
|
minWidth?: string | number | undefined;
|
|
3118
3157
|
isLink?: boolean | undefined;
|
|
3119
3158
|
slotName?: string | undefined;
|
|
3159
|
+
hiddenMenu?: boolean | undefined;
|
|
3160
|
+
hiddenAll?: boolean | undefined;
|
|
3161
|
+
hidden?: boolean | undefined;
|
|
3120
3162
|
render?: Function | undefined;
|
|
3121
3163
|
operation?: [] | {
|
|
3122
3164
|
label?: string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
columns: {
|
|
3
3
|
type: ArrayConstructor;
|
|
4
4
|
default: () => never[];
|
|
@@ -29,5 +29,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
29
29
|
}>, {
|
|
30
30
|
columns: unknown[];
|
|
31
31
|
menuConfig: Record<string, any>;
|
|
32
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any
|
|
32
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
33
|
+
footer?(_: {}): any;
|
|
34
|
+
}>;
|
|
33
35
|
export default _default;
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -25,6 +25,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
25
25
|
minWidth?: string | number | undefined;
|
|
26
26
|
isLink?: boolean | undefined;
|
|
27
27
|
slotName?: string | undefined;
|
|
28
|
+
hiddenMenu?: boolean | undefined;
|
|
29
|
+
hiddenAll?: boolean | undefined;
|
|
30
|
+
hidden?: boolean | undefined;
|
|
28
31
|
render?: Function | undefined;
|
|
29
32
|
operation?: [] | {
|
|
30
33
|
label?: string | undefined;
|
|
@@ -94,6 +97,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
94
97
|
type: import('vue').PropType<boolean>;
|
|
95
98
|
default: boolean;
|
|
96
99
|
};
|
|
100
|
+
ascs: {
|
|
101
|
+
type: import('vue').PropType<string>;
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
descs: {
|
|
105
|
+
type: import('vue').PropType<string>;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
97
108
|
}>, {
|
|
98
109
|
tableInstance: import('vue').Ref<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
99
110
|
data: {
|
|
@@ -1037,6 +1048,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1037
1048
|
minWidth?: string | number | undefined;
|
|
1038
1049
|
isLink?: boolean | undefined;
|
|
1039
1050
|
slotName?: string | undefined;
|
|
1051
|
+
hiddenMenu?: boolean | undefined;
|
|
1052
|
+
hiddenAll?: boolean | undefined;
|
|
1053
|
+
hidden?: boolean | undefined;
|
|
1040
1054
|
render?: Function | undefined;
|
|
1041
1055
|
operation?: [] | {
|
|
1042
1056
|
label?: string | undefined;
|
|
@@ -1106,6 +1120,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1106
1120
|
type: import('vue').PropType<boolean>;
|
|
1107
1121
|
default: boolean;
|
|
1108
1122
|
};
|
|
1123
|
+
ascs: {
|
|
1124
|
+
type: import('vue').PropType<string>;
|
|
1125
|
+
default: string;
|
|
1126
|
+
};
|
|
1127
|
+
descs: {
|
|
1128
|
+
type: import('vue').PropType<string>;
|
|
1129
|
+
default: string;
|
|
1130
|
+
};
|
|
1109
1131
|
}>> & Readonly<{
|
|
1110
1132
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
1111
1133
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -1128,6 +1150,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1128
1150
|
};
|
|
1129
1151
|
extra: number;
|
|
1130
1152
|
isShowRefresh: boolean;
|
|
1153
|
+
ascs: string;
|
|
1154
|
+
descs: string;
|
|
1131
1155
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<any, (_: {
|
|
1132
1156
|
scope: {
|
|
1133
1157
|
[x: string]: any;
|
|
@@ -1138,6 +1162,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1138
1162
|
minWidth?: string | number | undefined;
|
|
1139
1163
|
isLink?: boolean | undefined;
|
|
1140
1164
|
slotName?: string | undefined;
|
|
1165
|
+
hiddenMenu?: boolean | undefined;
|
|
1166
|
+
hiddenAll?: boolean | undefined;
|
|
1167
|
+
hidden?: boolean | undefined;
|
|
1141
1168
|
render?: Function | undefined;
|
|
1142
1169
|
operation?: [] | {
|
|
1143
1170
|
label?: string | undefined;
|
package/package.json
CHANGED
package/lib/favicon.ico
DELETED
|
Binary file
|