@quilltap/theme-storybook 1.0.50 → 1.0.52
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/index.css +6 -0
- package/package.json +4 -4
- package/src/css/qt-components.css +8 -0
package/dist/index.css
CHANGED
|
@@ -1519,6 +1519,9 @@ body {
|
|
|
1519
1519
|
.qt-chat-composer-input::placeholder {
|
|
1520
1520
|
color: var(--color-muted-foreground);
|
|
1521
1521
|
}
|
|
1522
|
+
.qt-text {
|
|
1523
|
+
color: var(--color-foreground);
|
|
1524
|
+
}
|
|
1522
1525
|
.qt-text-primary {
|
|
1523
1526
|
color: var(--color-foreground);
|
|
1524
1527
|
}
|
|
@@ -2180,6 +2183,9 @@ body {
|
|
|
2180
2183
|
.qt-bg-surface {
|
|
2181
2184
|
background-color: var(--color-background);
|
|
2182
2185
|
}
|
|
2186
|
+
.qt-bg-surface-hover {
|
|
2187
|
+
background-color: var(--color-muted);
|
|
2188
|
+
}
|
|
2183
2189
|
.qt-bg-surface-alt {
|
|
2184
2190
|
background-color: var(--color-muted);
|
|
2185
2191
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quilltap/theme-storybook",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.52",
|
|
4
4
|
"description": "Storybook preset and stories for developing Quilltap theme plugins",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"storybook": ">=8.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@storybook/react": "^10.5.
|
|
46
|
+
"@storybook/react": "^10.5.5",
|
|
47
47
|
"@types/react": "^19.2.17",
|
|
48
|
-
"react": "^19.2.
|
|
49
|
-
"storybook": "^10.5.
|
|
48
|
+
"react": "^19.2.8",
|
|
49
|
+
"storybook": "^10.5.5",
|
|
50
50
|
"tsup": "^8.5.1",
|
|
51
51
|
"typescript": "^5.9.3"
|
|
52
52
|
},
|
|
@@ -1749,6 +1749,10 @@
|
|
|
1749
1749
|
UTILITY CLASSES
|
|
1750
1750
|
========================================================================== */
|
|
1751
1751
|
|
|
1752
|
+
.qt-text {
|
|
1753
|
+
color: var(--color-foreground);
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1752
1756
|
.qt-text-primary {
|
|
1753
1757
|
color: var(--color-foreground);
|
|
1754
1758
|
}
|
|
@@ -2643,6 +2647,10 @@
|
|
|
2643
2647
|
background-color: var(--color-background);
|
|
2644
2648
|
}
|
|
2645
2649
|
|
|
2650
|
+
.qt-bg-surface-hover {
|
|
2651
|
+
background-color: var(--color-muted);
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2646
2654
|
.qt-bg-surface-alt {
|
|
2647
2655
|
background-color: var(--color-muted);
|
|
2648
2656
|
}
|