@quilltap/theme-storybook 1.0.39 → 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/dist/index.js CHANGED
@@ -31,6 +31,7 @@ __export(src_exports, {
31
31
  Dialogs: () => Dialogs,
32
32
  EmptyState: () => EmptyState,
33
33
  FilePreview: () => FilePreview,
34
+ Icons: () => Icons,
34
35
  Inputs: () => Inputs,
35
36
  Loading: () => Loading,
36
37
  Participant: () => Participant,
@@ -179,157 +180,328 @@ var ColorPalette = () => {
179
180
  ] });
180
181
  };
181
182
 
182
- // src/stories/components/Typography.tsx
183
+ // src/stories/components/Icons.tsx
183
184
  var import_jsx_runtime3 = require("react/jsx-runtime");
184
- var Typography = () => {
185
+ var ICON_GROUPS = [
186
+ {
187
+ category: "General UI",
188
+ names: [
189
+ "close",
190
+ "pencil",
191
+ "refresh",
192
+ "check",
193
+ "check-circle",
194
+ "chat",
195
+ "info",
196
+ "trash",
197
+ "copy",
198
+ "plus",
199
+ "search",
200
+ "download",
201
+ "upload",
202
+ "cloud-upload",
203
+ "external-link",
204
+ "link",
205
+ "send",
206
+ "paperclip",
207
+ "eye",
208
+ "eye-off",
209
+ "star",
210
+ "bookmark",
211
+ "tag",
212
+ "expand",
213
+ "compress"
214
+ ]
215
+ },
216
+ {
217
+ category: "Navigation arrows",
218
+ names: [
219
+ "chevron-down",
220
+ "chevron-right",
221
+ "chevron-left",
222
+ "arrow-left",
223
+ "arrow-right",
224
+ "arrow-up",
225
+ "arrow-down"
226
+ ]
227
+ },
228
+ {
229
+ category: "Status & alerts",
230
+ names: ["alert-triangle", "alert-circle", "shield", "ban", "clock", "calendar"]
231
+ },
232
+ {
233
+ category: "Media",
234
+ names: ["image", "camera", "play", "pause", "stop", "zoom-in", "zoom-out"]
235
+ },
236
+ {
237
+ category: "Content & sidebar navigation",
238
+ names: [
239
+ "projects",
240
+ "files",
241
+ "file",
242
+ "file-plus",
243
+ "folder",
244
+ "folder-plus",
245
+ "book",
246
+ "characters",
247
+ "scriptorium",
248
+ "photos",
249
+ "scenarios"
250
+ ]
251
+ },
252
+ {
253
+ category: "People",
254
+ names: ["profile", "user", "user-plus", "users", "megaphone", "dice"]
255
+ },
256
+ {
257
+ category: "System & tooling",
258
+ names: ["sparkles", "wand", "wrench", "code", "cpu", "database", "layers", "zap", "swap", "log-out"]
259
+ },
260
+ {
261
+ category: "Appearance & system",
262
+ names: ["settings", "themes", "wardrobe", "help", "sun", "moon", "monitor"]
263
+ },
264
+ {
265
+ category: "Brand",
266
+ names: ["brand"]
267
+ }
268
+ ];
269
+ var sectionHeading = {
270
+ fontSize: "1.125rem",
271
+ fontWeight: 700,
272
+ marginBottom: "1rem",
273
+ borderBottom: "1px solid var(--color-border)",
274
+ paddingBottom: "0.5rem"
275
+ };
276
+ var chip = {
277
+ fontFamily: "var(--theme-font-mono, ui-monospace, monospace)",
278
+ fontSize: "0.8125rem",
279
+ padding: "0.25rem 0.6rem",
280
+ borderRadius: "var(--radius-md, 0.375rem)",
281
+ border: "1px solid var(--color-border)",
282
+ background: "var(--color-muted)",
283
+ color: "var(--color-foreground)"
284
+ };
285
+ var codeBlock = {
286
+ fontFamily: "var(--theme-font-mono, ui-monospace, monospace)",
287
+ fontSize: "0.8125rem",
288
+ background: "var(--color-muted)",
289
+ color: "var(--color-foreground)",
290
+ border: "1px solid var(--color-border)",
291
+ borderRadius: "var(--radius-md, 0.375rem)",
292
+ padding: "1rem",
293
+ overflowX: "auto",
294
+ lineHeight: 1.6
295
+ };
296
+ var Icons = () => {
185
297
  return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { padding: "1.5rem" }, children: [
186
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Typography" }),
187
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
188
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Headings (qt-heading-*)" }),
189
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
190
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
191
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h1", { className: "qt-heading-1", children: "Heading 1 - The quick brown fox" }),
192
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-1" })
193
- ] }),
194
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
195
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h2", { className: "qt-heading-2", children: "Heading 2 - The quick brown fox" }),
196
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-2" })
197
- ] }),
198
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
199
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { className: "qt-heading-3", children: "Heading 3 - The quick brown fox" }),
200
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-3" })
201
- ] }),
202
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
203
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h4", { className: "qt-heading-4", children: "Heading 4 - The quick brown fox" }),
204
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-4" })
298
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Icons" }),
299
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "2rem", maxWidth: "46rem" }, children: "Quilltap renders its UI icons through a central registry, so a theme can replace any of them. The default icons are monochrome and follow the current text color; a theme overrides an icon by mapping its name to a bundled asset." }),
300
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2.5rem" }, children: [
301
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: sectionHeading, children: "Overriding an icon" }),
302
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem", maxWidth: "46rem" }, children: [
303
+ "Drop replacement assets into your bundle's ",
304
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "icons/" }),
305
+ " folder and add an",
306
+ " ",
307
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "icons" }),
308
+ " map to ",
309
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "theme.json" }),
310
+ ", keyed by the built-in icon name:"
311
+ ] }),
312
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("pre", { style: codeBlock, children: `{
313
+ "icons": {
314
+ "settings": "icons/settings.svg",
315
+ "brand": "icons/brand.webp"
316
+ }
317
+ }` }),
318
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("ul", { style: { color: "var(--color-muted-foreground)", marginTop: "1rem", maxWidth: "46rem", lineHeight: 1.7 }, children: [
319
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
320
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("strong", { style: { color: "var(--color-foreground)" }, children: ".svg overrides" }),
321
+ " are tinted by the current text color, exactly like the built-in icons \u2014 best for monochrome glyphs that should follow the theme."
322
+ ] }),
323
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
324
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("strong", { style: { color: "var(--color-foreground)" }, children: ".webp overrides" }),
325
+ " are drawn in full color \u2014 best for textured or multi-color marks."
326
+ ] }),
327
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
328
+ "The ",
329
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "brand" }),
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."
335
+ ] }),
336
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("li", { children: [
337
+ "Names must match the built-in names below; unknown names are ignored. Run",
338
+ " ",
339
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: "quilltap themes validate" }),
340
+ " to catch typos and bad asset paths."
205
341
  ] })
206
342
  ] })
207
343
  ] }),
208
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
209
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Body Text" }),
210
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "40rem" }, children: [
211
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
212
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-lead", children: "Lead text - Used for introductory paragraphs that need more emphasis. The quick brown fox jumps over the lazy dog." }),
213
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-lead" })
214
- ] }),
215
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
216
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-large", children: "Large text - Slightly larger than body text for emphasis. The quick brown fox jumps over the lazy dog." }),
217
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-large" })
218
- ] }),
219
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
220
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { children: "Default body text - The standard text size for most content. The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs." }),
221
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default / no class" })
222
- ] }),
223
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
224
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-small", children: "Small text - For less important or supplementary information. The quick brown fox jumps over the lazy dog." }),
225
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-small" })
226
- ] }),
227
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
228
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-xs", children: "Extra small text - For fine print, captions, or metadata. The quick brown fox jumps over the lazy dog." }),
229
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-xs" })
344
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { children: [
345
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: sectionHeading, children: "Override-able icon names" }),
346
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { style: { display: "flex", flexDirection: "column", gap: "1.5rem" }, children: ICON_GROUPS.map((group) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
347
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { style: { fontWeight: 600, marginBottom: "0.6rem", fontSize: "0.9375rem" }, children: group.category }),
348
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: group.names.map((name) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: chip, children: name }, name)) })
349
+ ] }, group.category)) })
350
+ ] })
351
+ ] });
352
+ };
353
+
354
+ // src/stories/components/Typography.tsx
355
+ var import_jsx_runtime4 = require("react/jsx-runtime");
356
+ var Typography = () => {
357
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { padding: "1.5rem" }, children: [
358
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Typography" }),
359
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
360
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Headings (qt-heading-*)" }),
361
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
362
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
363
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h1", { className: "qt-heading-1", children: "Heading 1 - The quick brown fox" }),
364
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-1" })
365
+ ] }),
366
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
367
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h2", { className: "qt-heading-2", children: "Heading 2 - The quick brown fox" }),
368
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-2" })
369
+ ] }),
370
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
371
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { className: "qt-heading-3", children: "Heading 3 - The quick brown fox" }),
372
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-3" })
373
+ ] }),
374
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
375
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h4", { className: "qt-heading-4", children: "Heading 4 - The quick brown fox" }),
376
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-4" })
230
377
  ] })
231
378
  ] })
232
379
  ] }),
233
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
234
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Colors" }),
235
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
236
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
237
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { children: "Default text color" }),
238
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default" })
239
- ] }),
240
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
241
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-muted", children: "Muted text - For secondary content" }),
242
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-muted" })
243
- ] }),
244
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
245
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-primary", children: "Primary text - For emphasis and links" }),
246
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-primary" })
247
- ] }),
248
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
249
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-success", children: "Success text - For positive messages" }),
250
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-success" })
251
- ] }),
252
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
253
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-warning", children: "Warning text - For caution messages" }),
254
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-warning" })
255
- ] }),
256
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
257
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-destructive", children: "Destructive text - For error messages" }),
258
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-destructive" })
259
- ] }),
260
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
261
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "qt-text-info", children: "Info text - For informational messages" }),
262
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-info" })
380
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
381
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Body Text" }),
382
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "40rem" }, children: [
383
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
384
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-lead", children: "Lead text - Used for introductory paragraphs that need more emphasis. The quick brown fox jumps over the lazy dog." }),
385
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-lead" })
386
+ ] }),
387
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
388
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-large", children: "Large text - Slightly larger than body text for emphasis. The quick brown fox jumps over the lazy dog." }),
389
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-large" })
390
+ ] }),
391
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
392
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { children: "Default body text - The standard text size for most content. The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs." }),
393
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default / no class" })
394
+ ] }),
395
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
396
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-small", children: "Small text - For less important or supplementary information. The quick brown fox jumps over the lazy dog." }),
397
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-small" })
398
+ ] }),
399
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
400
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-xs", children: "Extra small text - For fine print, captions, or metadata. The quick brown fox jumps over the lazy dog." }),
401
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-xs" })
263
402
  ] })
264
403
  ] })
265
404
  ] }),
266
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
267
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Labels & UI Text" }),
268
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
269
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
270
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "qt-label", children: "Form Label" }),
271
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-label" })
272
- ] }),
273
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
274
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "qt-hint", children: "Hint text for form fields" }),
275
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-hint" })
276
- ] }),
277
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
278
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "qt-text-label", children: "UI Label Text" }),
279
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-label" })
280
- ] }),
281
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
282
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "qt-text-section", children: "Section Header" }),
283
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-section" })
405
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
406
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Colors" }),
407
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
408
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
409
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { children: "Default text color" }),
410
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default" })
411
+ ] }),
412
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
413
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-muted", children: "Muted text - For secondary content" }),
414
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-muted" })
415
+ ] }),
416
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
417
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-primary", children: "Primary text - For emphasis and links" }),
418
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-primary" })
419
+ ] }),
420
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
421
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-success", children: "Success text - For positive messages" }),
422
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-success" })
423
+ ] }),
424
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
425
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-warning", children: "Warning text - For caution messages" }),
426
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-warning" })
427
+ ] }),
428
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
429
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-destructive", children: "Destructive text - For error messages" }),
430
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-destructive" })
431
+ ] }),
432
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
433
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { className: "qt-text-info", children: "Info text - For informational messages" }),
434
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-info" })
284
435
  ] })
285
436
  ] })
286
437
  ] }),
287
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
288
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code & Monospace" }),
289
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
290
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
291
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { className: "qt-code-inline", children: "inline code example" }),
292
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-code-inline" })
293
- ] }),
294
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
295
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("pre", { className: "qt-code-block", children: `function greet(name: string): string {
438
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
439
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Labels & UI Text" }),
440
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
441
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
442
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "qt-label", children: "Form Label" }),
443
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-label" })
444
+ ] }),
445
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
446
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "qt-hint", children: "Hint text for form fields" }),
447
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-hint" })
448
+ ] }),
449
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
450
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "qt-text-label", children: "UI Label Text" }),
451
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-label" })
452
+ ] }),
453
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
454
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { className: "qt-text-section", children: "Section Header" }),
455
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-section" })
456
+ ] })
457
+ ] })
458
+ ] }),
459
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
460
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code & Monospace" }),
461
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
462
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
463
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { className: "qt-code-inline", children: "inline code example" }),
464
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-code-inline" })
465
+ ] }),
466
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
467
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("pre", { className: "qt-code-block", children: `function greet(name: string): string {
296
468
  return \`Hello, \${name}!\`;
297
469
  }
298
470
 
299
471
  console.log(greet('World'));` }),
300
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-code-block" })
472
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-code-block" })
301
473
  ] })
302
474
  ] })
303
475
  ] }),
304
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
305
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Prose (Long-form Content)" }),
306
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "qt-prose", style: { maxWidth: "40rem" }, children: [
307
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { children: "Article Title" }),
308
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("p", { children: [
476
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
477
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Prose (Long-form Content)" }),
478
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "qt-prose", style: { maxWidth: "40rem" }, children: [
479
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { children: "Article Title" }),
480
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("p", { children: [
309
481
  "This is an example of the ",
310
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { children: ".qt-prose" }),
482
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { children: ".qt-prose" }),
311
483
  " class applied to a container. It provides sensible defaults for long-form content like articles, documentation, and chat messages."
312
484
  ] }),
313
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { children: "The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs. How vexingly quick daft zebras jump! The five boxing wizards jump quickly." }),
314
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h4", { children: "Subsection" }),
315
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris." })
485
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { children: "The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs. How vexingly quick daft zebras jump! The five boxing wizards jump quickly." }),
486
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h4", { children: "Subsection" }),
487
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris." })
316
488
  ] }),
317
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-prose" })
318
- ] }),
319
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
320
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Font Families" }),
321
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
322
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
323
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-sans" }),
324
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { style: { fontFamily: "var(--font-sans)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
325
- ] }),
326
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
327
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-serif" }),
328
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { style: { fontFamily: "var(--font-serif)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
329
- ] }),
330
- /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { children: [
331
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-mono" }),
332
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { style: { fontFamily: "var(--font-mono)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
489
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-prose" })
490
+ ] }),
491
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
492
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Font Families" }),
493
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
494
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
495
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-sans" }),
496
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { style: { fontFamily: "var(--font-sans)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
497
+ ] }),
498
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
499
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-serif" }),
500
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { style: { fontFamily: "var(--font-serif)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
501
+ ] }),
502
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { children: [
503
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-mono" }),
504
+ /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("p", { style: { fontFamily: "var(--font-mono)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
333
505
  ] })
334
506
  ] })
335
507
  ] })
@@ -337,7 +509,7 @@ console.log(greet('World'));` }),
337
509
  };
338
510
 
339
511
  // src/stories/components/Spacing.tsx
340
- var import_jsx_runtime4 = require("react/jsx-runtime");
512
+ var import_jsx_runtime5 = require("react/jsx-runtime");
341
513
  var Spacing = () => {
342
514
  const radiusTokens = [
343
515
  { name: "None", variable: "0", value: "0" },
@@ -365,12 +537,12 @@ var Spacing = () => {
365
537
  { name: "Button Primary Shadow", variable: "--qt-button-primary-shadow" },
366
538
  { name: "Chat Message Shadow", variable: "--qt-chat-message-shadow" }
367
539
  ];
368
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { padding: "1.5rem" }, children: [
369
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Spacing & Borders" }),
370
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
371
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Border Radius Scale" }),
372
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(6rem, 1fr))", gap: "1.5rem" }, children: radiusTokens.map(({ name, variable, value }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { textAlign: "center" }, children: [
373
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
540
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { padding: "1.5rem" }, children: [
541
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Spacing & Borders" }),
542
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
543
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Border Radius Scale" }),
544
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(6rem, 1fr))", gap: "1.5rem" }, children: radiusTokens.map(({ name, variable, value }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { textAlign: "center" }, children: [
545
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
374
546
  "div",
375
547
  {
376
548
  style: {
@@ -382,14 +554,14 @@ var Spacing = () => {
382
554
  }
383
555
  }
384
556
  ),
385
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
386
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
557
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
558
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
387
559
  ] }, variable)) })
388
560
  ] }),
389
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
390
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Border Radii" }),
391
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "1.5rem" }, children: componentRadii.map(({ name, variable }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { textAlign: "center" }, children: [
392
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
561
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
562
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Border Radii" }),
563
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "1.5rem" }, children: componentRadii.map(({ name, variable }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { textAlign: "center" }, children: [
564
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
393
565
  "div",
394
566
  {
395
567
  style: {
@@ -402,14 +574,14 @@ var Spacing = () => {
402
574
  }
403
575
  }
404
576
  ),
405
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
406
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
577
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
578
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
407
579
  ] }, variable)) })
408
580
  ] }),
409
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
410
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Shadows" }),
411
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(10rem, 1fr))", gap: "1.5rem" }, children: shadowTokens.map(({ name, variable }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { padding: "1rem" }, children: [
412
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
581
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
582
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Shadows" }),
583
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(10rem, 1fr))", gap: "1.5rem" }, children: shadowTokens.map(({ name, variable }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { padding: "1rem" }, children: [
584
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
413
585
  "div",
414
586
  {
415
587
  style: {
@@ -422,15 +594,15 @@ var Spacing = () => {
422
594
  }
423
595
  }
424
596
  ),
425
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
426
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
597
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
598
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
427
599
  ] }, variable)) })
428
600
  ] }),
429
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
430
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Padding Tokens" }),
431
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
432
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
433
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
601
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
602
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Padding Tokens" }),
603
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
604
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
605
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
434
606
  "div",
435
607
  {
436
608
  style: {
@@ -442,10 +614,10 @@ var Spacing = () => {
442
614
  children: "Button padding"
443
615
  }
444
616
  ),
445
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-button-padding-x, --qt-button-padding-y" })
617
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-button-padding-x, --qt-button-padding-y" })
446
618
  ] }),
447
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
448
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
619
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
620
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
449
621
  "div",
450
622
  {
451
623
  style: {
@@ -457,10 +629,10 @@ var Spacing = () => {
457
629
  children: "Card padding"
458
630
  }
459
631
  ),
460
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-card-padding" })
632
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-card-padding" })
461
633
  ] }),
462
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
463
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
634
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
635
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
464
636
  "div",
465
637
  {
466
638
  style: {
@@ -472,10 +644,10 @@ var Spacing = () => {
472
644
  children: "Input padding"
473
645
  }
474
646
  ),
475
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-input-padding-x, --qt-input-padding-y" })
647
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-input-padding-x, --qt-input-padding-y" })
476
648
  ] }),
477
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
478
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
649
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
650
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
479
651
  "div",
480
652
  {
481
653
  style: {
@@ -487,15 +659,15 @@ var Spacing = () => {
487
659
  children: "Chat message padding"
488
660
  }
489
661
  ),
490
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-message-padding" })
662
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-message-padding" })
491
663
  ] })
492
664
  ] })
493
665
  ] }),
494
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("section", { children: [
495
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Layout Dimensions" }),
496
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
497
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
498
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
666
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { children: [
667
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Layout Dimensions" }),
668
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
669
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
670
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
499
671
  "div",
500
672
  {
501
673
  style: {
@@ -510,10 +682,10 @@ var Spacing = () => {
510
682
  children: "Navbar height"
511
683
  }
512
684
  ),
513
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-navbar-height" })
685
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-navbar-height" })
514
686
  ] }),
515
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
516
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
687
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
688
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
517
689
  "div",
518
690
  {
519
691
  style: {
@@ -528,10 +700,10 @@ var Spacing = () => {
528
700
  children: "Sidebar width"
529
701
  }
530
702
  ),
531
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-sidebar-width" })
703
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-sidebar-width" })
532
704
  ] }),
533
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
534
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
705
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
706
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
535
707
  "div",
536
708
  {
537
709
  style: {
@@ -546,7 +718,7 @@ var Spacing = () => {
546
718
  children: "Chat sidebar width"
547
719
  }
548
720
  ),
549
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-sidebar-width" })
721
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-sidebar-width" })
550
722
  ] })
551
723
  ] })
552
724
  ] })
@@ -554,145 +726,145 @@ var Spacing = () => {
554
726
  };
555
727
 
556
728
  // src/stories/components/Buttons.tsx
557
- var import_jsx_runtime5 = require("react/jsx-runtime");
729
+ var import_jsx_runtime6 = require("react/jsx-runtime");
558
730
  var Buttons = () => {
559
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { padding: "1.5rem" }, children: [
560
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Buttons" }),
561
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
562
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Variants" }),
563
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
564
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
565
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
566
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
567
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" })
731
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { padding: "1.5rem" }, children: [
732
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Buttons" }),
733
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
734
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Variants" }),
735
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
736
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
737
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
738
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
739
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" })
568
740
  ] })
569
741
  ] }),
570
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
571
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Sizes" }),
572
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", alignItems: "center", gap: "1rem" }, children: [
573
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Small" }),
574
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary", children: "Default" }),
575
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary qt-button-lg", children: "Large" })
742
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
743
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Sizes" }),
744
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", alignItems: "center", gap: "1rem" }, children: [
745
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Small" }),
746
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary", children: "Default" }),
747
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary qt-button-lg", children: "Large" })
576
748
  ] })
577
749
  ] }),
578
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
579
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Disabled States" }),
580
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
581
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Primary" }),
582
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-secondary", disabled: true, children: "Secondary" }),
583
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-ghost", disabled: true, children: "Ghost" }),
584
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-destructive", disabled: true, children: "Destructive" })
750
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
751
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Disabled States" }),
752
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
753
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Primary" }),
754
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-secondary", disabled: true, children: "Secondary" }),
755
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-ghost", disabled: true, children: "Ghost" }),
756
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-destructive", disabled: true, children: "Destructive" })
585
757
  ] })
586
758
  ] }),
587
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
588
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Icon Buttons" }),
589
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
590
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
591
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
592
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
759
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
760
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Icon Buttons" }),
761
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
762
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
763
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
764
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
593
765
  ] }) }),
594
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) }),
595
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button-icon", "aria-label": "Add", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
596
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button-icon", "aria-label": "More", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" }) }) })
766
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) }),
767
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button-icon", "aria-label": "Add", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
768
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button-icon", "aria-label": "More", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" }) }) })
597
769
  ] })
598
770
  ] }),
599
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("section", { children: [
600
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Groups" }),
601
- /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
602
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
603
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("button", { className: "qt-button qt-button-primary", children: "Save Changes" })
771
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { children: [
772
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Groups" }),
773
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
774
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
775
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary", children: "Save Changes" })
604
776
  ] })
605
777
  ] })
606
778
  ] });
607
779
  };
608
780
 
609
781
  // src/stories/components/Cards.tsx
610
- var import_jsx_runtime6 = require("react/jsx-runtime");
782
+ var import_jsx_runtime7 = require("react/jsx-runtime");
611
783
  var Cards = () => {
612
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { padding: "1.5rem" }, children: [
613
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Cards" }),
614
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
615
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Card" }),
616
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
617
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card-header", children: [
618
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { className: "qt-card-title", children: "Card Title" }),
619
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { className: "qt-card-description", children: "Card description goes here." })
620
- ] }),
621
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { children: "This is the card body content. It can contain any content you want." }) }),
622
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card-footer", children: [
623
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
624
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
784
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { padding: "1.5rem" }, children: [
785
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Cards" }),
786
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
787
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Card" }),
788
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
789
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-header", children: [
790
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { className: "qt-card-title", children: "Card Title" }),
791
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "qt-card-description", children: "Card description goes here." })
792
+ ] }),
793
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { children: "This is the card body content. It can contain any content you want." }) }),
794
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-footer", children: [
795
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
796
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
625
797
  ] })
626
798
  ] })
627
799
  ] }),
628
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
629
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Interactive Card" }),
630
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "24rem", cursor: "pointer" }, children: [
631
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card-header", children: [
632
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { className: "qt-card-title", children: "Clickable Card" }),
633
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { className: "qt-card-description", children: "Hover over me to see the effect." })
800
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
801
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Interactive Card" }),
802
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "24rem", cursor: "pointer" }, children: [
803
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-header", children: [
804
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { className: "qt-card-title", children: "Clickable Card" }),
805
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "qt-card-description", children: "Hover over me to see the effect." })
634
806
  ] }),
635
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { children: "This card has hover states and can be clicked." }) })
807
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { children: "This card has hover states and can be clicked." }) })
636
808
  ] })
637
809
  ] }),
638
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
639
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Cards" }),
640
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used for characters, chats, and other list items." }),
641
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))", gap: "1rem" }, children: ["Alice", "Bob", "Carol"].map((name) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-entity-card", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "1rem" }, children: [
642
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-avatar-fallback", children: name[0] }) }),
643
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { children: [
644
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("h4", { style: { fontWeight: 600 }, children: [
810
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
811
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Cards" }),
812
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used for characters, chats, and other list items." }),
813
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))", gap: "1rem" }, children: ["Alice", "Bob", "Carol"].map((name) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-entity-card", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "1rem" }, children: [
814
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-avatar-fallback", children: name[0] }) }),
815
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
816
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("h4", { style: { fontWeight: 600 }, children: [
645
817
  name,
646
818
  " Character"
647
819
  ] }),
648
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "A friendly character" })
820
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "A friendly character" })
649
821
  ] })
650
822
  ] }) }, name)) })
651
823
  ] }),
652
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
653
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Cards" }),
654
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Compact cards used on the homepage grid. Centered layout with avatar, name, title, provider badge, and action." }),
655
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(3, minmax(0, 140px))", gap: "0.75rem" }, children: [
824
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
825
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Cards" }),
826
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Compact cards used on the homepage grid. Centered layout with avatar, name, title, provider badge, and action." }),
827
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(3, minmax(0, 140px))", gap: "0.75rem" }, children: [
656
828
  { name: "Alice", title: "The Adventurer", provider: "Claude Sonnet" },
657
829
  { name: "Bob", title: "The Keeper of Many Long Titles", provider: "GPT-4o" },
658
830
  { name: "Carol", title: "Scribe", provider: "Gemini Pro" }
659
- ].map((char) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-character-card", children: [
660
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-avatar", style: { width: "3rem", height: "3rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: "qt-avatar-fallback", children: char.name[0] }) }),
661
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { textAlign: "center", width: "100%", minWidth: 0 }, children: [
662
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { className: "qt-card-title", style: { overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }, children: char.name }),
663
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { className: "qt-card-subtitle", style: { fontStyle: "italic", minHeight: "2.5rem" }, children: char.title }),
664
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { style: { fontSize: "0.75rem", opacity: 0.6 }, children: char.provider })
665
- ] }),
666
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("button", { className: "qt-button-success qt-button-sm", style: { marginTop: "auto", width: "100%" }, children: "Chat" })
831
+ ].map((char) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-character-card", children: [
832
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-avatar", style: { width: "3rem", height: "3rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "qt-avatar-fallback", children: char.name[0] }) }),
833
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { textAlign: "center", width: "100%", minWidth: 0 }, children: [
834
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "qt-card-title", style: { overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }, children: char.name }),
835
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "qt-card-subtitle", style: { fontStyle: "italic", minHeight: "2.5rem" }, children: char.title }),
836
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { style: { fontSize: "0.75rem", opacity: 0.6 }, children: char.provider })
837
+ ] }),
838
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: "qt-button-success qt-button-sm", style: { marginTop: "auto", width: "100%" }, children: "Chat" })
667
839
  ] }, char.name)) })
668
840
  ] }),
669
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
670
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Card Grid" }),
671
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card-grid-3", children: [
672
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
673
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 1" }),
674
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
675
- ] }),
676
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
677
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 2" }),
678
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
679
- ] }),
680
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
681
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 3" }),
682
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
841
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
842
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Card Grid" }),
843
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-grid-3", children: [
844
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
845
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 1" }),
846
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
847
+ ] }),
848
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
849
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 2" }),
850
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
851
+ ] }),
852
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card", style: { padding: "1rem" }, children: [
853
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 3" }),
854
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
683
855
  ] })
684
856
  ] })
685
857
  ] }),
686
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
687
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Panels" }),
688
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap" }, children: [
689
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-panel", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
690
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Basic Panel" }),
691
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Panels are similar to cards but often used for larger content areas." })
692
- ] }),
693
- /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: "qt-panel qt-panel-elevated", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
694
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Elevated Panel" }),
695
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "This panel has additional shadow for emphasis." })
858
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
859
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Panels" }),
860
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap" }, children: [
861
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-panel", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
862
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Basic Panel" }),
863
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Panels are similar to cards but often used for larger content areas." })
864
+ ] }),
865
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-panel qt-panel-elevated", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
866
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Elevated Panel" }),
867
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "This panel has additional shadow for emphasis." })
696
868
  ] })
697
869
  ] })
698
870
  ] })
@@ -700,42 +872,42 @@ var Cards = () => {
700
872
  };
701
873
 
702
874
  // src/stories/components/Inputs.tsx
703
- var import_jsx_runtime7 = require("react/jsx-runtime");
875
+ var import_jsx_runtime8 = require("react/jsx-runtime");
704
876
  var Inputs = () => {
705
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { padding: "1.5rem" }, children: [
706
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Inputs" }),
707
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
708
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Inputs" }),
709
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "24rem" }, children: [
710
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
711
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Default" }),
712
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
713
- ] }),
714
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
715
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "With Hint" }),
716
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter email..." }),
717
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "qt-hint", children: "We'll never share your email." })
718
- ] }),
719
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
720
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "With Value" }),
721
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "text", defaultValue: "Sample text" })
722
- ] }),
723
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
724
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Disabled" }),
725
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "text", placeholder: "Disabled input", disabled: true })
726
- ] }),
727
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
728
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "With Error" }),
729
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input qt-input-error", type: "text", placeholder: "Invalid input" }),
730
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "qt-hint", style: { color: "var(--color-destructive)" }, children: "This field is required." })
877
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { padding: "1.5rem" }, children: [
878
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Inputs" }),
879
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
880
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Inputs" }),
881
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "24rem" }, children: [
882
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
883
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Default" }),
884
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
885
+ ] }),
886
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
887
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "With Hint" }),
888
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter email..." }),
889
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-hint", children: "We'll never share your email." })
890
+ ] }),
891
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
892
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "With Value" }),
893
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "text", defaultValue: "Sample text" })
894
+ ] }),
895
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
896
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Disabled" }),
897
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "text", placeholder: "Disabled input", disabled: true })
898
+ ] }),
899
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
900
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "With Error" }),
901
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input qt-input-error", type: "text", placeholder: "Invalid input" }),
902
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-hint", style: { color: "var(--color-destructive)" }, children: "This field is required." })
731
903
  ] })
732
904
  ] })
733
905
  ] }),
734
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
735
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Textarea" }),
736
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { maxWidth: "24rem" }, children: [
737
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Message" }),
738
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
906
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
907
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Textarea" }),
908
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { maxWidth: "24rem" }, children: [
909
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Message" }),
910
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
739
911
  "textarea",
740
912
  {
741
913
  className: "qt-input qt-textarea",
@@ -745,74 +917,74 @@ var Inputs = () => {
745
917
  )
746
918
  ] })
747
919
  ] }),
748
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
749
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Select" }),
750
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { maxWidth: "24rem" }, children: [
751
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Choose an option" }),
752
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("select", { className: "qt-input qt-select", children: [
753
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("option", { value: "", children: "Select an option..." }),
754
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("option", { value: "1", children: "Option 1" }),
755
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("option", { value: "2", children: "Option 2" }),
756
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("option", { value: "3", children: "Option 3" })
920
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
921
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Select" }),
922
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { maxWidth: "24rem" }, children: [
923
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Choose an option" }),
924
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("select", { className: "qt-input qt-select", children: [
925
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("option", { value: "", children: "Select an option..." }),
926
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("option", { value: "1", children: "Option 1" }),
927
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("option", { value: "2", children: "Option 2" }),
928
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("option", { value: "3", children: "Option 3" })
757
929
  ] })
758
930
  ] })
759
931
  ] }),
760
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
761
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Checkboxes & Radios" }),
762
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem", maxWidth: "24rem" }, children: [
763
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
764
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { type: "checkbox", id: "check1", className: "qt-checkbox" }),
765
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { htmlFor: "check1", style: { margin: 0 }, children: "Checkbox option" })
766
- ] }),
767
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
768
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { type: "checkbox", id: "check2", className: "qt-checkbox", defaultChecked: true }),
769
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { htmlFor: "check2", style: { margin: 0 }, children: "Checked checkbox" })
770
- ] }),
771
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
772
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { type: "checkbox", id: "check3", className: "qt-checkbox", disabled: true }),
773
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { htmlFor: "check3", style: { margin: 0, color: "var(--color-muted-foreground)" }, children: "Disabled checkbox" })
774
- ] }),
775
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem", marginTop: "0.5rem" }, children: [
776
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { type: "radio", name: "radio", id: "radio1", className: "qt-radio" }),
777
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { htmlFor: "radio1", style: { margin: 0 }, children: "Radio option 1" })
778
- ] }),
779
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
780
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { type: "radio", name: "radio", id: "radio2", className: "qt-radio", defaultChecked: true }),
781
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { htmlFor: "radio2", style: { margin: 0 }, children: "Radio option 2" })
932
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
933
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Checkboxes & Radios" }),
934
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem", maxWidth: "24rem" }, children: [
935
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
936
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { type: "checkbox", id: "check1", className: "qt-checkbox" }),
937
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { htmlFor: "check1", style: { margin: 0 }, children: "Checkbox option" })
938
+ ] }),
939
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
940
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { type: "checkbox", id: "check2", className: "qt-checkbox", defaultChecked: true }),
941
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { htmlFor: "check2", style: { margin: 0 }, children: "Checked checkbox" })
942
+ ] }),
943
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
944
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { type: "checkbox", id: "check3", className: "qt-checkbox", disabled: true }),
945
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { htmlFor: "check3", style: { margin: 0, color: "var(--color-muted-foreground)" }, children: "Disabled checkbox" })
946
+ ] }),
947
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem", marginTop: "0.5rem" }, children: [
948
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { type: "radio", name: "radio", id: "radio1", className: "qt-radio" }),
949
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { htmlFor: "radio1", style: { margin: 0 }, children: "Radio option 1" })
950
+ ] }),
951
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
952
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { type: "radio", name: "radio", id: "radio2", className: "qt-radio", defaultChecked: true }),
953
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { htmlFor: "radio2", style: { margin: 0 }, children: "Radio option 2" })
782
954
  ] })
783
955
  ] })
784
956
  ] }),
785
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
786
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Links" }),
787
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
788
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("a", { href: "#", className: "qt-link", children: "Default link" }) }),
789
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("a", { href: "#", className: "qt-link-subtle", children: "Subtle link" }) })
957
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
958
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Links" }),
959
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
960
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("a", { href: "#", className: "qt-link", children: "Default link" }) }),
961
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("a", { href: "#", className: "qt-link-subtle", children: "Subtle link" }) })
790
962
  ] })
791
963
  ] }),
792
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { children: [
793
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Form Example" }),
794
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
795
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-header", children: [
796
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("h4", { className: "qt-card-title", children: "Contact Form" }),
797
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "qt-card-description", children: "Fill out the form below." })
798
- ] }),
799
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-body", style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
800
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
801
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Name" }),
802
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "text", placeholder: "Your name" })
964
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
965
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Form Example" }),
966
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
967
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "qt-card-header", children: [
968
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h4", { className: "qt-card-title", children: "Contact Form" }),
969
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { className: "qt-card-description", children: "Fill out the form below." })
970
+ ] }),
971
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "qt-card-body", style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
972
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
973
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Name" }),
974
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "text", placeholder: "Your name" })
803
975
  ] }),
804
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
805
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Email" }),
806
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("input", { className: "qt-input", type: "email", placeholder: "you@example.com" })
976
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
977
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Email" }),
978
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("input", { className: "qt-input", type: "email", placeholder: "you@example.com" })
807
979
  ] }),
808
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { children: [
809
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("label", { className: "qt-label", children: "Message" }),
810
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Your message...", style: { minHeight: "5rem" } })
980
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
981
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("label", { className: "qt-label", children: "Message" }),
982
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Your message...", style: { minHeight: "5rem" } })
811
983
  ] })
812
984
  ] }),
813
- /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "qt-card-footer", children: [
814
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
815
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
985
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "qt-card-footer", children: [
986
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
987
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
816
988
  ] })
817
989
  ] })
818
990
  ] })
@@ -820,141 +992,141 @@ var Inputs = () => {
820
992
  };
821
993
 
822
994
  // src/stories/components/Badges.tsx
823
- var import_jsx_runtime8 = require("react/jsx-runtime");
995
+ var import_jsx_runtime9 = require("react/jsx-runtime");
824
996
  var Badges = () => {
825
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { padding: "1.5rem" }, children: [
826
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Badges" }),
827
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
828
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badge Variants" }),
829
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
830
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
831
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
832
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
833
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
834
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
835
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
997
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { padding: "1.5rem" }, children: [
998
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Badges" }),
999
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1000
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badge Variants" }),
1001
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1002
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
1003
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1004
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1005
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
1006
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
1007
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
836
1008
  ] })
837
1009
  ] }),
838
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
839
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Outline Badges" }),
840
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
841
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline", children: "Outline" }),
842
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline-primary", children: "Primary" }),
843
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline-success", children: "Success" }),
844
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline-warning", children: "Warning" }),
845
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline-destructive", children: "Destructive" })
1010
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1011
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Outline Badges" }),
1012
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1013
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline", children: "Outline" }),
1014
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline-primary", children: "Primary" }),
1015
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline-success", children: "Success" }),
1016
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline-warning", children: "Warning" }),
1017
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline-destructive", children: "Destructive" })
846
1018
  ] })
847
1019
  ] }),
848
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
849
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Provider Badges" }),
850
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used to identify AI provider sources." }),
851
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
852
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-provider-openai", children: "OpenAI" }),
853
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-provider-anthropic", children: "Anthropic" }),
854
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-provider-google", children: "Google" }),
855
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-provider-openrouter", children: "OpenRouter" })
1020
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1021
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Provider Badges" }),
1022
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used to identify AI provider sources." }),
1023
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1024
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-provider-openai", children: "OpenAI" }),
1025
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-provider-anthropic", children: "Anthropic" }),
1026
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-provider-google", children: "Google" }),
1027
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-provider-openrouter", children: "OpenRouter" })
856
1028
  ] })
857
1029
  ] }),
858
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
859
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badges with Icons" }),
860
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
861
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "qt-badge qt-badge-success", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
862
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5 13l4 4L19 7" }) }),
1030
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1031
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badges with Icons" }),
1032
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1033
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "qt-badge qt-badge-success", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
1034
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5 13l4 4L19 7" }) }),
863
1035
  "Complete"
864
1036
  ] }),
865
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "qt-badge qt-badge-warning", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
866
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }),
1037
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "qt-badge qt-badge-warning", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
1038
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }),
867
1039
  "Warning"
868
1040
  ] }),
869
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "qt-badge qt-badge-destructive", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
870
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }),
1041
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "qt-badge qt-badge-destructive", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
1042
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }),
871
1043
  "Error"
872
1044
  ] })
873
1045
  ] })
874
1046
  ] }),
875
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
876
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Type Badges" }),
877
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
878
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-character", children: "Character" }),
879
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-user-character", children: "User Character" }),
880
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-chat", children: "Chat" }),
881
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-tag", children: "Tag" }),
882
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-memory", children: "Memory" })
1047
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1048
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Type Badges" }),
1049
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1050
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-character", children: "Character" }),
1051
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-user-character", children: "User Character" }),
1052
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-chat", children: "Chat" }),
1053
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-tag", children: "Tag" }),
1054
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-memory", children: "Memory" })
883
1055
  ] })
884
1056
  ] }),
885
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
886
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "State Badges" }),
887
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
888
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-enabled", children: "Enabled" }),
889
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-disabled", children: "Disabled" }),
890
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-related", children: "Related" }),
891
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-manual", children: "Manual" }),
892
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-auto", children: "Auto" })
1057
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1058
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "State Badges" }),
1059
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1060
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-enabled", children: "Enabled" }),
1061
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-disabled", children: "Disabled" }),
1062
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-related", children: "Related" }),
1063
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-manual", children: "Manual" }),
1064
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-auto", children: "Auto" })
893
1065
  ] })
894
1066
  ] }),
895
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
896
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Plugin Source Badges" }),
897
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
898
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-source-included", children: "Included" }),
899
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-source-npm", children: "NPM" }),
900
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-source-git", children: "Git" }),
901
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-source-manual", children: "Manual" })
1067
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1068
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Plugin Source Badges" }),
1069
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1070
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-source-included", children: "Included" }),
1071
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-source-npm", children: "NPM" }),
1072
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-source-git", children: "Git" }),
1073
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-source-manual", children: "Manual" })
902
1074
  ] })
903
1075
  ] }),
904
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
905
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tag Badges" }),
906
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
907
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Basic tags" }),
908
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
909
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge", children: "Fantasy" }),
910
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge", children: "Sci-Fi" }),
911
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge", children: "Romance" })
1076
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1077
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tag Badges" }),
1078
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1079
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Basic tags" }),
1080
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1081
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge", children: "Fantasy" }),
1082
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge", children: "Sci-Fi" }),
1083
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge", children: "Romance" })
912
1084
  ] })
913
1085
  ] }),
914
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
915
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Emoji tag" }),
916
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge qt-tag-badge-emoji", children: "Adventure" }) })
1086
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1087
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Emoji tag" }),
1088
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge qt-tag-badge-emoji", children: "Adventure" }) })
917
1089
  ] }),
918
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
919
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Removable tag" }),
920
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("span", { className: "qt-tag-badge", children: [
1090
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1091
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Removable tag" }),
1092
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { className: "qt-tag-badge", children: [
921
1093
  "Fantasy",
922
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("button", { className: "qt-tag-badge-remove", children: "\xD7" })
1094
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("button", { className: "qt-tag-badge-remove", children: "\xD7" })
923
1095
  ] }) })
924
1096
  ] }),
925
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { children: [
926
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Small tags in card context" }),
927
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
928
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Fantasy" }),
929
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Sci-Fi" })
1097
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
1098
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Small tags in card context" }),
1099
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-card-body", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1100
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Fantasy" }),
1101
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Sci-Fi" })
930
1102
  ] }) }) })
931
1103
  ] })
932
1104
  ] }),
933
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
934
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status Badges" }),
935
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Status indicators shown on participant cards for silent and absent characters." }),
936
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
937
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge-silent", children: "Silent" }),
938
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge-absent", children: "Absent" })
1105
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1106
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status Badges" }),
1107
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Status indicators shown on participant cards for silent and absent characters." }),
1108
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1109
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge-silent", children: "Silent" }),
1110
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge-absent", children: "Absent" })
939
1111
  ] })
940
1112
  ] }),
941
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("section", { children: [
942
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage Examples" }),
943
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
944
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "qt-card-header", children: [
945
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between" }, children: [
946
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("h4", { className: "qt-card-title", children: "Feature Name" }),
947
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
1113
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { children: [
1114
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage Examples" }),
1115
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1116
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-card-header", children: [
1117
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between" }, children: [
1118
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h4", { className: "qt-card-title", children: "Feature Name" }),
1119
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
948
1120
  ] }),
949
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("p", { className: "qt-card-description", children: "With status badge" })
1121
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { className: "qt-card-description", children: "With status badge" })
950
1122
  ] }) }),
951
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
952
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { style: { fontWeight: 500 }, children: "Notifications" }),
953
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-primary", style: { borderRadius: "9999px", minWidth: "1.25rem", textAlign: "center" }, children: "5" })
1123
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1124
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontWeight: 500 }, children: "Notifications" }),
1125
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-primary", style: { borderRadius: "9999px", minWidth: "1.25rem", textAlign: "center" }, children: "5" })
954
1126
  ] }),
955
- /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
956
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { style: { fontWeight: 500 }, children: "Version" }),
957
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "qt-badge qt-badge-outline", children: "v2.5.0" })
1127
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1128
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontWeight: 500 }, children: "Version" }),
1129
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-outline", children: "v2.5.0" })
958
1130
  ] })
959
1131
  ] })
960
1132
  ] })
@@ -962,74 +1134,74 @@ var Badges = () => {
962
1134
  };
963
1135
 
964
1136
  // src/stories/components/Avatars.tsx
965
- var import_jsx_runtime9 = require("react/jsx-runtime");
1137
+ var import_jsx_runtime10 = require("react/jsx-runtime");
966
1138
  var Avatars = () => {
967
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { padding: "1.5rem" }, children: [
968
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
969
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
970
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
971
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
972
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
973
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "MD" }) }),
974
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "LG" }) }),
975
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "XL" }) })
1139
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1140
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
1141
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1142
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
1143
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1144
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1145
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "MD" }) }),
1146
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "LG" }) }),
1147
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "XL" }) })
976
1148
  ] })
977
1149
  ] }),
978
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
979
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
980
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
981
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
982
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "AB" }) }),
983
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "CD" }) }),
984
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "EF" }) })
1150
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1151
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
1152
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
1153
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1154
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "AB" }) }),
1155
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "CD" }) }),
1156
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "EF" }) })
985
1157
  ] })
986
1158
  ] }),
987
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
988
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
989
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
990
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
991
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "CR" }) }),
992
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
993
- ] }),
994
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
995
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "RD" }) }),
996
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
997
- ] }),
998
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
999
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
1000
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
1159
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1160
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
1161
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1162
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1163
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "CR" }) }),
1164
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
1165
+ ] }),
1166
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1167
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "RD" }) }),
1168
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
1169
+ ] }),
1170
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1171
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
1172
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
1001
1173
  ] })
1002
1174
  ] })
1003
1175
  ] }),
1004
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1005
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
1006
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-avatar-group", children: [
1007
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1008
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1009
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "C" }) }),
1010
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "D" }) }),
1011
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "+3" }) })
1176
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1177
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
1178
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-avatar-group", children: [
1179
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1180
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1181
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "C" }) }),
1182
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "D" }) }),
1183
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "+3" }) })
1012
1184
  ] })
1013
1185
  ] }),
1014
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { children: [
1015
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
1016
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1017
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
1018
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "JD" }) }),
1019
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { flex: 1 }, children: [
1020
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { fontWeight: 600 }, children: "John Doe" }),
1021
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
1186
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1187
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
1188
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1189
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
1190
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "JD" }) }),
1191
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { flex: 1 }, children: [
1192
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { fontWeight: 600 }, children: "John Doe" }),
1193
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
1022
1194
  ] }),
1023
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
1024
- ] }),
1025
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1026
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1027
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { flex: 1 }, children: [
1028
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1029
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
1030
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
1195
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
1196
+ ] }),
1197
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1198
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1199
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { flex: 1 }, children: [
1200
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1201
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
1202
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
1031
1203
  ] }),
1032
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
1204
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
1033
1205
  ] })
1034
1206
  ] })
1035
1207
  ] })
@@ -1039,131 +1211,131 @@ var Avatars = () => {
1039
1211
 
1040
1212
  // src/stories/components/Dialogs.tsx
1041
1213
  var import_react = require("react");
1042
- var import_jsx_runtime10 = require("react/jsx-runtime");
1214
+ var import_jsx_runtime11 = require("react/jsx-runtime");
1043
1215
  var Dialogs = () => {
1044
1216
  const [basicOpen, setBasicOpen] = (0, import_react.useState)(false);
1045
1217
  const [confirmOpen, setConfirmOpen] = (0, import_react.useState)(false);
1046
1218
  const [formOpen, setFormOpen] = (0, import_react.useState)(false);
1047
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1048
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
1049
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1050
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
1051
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
1052
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1053
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
1054
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
1055
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
1056
- ] })
1057
- ] }),
1058
- basicOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1059
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1060
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
1061
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "This is a basic dialog with some content. Dialogs are used to show important information or gather user input." }),
1062
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1219
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1220
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
1221
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1222
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
1223
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
1224
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1225
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
1226
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
1227
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
1228
+ ] })
1229
+ ] }),
1230
+ basicOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1231
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1232
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
1233
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "This is a basic dialog with some content. Dialogs are used to show important information or gather user input." }),
1234
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1063
1235
  ] }),
1064
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Dialog content area with additional details and information." }) }),
1065
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
1236
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Dialog content area with additional details and information." }) }),
1237
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
1066
1238
  ] }) }),
1067
- confirmOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1068
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1069
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
1070
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
1071
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1239
+ confirmOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1240
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1241
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
1242
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
1243
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1072
1244
  ] }),
1073
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "This will remove the item from your collection permanently." }) }),
1074
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1075
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
1076
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
1245
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "This will remove the item from your collection permanently." }) }),
1246
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1247
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
1248
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
1077
1249
  ] })
1078
1250
  ] }) }),
1079
- formOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
1080
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1081
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Create New Item" }),
1082
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
1083
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1251
+ formOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
1252
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1253
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Create New Item" }),
1254
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
1255
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1084
1256
  ] }),
1085
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1086
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1087
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
1088
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
1089
- ] }),
1090
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1091
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
1092
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
1093
- ] }),
1094
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1095
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
1096
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("select", { className: "qt-input qt-select", children: [
1097
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "", children: "Select category..." }),
1098
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "1", children: "Category 1" }),
1099
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "2", children: "Category 2" }),
1100
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "3", children: "Category 3" })
1257
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1258
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1259
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
1260
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
1261
+ ] }),
1262
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1263
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
1264
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
1265
+ ] }),
1266
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1267
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
1268
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("select", { className: "qt-input qt-select", children: [
1269
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "", children: "Select category..." }),
1270
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "1", children: "Category 1" }),
1271
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "2", children: "Category 2" }),
1272
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "3", children: "Category 3" })
1101
1273
  ] })
1102
1274
  ] })
1103
1275
  ] }) }),
1104
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1105
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
1106
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1276
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1277
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
1278
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1107
1279
  ] })
1108
1280
  ] }) }),
1109
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1110
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1111
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1112
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1113
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1114
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1115
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1116
- ] }),
1117
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1118
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1119
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1120
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1281
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1282
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1283
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1284
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1285
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1286
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1287
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1288
+ ] }),
1289
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1290
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1291
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1292
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1121
1293
  ] })
1122
1294
  ] }) })
1123
1295
  ] }),
1124
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1125
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1126
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1127
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1128
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1129
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1130
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1131
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Compact dialog for simple confirmations." }) })
1296
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1297
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1298
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1299
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1300
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1301
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1302
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1303
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Compact dialog for simple confirmations." }) })
1132
1304
  ] }) })
1133
1305
  ] }),
1134
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1135
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1136
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1137
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1138
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1306
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1307
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1308
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1309
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1310
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1139
1311
  ] }) })
1140
1312
  ] })
1141
1313
  ] })
1142
1314
  ] }),
1143
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1144
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1145
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1146
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1147
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "0.75rem" }, children: [
1148
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1149
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1315
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1316
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1317
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1318
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1319
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "0.75rem" }, children: [
1320
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1321
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1150
1322
  ] }) })
1151
1323
  ] })
1152
1324
  ] }),
1153
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1154
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1155
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1156
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", children: "Profile" }),
1157
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", children: "Settings" }),
1158
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-separator" }),
1159
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1325
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1326
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1327
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1328
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", children: "Profile" }),
1329
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", children: "Settings" }),
1330
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-separator" }),
1331
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1160
1332
  ] })
1161
1333
  ] }),
1162
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1163
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1164
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1165
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1166
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1334
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1335
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1336
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1337
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1338
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1167
1339
  ] }) })
1168
1340
  ] })
1169
1341
  ] });
@@ -1171,15 +1343,15 @@ var Dialogs = () => {
1171
1343
 
1172
1344
  // src/stories/components/Tabs.tsx
1173
1345
  var import_react2 = require("react");
1174
- var import_jsx_runtime11 = require("react/jsx-runtime");
1346
+ var import_jsx_runtime12 = require("react/jsx-runtime");
1175
1347
  var Tabs = () => {
1176
1348
  const [activeTab, setActiveTab] = (0, import_react2.useState)("tab1");
1177
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1178
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1179
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1180
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1181
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-group", children: [
1182
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1349
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1350
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1351
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1352
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1353
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-group", children: [
1354
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1183
1355
  "button",
1184
1356
  {
1185
1357
  className: `qt-tab ${activeTab === "tab1" ? "qt-tab-active" : ""}`,
@@ -1187,7 +1359,7 @@ var Tabs = () => {
1187
1359
  children: "Account"
1188
1360
  }
1189
1361
  ),
1190
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1362
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1191
1363
  "button",
1192
1364
  {
1193
1365
  className: `qt-tab ${activeTab === "tab2" ? "qt-tab-active" : ""}`,
@@ -1195,7 +1367,7 @@ var Tabs = () => {
1195
1367
  children: "Settings"
1196
1368
  }
1197
1369
  ),
1198
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1370
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1199
1371
  "button",
1200
1372
  {
1201
1373
  className: `qt-tab ${activeTab === "tab3" ? "qt-tab-active" : ""}`,
@@ -1204,56 +1376,56 @@ var Tabs = () => {
1204
1376
  }
1205
1377
  )
1206
1378
  ] }),
1207
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1208
- activeTab === "tab1" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1209
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1210
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1211
- ] }),
1212
- activeTab === "tab2" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1213
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1214
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1215
- ] }),
1216
- activeTab === "tab3" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1217
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1218
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1379
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1380
+ activeTab === "tab1" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1381
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1382
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1383
+ ] }),
1384
+ activeTab === "tab2" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1385
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1386
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1387
+ ] }),
1388
+ activeTab === "tab3" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1389
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1390
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1219
1391
  ] })
1220
1392
  ] })
1221
1393
  ] }),
1222
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1223
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1224
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-group", children: [
1225
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1226
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" }) }),
1394
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1395
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1396
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-group", children: [
1397
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1398
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" }) }),
1227
1399
  "Home"
1228
1400
  ] }),
1229
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1230
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" }) }),
1401
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1402
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" }) }),
1231
1403
  "Profile"
1232
1404
  ] }),
1233
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1234
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1235
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1236
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1405
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1406
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1407
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1408
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1237
1409
  ] }),
1238
1410
  "Settings"
1239
1411
  ] })
1240
1412
  ] })
1241
1413
  ] }),
1242
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1243
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1244
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-navbar", children: [
1245
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1246
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1247
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1248
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1249
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1250
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1251
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1414
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { children: [
1415
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1416
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-navbar", children: [
1417
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1418
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1419
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1420
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1421
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1422
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1423
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1252
1424
  ] })
1253
1425
  ] }),
1254
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1255
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" }) }) }),
1256
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-avatar-fallback", children: "U" }) })
1426
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1427
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" }) }) }),
1428
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "U" }) })
1257
1429
  ] })
1258
1430
  ] })
1259
1431
  ] })
@@ -1261,215 +1433,215 @@ var Tabs = () => {
1261
1433
  };
1262
1434
 
1263
1435
  // src/stories/components/Chat.tsx
1264
- var import_jsx_runtime12 = require("react/jsx-runtime");
1436
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1265
1437
  var Chat = () => {
1266
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1267
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1268
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1269
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1270
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1271
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1272
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1273
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1274
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1438
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1439
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1440
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1441
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1442
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1443
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1444
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1445
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1446
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1275
1447
  ] }),
1276
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! How are you today?" }) })
1448
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! How are you today?" }) })
1277
1449
  ] }) }),
1278
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1279
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1280
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1281
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1282
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1283
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1450
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1451
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1452
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1453
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1454
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1455
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1284
1456
  ] }),
1285
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1457
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1286
1458
  ] })
1287
1459
  ] }),
1288
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1289
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1290
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1291
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1292
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1293
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1460
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1461
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1462
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1463
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1464
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1465
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1294
1466
  ] }),
1295
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-content", children: [
1296
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Here's some information you might find helpful:" }),
1297
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1298
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "First point of interest" }),
1299
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "Second important detail" }),
1300
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "Third relevant fact" })
1467
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-content", children: [
1468
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Here's some information you might find helpful:" }),
1469
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1470
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "First point of interest" }),
1471
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "Second important detail" }),
1472
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "Third relevant fact" })
1301
1473
  ] }),
1302
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1474
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1303
1475
  ] }),
1304
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-actions", children: [
1305
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" }) }) }),
1306
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" }) }) })
1476
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-actions", children: [
1477
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" }) }) }),
1478
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" }) }) })
1307
1479
  ] })
1308
1480
  ] })
1309
1481
  ] }),
1310
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1311
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1312
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1313
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1482
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1483
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1484
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1485
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1314
1486
  ] }) })
1315
1487
  ] })
1316
1488
  ] }),
1317
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1318
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1319
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1320
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1321
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1322
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1323
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1324
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1325
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1489
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1490
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1491
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1492
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1493
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1494
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1495
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1496
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1497
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1326
1498
  ] })
1327
1499
  ] }),
1328
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1329
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1330
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1331
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1332
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1500
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1501
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1502
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1503
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1504
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1333
1505
  ] })
1334
1506
  ] })
1335
1507
  ] })
1336
1508
  ] }),
1337
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1338
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1339
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Special text formatting for roleplay-style messages with narration, inner thoughts, and out-of-character text." }),
1340
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1341
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1342
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1343
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1344
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1345
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("p", { children: [
1509
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1510
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1511
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Special text formatting for roleplay-style messages with narration, inner thoughts, and out-of-character text." }),
1512
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1513
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1514
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1515
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1516
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1517
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { children: [
1346
1518
  '"Hello there!" ',
1347
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1519
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1348
1520
  ] }) })
1349
1521
  ] })
1350
1522
  ] }),
1351
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1352
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1353
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1354
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1355
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("p", { children: [
1356
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1523
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1524
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1525
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1526
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1527
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { children: [
1528
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1357
1529
  " ",
1358
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1530
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1359
1531
  ] }) })
1360
1532
  ] })
1361
1533
  ] }),
1362
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1363
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1364
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1365
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1366
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1534
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1535
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1536
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1537
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1538
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1367
1539
  ] })
1368
1540
  ] })
1369
1541
  ] })
1370
1542
  ] }),
1371
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1372
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1373
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1374
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1375
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1376
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1377
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1543
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1544
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1545
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1546
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1547
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1548
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1549
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1378
1550
  ] }) }),
1379
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1380
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1381
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1551
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1552
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1553
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1382
1554
  ] }) })
1383
1555
  ] })
1384
1556
  ] }),
1385
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1386
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1387
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inner thoughts and actions from characters in silent mode. They can think and act physically, but cannot speak aloud. Distinguished from whispers by dotted borders and sage/teal tones." }),
1388
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1389
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1390
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1391
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1557
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1558
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1559
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inner thoughts and actions from characters in silent mode. They can think and act physically, but cannot speak aloud. Distinguished from whispers by dotted borders and sage/teal tones." }),
1560
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1561
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1562
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1563
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1392
1564
  ] }) }),
1393
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1394
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1395
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1565
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1566
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1567
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1396
1568
  ] }) })
1397
1569
  ] })
1398
1570
  ] }),
1399
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1400
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1401
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inline summaries of outfit changes (equip, unequip, gift). Distinguished from whispers (dashed purple) and silent messages (dotted teal) by a double border and warm amber/gold tones." }),
1402
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1403
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1404
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1405
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1406
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1407
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1571
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1572
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1573
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inline summaries of outfit changes (equip, unequip, gift). Distinguished from whispers (dashed purple) and silent messages (dotted teal) by a double border and warm amber/gold tones." }),
1574
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1575
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1576
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1577
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1578
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1579
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1408
1580
  ] })
1409
1581
  ] }),
1410
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1411
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1412
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1413
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Removed item from the footwear slot." }),
1414
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1582
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1583
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1584
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1585
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Removed item from the footwear slot." }),
1586
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1415
1587
  ] })
1416
1588
  ] }),
1417
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1418
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1419
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1420
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1421
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Marcus put it on immediately." })
1589
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1590
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1591
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1592
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1593
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Marcus put it on immediately." })
1422
1594
  ] })
1423
1595
  ] })
1424
1596
  ] })
1425
1597
  ] }),
1426
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1427
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1428
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1429
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1430
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1431
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1432
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1433
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { flex: 1 } }),
1434
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1435
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1436
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1598
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1599
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1600
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1601
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1602
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1603
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1604
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1605
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { flex: 1 } }),
1606
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1607
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1608
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1437
1609
  ] }) })
1438
1610
  ] })
1439
1611
  ] }),
1440
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1441
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1442
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1443
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1444
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1445
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1612
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1613
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1614
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1615
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1616
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1617
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1446
1618
  "Narration"
1447
1619
  ] }),
1448
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1449
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" }) }),
1620
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1621
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" }) }),
1450
1622
  "Internal"
1451
1623
  ] }),
1452
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1453
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" }) }),
1624
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1625
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" }) }),
1454
1626
  "OOC"
1455
1627
  ] })
1456
1628
  ] })
1457
1629
  ] }),
1458
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1459
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1460
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1461
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1462
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1463
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1464
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { children: "document.pdf" }),
1465
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1630
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1631
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1632
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1633
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1634
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1635
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1636
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { children: "document.pdf" }),
1637
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1466
1638
  ] }),
1467
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1468
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { children: "image.png" }),
1469
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1639
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1640
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { children: "image.png" }),
1641
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1470
1642
  ] })
1471
1643
  ] }),
1472
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1644
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1473
1645
  "textarea",
1474
1646
  {
1475
1647
  className: "qt-chat-composer-input",
@@ -1478,17 +1650,17 @@ var Chat = () => {
1478
1650
  style: { width: "100%", padding: "0.5rem", marginBottom: "0.5rem" }
1479
1651
  }
1480
1652
  ),
1481
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1482
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1483
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1653
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1654
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1655
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1484
1656
  ] })
1485
1657
  ] })
1486
1658
  ] }),
1487
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1488
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1489
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1490
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13" }) }) }),
1491
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1659
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1660
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1661
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1662
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13" }) }) }),
1663
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1492
1664
  "textarea",
1493
1665
  {
1494
1666
  className: "qt-chat-composer-input qt-input",
@@ -1496,65 +1668,65 @@ var Chat = () => {
1496
1668
  rows: 1
1497
1669
  }
1498
1670
  ),
1499
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1671
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1500
1672
  ] }) })
1501
1673
  ] }),
1502
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1503
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1504
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1505
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1506
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-typing-indicator", children: [
1507
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {}),
1508
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {}),
1509
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {})
1674
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1675
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1676
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1677
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1678
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-typing-indicator", children: [
1679
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {}),
1680
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {}),
1681
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {})
1510
1682
  ] }) })
1511
1683
  ] })
1512
1684
  ] }),
1513
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1514
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1515
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1516
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1517
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-chat-continue-button", children: [
1518
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1519
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" }),
1520
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1685
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1686
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1687
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1688
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1689
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-chat-continue-button", children: [
1690
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1691
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" }),
1692
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1521
1693
  ] }),
1522
1694
  "Continue"
1523
1695
  ] }),
1524
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-chat-stop-button", children: [
1525
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1526
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1527
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z" })
1696
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-chat-stop-button", children: [
1697
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1698
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1699
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z" })
1528
1700
  ] }),
1529
1701
  "Stop"
1530
1702
  ] })
1531
1703
  ] })
1532
1704
  ] }),
1533
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { children: [
1534
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1535
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1536
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1537
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1538
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1539
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1540
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1541
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1705
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { children: [
1706
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1707
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1708
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1709
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1710
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1711
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1712
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1713
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1542
1714
  ] })
1543
1715
  ] }),
1544
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1545
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1546
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1716
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1717
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1718
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1547
1719
  ] }) }) })
1548
1720
  ] }),
1549
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1550
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1551
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1552
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! How can I help you today?" }) })
1721
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1722
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1723
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1724
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! How can I help you today?" }) })
1553
1725
  ] }),
1554
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1726
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1555
1727
  ] }),
1556
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1557
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1728
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1729
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1558
1730
  "textarea",
1559
1731
  {
1560
1732
  className: "qt-chat-composer-input qt-input",
@@ -1562,7 +1734,7 @@ var Chat = () => {
1562
1734
  rows: 1
1563
1735
  }
1564
1736
  ),
1565
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1737
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1566
1738
  ] })
1567
1739
  ] })
1568
1740
  ] })
@@ -1570,7 +1742,7 @@ var Chat = () => {
1570
1742
  };
1571
1743
 
1572
1744
  // src/stories/components/Terminal.tsx
1573
- var import_jsx_runtime13 = require("react/jsx-runtime");
1745
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1574
1746
  var sampleOutput = `$ git status
1575
1747
  On branch main
1576
1748
  Your branch is up to date with 'origin/main'.
@@ -1582,117 +1754,117 @@ $ npm run dev
1582
1754
  - Local: http://localhost:3000
1583
1755
  - ready started server on 0.0.0.0:3000`;
1584
1756
  var Terminal = () => {
1585
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1586
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1587
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1757
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1758
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1759
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1588
1760
  "The terminal carries its own identity. By default it stays dark in both light and dark themes \u2014 but a theme can override",
1589
1761
  " ",
1590
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-bg" }),
1762
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-bg" }),
1591
1763
  ", ",
1592
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-fg" }),
1764
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-fg" }),
1593
1765
  ", and the",
1594
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1766
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1595
1767
  " tokens to reskin every surface below."
1596
1768
  ] }),
1597
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1598
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1599
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1600
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-embed" }),
1769
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1770
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1771
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1772
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-embed" }),
1601
1773
  " wraps the embed card; the header and footer strips inherit the surrounding theme so they nest cleanly with chat bubbles."
1602
1774
  ] }),
1603
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1604
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed-header", children: [
1605
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1606
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1607
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1608
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1775
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1776
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed-header", children: [
1777
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1778
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1779
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1780
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1609
1781
  ] })
1610
1782
  ] }),
1611
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-surface", style: { padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1783
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-surface", style: { padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1612
1784
  ] })
1613
1785
  ] }),
1614
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1615
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Embed footer (handed off to Terminal Mode pane)" }),
1616
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1617
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1618
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
1619
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1620
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1786
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1787
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Embed footer (handed off to Terminal Mode pane)" }),
1788
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1789
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1790
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
1791
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1792
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1621
1793
  ] })
1622
1794
  ] })
1623
1795
  ] }),
1624
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1625
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1626
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1796
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1797
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1798
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1627
1799
  "The full-screen pop-out page uses",
1628
1800
  " ",
1629
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-popout-page" }),
1801
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-popout-page" }),
1630
1802
  " as the outer canvas and",
1631
1803
  " ",
1632
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-popout-header" }),
1804
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-popout-header" }),
1633
1805
  " for the breadcrumb bar."
1634
1806
  ] }),
1635
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-popout-page", style: { borderRadius: "0.5rem", overflow: "hidden", border: "1px solid var(--color-border)", height: "240px", display: "flex", flexDirection: "column" }, children: [
1636
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-popout-header", children: [
1637
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1638
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1639
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1640
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
1641
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1807
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-popout-page", style: { borderRadius: "0.5rem", overflow: "hidden", border: "1px solid var(--color-border)", height: "240px", display: "flex", flexDirection: "column" }, children: [
1808
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-popout-header", children: [
1809
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1810
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1811
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1812
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
1813
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1642
1814
  ] }),
1643
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1815
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1644
1816
  ] }),
1645
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { flex: 1, padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1817
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { flex: 1, padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1646
1818
  ] })
1647
1819
  ] }),
1648
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { children: [
1649
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1650
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1820
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { children: [
1821
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1822
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1651
1823
  "When the PTY exits but the terminal stays mounted, the",
1652
1824
  " ",
1653
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-closed-badge" }),
1825
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-closed-badge" }),
1654
1826
  " overlay marks it."
1655
1827
  ] }),
1656
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1828
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1657
1829
  ] })
1658
1830
  ] });
1659
1831
  };
1660
1832
 
1661
1833
  // src/stories/components/FilePreview.tsx
1662
- var import_jsx_runtime14 = require("react/jsx-runtime");
1834
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1663
1835
  var FilePreview = () => {
1664
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1665
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1666
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1667
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1668
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1669
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-scroll" }),
1836
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1837
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1838
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1839
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1840
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1841
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-scroll" }),
1670
1842
  " - Scrollable container for file content with configurable max height."
1671
1843
  ] }),
1672
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
1844
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
1673
1845
  "Line ",
1674
1846
  i + 1,
1675
1847
  ": Lorem ipsum dolor sit amet, consectetur adipiscing elit."
1676
1848
  ] }, i)) }) })
1677
1849
  ] }),
1678
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1679
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1680
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1681
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-panel" }),
1850
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1851
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1852
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1853
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-panel" }),
1682
1854
  " - Background panel for rendered markdown content."
1683
1855
  ] }),
1684
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-panel", children: [
1685
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1686
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1856
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-panel", children: [
1857
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1858
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1687
1859
  ] })
1688
1860
  ] }),
1689
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1690
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1691
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1692
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-code" }),
1861
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1862
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1863
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1864
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-code" }),
1693
1865
  " - Styled code block for plain text and source files with word wrap."
1694
1866
  ] }),
1695
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1867
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1696
1868
  return \`Hello, \${name}!\`;
1697
1869
  }
1698
1870
 
@@ -1700,133 +1872,133 @@ var FilePreview = () => {
1700
1872
  const message = greet("World");
1701
1873
  console.log(message);` })
1702
1874
  ] }),
1703
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1704
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1705
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1706
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-loading" }),
1875
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1876
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1877
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1878
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-loading" }),
1707
1879
  " + ",
1708
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-loading-text" }),
1880
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-loading-text" }),
1709
1881
  " - Loading indicator."
1710
1882
  ] }),
1711
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1883
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1712
1884
  ] }),
1713
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1714
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1715
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1716
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-empty" }),
1885
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1886
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1887
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1888
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-empty" }),
1717
1889
  " + ",
1718
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
1890
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
1719
1891
  " - Empty or error state display."
1720
1892
  ] }),
1721
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1722
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1723
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1724
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "No content available" })
1893
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1894
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1895
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1896
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "No content available" })
1725
1897
  ] }) }),
1726
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1727
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1728
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Failed to load file" })
1898
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1899
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1900
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Failed to load file" })
1729
1901
  ] }) })
1730
1902
  ] })
1731
1903
  ] }),
1732
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1733
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1734
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1735
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-wikilink" }),
1904
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1905
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1906
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1907
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-wikilink" }),
1736
1908
  " + ",
1737
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-wikilink-broken" }),
1909
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-wikilink-broken" }),
1738
1910
  " - Internal document links in markdown."
1739
1911
  ] }),
1740
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
1912
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
1741
1913
  "This document references ",
1742
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1914
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1743
1915
  " and links to ",
1744
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1916
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1745
1917
  ". There's also a ",
1746
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1918
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1747
1919
  " that doesn't exist yet."
1748
1920
  ] }) })
1749
1921
  ] }),
1750
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1751
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1752
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1922
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1923
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1924
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1753
1925
  { name: "--qt-file-preview-max-height", value: "70vh", desc: "Max height of scroll container" },
1754
1926
  { name: "--qt-file-preview-min-height", value: "300px", desc: "Min height of loading/empty states" },
1755
1927
  { name: "--qt-file-preview-panel-bg", value: "muted/30%", desc: "Content panel background" },
1756
1928
  { name: "--qt-code-bg", value: "muted", desc: "Code block background" },
1757
1929
  { name: "--qt-code-fg", value: "foreground", desc: "Code block text color" },
1758
1930
  { name: "--qt-code-font", value: "monospace", desc: "Code block font family" }
1759
- ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
1760
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
1761
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1931
+ ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
1932
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
1933
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1762
1934
  "Default: ",
1763
1935
  value
1764
1936
  ] }),
1765
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
1937
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
1766
1938
  ] }, name)) })
1767
1939
  ] })
1768
1940
  ] });
1769
1941
  };
1770
1942
 
1771
1943
  // src/stories/components/ThemeComparison.tsx
1772
- var import_jsx_runtime15 = require("react/jsx-runtime");
1944
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1773
1945
  var ThemePanel = ({ title, description }) => {
1774
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
1775
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
1776
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
1777
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
1778
- ] }),
1779
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
1780
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-header", children: [
1781
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
1782
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
1946
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
1947
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
1948
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
1949
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
1950
+ ] }),
1951
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
1952
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-header", children: [
1953
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
1954
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
1783
1955
  ] }),
1784
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-body", children: [
1785
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
1786
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1787
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1788
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1789
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
1956
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-body", children: [
1957
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
1958
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1959
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1960
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1961
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
1790
1962
  ] })
1791
1963
  ] }),
1792
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-footer", children: [
1793
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
1794
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
1964
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-footer", children: [
1965
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
1966
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
1795
1967
  ] })
1796
1968
  ] }),
1797
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
1798
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1799
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
1800
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
1969
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
1970
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1971
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
1972
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
1801
1973
  ] }),
1802
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1803
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
1804
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("select", { className: "qt-input qt-select", children: [
1805
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 1" }),
1806
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 2" })
1974
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1975
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
1976
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("select", { className: "qt-input qt-select", children: [
1977
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 1" }),
1978
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 2" })
1807
1979
  ] })
1808
1980
  ] }),
1809
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1810
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
1811
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
1981
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1982
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
1983
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
1812
1984
  ] })
1813
1985
  ] }),
1814
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1815
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1816
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1817
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
1986
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1987
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1988
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1989
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
1818
1990
  ] }),
1819
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
1991
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
1820
1992
  ] })
1821
1993
  ] });
1822
1994
  };
1823
1995
  var ThemeComparison = () => {
1824
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1825
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
1826
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1.5rem" }, children: "Compare your custom theme against the default Quilltap theme. Use the theme toggle above to switch between themes." }),
1827
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1828
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
1829
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1996
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1997
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
1998
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1.5rem" }, children: "Compare your custom theme against the default Quilltap theme. Use the theme toggle above to switch between themes." }),
1999
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2000
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
2001
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1830
2002
  ThemePanel,
1831
2003
  {
1832
2004
  title: "Active Theme",
@@ -1834,9 +2006,9 @@ var ThemeComparison = () => {
1834
2006
  }
1835
2007
  )
1836
2008
  ] }),
1837
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1838
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
1839
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2009
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2010
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
2011
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1840
2012
  { name: "Background", var: "--color-background" },
1841
2013
  { name: "Foreground", var: "--color-foreground" },
1842
2014
  { name: "Card", var: "--color-card" },
@@ -1845,8 +2017,8 @@ var ThemeComparison = () => {
1845
2017
  { name: "Muted", var: "--color-muted" },
1846
2018
  { name: "Accent", var: "--color-accent" },
1847
2019
  { name: "Border", var: "--color-border" }
1848
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { textAlign: "center" }, children: [
1849
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2020
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { textAlign: "center" }, children: [
2021
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1850
2022
  "div",
1851
2023
  {
1852
2024
  style: {
@@ -1858,17 +2030,17 @@ var ThemeComparison = () => {
1858
2030
  }
1859
2031
  }
1860
2032
  ),
1861
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2033
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1862
2034
  ] }, cssVar)) })
1863
2035
  ] }),
1864
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1865
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
1866
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2036
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2037
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
2038
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1867
2039
  { name: "Destructive", var: "--color-destructive" },
1868
2040
  { name: "Success", var: "--color-success" },
1869
2041
  { name: "Warning", var: "--color-warning" }
1870
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { textAlign: "center" }, children: [
1871
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2042
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { textAlign: "center" }, children: [
2043
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1872
2044
  "div",
1873
2045
  {
1874
2046
  style: {
@@ -1880,50 +2052,50 @@ var ThemeComparison = () => {
1880
2052
  }
1881
2053
  }
1882
2054
  ),
1883
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2055
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1884
2056
  ] }, cssVar)) })
1885
2057
  ] }),
1886
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { children: [
1887
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
1888
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1889
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
1890
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1891
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
1892
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
1893
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
1894
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
1895
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
2058
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { children: [
2059
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
2060
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2061
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
2062
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2063
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
2064
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
2065
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
2066
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
2067
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
1896
2068
  ] })
1897
2069
  ] }),
1898
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1899
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
1900
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1901
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
1902
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1903
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1904
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
1905
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
1906
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
2070
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2071
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
2072
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2073
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
2074
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2075
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2076
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
2077
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
2078
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
1907
2079
  ] })
1908
2080
  ] }),
1909
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1910
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
1911
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1912
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1913
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
1914
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
1915
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
2081
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2082
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
2083
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2084
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
2085
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { children: [
2086
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
2087
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
1916
2088
  ] })
1917
2089
  ] }) }) })
1918
2090
  ] }),
1919
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
1920
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
1921
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
1922
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
1923
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
1924
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Select option" }),
1925
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 1" }),
1926
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 2" })
2091
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { children: [
2092
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
2093
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
2094
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
2095
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
2096
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Select option" }),
2097
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 1" }),
2098
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 2" })
1927
2099
  ] })
1928
2100
  ] })
1929
2101
  ] })
@@ -1932,125 +2104,125 @@ var ThemeComparison = () => {
1932
2104
  };
1933
2105
 
1934
2106
  // src/stories/components/EmptyState.tsx
1935
- var import_jsx_runtime16 = require("react/jsx-runtime");
2107
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1936
2108
  var EmptyState = () => {
1937
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1938
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
1939
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1940
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
1941
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
1942
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" }) }) }),
1943
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
1944
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2109
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2110
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2111
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2112
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
2113
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2114
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" }) }) }),
2115
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2116
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
1945
2117
  ] })
1946
2118
  ] }),
1947
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1948
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
1949
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
1950
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" }) }) }),
1951
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
1952
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
1953
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2119
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2120
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
2121
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2122
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" }) }) }),
2123
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
2124
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2125
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
1954
2126
  ] })
1955
2127
  ] }),
1956
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1957
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
1958
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
1959
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
1960
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
1961
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
1962
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2128
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2129
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
2130
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2131
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
2132
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
2133
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2134
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
1963
2135
  ] })
1964
2136
  ] }),
1965
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { children: [
1966
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
1967
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
1968
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }) }),
1969
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
1970
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
1971
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2137
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { children: [
2138
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
2139
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2140
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }) }),
2141
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2142
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2143
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
1972
2144
  ] })
1973
2145
  ] })
1974
2146
  ] });
1975
2147
  };
1976
2148
 
1977
2149
  // src/stories/components/Loading.tsx
1978
- var import_jsx_runtime17 = require("react/jsx-runtime");
2150
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1979
2151
  var Loading = () => {
1980
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1981
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
1982
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1983
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
1984
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
1985
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
1986
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
1987
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
1988
- ] }),
1989
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
1990
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
1991
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
1992
- ] }),
1993
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
1994
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
1995
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2152
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2153
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2154
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2155
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
2156
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2157
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2158
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2159
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2160
+ ] }),
2161
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2162
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2163
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2164
+ ] }),
2165
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2166
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2167
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
1996
2168
  ] })
1997
2169
  ] })
1998
2170
  ] }),
1999
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2000
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2001
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2002
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2003
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2004
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2171
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2172
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2173
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2174
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2175
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2176
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2005
2177
  ] })
2006
2178
  ] }),
2007
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2008
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2009
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2010
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2011
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2012
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2013
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2014
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2179
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2180
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2181
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2182
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2183
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2184
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2185
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2186
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2015
2187
  ] })
2016
2188
  ] }),
2017
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2018
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2019
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2020
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2189
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2190
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2191
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2192
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2021
2193
  ] })
2022
2194
  ] })
2023
2195
  ] }),
2024
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2025
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2026
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2027
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2028
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2029
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2030
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2031
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2032
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2033
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2196
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2197
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2198
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2199
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2200
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2201
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2202
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2203
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2204
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2205
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2034
2206
  ] }) })
2035
2207
  ] })
2036
2208
  ] }) })
2037
2209
  ] }),
2038
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2039
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2040
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2041
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2042
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2210
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2211
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2212
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2213
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2214
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2043
2215
  ] }, i)) })
2044
2216
  ] }),
2045
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { children: [
2046
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2047
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2048
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2049
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2217
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2218
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2219
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2220
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2221
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2050
2222
  "Loading..."
2051
2223
  ] }),
2052
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2053
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2224
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2225
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2054
2226
  "Saving..."
2055
2227
  ] })
2056
2228
  ] })
@@ -2059,130 +2231,130 @@ var Loading = () => {
2059
2231
  };
2060
2232
 
2061
2233
  // src/stories/components/Participant.tsx
2062
- var import_jsx_runtime18 = require("react/jsx-runtime");
2234
+ var import_jsx_runtime19 = require("react/jsx-runtime");
2063
2235
  var Participant = () => {
2064
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2065
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2066
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2067
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2068
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2069
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2070
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2071
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2072
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2073
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2236
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2237
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2238
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2239
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2240
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2241
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2242
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2243
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2244
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2245
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2074
2246
  ] })
2075
2247
  ] }) }),
2076
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2077
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2078
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2079
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2080
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2248
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2249
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2250
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2251
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2252
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2081
2253
  ] })
2082
2254
  ] }) }),
2083
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2084
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2085
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2086
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2087
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2255
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2256
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2257
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2258
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2259
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2088
2260
  ] })
2089
2261
  ] }) })
2090
2262
  ] })
2091
2263
  ] }),
2092
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2093
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2094
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Characters can be active, silent (thinking but not speaking), absent (away from the scene), or removed." }),
2095
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2096
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2097
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2098
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2099
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2100
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2264
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2265
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2266
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Characters can be active, silent (thinking but not speaking), absent (away from the scene), or removed." }),
2267
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2268
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2269
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2270
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2271
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2272
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2101
2273
  ] })
2102
2274
  ] }) }),
2103
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2104
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2105
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2106
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M16.5 12A4.5 4.5 0 0 0 12 7.5v4.09l3.13 3.13A4.46 4.46 0 0 0 16.5 12ZM19 12c0 1.68-.59 3.22-1.57 4.43L21 20l-1.41 1.41-18-18L3 2l4.57 4.57A7.97 7.97 0 0 1 12 4c4.42 0 8 3.58 8 8Zm-7-8a6 6 0 0 0-6 6c0 1.33.44 2.56 1.17 3.56L5 11.44A7.94 7.94 0 0 1 4 8" }) }) })
2275
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2276
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2277
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2278
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M16.5 12A4.5 4.5 0 0 0 12 7.5v4.09l3.13 3.13A4.46 4.46 0 0 0 16.5 12ZM19 12c0 1.68-.59 3.22-1.57 4.43L21 20l-1.41 1.41-18-18L3 2l4.57 4.57A7.97 7.97 0 0 1 12 4c4.42 0 8 3.58 8 8Zm-7-8a6 6 0 0 0-6 6c0 1.33.44 2.56 1.17 3.56L5 11.44A7.94 7.94 0 0 1 4 8" }) }) })
2107
2279
  ] }),
2108
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2109
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2110
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2111
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2280
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2281
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2282
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2283
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2112
2284
  ] }),
2113
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2285
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2114
2286
  ] })
2115
2287
  ] }) }),
2116
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2117
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2118
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2119
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2288
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2289
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2290
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2291
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2120
2292
  ] }),
2121
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2122
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2123
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2124
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2293
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2294
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2295
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2296
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2125
2297
  ] }),
2126
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2298
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2127
2299
  ] })
2128
2300
  ] }) }),
2129
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2130
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2131
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2132
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2133
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2301
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2302
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2303
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2304
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2305
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2134
2306
  ] })
2135
2307
  ] }) })
2136
2308
  ] })
2137
2309
  ] }),
2138
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2139
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2140
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2141
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2142
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2143
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2144
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2145
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2146
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2147
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2310
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2311
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2312
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2313
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2314
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2315
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2316
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2317
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2318
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2319
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2148
2320
  ] }) }),
2149
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2150
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2151
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2321
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2322
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2323
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2152
2324
  ] }) })
2153
2325
  ] })
2154
2326
  ] })
2155
2327
  ] })
2156
2328
  ] }),
2157
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2158
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2159
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2160
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2161
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2162
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2163
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2164
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2165
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2166
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "", children: "Select a provider..." }),
2167
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "__user__", children: "User (you type)" }),
2168
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2169
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2170
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gemini", children: "gemini-pro" })
2329
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { children: [
2330
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2331
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2332
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2333
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2334
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2335
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2336
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2337
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2338
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "", children: "Select a provider..." }),
2339
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "__user__", children: "User (you type)" }),
2340
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2341
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2342
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gemini", children: "gemini-pro" })
2171
2343
  ] }) })
2172
2344
  ] })
2173
2345
  ] }) }),
2174
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2175
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2176
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2177
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2178
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2179
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2346
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2347
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2348
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2349
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2350
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2351
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2180
2352
  ] }),
2181
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2182
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "", children: "Select a provider..." }),
2183
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "__user__", children: "User (you type)" }),
2184
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2185
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "claude", children: "claude-3-opus" })
2353
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2354
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "", children: "Select a provider..." }),
2355
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "__user__", children: "User (you type)" }),
2356
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2357
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "claude", children: "claude-3-opus" })
2186
2358
  ] }) })
2187
2359
  ] })
2188
2360
  ] }) })
@@ -2203,6 +2375,7 @@ var Participant = () => {
2203
2375
  Dialogs,
2204
2376
  EmptyState,
2205
2377
  FilePreview,
2378
+ Icons,
2206
2379
  Inputs,
2207
2380
  Loading,
2208
2381
  Participant,