@veritree/ui 0.34.0 → 0.34.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/ui",
3
- "version": "0.34.0",
3
+ "version": "0.34.1",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -92,6 +92,10 @@ export default {
92
92
  return `dialog-${this.componentId}`;
93
93
  },
94
94
 
95
+ classes() {
96
+ return !this.full ? 'p-4 md:p-6' : '';
97
+ },
98
+
95
99
  hasContent() {
96
100
  return this.content !== null;
97
101
  },
@@ -99,9 +103,6 @@ export default {
99
103
  hasOverlay() {
100
104
  return this.overlay !== null;
101
105
  },
102
- classes() {
103
- return !this.full ? 'p-4 md:p-8' : '';
104
- },
105
106
  },
106
107
 
107
108
  watch: {