@veritree/ui 0.90.1 → 0.91.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/ui",
3
- "version": "0.90.1",
3
+ "version": "0.91.0",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -205,7 +205,9 @@ export default {
205
205
  const classes = [];
206
206
 
207
207
  if (!this.headless) {
208
- classes.push('mx-auto inline-flex items-center gap-2 self-center');
208
+ classes.push(
209
+ 'mx-auto inline-flex items-center gap-2 self-center pointer-events-none',
210
+ );
209
211
  }
210
212
 
211
213
  if (this.headless && this.busy) {
@@ -41,6 +41,10 @@ export default {
41
41
  if (this.variant === 'warning') {
42
42
  return 'bg-warning-500';
43
43
  }
44
+
45
+ if (this.variant === 'dark') {
46
+ return 'bg-gray-800';
47
+ }
44
48
  },
45
49
  },
46
50
  };