@quilltap/theme-storybook 1.0.15 → 1.0.16

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.16] - 2026-01-30
6
+
7
+ ### Added
8
+ - `.qt-dialog-wide` class for dialogs that match page container width (uses `--qt-page-max-width` variable)
9
+
5
10
  ## [1.0.15] - 2026-01-29
6
11
 
7
12
  ### Added
package/dist/index.css CHANGED
@@ -660,6 +660,9 @@ body {
660
660
  padding: 1.5rem;
661
661
  padding-top: 0;
662
662
  }
663
+ .qt-dialog-wide {
664
+ max-width: min(var(--qt-page-max-width, 75rem), calc(100vw - 2rem));
665
+ }
663
666
  .qt-tabs {
664
667
  display: flex;
665
668
  gap: 0.25rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/theme-storybook",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
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",
@@ -642,6 +642,11 @@
642
642
  padding-top: 0;
643
643
  }
644
644
 
645
+ /* Wide dialog variant - matches page container width */
646
+ .qt-dialog-wide {
647
+ max-width: min(var(--qt-page-max-width, 75rem), calc(100vw - 2rem));
648
+ }
649
+
645
650
  /* ==========================================================================
646
651
  TAB COMPONENTS
647
652
  ========================================================================== */