@eturnity/eturnity_reusable_components 7.24.3-EPDM-11320.1 → 7.24.3-EPDM-11320.3

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": "7.24.3-EPDM-11320.1",
3
+ "version": "7.24.3-EPDM-11320.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -65,7 +65,8 @@
65
65
  }
66
66
  `
67
67
 
68
- const InputWrapper = styled.span`
68
+ const wrapperAttrs = { iconColor: String, iconPosition: String }
69
+ const InputWrapper = styled('div', wrapperAttrs)`
69
70
  position: relative;
70
71
 
71
72
  svg {
@@ -367,7 +367,7 @@
367
367
  }
368
368
  font-size: ${(props) => props.fontSize};
369
369
  `
370
- selectDropdown.emits = ['option-hovered', 'option-selected']
370
+ SelectDropdown.emits = ['option-hovered', 'option-selected']
371
371
  const DropdownAttrs = { noRelative: Boolean }
372
372
  const DropdownWrapper = styled('div', DropdownAttrs)`
373
373
  position: ${(props) => (props.noRelative ? 'static' : 'relative')};