@quilltap/theme-storybook 1.0.40 → 1.0.41

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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to `@quilltap/theme-storybook` will be documented in this file.
4
4
 
5
+ ## [1.0.41] - 2026-06-10
6
+
7
+ ### Changed
8
+ - `Icons` story: the catalogue now lists the new `tag` icon (80 names), and the `brand` note reflects the app-side rule change — an `.svg` brand override is tinted like any other icon; ship `.webp` to keep its own colors.
9
+
5
10
  ## [1.0.40] - 2026-06-09
6
11
 
7
12
  ### Added
@@ -100,6 +100,7 @@ var ICON_GROUPS = [
100
100
  "eye-off",
101
101
  "star",
102
102
  "bookmark",
103
+ "tag",
103
104
  "expand",
104
105
  "compress"
105
106
  ]
@@ -218,7 +219,11 @@ var Icons = () => {
218
219
  /* @__PURE__ */ jsxs2("li", { children: [
219
220
  "The ",
220
221
  /* @__PURE__ */ jsx2("code", { children: "brand" }),
221
- " mark is always drawn in full color, even when overridden with an SVG."
222
+ " mark follows the same rule: an ",
223
+ /* @__PURE__ */ jsx2("code", { children: ".svg" }),
224
+ " override is tinted like any other icon, so ship it as ",
225
+ /* @__PURE__ */ jsx2("code", { children: ".webp" }),
226
+ " if it should keep its own colors."
222
227
  ] }),
223
228
  /* @__PURE__ */ jsxs2("li", { children: [
224
229
  "Names must match the built-in names below; unknown names are ignored. Run",
package/dist/index.js CHANGED
@@ -208,6 +208,7 @@ var ICON_GROUPS = [
208
208
  "eye-off",
209
209
  "star",
210
210
  "bookmark",
211
+ "tag",
211
212
  "expand",
212
213
  "compress"
213
214
  ]
@@ -326,7 +327,11 @@ var Icons = () => {
326
327
  /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
327
328
  "The ",
328
329
  /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "brand" }),
329
- " mark is always drawn in full color, even when overridden with an SVG."
330
+ " mark follows the same rule: an ",
331
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: ".svg" }),
332
+ " override is tinted like any other icon, so ship it as ",
333
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: ".webp" }),
334
+ " if it should keep its own colors."
330
335
  ] }),
331
336
  /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
332
337
  "Names must match the built-in names below; unknown names are ignored. Run",
package/dist/index.mjs CHANGED
@@ -19,7 +19,7 @@ import {
19
19
  Terminal,
20
20
  ThemeComparison,
21
21
  Typography
22
- } from "./chunk-GXTUADEJ.mjs";
22
+ } from "./chunk-U2PTQQL5.mjs";
23
23
  import "./chunk-WUKYLWAZ.mjs";
24
24
 
25
25
  // src/preview.tsx
@@ -145,6 +145,7 @@ var ICON_GROUPS = [
145
145
  "eye-off",
146
146
  "star",
147
147
  "bookmark",
148
+ "tag",
148
149
  "expand",
149
150
  "compress"
150
151
  ]
@@ -263,7 +264,11 @@ var Icons = () => {
263
264
  /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("li", { children: [
264
265
  "The ",
265
266
  /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("code", { children: "brand" }),
266
- " mark is always drawn in full color, even when overridden with an SVG."
267
+ " mark follows the same rule: an ",
268
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("code", { children: ".svg" }),
269
+ " override is tinted like any other icon, so ship it as ",
270
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("code", { children: ".webp" }),
271
+ " if it should keep its own colors."
267
272
  ] }),
268
273
  /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("li", { children: [
269
274
  "Names must match the built-in names below; unknown names are ignored. Run",
@@ -19,7 +19,7 @@ import {
19
19
  Terminal,
20
20
  ThemeComparison,
21
21
  Typography
22
- } from "../chunk-GXTUADEJ.mjs";
22
+ } from "../chunk-U2PTQQL5.mjs";
23
23
  import "../chunk-WUKYLWAZ.mjs";
24
24
  export {
25
25
  Avatars,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/theme-storybook",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
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",
@@ -24,7 +24,7 @@ const ICON_GROUPS: IconGroup[] = [
24
24
  names: [
25
25
  'close', 'pencil', 'refresh', 'check', 'check-circle', 'chat', 'info', 'trash',
26
26
  'copy', 'plus', 'search', 'download', 'upload', 'cloud-upload', 'external-link',
27
- 'link', 'send', 'paperclip', 'eye', 'eye-off', 'star', 'bookmark', 'expand', 'compress',
27
+ 'link', 'send', 'paperclip', 'eye', 'eye-off', 'star', 'bookmark', 'tag', 'expand', 'compress',
28
28
  ],
29
29
  },
30
30
  {
@@ -131,7 +131,9 @@ export const Icons: React.FC = () => {
131
131
  full color — best for textured or multi-color marks.
132
132
  </li>
133
133
  <li>
134
- The <code>brand</code> mark is always drawn in full color, even when overridden with an SVG.
134
+ The <code>brand</code> mark follows the same rule: an <code>.svg</code> override is
135
+ tinted like any other icon, so ship it as <code>.webp</code> if it should keep its own
136
+ colors.
135
137
  </li>
136
138
  <li>
137
139
  Names must match the built-in names below; unknown names are ignored. Run{' '}