@quilltap/theme-storybook 1.0.34 → 1.0.35
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 +14 -0
- package/dist/{chunk-C4SJNVAC.mjs → chunk-7CI72GBQ.mjs} +409 -319
- package/dist/index.css +140 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +410 -319
- package/dist/index.mjs +3 -1
- package/dist/stories/index.d.mts +12 -1
- package/dist/stories/index.d.ts +12 -1
- package/dist/stories/index.js +410 -319
- package/dist/stories/index.mjs +3 -1
- package/package.json +1 -1
- package/src/css/qt-components.css +183 -2
- package/src/stories/components/Terminal.tsx +129 -0
- package/src/stories/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@quilltap/theme-storybook` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.35] - 2026-05-17
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Terminal component classes: `qt-terminal-surface`, `qt-terminal-embed`, `qt-terminal-embed-header`, `qt-terminal-embed-footer`, `qt-terminal-popout-page`, `qt-terminal-popout-header`, `qt-terminal-popout-link`, `qt-terminal-popout-title`, `qt-terminal-popout-separator`, `qt-terminal-closed-badge`
|
|
9
|
+
- Terminal CSS variables: `--qt-terminal-bg`, `--qt-terminal-fg`, `--qt-terminal-cursor`, `--qt-terminal-selection`, `--qt-terminal-ansi-*` (16 colors), `--qt-terminal-chrome-bg`, `--qt-terminal-chrome-border`, `--qt-terminal-chrome-fg`, `--qt-terminal-chrome-muted-fg`, `--qt-terminal-closed-badge-*`, `--qt-terminal-embed-*` — themes can override these to retint the terminal stack end-to-end
|
|
10
|
+
- Solid status background utilities: `qt-bg-success`, `qt-bg-warning`, `qt-bg-info`, `qt-bg-destructive`, `qt-bg-accent`, `qt-bg-muted-foreground`
|
|
11
|
+
- Additional opacity variants: `qt-bg-success/40`, `qt-bg-success/60`, `qt-bg-destructive/60`, `qt-bg-muted-foreground/30`, `qt-bg-muted-foreground/60`, `qt-border-success/20`, `qt-border-success/40`, `hover:qt-bg-muted-foreground/60`
|
|
12
|
+
- Foreground utility for accent-coloured surfaces: `qt-text-on-accent`
|
|
13
|
+
- Terminal story preview under `stories/components/Terminal`
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- `qt-bg-primary` now correctly maps to `var(--color-primary)` (was incorrectly pointing at `--color-background`)
|
|
17
|
+
- `qt-bg-secondary` now correctly maps to `var(--color-secondary)` (was incorrectly pointing at `--color-muted`)
|
|
18
|
+
|
|
5
19
|
## [1.0.21] - 2026-02-20
|
|
6
20
|
|
|
7
21
|
### Added
|