@bscomp/ep-ui 0.0.9-beta → 0.0.9

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.
@@ -4,24 +4,28 @@ declare const EPDialog: ({
4
4
  params: import('vue').PropType<any>;
5
5
  title: {
6
6
  type: import('vue').PropType<string>;
7
- required: true;
8
7
  default: string;
9
8
  };
10
9
  formProps: {
11
- type: import('vue').PropType<{
12
- btnSlotName?: string | undefined;
13
- formItems: [] | Record<string, any>[];
14
- labelPosition?: "top" | "right" | "left" | undefined;
15
- labelWidth?: string | undefined;
16
- isShowDefaultPlaceholder?: boolean | undefined;
17
- operatorList?: any[] | [] | undefined;
18
- valueWidth?: string | undefined;
19
- inline?: boolean | undefined;
20
- colNum?: number | undefined;
21
- }>;
22
- required: true;
10
+ type: import('vue').PropType<any>;
23
11
  default: {};
24
12
  };
13
+ cancelText: {
14
+ type: import('vue').PropType<string>;
15
+ default: string;
16
+ };
17
+ submitText: {
18
+ type: import('vue').PropType<string>;
19
+ default: string;
20
+ };
21
+ hiddenCancelBtn: {
22
+ type: import('vue').PropType<boolean>;
23
+ default: boolean;
24
+ };
25
+ hiddensubmitBtn: {
26
+ type: import('vue').PropType<boolean>;
27
+ default: boolean;
28
+ };
25
29
  }>> & Readonly<{
26
30
  onClose?: ((...args: any[]) => any) | undefined;
27
31
  onHandleCancel?: ((...args: any[]) => any) | undefined;
@@ -32,17 +36,11 @@ declare const EPDialog: ({
32
36
  handleSubmit: (...args: any[]) => void;
33
37
  }, import('vue').PublicProps, {
34
38
  title: string;
35
- formProps: {
36
- btnSlotName?: string | undefined;
37
- formItems: [] | Record<string, any>[];
38
- labelPosition?: "top" | "right" | "left" | undefined;
39
- labelWidth?: string | undefined;
40
- isShowDefaultPlaceholder?: boolean | undefined;
41
- operatorList?: any[] | [] | undefined;
42
- valueWidth?: string | undefined;
43
- inline?: boolean | undefined;
44
- colNum?: number | undefined;
45
- };
39
+ formProps: any;
40
+ cancelText: string;
41
+ submitText: string;
42
+ hiddenCancelBtn: boolean;
43
+ hiddensubmitBtn: boolean;
46
44
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
47
45
  P: {};
48
46
  B: {};
@@ -55,41 +53,39 @@ declare const EPDialog: ({
55
53
  params: import('vue').PropType<any>;
56
54
  title: {
57
55
  type: import('vue').PropType<string>;
58
- required: true;
59
56
  default: string;
60
57
  };
61
58
  formProps: {
62
- type: import('vue').PropType<{
63
- btnSlotName?: string | undefined;
64
- formItems: [] | Record<string, any>[];
65
- labelPosition?: "top" | "right" | "left" | undefined;
66
- labelWidth?: string | undefined;
67
- isShowDefaultPlaceholder?: boolean | undefined;
68
- operatorList?: any[] | [] | undefined;
69
- valueWidth?: string | undefined;
70
- inline?: boolean | undefined;
71
- colNum?: number | undefined;
72
- }>;
73
- required: true;
59
+ type: import('vue').PropType<any>;
74
60
  default: {};
75
61
  };
62
+ cancelText: {
63
+ type: import('vue').PropType<string>;
64
+ default: string;
65
+ };
66
+ submitText: {
67
+ type: import('vue').PropType<string>;
68
+ default: string;
69
+ };
70
+ hiddenCancelBtn: {
71
+ type: import('vue').PropType<boolean>;
72
+ default: boolean;
73
+ };
74
+ hiddensubmitBtn: {
75
+ type: import('vue').PropType<boolean>;
76
+ default: boolean;
77
+ };
76
78
  }>> & Readonly<{
77
79
  onClose?: ((...args: any[]) => any) | undefined;
78
80
  onHandleCancel?: ((...args: any[]) => any) | undefined;
79
81
  onHandleSubmit?: ((...args: any[]) => any) | undefined;
80
82
  }>, {}, {}, {}, {}, {
81
83
  title: string;
82
- formProps: {
83
- btnSlotName?: string | undefined;
84
- formItems: [] | Record<string, any>[];
85
- labelPosition?: "top" | "right" | "left" | undefined;
86
- labelWidth?: string | undefined;
87
- isShowDefaultPlaceholder?: boolean | undefined;
88
- operatorList?: any[] | [] | undefined;
89
- valueWidth?: string | undefined;
90
- inline?: boolean | undefined;
91
- colNum?: number | undefined;
92
- };
84
+ formProps: any;
85
+ cancelText: string;
86
+ submitText: string;
87
+ hiddenCancelBtn: boolean;
88
+ hiddensubmitBtn: boolean;
93
89
  }>;
94
90
  __isFragment?: undefined;
95
91
  __isTeleport?: undefined;
@@ -99,24 +95,28 @@ declare const EPDialog: ({
99
95
  params: import('vue').PropType<any>;
100
96
  title: {
101
97
  type: import('vue').PropType<string>;
102
- required: true;
103
98
  default: string;
104
99
  };
105
100
  formProps: {
106
- type: import('vue').PropType<{
107
- btnSlotName?: string | undefined;
108
- formItems: [] | Record<string, any>[];
109
- labelPosition?: "top" | "right" | "left" | undefined;
110
- labelWidth?: string | undefined;
111
- isShowDefaultPlaceholder?: boolean | undefined;
112
- operatorList?: any[] | [] | undefined;
113
- valueWidth?: string | undefined;
114
- inline?: boolean | undefined;
115
- colNum?: number | undefined;
116
- }>;
117
- required: true;
101
+ type: import('vue').PropType<any>;
118
102
  default: {};
119
103
  };
104
+ cancelText: {
105
+ type: import('vue').PropType<string>;
106
+ default: string;
107
+ };
108
+ submitText: {
109
+ type: import('vue').PropType<string>;
110
+ default: string;
111
+ };
112
+ hiddenCancelBtn: {
113
+ type: import('vue').PropType<boolean>;
114
+ default: boolean;
115
+ };
116
+ hiddensubmitBtn: {
117
+ type: import('vue').PropType<boolean>;
118
+ default: boolean;
119
+ };
120
120
  }>> & Readonly<{
121
121
  onClose?: ((...args: any[]) => any) | undefined;
122
122
  onHandleCancel?: ((...args: any[]) => any) | undefined;
@@ -127,17 +127,11 @@ declare const EPDialog: ({
127
127
  handleSubmit: (...args: any[]) => void;
128
128
  }, string, {
129
129
  title: string;
130
- formProps: {
131
- btnSlotName?: string | undefined;
132
- formItems: [] | Record<string, any>[];
133
- labelPosition?: "top" | "right" | "left" | undefined;
134
- labelWidth?: string | undefined;
135
- isShowDefaultPlaceholder?: boolean | undefined;
136
- operatorList?: any[] | [] | undefined;
137
- valueWidth?: string | undefined;
138
- inline?: boolean | undefined;
139
- colNum?: number | undefined;
140
- };
130
+ formProps: any;
131
+ cancelText: string;
132
+ submitText: string;
133
+ hiddenCancelBtn: boolean;
134
+ hiddensubmitBtn: boolean;
141
135
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
142
136
  $slots: Partial<Record<string, (_: {}) => any>> & {
143
137
  header?(_: {
@@ -3,24 +3,28 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
3
3
  params: import('vue').PropType<any>;
4
4
  title: {
5
5
  type: import('vue').PropType<string>;
6
- required: true;
7
6
  default: string;
8
7
  };
9
8
  formProps: {
10
- type: import('vue').PropType<{
11
- btnSlotName?: string | undefined;
12
- formItems: [] | Record<string, any>[];
13
- labelPosition?: "top" | "right" | "left" | undefined;
14
- labelWidth?: string | undefined;
15
- isShowDefaultPlaceholder?: boolean | undefined;
16
- operatorList?: any[] | [] | undefined;
17
- valueWidth?: string | undefined;
18
- inline?: boolean | undefined;
19
- colNum?: number | undefined;
20
- }>;
21
- required: true;
9
+ type: import('vue').PropType<any>;
22
10
  default: {};
23
11
  };
12
+ cancelText: {
13
+ type: import('vue').PropType<string>;
14
+ default: string;
15
+ };
16
+ submitText: {
17
+ type: import('vue').PropType<string>;
18
+ default: string;
19
+ };
20
+ hiddenCancelBtn: {
21
+ type: import('vue').PropType<boolean>;
22
+ default: boolean;
23
+ };
24
+ hiddensubmitBtn: {
25
+ type: import('vue').PropType<boolean>;
26
+ default: boolean;
27
+ };
24
28
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
25
29
  close: (...args: any[]) => void;
26
30
  handleCancel: (...args: any[]) => void;
@@ -30,41 +34,39 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
30
34
  params: import('vue').PropType<any>;
31
35
  title: {
32
36
  type: import('vue').PropType<string>;
33
- required: true;
34
37
  default: string;
35
38
  };
36
39
  formProps: {
37
- type: import('vue').PropType<{
38
- btnSlotName?: string | undefined;
39
- formItems: [] | Record<string, any>[];
40
- labelPosition?: "top" | "right" | "left" | undefined;
41
- labelWidth?: string | undefined;
42
- isShowDefaultPlaceholder?: boolean | undefined;
43
- operatorList?: any[] | [] | undefined;
44
- valueWidth?: string | undefined;
45
- inline?: boolean | undefined;
46
- colNum?: number | undefined;
47
- }>;
48
- required: true;
40
+ type: import('vue').PropType<any>;
49
41
  default: {};
50
42
  };
43
+ cancelText: {
44
+ type: import('vue').PropType<string>;
45
+ default: string;
46
+ };
47
+ submitText: {
48
+ type: import('vue').PropType<string>;
49
+ default: string;
50
+ };
51
+ hiddenCancelBtn: {
52
+ type: import('vue').PropType<boolean>;
53
+ default: boolean;
54
+ };
55
+ hiddensubmitBtn: {
56
+ type: import('vue').PropType<boolean>;
57
+ default: boolean;
58
+ };
51
59
  }>> & Readonly<{
52
60
  onClose?: ((...args: any[]) => any) | undefined;
53
61
  onHandleCancel?: ((...args: any[]) => any) | undefined;
54
62
  onHandleSubmit?: ((...args: any[]) => any) | undefined;
55
63
  }>, {
56
64
  title: string;
57
- formProps: {
58
- btnSlotName?: string | undefined;
59
- formItems: [] | Record<string, any>[];
60
- labelPosition?: "top" | "right" | "left" | undefined;
61
- labelWidth?: string | undefined;
62
- isShowDefaultPlaceholder?: boolean | undefined;
63
- operatorList?: any[] | [] | undefined;
64
- valueWidth?: string | undefined;
65
- inline?: boolean | undefined;
66
- colNum?: number | undefined;
67
- };
65
+ formProps: any;
66
+ cancelText: string;
67
+ submitText: string;
68
+ hiddenCancelBtn: boolean;
69
+ hiddensubmitBtn: boolean;
68
70
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, Partial<Record<string, (_: {}) => any>> & {
69
71
  header?(_: {
70
72
  scope: {
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:300px;overflow-y:auto;gap:10px}.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+.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-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}
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:300px;overflow-y:auto;gap:10px}.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;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-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bscomp/ep-ui",
3
- "version": "0.0.9-beta",
3
+ "version": "0.0.9",
4
4
  "description": "Vue3 中基于Element-plus二次封装基础组件文档",
5
5
  "author": "bishang",
6
6
  "license": "MIT",