resolver-egretimp-plus 0.1.85 → 0.1.88
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/dist/h5/index.js +1 -1
- package/dist/theme/element/index.css +1 -1
- package/dist/theme/element/src/components/collapse.scss +13 -0
- package/dist/theme/element/src/components/select.scss +60 -1
- package/dist/theme/element/src/components/tabs.scss +9 -1
- package/dist/web/index.js +2 -2
- package/package.json +1 -1
- package/src/bpm/bpmInstance.js +8 -1
- package/src/components/options/OptionsDefault.vue +47 -0
- package/src/components/packages-web/ElSelect.jsx +64 -14
- package/src/index.jsx +15 -2
- package/src/theme/element/components/collapse.scss +13 -0
- package/src/theme/element/components/select.scss +60 -1
- package/src/theme/element/components/tabs.scss +9 -1
- package/src/utils/defaultVal.js +13 -9
|
@@ -127,6 +127,19 @@
|
|
|
127
127
|
margin-bottom: 16px;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
.CustomComponentCollapse.is-card:has(+ .CustomComponentCard.is-card) {
|
|
131
|
+
margin-bottom: 16px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.CustomComponentCard.is-card:has(+ .CustomComponentCollapse.is-card) {
|
|
135
|
+
margin-bottom: 16px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
.CustomComponentCard.is-card:has(+ .CustomComponentCard.is-card) {
|
|
140
|
+
margin-bottom: 16px;
|
|
141
|
+
}
|
|
142
|
+
|
|
130
143
|
// 加权
|
|
131
144
|
.CustomComponentCollapse.CustomComponentCollapse.CustomComponentCollapse:last-child {
|
|
132
145
|
margin-bottom: 0;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// select样式调整
|
|
3
|
-
.el-select__icon {
|
|
3
|
+
.el-select__icon, .el-input__icon {
|
|
4
4
|
color: #646A73;
|
|
5
5
|
font-size: 18px;
|
|
6
6
|
}
|
|
@@ -10,6 +10,65 @@
|
|
|
10
10
|
margin-left: 0;
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
+
.el-select-dropdown {
|
|
14
|
+
.el-select-dropdown__item.is-selected::after {
|
|
15
|
+
content: "";
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 50%;
|
|
18
|
+
right: 4px;
|
|
19
|
+
border-top: none;
|
|
20
|
+
border-right: none;
|
|
21
|
+
background-repeat: no-repeat;
|
|
22
|
+
background-position: center;
|
|
23
|
+
background-color: var(--el-color-primary);
|
|
24
|
+
mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
|
|
25
|
+
mask-size: 100% 100%;
|
|
26
|
+
transform: translateY(-50%);
|
|
27
|
+
width: 16px;
|
|
28
|
+
height: 16px;
|
|
29
|
+
}
|
|
30
|
+
&.is-multiple {
|
|
31
|
+
.el-select-dropdown__item.is-selected::after {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
.el-select-dropdown__item {
|
|
35
|
+
.box-not-checked {
|
|
36
|
+
display: block;
|
|
37
|
+
}
|
|
38
|
+
.box-checked {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
&.is-selected {
|
|
42
|
+
.box-checked {
|
|
43
|
+
display: block;
|
|
44
|
+
}
|
|
45
|
+
.box-not-checked {
|
|
46
|
+
display: none;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
.el-select-dropdown__list {
|
|
52
|
+
padding: 6px 4px;
|
|
53
|
+
& > div {
|
|
54
|
+
position: relative;
|
|
55
|
+
}
|
|
56
|
+
.el-select-dropdown__item {
|
|
57
|
+
border-radius: 4px;
|
|
58
|
+
padding: 0 32px 0 4px;
|
|
59
|
+
height: 32px;
|
|
60
|
+
line-height: 32px;
|
|
61
|
+
&:hover {
|
|
62
|
+
background: #EFF0F1;
|
|
63
|
+
}
|
|
64
|
+
&:active {
|
|
65
|
+
background: #DEE0E3;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
13
72
|
|
|
14
73
|
/* 覆盖下拉选中文字的样式 */
|
|
15
74
|
.el-select-dropdown__item.is-selected {
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
|
|
23
23
|
.el-tabs {
|
|
24
24
|
--el-text-color-primary: #1F2329;
|
|
25
|
-
|
|
26
25
|
// display: block;
|
|
27
26
|
border-radius: 4px;
|
|
28
27
|
overflow: hidden;
|
|
@@ -30,10 +29,19 @@
|
|
|
30
29
|
padding: var(--prmary-marign-second) var(--prmary-marign) var(--prmary-marign) var(--prmary-marign);
|
|
31
30
|
}
|
|
32
31
|
}
|
|
32
|
+
.el-tabs__active-bar {
|
|
33
|
+
bottom: 1px;
|
|
34
|
+
height: 3px;
|
|
35
|
+
border-radius: 2px;
|
|
36
|
+
}
|
|
33
37
|
.el-tabs__item {
|
|
34
38
|
padding: 0 16px;
|
|
35
39
|
min-height: var(--el-tabs-header-height);
|
|
36
40
|
height: unset;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
&.is-active {
|
|
43
|
+
font-weight: 500;
|
|
44
|
+
}
|
|
37
45
|
}
|
|
38
46
|
.el-tabs__header {
|
|
39
47
|
margin: 0 0 16px;
|