@quilltap/theme-storybook 1.0.22 → 1.0.24
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/README.md +1 -0
- package/dist/{chunk-W3J7BRAL.mjs → chunk-VCF2M2TP.mjs} +860 -136
- package/dist/index.css +76 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +862 -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 +862 -135
- package/dist/stories/index.mjs +7 -1
- package/package.json +4 -4
- package/src/css/qt-components.css +91 -0
- package/src/stories/components/Badges.tsx +90 -0
- package/src/stories/components/Cards.tsx +50 -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/README.md
CHANGED
|
@@ -261,6 +261,7 @@ All Quilltap components use `qt-*` prefixed classes. Your theme CSS can override
|
|
|
261
261
|
- `.qt-card-title`, `.qt-card-description` - Card text
|
|
262
262
|
- `.qt-card-interactive` - Hoverable card
|
|
263
263
|
- `.qt-entity-card` - Character/entity list card
|
|
264
|
+
- `.qt-character-card` - Compact character card (homepage grid)
|
|
264
265
|
- `.qt-panel` - Panel variant
|
|
265
266
|
|
|
266
267
|
### Inputs
|