@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.
- package/components/badge/u-badge.vue +9 -1
- package/components/card/card.scss +3 -1
- package/components/card/u-card.vue +1 -3
- package/components/card-cta-header/u-card-cta-header.vue +1 -1
- package/components/card-footer/u-card-footer.vue +1 -1
- package/components/card-price/u-card-price.vue +8 -4
- package/components/collapsible/u-collapsible.vue +1 -1
- package/components/context-menu-link/u-context-menu-link.vue +2 -2
- package/components/data-card/data-card.scss +1 -1
- package/components/download-list-item/download-list-item.scss +58 -37
- package/components/download-list-item/u-download-list-item.vue +46 -8
- package/components/hint/hint.scss +85 -91
- package/components/hint/u-hint.vue +1 -3
- package/components/index.js +0 -6
- package/components/inline-edit/inline-edit.scss +2 -2
- package/components/inline-edit/u-inline-edit.vue +0 -1
- package/components/navigation-panel-tile/u-navigation-panel-tile.vue +5 -1
- package/components/navigation-toolbar-link/u-navigation-toolbar-link.vue +1 -0
- package/components/panel/u-panel.vue +1 -1
- package/components/progress-avatar/u-progress-avatar.vue +4 -4
- package/components/richtext/u-richtext.vue +1 -1
- package/components/table/cell-ctas.scss +1 -0
- package/components/table/u-cell-progress-bar.vue +1 -1
- package/components/table/u-table-cell.vue +1 -0
- package/components/table/u-table-heading.vue +3 -5
- package/components/tabs/u-tabs.vue +10 -4
- package/components/text-block/u-text-block.vue +1 -1
- package/dist/base-style.css +23 -22
- package/dist/base-style.css.map +1 -1
- package/elements/button/u-button.vue +8 -1
- package/elements/button-chip/u-button-chip.vue +13 -7
- package/elements/checkbox/u-checkbox.vue +1 -1
- package/elements/icon-button/u-icon-button.vue +1 -1
- package/elements/numeric-stepper/u-numeric-stepper.vue +3 -1
- package/elements/select-chip/u-select-chip.vue +4 -1
- package/elements/text-field/u-text-field.vue +2 -0
- package/elements/textarea/u-textarea.vue +1 -0
- package/elements/toggle-switch/u-toggle-switch.vue +1 -0
- package/layout/index.js +2 -1
- package/layout/portal/portal.scss +26 -42
- package/layout/portal/u-portal.vue +13 -34
- package/layout/portal-main/portal-main.scss +98 -0
- package/layout/portal-main/u-portal-main.vue +37 -0
- package/layout/tile-grid/u-tile-item.vue +7 -0
- package/modules/dialog/u-dialog.vue +8 -2
- package/modules/navigation-panel/navigation-panel.scss +1 -1
- package/package.json +7 -7
- 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.
|
|
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.
|
|
28
|
-
"@types/node": "^22.
|
|
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.
|
|
33
|
-
"sass": "^1.
|
|
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
|
-
"
|
|
41
|
-
"
|
|
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)
|