@eturnity/eturnity_reusable_components 1.2.48-EPDM-5846.3 → 1.2.48-EPDM-5846.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.2.48-EPDM-5846.3",
3
+ "version": "1.2.48-EPDM-5846.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -3,7 +3,7 @@
3
3
  <slot></slot>
4
4
  </optionContainer>
5
5
  </template>
6
-
6
+
7
7
  <script>
8
8
  // import selectButton from './selectButton'
9
9
  // import selectDropdown from './selectDropDown'
@@ -15,7 +15,7 @@
15
15
  flex-direction: row;
16
16
  justify-content: space-between;
17
17
  align-items: center;
18
- padding: 12px 15px;
18
+ padding: 12px 10px;
19
19
  gap: 14px;
20
20
  width:100%;
21
21
  box-sizing:inherit;
@@ -23,10 +23,10 @@
23
23
  background-color:${(props) => props.theme.colors[props.hoveredBgColor]?props.theme.colors[props.hoveredBgColor]:props.hoveredBgColor};
24
24
  }
25
25
  `
26
-
26
+
27
27
  export default {
28
28
  name: 'RCoption',
29
-
29
+
30
30
  props: {
31
31
  value: {
32
32
  required: true
@@ -39,9 +39,9 @@
39
39
  default:'light'
40
40
  }
41
41
  },
42
-
42
+
43
43
  components: {optionContainer},
44
-
44
+
45
45
  data() {
46
46
  return {}
47
47
  },
@@ -57,4 +57,3 @@
57
57
  }
58
58
  }
59
59
  </script>
60
-