eoss-ui 0.5.24 → 0.5.26
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/CHANGELOG.md +929 -0
- package/lib/button.js +30 -1
- package/lib/checkbox-group.js +3 -3
- package/lib/data-table.js +73 -29
- package/lib/eoss-ui.common.js +888 -639
- package/lib/flow.js +269 -180
- package/lib/form.js +13 -4
- package/lib/index.js +1 -1
- package/lib/input.js +6 -1
- package/lib/main.js +7 -3
- package/lib/selector.js +424 -380
- package/lib/table-form.js +33 -8
- package/lib/theme-chalk/button.css +1 -0
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +2 -2
- package/packages/button/src/main.vue +42 -1
- package/packages/checkbox-group/src/main.vue +3 -1
- package/packages/data-table/src/column.vue +47 -19
- package/packages/data-table/src/main.vue +1 -0
- package/packages/flow/src/main.vue +12 -10
- package/packages/form/src/main.vue +12 -3
- package/packages/form/src/table.vue +21 -2
- package/packages/input/src/main.vue +6 -8
- package/packages/main/src/main.vue +5 -1
- package/packages/selector/src/main.vue +144 -135
- package/packages/theme-chalk/lib/button.css +1 -0
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/form.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/button.scss +7 -0
- package/packages/theme-chalk/src/flow.scss +5 -0
- package/packages/theme-chalk/src/form.scss +13 -0
- package/src/index.js +1 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
.es-user-defined {
|
|
11
11
|
display: flex;
|
|
12
|
+
flex-wrap: wrap;
|
|
12
13
|
.el-button--primary {
|
|
13
14
|
flex: 1;
|
|
14
15
|
}
|
|
@@ -22,6 +23,10 @@
|
|
|
22
23
|
flex-direction: column;
|
|
23
24
|
padding-bottom: 12px;
|
|
24
25
|
justify-content: space-between;
|
|
26
|
+
.em-flow-more-btn{
|
|
27
|
+
display: block;
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
25
30
|
.el-checkbox-group {
|
|
26
31
|
display: contents;
|
|
27
32
|
}
|
|
@@ -384,6 +384,19 @@
|
|
|
384
384
|
padding: 2px 10px;
|
|
385
385
|
line-height: 36px;
|
|
386
386
|
background-color: #fafafa;
|
|
387
|
+
position: relative;
|
|
388
|
+
&.is-required {
|
|
389
|
+
&::after {
|
|
390
|
+
content: '*';
|
|
391
|
+
color: #f5222d;
|
|
392
|
+
position: absolute;
|
|
393
|
+
left: 4px;
|
|
394
|
+
}
|
|
395
|
+
&.required-after::after {
|
|
396
|
+
left: auto;
|
|
397
|
+
right: 4px;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
387
400
|
}
|
|
388
401
|
& ~ .es-data-table {
|
|
389
402
|
margin-bottom: 24px;
|