@energie360/ui-library 0.1.19 → 0.1.21

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.
Files changed (48) hide show
  1. package/components/badge/u-badge.vue +9 -1
  2. package/components/card/card.scss +3 -1
  3. package/components/card/u-card.vue +1 -3
  4. package/components/card-cta-header/u-card-cta-header.vue +1 -1
  5. package/components/card-footer/u-card-footer.vue +1 -1
  6. package/components/card-price/u-card-price.vue +8 -4
  7. package/components/collapsible/u-collapsible.vue +1 -1
  8. package/components/context-menu-link/u-context-menu-link.vue +2 -2
  9. package/components/data-card/data-card.scss +1 -1
  10. package/components/download-list-item/download-list-item.scss +58 -37
  11. package/components/download-list-item/u-download-list-item.vue +46 -8
  12. package/components/hint/hint.scss +85 -91
  13. package/components/hint/u-hint.vue +1 -3
  14. package/components/index.js +0 -6
  15. package/components/inline-edit/inline-edit.scss +2 -2
  16. package/components/inline-edit/u-inline-edit.vue +0 -1
  17. package/components/navigation-panel-tile/u-navigation-panel-tile.vue +5 -1
  18. package/components/navigation-toolbar-link/u-navigation-toolbar-link.vue +1 -0
  19. package/components/panel/u-panel.vue +1 -1
  20. package/components/progress-avatar/u-progress-avatar.vue +4 -4
  21. package/components/richtext/u-richtext.vue +1 -1
  22. package/components/table/cell-ctas.scss +1 -0
  23. package/components/table/u-cell-progress-bar.vue +1 -1
  24. package/components/table/u-table-cell.vue +1 -0
  25. package/components/table/u-table-heading.vue +3 -5
  26. package/components/tabs/u-tabs.vue +10 -4
  27. package/components/text-block/u-text-block.vue +1 -1
  28. package/dist/base-style.css +23 -22
  29. package/dist/base-style.css.map +1 -1
  30. package/elements/button/u-button.vue +8 -1
  31. package/elements/button-chip/u-button-chip.vue +13 -7
  32. package/elements/checkbox/u-checkbox.vue +1 -1
  33. package/elements/icon-button/u-icon-button.vue +1 -1
  34. package/elements/numeric-stepper/u-numeric-stepper.vue +3 -1
  35. package/elements/select-chip/u-select-chip.vue +4 -1
  36. package/elements/text-field/u-text-field.vue +2 -0
  37. package/elements/textarea/u-textarea.vue +1 -0
  38. package/elements/toggle-switch/u-toggle-switch.vue +1 -0
  39. package/layout/index.js +2 -1
  40. package/layout/portal/portal.scss +26 -42
  41. package/layout/portal/u-portal.vue +13 -34
  42. package/layout/portal-main/portal-main.scss +98 -0
  43. package/layout/portal-main/u-portal-main.vue +37 -0
  44. package/layout/tile-grid/u-tile-item.vue +7 -0
  45. package/modules/dialog/u-dialog.vue +8 -2
  46. package/modules/navigation-panel/navigation-panel.scss +1 -1
  47. package/package.json +7 -7
  48. package/wizard/wizard-outro/u-wizard-outro.vue +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energie360/ui-library",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,21 +24,21 @@
24
24
  "author": "",
25
25
  "license": "MIT",
26
26
  "devDependencies": {
27
- "@tsconfig/node22": "^22.0.1",
28
- "@types/node": "^22.14.0",
27
+ "@tsconfig/node22": "^22.0.2",
28
+ "@types/node": "^22.16.5",
29
29
  "@vue/tsconfig": "^0.7.0",
30
30
  "autoprefixer": "^10.4.21",
31
31
  "chokidar": "^4.0.3",
32
- "postcss": "^8.5.3",
33
- "sass": "^1.86.3",
32
+ "postcss": "^8.5.6",
33
+ "sass": "^1.89.2",
34
34
  "typescript": "^5.8.3"
35
35
  },
36
36
  "dependencies": {
37
37
  "@energie360/design-tokens": "^1.3.0"
38
38
  },
39
39
  "peerDependencies": {
40
- "vue": "^3.5.0",
41
- "sass": "^1.86.3"
40
+ "sass": "^1.86.3",
41
+ "vue": "^3.5.0"
42
42
  },
43
43
  "scripts": {
44
44
  "watch": "node ./watch.js",
@@ -10,7 +10,7 @@ interface Props {
10
10
  cta?: Cta
11
11
  }
12
12
 
13
- const { text, cta } = defineProps<Props>()
13
+ const { text = '', image = undefined, cta = undefined, title = '' } = defineProps<Props>()
14
14
 
15
15
  const slots = useSlots()
16
16
  const hasCta = computed(() => !!slots.cta || cta)