eoss-ui 0.5.24 → 0.5.25

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.
@@ -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;
package/src/index.js CHANGED
@@ -117,7 +117,7 @@ if (typeof window !== 'undefined' && window.Vue) {
117
117
  }
118
118
 
119
119
  export default {
120
- version: '0.5.24',
120
+ version: '0.5.25',
121
121
  install,
122
122
  Button,
123
123
  ButtonGroup,