@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/dist/index.mjs
CHANGED
|
@@ -15,9 +15,10 @@ import {
|
|
|
15
15
|
Participant,
|
|
16
16
|
Spacing,
|
|
17
17
|
Tabs,
|
|
18
|
+
Terminal,
|
|
18
19
|
ThemeComparison,
|
|
19
20
|
Typography
|
|
20
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-7CI72GBQ.mjs";
|
|
21
22
|
import "./chunk-WUKYLWAZ.mjs";
|
|
22
23
|
|
|
23
24
|
// src/preview.tsx
|
|
@@ -97,6 +98,7 @@ export {
|
|
|
97
98
|
Participant,
|
|
98
99
|
Spacing,
|
|
99
100
|
Tabs,
|
|
101
|
+
Terminal,
|
|
100
102
|
ThemeComparison,
|
|
101
103
|
ThemeDecorator,
|
|
102
104
|
Typography,
|
package/dist/stories/index.d.mts
CHANGED
|
@@ -100,6 +100,17 @@ declare const Tabs: React.FC;
|
|
|
100
100
|
|
|
101
101
|
declare const Chat: React.FC;
|
|
102
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Terminal Story Component
|
|
105
|
+
*
|
|
106
|
+
* Previews the in-chat terminal embed, pop-out page, and Terminal Mode pane
|
|
107
|
+
* surfaces. The terminal carries its own (dark) identity by default — themes
|
|
108
|
+
* can override --qt-terminal-* and --qt-terminal-chrome-* tokens to retint
|
|
109
|
+
* the whole stack (e.g. a parchment terminal, a CRT terminal, etc).
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
declare const Terminal: React.FC;
|
|
113
|
+
|
|
103
114
|
/**
|
|
104
115
|
* File Preview Story Component
|
|
105
116
|
*
|
|
@@ -143,4 +154,4 @@ declare const Loading: React.FC;
|
|
|
143
154
|
|
|
144
155
|
declare const Participant: React.FC;
|
|
145
156
|
|
|
146
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, ThemeComparison, Typography };
|
|
157
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|
package/dist/stories/index.d.ts
CHANGED
|
@@ -100,6 +100,17 @@ declare const Tabs: React.FC;
|
|
|
100
100
|
|
|
101
101
|
declare const Chat: React.FC;
|
|
102
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Terminal Story Component
|
|
105
|
+
*
|
|
106
|
+
* Previews the in-chat terminal embed, pop-out page, and Terminal Mode pane
|
|
107
|
+
* surfaces. The terminal carries its own (dark) identity by default — themes
|
|
108
|
+
* can override --qt-terminal-* and --qt-terminal-chrome-* tokens to retint
|
|
109
|
+
* the whole stack (e.g. a parchment terminal, a CRT terminal, etc).
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
declare const Terminal: React.FC;
|
|
113
|
+
|
|
103
114
|
/**
|
|
104
115
|
* File Preview Story Component
|
|
105
116
|
*
|
|
@@ -143,4 +154,4 @@ declare const Loading: React.FC;
|
|
|
143
154
|
|
|
144
155
|
declare const Participant: React.FC;
|
|
145
156
|
|
|
146
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, ThemeComparison, Typography };
|
|
157
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|