@quilltap/theme-storybook 1.0.38 → 1.0.40
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 +5 -0
- package/dist/{chunk-7CI72GBQ.mjs → chunk-GXTUADEJ.mjs} +1387 -1220
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1388 -1220
- package/dist/index.mjs +3 -1
- package/dist/stories/index.d.mts +16 -1
- package/dist/stories/index.d.ts +16 -1
- package/dist/stories/index.js +1388 -1220
- package/dist/stories/index.mjs +3 -1
- package/package.json +5 -5
- package/src/stories/components/Icons.tsx +163 -0
- package/src/stories/index.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
Dialogs,
|
|
11
11
|
EmptyState,
|
|
12
12
|
FilePreview,
|
|
13
|
+
Icons,
|
|
13
14
|
Inputs,
|
|
14
15
|
Loading,
|
|
15
16
|
Participant,
|
|
@@ -18,7 +19,7 @@ import {
|
|
|
18
19
|
Terminal,
|
|
19
20
|
ThemeComparison,
|
|
20
21
|
Typography
|
|
21
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-GXTUADEJ.mjs";
|
|
22
23
|
import "./chunk-WUKYLWAZ.mjs";
|
|
23
24
|
|
|
24
25
|
// src/preview.tsx
|
|
@@ -93,6 +94,7 @@ export {
|
|
|
93
94
|
Dialogs,
|
|
94
95
|
EmptyState,
|
|
95
96
|
FilePreview,
|
|
97
|
+
Icons,
|
|
96
98
|
Inputs,
|
|
97
99
|
Loading,
|
|
98
100
|
Participant,
|
package/dist/stories/index.d.mts
CHANGED
|
@@ -19,6 +19,21 @@ interface ColorGroupProps {
|
|
|
19
19
|
declare const ColorGroup: React.FC<ColorGroupProps>;
|
|
20
20
|
declare const ColorPalette: React.FC;
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Icons Story Component
|
|
24
|
+
*
|
|
25
|
+
* A reference for theme authors: the catalogue of override-able Quilltap icon
|
|
26
|
+
* names, plus the recipe for replacing them from a `.qtap-theme` bundle.
|
|
27
|
+
*
|
|
28
|
+
* This is a lightweight reference — it documents the icon-name contract and the
|
|
29
|
+
* override mechanism rather than live-rendering every glyph (which would require
|
|
30
|
+
* bundling the app's default SVG set into this package). The grouped name list
|
|
31
|
+
* below mirrors the app's icon registry (`components/ui/icons/icon-registry.ts`);
|
|
32
|
+
* keep it in sync when icons are added or renamed.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
declare const Icons: React.FC;
|
|
36
|
+
|
|
22
37
|
/**
|
|
23
38
|
* Typography Story Component
|
|
24
39
|
*
|
|
@@ -154,4 +169,4 @@ declare const Loading: React.FC;
|
|
|
154
169
|
|
|
155
170
|
declare const Participant: React.FC;
|
|
156
171
|
|
|
157
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|
|
172
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|
package/dist/stories/index.d.ts
CHANGED
|
@@ -19,6 +19,21 @@ interface ColorGroupProps {
|
|
|
19
19
|
declare const ColorGroup: React.FC<ColorGroupProps>;
|
|
20
20
|
declare const ColorPalette: React.FC;
|
|
21
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Icons Story Component
|
|
24
|
+
*
|
|
25
|
+
* A reference for theme authors: the catalogue of override-able Quilltap icon
|
|
26
|
+
* names, plus the recipe for replacing them from a `.qtap-theme` bundle.
|
|
27
|
+
*
|
|
28
|
+
* This is a lightweight reference — it documents the icon-name contract and the
|
|
29
|
+
* override mechanism rather than live-rendering every glyph (which would require
|
|
30
|
+
* bundling the app's default SVG set into this package). The grouped name list
|
|
31
|
+
* below mirrors the app's icon registry (`components/ui/icons/icon-registry.ts`);
|
|
32
|
+
* keep it in sync when icons are added or renamed.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
declare const Icons: React.FC;
|
|
36
|
+
|
|
22
37
|
/**
|
|
23
38
|
* Typography Story Component
|
|
24
39
|
*
|
|
@@ -154,4 +169,4 @@ declare const Loading: React.FC;
|
|
|
154
169
|
|
|
155
170
|
declare const Participant: React.FC;
|
|
156
171
|
|
|
157
|
-
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|
|
172
|
+
export { Avatars, Badges, Buttons, Cards, Chat, ColorGroup, ColorPalette, ColorSwatch, Dialogs, EmptyState, FilePreview, Icons, Inputs, Loading, Participant, Spacing, Tabs, Terminal, ThemeComparison, Typography };
|