@quilltap/theme-storybook 1.0.44 → 1.0.46
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/{chunk-77W5TNBS.mjs → chunk-ENP3AWD5.mjs} +675 -583
- package/dist/index.css +97 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +676 -583
- package/dist/index.mjs +4 -2
- package/dist/stories/index.d.mts +19 -1
- package/dist/stories/index.d.ts +19 -1
- package/dist/stories/index.js +678 -585
- package/dist/stories/index.mjs +5 -3
- package/package.json +4 -4
- package/src/css/qt-components.css +128 -0
- package/src/stories/components/Workspace.tsx +139 -0
- package/src/stories/index.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -19,8 +19,9 @@ import {
|
|
|
19
19
|
Tabs,
|
|
20
20
|
Terminal,
|
|
21
21
|
ThemeComparison,
|
|
22
|
-
Typography
|
|
23
|
-
|
|
22
|
+
Typography,
|
|
23
|
+
Workspace
|
|
24
|
+
} from "./chunk-ENP3AWD5.mjs";
|
|
24
25
|
import "./chunk-WUKYLWAZ.mjs";
|
|
25
26
|
|
|
26
27
|
// src/preview.tsx
|
|
@@ -106,5 +107,6 @@ export {
|
|
|
106
107
|
ThemeComparison,
|
|
107
108
|
ThemeDecorator,
|
|
108
109
|
Typography,
|
|
110
|
+
Workspace,
|
|
109
111
|
defaultPreview
|
|
110
112
|
};
|
package/dist/stories/index.d.mts
CHANGED
|
@@ -118,6 +118,24 @@ declare const Dialogs: React.FC;
|
|
|
118
118
|
|
|
119
119
|
declare const Tabs: React.FC;
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
* Workspace Story Component
|
|
123
|
+
*
|
|
124
|
+
* The tabbed workspace chrome: the per-pane tab strip (active / inactive /
|
|
125
|
+
* close), the resizable pane divider with its grip, and the split drop-zone.
|
|
126
|
+
*
|
|
127
|
+
* Every accented surface here derives from a single theme hook,
|
|
128
|
+
* `--qt-workspace-accent` (it falls back to `--color-primary`). A theme re-tints
|
|
129
|
+
* the whole workspace by setting that one token at its `[data-theme="…"]` root —
|
|
130
|
+
* e.g. Madman's Box points it at cyan rather than its amber primary. The
|
|
131
|
+
* individual `--qt-workspace-tab-*` / `--qt-workspace-divider-*` /
|
|
132
|
+
* `--qt-tab-drop-zone-*` hooks remain for finer control.
|
|
133
|
+
*
|
|
134
|
+
* @module @quilltap/theme-storybook/stories/components/Workspace
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
declare const Workspace: React.FC;
|
|
138
|
+
|
|
121
139
|
/**
|
|
122
140
|
* Chat Story Component
|
|
123
141
|
*
|
|
@@ -181,4 +199,4 @@ declare const Loading: React.FC;
|
|
|
181
199
|
|
|
182
200
|
declare const Participant: React.FC;
|
|
183
201
|
|
|
184
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography };
|
|
202
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography, Workspace };
|
package/dist/stories/index.d.ts
CHANGED
|
@@ -118,6 +118,24 @@ declare const Dialogs: React.FC;
|
|
|
118
118
|
|
|
119
119
|
declare const Tabs: React.FC;
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
* Workspace Story Component
|
|
123
|
+
*
|
|
124
|
+
* The tabbed workspace chrome: the per-pane tab strip (active / inactive /
|
|
125
|
+
* close), the resizable pane divider with its grip, and the split drop-zone.
|
|
126
|
+
*
|
|
127
|
+
* Every accented surface here derives from a single theme hook,
|
|
128
|
+
* `--qt-workspace-accent` (it falls back to `--color-primary`). A theme re-tints
|
|
129
|
+
* the whole workspace by setting that one token at its `[data-theme="…"]` root —
|
|
130
|
+
* e.g. Madman's Box points it at cyan rather than its amber primary. The
|
|
131
|
+
* individual `--qt-workspace-tab-*` / `--qt-workspace-divider-*` /
|
|
132
|
+
* `--qt-tab-drop-zone-*` hooks remain for finer control.
|
|
133
|
+
*
|
|
134
|
+
* @module @quilltap/theme-storybook/stories/components/Workspace
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
declare const Workspace: React.FC;
|
|
138
|
+
|
|
121
139
|
/**
|
|
122
140
|
* Chat Story Component
|
|
123
141
|
*
|
|
@@ -181,4 +199,4 @@ declare const Loading: React.FC;
|
|
|
181
199
|
|
|
182
200
|
declare const Participant: React.FC;
|
|
183
201
|
|
|
184
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography };
|
|
202
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography, Workspace };
|