@cloudron/pankow 3.2.11 → 3.2.12
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/Dialog.vue +1 -1
- package/package.json +2 -2
package/components/Dialog.vue
CHANGED
|
@@ -109,7 +109,7 @@ defineExpose({ open, close });
|
|
|
109
109
|
<div class="pankow-dialog-backdrop" @click="onDismiss" v-show="visible" :style="{ 'z-index': zIndex }"></div>
|
|
110
110
|
</Transition>
|
|
111
111
|
<Transition name="pankow-bounce-center-top">
|
|
112
|
-
<div ref="dialog" class="pankow-dialog" v-bind="$attrs" :class="{ 'pankow-dialog-center': center }"
|
|
112
|
+
<div ref="dialog" class="pankow-dialog" v-bind="$attrs" :class="{ 'pankow-dialog-center': center }" v-show="visible" @keydown.esc="onDismiss" tabindex="0" :style="mergedStyle">
|
|
113
113
|
<div class="pankow-dialog-header" v-show="title">
|
|
114
114
|
{{ title }}
|
|
115
115
|
<Icon v-show="showX" icon="fa-solid fa-xmark" style="cursor: pointer;" @click="onReject"/>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudron/pankow",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.12",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "types/index.d.ts",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
26
26
|
"typescript": "^5.9.2",
|
|
27
27
|
"vite": "^7.1.3",
|
|
28
|
-
"vue": "^3.5.
|
|
28
|
+
"vue": "^3.5.20"
|
|
29
29
|
}
|
|
30
30
|
}
|