@eturnity/eturnity_reusable_components 8.26.4-EPDM-15929.1 → 8.26.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.
@@ -3,7 +3,6 @@
3
3
  <InputWrapper
4
4
  :icon-color="iconColor"
5
5
  :icon-position="iconPosition"
6
- :input-height="inputHeight"
7
6
  :is-full-height="isFullHeight"
8
7
  >
9
8
  <SearchIconSvg class="search-icn" />
@@ -13,7 +12,6 @@
13
12
  :data-qa-id="dataQaId"
14
13
  :disabled="disabled"
15
14
  :has-focus="hasFocus"
16
- :input-height="inputHeight"
17
15
  :input-width="inputWidth"
18
16
  :is-disabled="disabled"
19
17
  :is-filter="isFilter"
@@ -49,7 +47,6 @@
49
47
  inputWidth: String,
50
48
  isFilter: Boolean,
51
49
  isFullHeight: Boolean,
52
- inputHeight: String,
53
50
  }
54
51
  const Container = styled('div', inputAttrs)`
55
52
  width: ${(props) => (props.inputWidth ? props.inputWidth : '100%')};
@@ -64,7 +61,7 @@
64
61
  font-size: 13px;
65
62
  color: ${(props) => props.theme.colors.black};
66
63
  width: ${(props) => (props.inputWidth ? props.inputWidth : '100%')};
67
- height: ${(props) => (props.isFullHeight ? '100%' : props.inputHeight)};
64
+ height: ${(props) => (props.isFullHeight ? '100%' : 'auto')};
68
65
  box-sizing: border-box;
69
66
  cursor: ${(props) => (props.isDisabled ? 'not-allowed' : 'auto')};
70
67
  background: ${(props) => props.theme.colors.white} !important;
@@ -81,12 +78,10 @@
81
78
  iconColor: String,
82
79
  iconPosition: String,
83
80
  isFullHeight: Boolean,
84
- inputHeight: String,
85
81
  }
86
82
  const InputWrapper = styled('div', wrapperAttrs)`
87
83
  position: relative;
88
- height: ${({ isFullHeight, inputHeight }) =>
89
- isFullHeight ? '100%' : inputHeight};
84
+ height: ${(props) => (props.isFullHeight ? '100%' : 'auto')};
90
85
 
91
86
  svg {
92
87
  position: absolute;
@@ -163,10 +158,6 @@
163
158
  type: Boolean,
164
159
  default: false,
165
160
  },
166
- inputHeight: {
167
- type: String,
168
- default: 'auto',
169
- },
170
161
  },
171
162
  emits: ['on-change'],
172
163
  watch: {