@bscomp/ep-ui 0.2.5 → 0.2.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 +51 -3
- package/lib/date-picker/src/index.vue.d.ts +29 -1
- package/lib/ep-ui.js +1955 -1854
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +10 -10
- package/lib/style.css +1 -1
- package/lib/table/src/index.vue.d.ts +21 -46
- package/package.json +1 -1
- package/lib/table/index.d.ts +0 -3197
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-p-select .all-checkbox[data-v-9f38b52d]{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-
|
|
1
|
+
.e-p-select .all-checkbox[data-v-9f38b52d]{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-bc66cc38]{box-sizing:border-box}.e-p-table[data-v-bc66cc38]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-bc66cc38]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box;overflow:hidden}.e-p-table .table-content .header-wapper[data-v-bc66cc38]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-bc66cc38],.e-p-table .table-content .header[data-v-bc66cc38]{padding-bottom:16px}.e-p-table .table-content .operation[data-v-bc66cc38]{display:flex;align-items:center;gap:12px}.e-p-table .table-content .operation[data-v-bc66cc38] .el-button+.el-button{margin-left:0!important}.e-p-table .el-pagination-com[data-v-bc66cc38]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-bc66cc38]{display:flex;justify-content:space-between;align-items:center}.btn-wrapper[data-v-bc66cc38],.input-content[data-v-bc66cc38]{display:flex;gap:8px}.btn-wrapper[data-v-bc66cc38] .el-button+.el-button,.input-content[data-v-bc66cc38] .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}
|
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
import { VNode } from 'vue';
|
|
2
2
|
|
|
3
|
+
type Operation = {
|
|
4
|
+
label?: string;
|
|
5
|
+
width?: string;
|
|
6
|
+
hidden?: (row: any, index: number) => boolean;
|
|
7
|
+
operationType?: "rowEdit";
|
|
8
|
+
func?: Function;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
slotName?: string;
|
|
11
|
+
render?: (row: any) => VNode;
|
|
12
|
+
isShowConfirm?: boolean;
|
|
13
|
+
msg?: boolean;
|
|
14
|
+
children?: Operation[];
|
|
15
|
+
};
|
|
3
16
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
17
|
page: import('vue').PropType<Record<string, any>>;
|
|
5
18
|
check: import('vue').PropType<any>;
|
|
@@ -29,21 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
29
42
|
hiddenAll?: boolean | undefined;
|
|
30
43
|
hidden?: boolean | undefined;
|
|
31
44
|
render?: Function | undefined;
|
|
32
|
-
operation?: [] |
|
|
33
|
-
label?: string | undefined;
|
|
34
|
-
width?: string | undefined;
|
|
35
|
-
hidden?: ((row: any, index: number) => boolean) | undefined;
|
|
36
|
-
operationType?: "rowEdit" | undefined;
|
|
37
|
-
func: Function;
|
|
38
|
-
disabled?: boolean | undefined;
|
|
39
|
-
isDisabled?: ((row: any, index: number) => boolean) | undefined;
|
|
40
|
-
slotName?: string | undefined;
|
|
41
|
-
render?: ((row: any) => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
42
|
-
[key: string]: any;
|
|
43
|
-
}>) | undefined;
|
|
44
|
-
isShowConfirm?: boolean | undefined;
|
|
45
|
-
msg?: boolean | undefined;
|
|
46
|
-
}[] | undefined;
|
|
45
|
+
operation?: [] | Operation[] | undefined;
|
|
47
46
|
}[]>;
|
|
48
47
|
required: true;
|
|
49
48
|
};
|
|
@@ -1054,21 +1053,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1054
1053
|
hiddenAll?: boolean | undefined;
|
|
1055
1054
|
hidden?: boolean | undefined;
|
|
1056
1055
|
render?: Function | undefined;
|
|
1057
|
-
operation?: [] |
|
|
1058
|
-
label?: string | undefined;
|
|
1059
|
-
width?: string | undefined;
|
|
1060
|
-
hidden?: ((row: any, index: number) => boolean) | undefined;
|
|
1061
|
-
operationType?: "rowEdit" | undefined;
|
|
1062
|
-
func: Function;
|
|
1063
|
-
disabled?: boolean | undefined;
|
|
1064
|
-
isDisabled?: ((row: any, index: number) => boolean) | undefined;
|
|
1065
|
-
slotName?: string | undefined;
|
|
1066
|
-
render?: ((row: any) => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1067
|
-
[key: string]: any;
|
|
1068
|
-
}>) | undefined;
|
|
1069
|
-
isShowConfirm?: boolean | undefined;
|
|
1070
|
-
msg?: boolean | undefined;
|
|
1071
|
-
}[] | undefined;
|
|
1056
|
+
operation?: [] | Operation[] | undefined;
|
|
1072
1057
|
}[]>;
|
|
1073
1058
|
required: true;
|
|
1074
1059
|
};
|
|
@@ -1169,23 +1154,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1169
1154
|
hiddenAll?: boolean | undefined;
|
|
1170
1155
|
hidden?: boolean | undefined;
|
|
1171
1156
|
render?: Function | undefined;
|
|
1172
|
-
operation?: [] |
|
|
1173
|
-
label?: string | undefined;
|
|
1174
|
-
width?: string | undefined;
|
|
1175
|
-
hidden?: ((row: any, index: number) => boolean) | undefined;
|
|
1176
|
-
operationType?: "rowEdit" | undefined;
|
|
1177
|
-
func: Function;
|
|
1178
|
-
disabled?: boolean | undefined;
|
|
1179
|
-
isDisabled?: ((row: any, index: number) => boolean) | undefined;
|
|
1180
|
-
slotName?: string | undefined;
|
|
1181
|
-
render?: ((row: any) => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1182
|
-
[key: string]: any;
|
|
1183
|
-
}>) | undefined;
|
|
1184
|
-
isShowConfirm?: boolean | undefined;
|
|
1185
|
-
msg?: boolean | undefined;
|
|
1186
|
-
}[] | undefined;
|
|
1157
|
+
operation?: [] | Operation[] | undefined;
|
|
1187
1158
|
};
|
|
1188
|
-
}) => any>> & Partial<Record<any, (_: {
|
|
1159
|
+
}) => any>> & Partial<Record<any, (_: {
|
|
1160
|
+
scope: any;
|
|
1161
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
1162
|
+
scope: any;
|
|
1163
|
+
}) => any>> & Partial<Record<string, (_: {
|
|
1189
1164
|
scope: any;
|
|
1190
1165
|
}) => any>> & Partial<Record<string, (_: {
|
|
1191
1166
|
scope: any;
|