@eturnity/eturnity_reusable_components 1.0.49 → 1.0.53

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.0.49",
3
+ "version": "1.0.53",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -14,11 +14,11 @@
14
14
  <arrow-down
15
15
  v-if="!isOpen"
16
16
  class="arrow-dropdown"
17
- :src="require('../../assets/images/collapse_arrow_icon.svg')"
17
+ :src="require('../../assets/icons/collapse_arrow_icon.svg')"
18
18
  />
19
19
  <arrow-up
20
20
  v-else
21
- :src="require('../../assets/images/collapse_arrow_icon.svg')"
21
+ :src="require('../../assets/icons/collapse_arrow_icon.svg')"
22
22
  />
23
23
  </component-container>
24
24
  <options-container
@@ -150,11 +150,14 @@ const OptionsItem = styled("div", containerAttrs)`
150
150
  display: grid;
151
151
  grid-template-columns: repeat(${(props) => props.colSpan}, minmax(0, 1fr));
152
152
  grid-gap: 12px;
153
- overflow: hidden;
154
- text-overflow: ellipsis;
155
153
  padding: 10px;
156
154
  height: max-content;
157
155
 
156
+ span {
157
+ overflow: hidden;
158
+ text-overflow: ellipsis;
159
+ }
160
+
158
161
  &:hover {
159
162
  background-color: ${(props) => props.theme.colors.grey5};
160
163
  }