@eturnity/eturnity_reusable_components 7.35.1-EPDM-10620.2 → 7.35.1-EPDM-10620.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.35.1-EPDM-10620.2",
3
+ "version": "7.35.1-EPDM-10620.3",
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: {
@@ -233,6 +233,7 @@
233
233
  disabled: Boolean,
234
234
  hoverColor: String,
235
235
  }
236
+
236
237
  const ListItem = styled('div', ListAttrs)`
237
238
  cursor: ${(props) => (props.disabled ? 'not-allowed' : 'pointer')};
238
239
  color: ${(props) => props.disabled && props.theme.colors.grey3};