@quilltap/theme-storybook 1.0.14 → 1.0.15

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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to `@quilltap/theme-storybook` will be documented in this file.
4
4
 
5
+ ## [1.0.15] - 2026-01-29
6
+
7
+ ### Added
8
+ - `.qt-button-warning` class for cautionary action buttons (uses `--qt-button-warning-*` variables)
9
+
5
10
  ## [1.0.14] - 2026-01-25
6
11
 
7
12
  ### Added
package/dist/index.css CHANGED
@@ -365,6 +365,13 @@ body {
365
365
  .qt-button-destructive:hover:not(:disabled) {
366
366
  background-color: var(--qt-button-destructive-hover-bg);
367
367
  }
368
+ .qt-button-warning {
369
+ background-color: var(--qt-button-warning-bg);
370
+ color: var(--qt-button-warning-fg);
371
+ }
372
+ .qt-button-warning:hover:not(:disabled) {
373
+ background-color: var(--qt-button-warning-hover-bg);
374
+ }
368
375
  .qt-button-success {
369
376
  display: inline-flex;
370
377
  align-items: center;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/theme-storybook",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
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",
@@ -284,6 +284,15 @@
284
284
  background-color: var(--qt-button-destructive-hover-bg);
285
285
  }
286
286
 
287
+ .qt-button-warning {
288
+ background-color: var(--qt-button-warning-bg);
289
+ color: var(--qt-button-warning-fg);
290
+ }
291
+
292
+ .qt-button-warning:hover:not(:disabled) {
293
+ background-color: var(--qt-button-warning-hover-bg);
294
+ }
295
+
287
296
  .qt-button-success {
288
297
  display: inline-flex;
289
298
  align-items: center;