@bscomp/ep-ui 0.0.9 → 0.1.0
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 +1299 -1297
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +9 -9
- package/lib/style.css +1 -1
- package/lib/table/index.d.ts +22 -1
- package/lib/table/src/index.vue.d.ts +13 -1
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-p-select .all-checkbox[data-v-9042fa0a]{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 .ep_table_column_setting_dropdown{display:flex;flex-direction:column;max-height:
|
|
1
|
+
.e-p-select .all-checkbox[data-v-9042fa0a]{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 .ep_table_column_setting_dropdown{display:flex;flex-direction:column;max-height:450px;overflow-y:auto;gap:12px}.column_set .el-dropdown-menu .el-dropdown-menu__item .ep_table_column_setting_dropdown .el-checkbox .el-checkbox__input.is-checked+.el-checkbox__label,.column_set .el-dropdown-menu .el-dropdown-menu__item .ep_table_column_setting_dropdown .el-checkbox .ep-checkbox__input.is-checked+.ep-checkbox__label{cursor:move}div[data-v-41150ee6]{box-sizing:border-box}.e-p-table[data-v-41150ee6]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-41150ee6]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box}.e-p-table .table-content .header-wapper[data-v-41150ee6]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-41150ee6],.e-p-table .table-content .header[data-v-41150ee6]{padding-bottom:16px}.e-p-table .el-pagination-com[data-v-41150ee6]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-41150ee6]{display:flex;justify-content:space-between;align-items:center}.e-p-table .radioStyle[data-v-41150ee6] tbody .el-table__row{cursor:pointer}.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;flex-wrap:wrap}.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}
|
package/lib/table/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare const EPTable: ({
|
|
|
66
66
|
};
|
|
67
67
|
isShowPagination: {
|
|
68
68
|
type: import('vue').PropType<boolean>;
|
|
69
|
+
default: boolean;
|
|
69
70
|
};
|
|
70
71
|
pageProps: {
|
|
71
72
|
type: import('vue').PropType<{
|
|
@@ -82,6 +83,10 @@ declare const EPTable: ({
|
|
|
82
83
|
type: import('vue').PropType<number>;
|
|
83
84
|
default: number;
|
|
84
85
|
};
|
|
86
|
+
isShowRefresh: {
|
|
87
|
+
type: import('vue').PropType<boolean>;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
85
90
|
}>> & Readonly<{
|
|
86
91
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
87
92
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -1010,6 +1015,7 @@ declare const EPTable: ({
|
|
|
1010
1015
|
rowKey: string;
|
|
1011
1016
|
isShowMenu: boolean;
|
|
1012
1017
|
refreshTitle: string;
|
|
1018
|
+
isShowPagination: boolean;
|
|
1013
1019
|
pageProps: {
|
|
1014
1020
|
size?: "" | "default" | "small" | "large" | undefined;
|
|
1015
1021
|
pageSize?: string | undefined;
|
|
@@ -1019,6 +1025,7 @@ declare const EPTable: ({
|
|
|
1019
1025
|
background?: boolean | undefined;
|
|
1020
1026
|
};
|
|
1021
1027
|
extra: number;
|
|
1028
|
+
isShowRefresh: boolean;
|
|
1022
1029
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1023
1030
|
P: {};
|
|
1024
1031
|
B: {};
|
|
@@ -1093,6 +1100,7 @@ declare const EPTable: ({
|
|
|
1093
1100
|
};
|
|
1094
1101
|
isShowPagination: {
|
|
1095
1102
|
type: import('vue').PropType<boolean>;
|
|
1103
|
+
default: boolean;
|
|
1096
1104
|
};
|
|
1097
1105
|
pageProps: {
|
|
1098
1106
|
type: import('vue').PropType<{
|
|
@@ -1109,6 +1117,10 @@ declare const EPTable: ({
|
|
|
1109
1117
|
type: import('vue').PropType<number>;
|
|
1110
1118
|
default: number;
|
|
1111
1119
|
};
|
|
1120
|
+
isShowRefresh: {
|
|
1121
|
+
type: import('vue').PropType<boolean>;
|
|
1122
|
+
default: boolean;
|
|
1123
|
+
};
|
|
1112
1124
|
}>> & Readonly<{
|
|
1113
1125
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
1114
1126
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -2031,6 +2043,7 @@ declare const EPTable: ({
|
|
|
2031
2043
|
rowKey: string;
|
|
2032
2044
|
isShowMenu: boolean;
|
|
2033
2045
|
refreshTitle: string;
|
|
2046
|
+
isShowPagination: boolean;
|
|
2034
2047
|
pageProps: {
|
|
2035
2048
|
size?: "" | "default" | "small" | "large" | undefined;
|
|
2036
2049
|
pageSize?: string | undefined;
|
|
@@ -2040,6 +2053,7 @@ declare const EPTable: ({
|
|
|
2040
2053
|
background?: boolean | undefined;
|
|
2041
2054
|
};
|
|
2042
2055
|
extra: number;
|
|
2056
|
+
isShowRefresh: boolean;
|
|
2043
2057
|
}>;
|
|
2044
2058
|
__isFragment?: undefined;
|
|
2045
2059
|
__isTeleport?: undefined;
|
|
@@ -2111,6 +2125,7 @@ declare const EPTable: ({
|
|
|
2111
2125
|
};
|
|
2112
2126
|
isShowPagination: {
|
|
2113
2127
|
type: import('vue').PropType<boolean>;
|
|
2128
|
+
default: boolean;
|
|
2114
2129
|
};
|
|
2115
2130
|
pageProps: {
|
|
2116
2131
|
type: import('vue').PropType<{
|
|
@@ -2127,6 +2142,10 @@ declare const EPTable: ({
|
|
|
2127
2142
|
type: import('vue').PropType<number>;
|
|
2128
2143
|
default: number;
|
|
2129
2144
|
};
|
|
2145
|
+
isShowRefresh: {
|
|
2146
|
+
type: import('vue').PropType<boolean>;
|
|
2147
|
+
default: boolean;
|
|
2148
|
+
};
|
|
2130
2149
|
}>> & Readonly<{
|
|
2131
2150
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
2132
2151
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -3055,6 +3074,7 @@ declare const EPTable: ({
|
|
|
3055
3074
|
rowKey: string;
|
|
3056
3075
|
isShowMenu: boolean;
|
|
3057
3076
|
refreshTitle: string;
|
|
3077
|
+
isShowPagination: boolean;
|
|
3058
3078
|
pageProps: {
|
|
3059
3079
|
size?: "" | "default" | "small" | "large" | undefined;
|
|
3060
3080
|
pageSize?: string | undefined;
|
|
@@ -3064,6 +3084,7 @@ declare const EPTable: ({
|
|
|
3064
3084
|
background?: boolean | undefined;
|
|
3065
3085
|
};
|
|
3066
3086
|
extra: number;
|
|
3087
|
+
isShowRefresh: boolean;
|
|
3067
3088
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3068
3089
|
$slots: Partial<Record<any, (_: {
|
|
3069
3090
|
scope: {
|
|
@@ -3096,7 +3117,7 @@ declare const EPTable: ({
|
|
|
3096
3117
|
scope: any;
|
|
3097
3118
|
}) => any>> & {
|
|
3098
3119
|
extra?(_: {}): any;
|
|
3099
|
-
|
|
3120
|
+
button?(_: {}): any;
|
|
3100
3121
|
input?(_: {}): any;
|
|
3101
3122
|
expand?(_: {
|
|
3102
3123
|
scope: any;
|
|
@@ -67,6 +67,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
67
67
|
};
|
|
68
68
|
isShowPagination: {
|
|
69
69
|
type: import('vue').PropType<boolean>;
|
|
70
|
+
default: boolean;
|
|
70
71
|
};
|
|
71
72
|
pageProps: {
|
|
72
73
|
type: import('vue').PropType<{
|
|
@@ -83,6 +84,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
83
84
|
type: import('vue').PropType<number>;
|
|
84
85
|
default: number;
|
|
85
86
|
};
|
|
87
|
+
isShowRefresh: {
|
|
88
|
+
type: import('vue').PropType<boolean>;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
86
91
|
}>, {
|
|
87
92
|
tableInstance: import('vue').Ref<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
88
93
|
data: {
|
|
@@ -1068,6 +1073,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1068
1073
|
};
|
|
1069
1074
|
isShowPagination: {
|
|
1070
1075
|
type: import('vue').PropType<boolean>;
|
|
1076
|
+
default: boolean;
|
|
1071
1077
|
};
|
|
1072
1078
|
pageProps: {
|
|
1073
1079
|
type: import('vue').PropType<{
|
|
@@ -1084,6 +1090,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1084
1090
|
type: import('vue').PropType<number>;
|
|
1085
1091
|
default: number;
|
|
1086
1092
|
};
|
|
1093
|
+
isShowRefresh: {
|
|
1094
|
+
type: import('vue').PropType<boolean>;
|
|
1095
|
+
default: boolean;
|
|
1096
|
+
};
|
|
1087
1097
|
}>> & Readonly<{
|
|
1088
1098
|
onSort?: ((...args: any[]) => any) | undefined;
|
|
1089
1099
|
onEditSave?: ((...args: any[]) => any) | undefined;
|
|
@@ -1094,6 +1104,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1094
1104
|
rowKey: string;
|
|
1095
1105
|
isShowMenu: boolean;
|
|
1096
1106
|
refreshTitle: string;
|
|
1107
|
+
isShowPagination: boolean;
|
|
1097
1108
|
pageProps: {
|
|
1098
1109
|
size?: "" | "default" | "small" | "large" | undefined;
|
|
1099
1110
|
pageSize?: string | undefined;
|
|
@@ -1103,6 +1114,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1103
1114
|
background?: boolean | undefined;
|
|
1104
1115
|
};
|
|
1105
1116
|
extra: number;
|
|
1117
|
+
isShowRefresh: boolean;
|
|
1106
1118
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<any, (_: {
|
|
1107
1119
|
scope: {
|
|
1108
1120
|
[x: string]: any;
|
|
@@ -1134,7 +1146,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1134
1146
|
scope: any;
|
|
1135
1147
|
}) => any>> & {
|
|
1136
1148
|
extra?(_: {}): any;
|
|
1137
|
-
|
|
1149
|
+
button?(_: {}): any;
|
|
1138
1150
|
input?(_: {}): any;
|
|
1139
1151
|
expand?(_: {
|
|
1140
1152
|
scope: any;
|