@quilltap/theme-storybook 1.0.41 → 1.0.43
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 +6 -0
- package/dist/{chunk-U2PTQQL5.mjs → chunk-MKFVWQPL.mjs} +858 -755
- package/dist/index.css +10 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +859 -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 +859 -755
- package/dist/stories/index.mjs +3 -1
- package/package.json +1 -1
- package/src/css/qt-components.css +20 -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/dist/index.css
CHANGED
|
@@ -1393,6 +1393,16 @@ body {
|
|
|
1393
1393
|
.qt-text-on-accent {
|
|
1394
1394
|
color: var(--color-accent-foreground);
|
|
1395
1395
|
}
|
|
1396
|
+
.qt-hover-accent {
|
|
1397
|
+
transition: background-color 0.15s ease, color 0.15s ease;
|
|
1398
|
+
}
|
|
1399
|
+
.qt-hover-accent:hover {
|
|
1400
|
+
background-color: var(--color-accent);
|
|
1401
|
+
color: var(--color-accent-foreground);
|
|
1402
|
+
}
|
|
1403
|
+
.qt-hover-accent:hover :where(*) {
|
|
1404
|
+
color: var(--color-accent-foreground);
|
|
1405
|
+
}
|
|
1396
1406
|
.qt-bg-muted {
|
|
1397
1407
|
background-color: var(--color-muted);
|
|
1398
1408
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Decorator, Preview } from '@storybook/react';
|
|
2
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography } from './stories/index.mjs';
|
|
2
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography } from './stories/index.mjs';
|
|
3
3
|
import 'react';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Decorator, Preview } from '@storybook/react';
|
|
2
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography } from './stories/index.js';
|
|
2
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Surfaces, Tabs, Terminal, ThemeComparison, Typography } from './stories/index.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
|
|
5
5
|
/**
|