@bscomp/ep-ui 0.3.5 → 0.3.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 +3043 -3029
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +11 -11
- package/lib/input/index.d.ts +11 -11
- package/lib/input/src/index.vue.d.ts +5 -5
- package/lib/style.css +1 -1
- package/package.json +1 -1
package/lib/input/index.d.ts
CHANGED
|
@@ -10,20 +10,20 @@ declare const EPInput: ({
|
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
inputType: {
|
|
13
|
-
type: import('vue').PropType<"" | "
|
|
13
|
+
type: import('vue').PropType<"default" | "text" | "integer">;
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
16
|
inputRule: {
|
|
17
17
|
type: import('vue').PropType<RegExp>;
|
|
18
18
|
};
|
|
19
19
|
}>> & Readonly<{
|
|
20
|
-
"onUpdate:modelValue"?: ((
|
|
20
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
21
21
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
-
"update:modelValue": (
|
|
22
|
+
"update:modelValue": (value: string | number) => void;
|
|
23
23
|
}, import('vue').PublicProps, {
|
|
24
24
|
placeholder: string;
|
|
25
25
|
width: string;
|
|
26
|
-
inputType: "" | "
|
|
26
|
+
inputType: "default" | "text" | "integer";
|
|
27
27
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
28
28
|
P: {};
|
|
29
29
|
B: {};
|
|
@@ -42,18 +42,18 @@ declare const EPInput: ({
|
|
|
42
42
|
default: string;
|
|
43
43
|
};
|
|
44
44
|
inputType: {
|
|
45
|
-
type: import('vue').PropType<"" | "
|
|
45
|
+
type: import('vue').PropType<"default" | "text" | "integer">;
|
|
46
46
|
default: string;
|
|
47
47
|
};
|
|
48
48
|
inputRule: {
|
|
49
49
|
type: import('vue').PropType<RegExp>;
|
|
50
50
|
};
|
|
51
51
|
}>> & Readonly<{
|
|
52
|
-
"onUpdate:modelValue"?: ((
|
|
52
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
53
53
|
}>, {}, {}, {}, {}, {
|
|
54
54
|
placeholder: string;
|
|
55
55
|
width: string;
|
|
56
|
-
inputType: "" | "
|
|
56
|
+
inputType: "default" | "text" | "integer";
|
|
57
57
|
}>;
|
|
58
58
|
__isFragment?: undefined;
|
|
59
59
|
__isTeleport?: undefined;
|
|
@@ -69,20 +69,20 @@ declare const EPInput: ({
|
|
|
69
69
|
default: string;
|
|
70
70
|
};
|
|
71
71
|
inputType: {
|
|
72
|
-
type: import('vue').PropType<"" | "
|
|
72
|
+
type: import('vue').PropType<"default" | "text" | "integer">;
|
|
73
73
|
default: string;
|
|
74
74
|
};
|
|
75
75
|
inputRule: {
|
|
76
76
|
type: import('vue').PropType<RegExp>;
|
|
77
77
|
};
|
|
78
78
|
}>> & Readonly<{
|
|
79
|
-
"onUpdate:modelValue"?: ((
|
|
79
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
80
80
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
81
|
-
"update:modelValue": (
|
|
81
|
+
"update:modelValue": (value: string | number) => void;
|
|
82
82
|
}, string, {
|
|
83
83
|
placeholder: string;
|
|
84
84
|
width: string;
|
|
85
|
-
inputType: "" | "
|
|
85
|
+
inputType: "default" | "text" | "integer";
|
|
86
86
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
87
87
|
$slots: {
|
|
88
88
|
append?(_: {}): any;
|
|
@@ -9,14 +9,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
11
|
inputType: {
|
|
12
|
-
type: import('vue').PropType<"" | "
|
|
12
|
+
type: import('vue').PropType<"default" | "text" | "integer">;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
15
|
inputRule: {
|
|
16
16
|
type: import('vue').PropType<RegExp>;
|
|
17
17
|
};
|
|
18
18
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
-
"update:modelValue": (
|
|
19
|
+
"update:modelValue": (value: string | number) => void;
|
|
20
20
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
21
|
modelValue: import('vue').PropType<string | number>;
|
|
22
22
|
placeholder: {
|
|
@@ -28,18 +28,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
28
28
|
default: string;
|
|
29
29
|
};
|
|
30
30
|
inputType: {
|
|
31
|
-
type: import('vue').PropType<"" | "
|
|
31
|
+
type: import('vue').PropType<"default" | "text" | "integer">;
|
|
32
32
|
default: string;
|
|
33
33
|
};
|
|
34
34
|
inputRule: {
|
|
35
35
|
type: import('vue').PropType<RegExp>;
|
|
36
36
|
};
|
|
37
37
|
}>> & Readonly<{
|
|
38
|
-
"onUpdate:modelValue"?: ((
|
|
38
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
39
39
|
}>, {
|
|
40
40
|
placeholder: string;
|
|
41
41
|
width: string;
|
|
42
|
-
inputType: "" | "
|
|
42
|
+
inputType: "default" | "text" | "integer";
|
|
43
43
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
44
44
|
append?(_: {}): any;
|
|
45
45
|
prepend?(_: {}): any;
|
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-77aaa2fd]{box-sizing:border-box}.e-p-table[data-v-77aaa2fd]{box-sizing:border-box;height:100%;position:relative;display:flex;flex-direction:column;overflow:hidden}.e-p-table .table-content[data-v-77aaa2fd]{flex:1;display:flex;flex-direction:column;position:relative;box-sizing:border-box;overflow:hidden}.e-p-table .table-content .header-wapper[data-v-77aaa2fd]{display:flex;flex-direction:column}.e-p-table .table-content .extra[data-v-77aaa2fd],.e-p-table .table-content .header[data-v-77aaa2fd]{padding-bottom:16px}.e-p-table .table-content .operation[data-v-77aaa2fd]{display:flex;align-items:center;gap:12px}.e-p-table .table-content .operation[data-v-77aaa2fd] .el-button+.el-button{margin-left:0!important}.e-p-table .el-pagination-com[data-v-77aaa2fd]{padding-top:16px;display:flex;justify-content:flex-end;align-items:center}.e-p-table .header[data-v-77aaa2fd]{display:flex;justify-content:space-between;align-items:center}.btn-wrapper[data-v-77aaa2fd],.input-content[data-v-77aaa2fd]{display:flex;gap:8px}.btn-wrapper[data-v-77aaa2fd] .el-button+.el-button,.input-content[data-v-77aaa2fd] .el-button+.el-button{margin-left:0!important}[data-v-77aaa2fd] .el-dropdown-menu__item .el-button{width:100%;justify-content:flex-start}.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}
|