@quilltap/theme-storybook 1.0.41 → 1.0.44
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 +12 -0
- package/dist/{chunk-U2PTQQL5.mjs → chunk-77W5TNBS.mjs} +886 -755
- package/dist/index.css +136 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +887 -755
- package/dist/index.mjs +3 -1
- package/dist/stories/index.d.mts +13 -1
- package/dist/stories/index.d.ts +13 -1
- package/dist/stories/index.js +887 -755
- package/dist/stories/index.mjs +3 -1
- package/package.json +1 -1
- package/src/css/qt-components.css +72 -0
- package/src/stories/components/Chat.tsx +34 -0
- package/src/stories/components/Icons.tsx +2 -2
- package/src/stories/components/Surfaces.tsx +107 -0
- package/src/stories/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@quilltap/theme-storybook` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.44] - 2026-06-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Roleplay-template style classes: the four high-contrast chips `qt-roleplay-1..4` (with `--qt-roleplay-1..4-bg/fg` tokens themes override), the semantic chips `qt-roleplay-danger/warning/success/info/muted/code`, and the add-on flourish classes (`qt-rp-bold`, `qt-rp-italic`, `qt-rp-reverse`, `qt-rp-underline`, `qt-rp-underline-double`, `qt-rp-border`, `qt-rp-border-dashed`, `qt-rp-font-{sans,serif,mono,display,script}`). Mirrors the app-side definitions.
|
|
9
|
+
- `Chat` story: a "Roleplay-Template Styles" section previewing the four chips, the semantic set, and a row of add-on combinations so theme authors can see them across themes.
|
|
10
|
+
|
|
11
|
+
## [1.0.43] - 2026-06-11
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- `.qt-hover-accent` utility class: a hoverable accent surface for list rows, menu items, and option cards. On hover it paints the accent background and forces the accent foreground onto the row **and every descendant** (via `:hover :where(*)`), so composite rows stay legible even when a theme maps `accent` to a bold colour and the children carry their own colour. Mirrors the app-side definition.
|
|
15
|
+
- `Surfaces` story: documents the accent-surface contract for theme authors — filled accent surfaces paired with `qt-text-on-accent`, hover rows via `qt-hover-accent`, and quiet selected/panel surfaces (`qt-bg-primary/10` / `qt-bg-muted`) that deliberately avoid the bold accent. Exported from `@quilltap/theme-storybook/stories`.
|
|
16
|
+
|
|
5
17
|
## [1.0.41] - 2026-06-10
|
|
6
18
|
|
|
7
19
|
### Changed
|