@quilltap/theme-storybook 1.0.21 → 1.0.23
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-W3J7BRAL.mjs → chunk-45RKCZL3.mjs} +843 -136
- package/dist/index.css +62 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +845 -135
- package/dist/index.mjs +7 -1
- package/dist/stories/index.d.mts +25 -1
- package/dist/stories/index.d.ts +25 -1
- package/dist/stories/index.js +845 -135
- package/dist/stories/index.mjs +7 -1
- package/package.json +3 -3
- package/src/css/qt-components.css +75 -0
- package/src/stories/components/Badges.tsx +90 -0
- package/src/stories/components/Cards.tsx +21 -0
- package/src/stories/components/Chat.tsx +262 -11
- package/src/stories/components/ColorPalette.tsx +10 -0
- package/src/stories/components/Dialogs.tsx +50 -2
- package/src/stories/components/EmptyState.tsx +102 -0
- package/src/stories/components/Inputs.tsx +62 -24
- package/src/stories/components/Loading.tsx +125 -0
- package/src/stories/components/Participant.tsx +187 -0
- package/src/stories/components/Spacing.tsx +169 -67
- package/src/stories/components/Typography.tsx +163 -46
- package/src/stories/index.ts +3 -0
package/dist/index.mjs
CHANGED
|
@@ -8,13 +8,16 @@ import {
|
|
|
8
8
|
ColorPalette,
|
|
9
9
|
ColorSwatch,
|
|
10
10
|
Dialogs,
|
|
11
|
+
EmptyState,
|
|
11
12
|
FilePreview,
|
|
12
13
|
Inputs,
|
|
14
|
+
Loading,
|
|
15
|
+
Participant,
|
|
13
16
|
Spacing,
|
|
14
17
|
Tabs,
|
|
15
18
|
ThemeComparison,
|
|
16
19
|
Typography
|
|
17
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-45RKCZL3.mjs";
|
|
18
21
|
import "./chunk-WUKYLWAZ.mjs";
|
|
19
22
|
|
|
20
23
|
// src/preview.tsx
|
|
@@ -87,8 +90,11 @@ export {
|
|
|
87
90
|
ColorPalette,
|
|
88
91
|
ColorSwatch,
|
|
89
92
|
Dialogs,
|
|
93
|
+
EmptyState,
|
|
90
94
|
FilePreview,
|
|
91
95
|
Inputs,
|
|
96
|
+
Loading,
|
|
97
|
+
Participant,
|
|
92
98
|
Spacing,
|
|
93
99
|
Tabs,
|
|
94
100
|
ThemeComparison,
|
package/dist/stories/index.d.mts
CHANGED
|
@@ -119,4 +119,28 @@ declare const FilePreview: React.FC;
|
|
|
119
119
|
|
|
120
120
|
declare const ThemeComparison: React.FC;
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
/**
|
|
123
|
+
* Empty State Story Component
|
|
124
|
+
*
|
|
125
|
+
* Displays empty state variants for theme development.
|
|
126
|
+
*/
|
|
127
|
+
|
|
128
|
+
declare const EmptyState: React.FC;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Loading Story Component
|
|
132
|
+
*
|
|
133
|
+
* Displays loading state variants including spinners, skeletons, and progress indicators.
|
|
134
|
+
*/
|
|
135
|
+
|
|
136
|
+
declare const Loading: React.FC;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Participant Story Component
|
|
140
|
+
*
|
|
141
|
+
* Displays participant card variants for chat interface theming.
|
|
142
|
+
*/
|
|
143
|
+
|
|
144
|
+
declare const Participant: React.FC;
|
|
145
|
+
|
|
146
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, ThemeComparison, Typography };
|
package/dist/stories/index.d.ts
CHANGED
|
@@ -119,4 +119,28 @@ declare const FilePreview: React.FC;
|
|
|
119
119
|
|
|
120
120
|
declare const ThemeComparison: React.FC;
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
/**
|
|
123
|
+
* Empty State Story Component
|
|
124
|
+
*
|
|
125
|
+
* Displays empty state variants for theme development.
|
|
126
|
+
*/
|
|
127
|
+
|
|
128
|
+
declare const EmptyState: React.FC;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Loading Story Component
|
|
132
|
+
*
|
|
133
|
+
* Displays loading state variants including spinners, skeletons, and progress indicators.
|
|
134
|
+
*/
|
|
135
|
+
|
|
136
|
+
declare const Loading: React.FC;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Participant Story Component
|
|
140
|
+
*
|
|
141
|
+
* Displays participant card variants for chat interface theming.
|
|
142
|
+
*/
|
|
143
|
+
|
|
144
|
+
declare const Participant: React.FC;
|
|
145
|
+
|
|
146
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, ThemeComparison, Typography };
|