@eturnity/eturnity_reusable_components 7.35.1-EPDM-10620.2 → 7.35.1-EPDM-10620.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": "7.35.1-EPDM-10620.2",
3
+ "version": "7.35.1-EPDM-10620.4",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -26,7 +26,7 @@
26
26
 
27
27
  import { onMounted, reactive, watch } from 'vue'
28
28
  import styled from 'vue3-styled-components'
29
- // import { fetchIcon } from './iconCache.mjs'
29
+ import { fetchIcon } from './iconCache.mjs'
30
30
 
31
31
  const props = defineProps({
32
32
  disabled: {
@@ -138,6 +138,8 @@
138
138
  position: fixed;
139
139
  bottom: 30px;
140
140
  left: 50%;
141
+ width: auto;
142
+ max-width: 70%;
141
143
  transform: translateX(-50%);
142
144
  `
143
145
 
@@ -163,6 +165,7 @@
163
165
  align-items: center;
164
166
  height: 100%;
165
167
  padding-right: 20px;
168
+ white-space: nowrap;
166
169
  border-right: 1px solid rgba(255, 255, 255, 0.2);
167
170
  `
168
171
 
@@ -233,7 +236,9 @@
233
236
  disabled: Boolean,
234
237
  hoverColor: String,
235
238
  }
239
+
236
240
  const ListItem = styled('div', ListAttrs)`
241
+ width: max-content;
237
242
  cursor: ${(props) => (props.disabled ? 'not-allowed' : 'pointer')};
238
243
  color: ${(props) => props.disabled && props.theme.colors.grey3};
239
244