@cloudron/pankow 4.4.7 → 4.4.9

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.
@@ -50,7 +50,9 @@ function onMenu(event) {
50
50
  <slot name="left" />
51
51
  </div>
52
52
  <div class="pankow-list-item-center">
53
- <div class="pankow-list-item-label">{{ label }}</div>
53
+ <div v-if="$slots.label || label" class="pankow-list-item-label">
54
+ <slot name="label">{{ label }}</slot>
55
+ </div>
54
56
  <div v-if="$slots.subtext || subtext" class="pankow-list-item-subtext">
55
57
  <slot name="subtext">{{ subtext }}</slot>
56
58
  </div>
@@ -101,6 +103,7 @@ function onMenu(event) {
101
103
  .pankow-list-item-center {
102
104
  display: flex;
103
105
  flex-direction: column;
106
+ gap: 3px;
104
107
  min-width: 0;
105
108
  flex: 1;
106
109
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudron/pankow",
3
3
  "private": false,
4
- "version": "4.4.7",
4
+ "version": "4.4.9",
5
5
  "description": "Vue 3 UI component library for Cloudron apps",
6
6
  "main": "index.js",
7
7
  "types": "types/index.d.ts",