@fiscozen/dialog 0.1.21 → 0.1.23
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/package.json +5 -5
- package/src/FzDialog.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/dialog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Design System Dialog component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/
|
|
13
|
-
"@fiscozen/
|
|
14
|
-
"@fiscozen/
|
|
12
|
+
"@fiscozen/composables": "^0.1.33",
|
|
13
|
+
"@fiscozen/button": "^0.1.8",
|
|
14
|
+
"@fiscozen/style": "^0.1.3"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"dialog-polyfill": "^0.5.6",
|
|
41
|
-
"@fiscozen/composables": "^0.1.
|
|
41
|
+
"@fiscozen/composables": "^0.1.33"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"coverage": "vitest run --coverage",
|
package/src/FzDialog.vue
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
v-if="shouldRender || shouldAlwaysRender"
|
|
4
4
|
ref="backdrop"
|
|
5
5
|
v-show="visible"
|
|
6
|
-
class="fz-dialog__backdrop w-screen h-screen fixed flex flex-col items-center justify-start sm:justify-center z-
|
|
6
|
+
class="fz-dialog__backdrop w-screen h-screen fixed flex flex-col items-center justify-start sm:justify-center z-20"
|
|
7
7
|
>
|
|
8
8
|
<dialog
|
|
9
9
|
ref="dialog"
|
|
@@ -121,7 +121,7 @@ const handleKeyUp = (e: KeyboardEvent) => {
|
|
|
121
121
|
useKeyUp(handleKeyUp);
|
|
122
122
|
|
|
123
123
|
const staticClasses = "flex flex-col bg-core-white";
|
|
124
|
-
const dialogStaticClasses = "border-1 rounded border-grey-100 p-0";
|
|
124
|
+
const dialogStaticClasses = "border-1 rounded border-grey-100 p-0 z-[42] top-0 bottom-0";
|
|
125
125
|
|
|
126
126
|
const dialogClasses = computed(() => {
|
|
127
127
|
if (props.isDrawer) {
|