@cloudron/pankow 3.2.23 → 3.3.0

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.
@@ -69,7 +69,11 @@ async function open() {
69
69
  }
70
70
 
71
71
  function close() {
72
+ // already closing
73
+ if (!visible.value) return;
74
+
72
75
  visible.value = false;
76
+ emit('close');
73
77
  }
74
78
 
75
79
  function onConfirm() {
@@ -23,4 +23,9 @@ const props = defineProps({
23
23
  align-content: stretch;
24
24
  }
25
25
 
26
+ /* spacing between adjacent FormGroups */
27
+ .pankow-form-group + .pankow-form-group {
28
+ margin: 6px 0;
29
+ }
30
+
26
31
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudron/pankow",
3
3
  "private": false,
4
- "version": "3.2.23",
4
+ "version": "3.3.0",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "types": "types/index.d.ts",