@fiscozen/dialog 0.1.2 → 0.1.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/FzDialog.vue +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/dialog",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Design System Dialog component",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
package/src/FzDialog.vue CHANGED
@@ -10,7 +10,7 @@
10
10
  >
11
11
  <slot name="header"></slot>
12
12
  </div>
13
- <div :class="['grow', bodyClasses]">
13
+ <div :class="['grow', 'p-12', bodyClasses]">
14
14
  <slot name="body"></slot>
15
15
  </div>
16
16
  <div
@@ -91,6 +91,7 @@ const dialogClasses = computed(() => {
91
91
  "xs:max-sm:w-screen",
92
92
  "xs:max-sm:max-w-screen-xl",
93
93
  ];
94
+ break;
94
95
  case "lg":
95
96
  res = [
96
97
  "xs:max-md:m-0",
@@ -99,6 +100,7 @@ const dialogClasses = computed(() => {
99
100
  "xs:max-md:w-screen",
100
101
  "xs:max-md:max-w-screen-xl",
101
102
  ];
103
+ break;
102
104
  case "xl":
103
105
  res = [
104
106
  "xs:max-xl:m-0",