@quilltap/theme-storybook 1.0.64 → 1.0.65

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/dist/index.css CHANGED
@@ -2254,6 +2254,9 @@ body {
2254
2254
  .hover\:qt-bg-muted\/80:hover {
2255
2255
  background-color: color-mix(in srgb, var(--color-muted) 80%, transparent);
2256
2256
  }
2257
+ .hover\:qt-bg-primary:hover {
2258
+ background-color: var(--color-primary);
2259
+ }
2257
2260
  .hover\:qt-bg-primary\/5:hover {
2258
2261
  background-color: color-mix(in srgb, var(--color-primary) 5%, transparent);
2259
2262
  }
@@ -2275,6 +2278,9 @@ body {
2275
2278
  .hover\:qt-bg-destructive\/90:hover {
2276
2279
  background-color: color-mix(in srgb, var(--color-destructive) 90%, transparent);
2277
2280
  }
2281
+ .hover\:qt-bg-success:hover {
2282
+ background-color: var(--color-success);
2283
+ }
2278
2284
  .hover\:qt-bg-success\/20:hover {
2279
2285
  background-color: color-mix(in srgb, var(--color-success) 20%, transparent);
2280
2286
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/theme-storybook",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "Storybook preset and stories for developing Quilltap theme plugins",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2806,6 +2806,10 @@
2806
2806
  background-color: color-mix(in srgb, var(--color-muted) 80%, transparent);
2807
2807
  }
2808
2808
 
2809
+ .hover\:qt-bg-primary:hover {
2810
+ background-color: var(--color-primary);
2811
+ }
2812
+
2809
2813
  .hover\:qt-bg-primary\/5:hover {
2810
2814
  background-color: color-mix(in srgb, var(--color-primary) 5%, transparent);
2811
2815
  }
@@ -2834,6 +2838,10 @@
2834
2838
  background-color: color-mix(in srgb, var(--color-destructive) 90%, transparent);
2835
2839
  }
2836
2840
 
2841
+ .hover\:qt-bg-success:hover {
2842
+ background-color: var(--color-success);
2843
+ }
2844
+
2837
2845
  .hover\:qt-bg-success\/20:hover {
2838
2846
  background-color: color-mix(in srgb, var(--color-success) 20%, transparent);
2839
2847
  }