@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.
@@ -72,157 +72,328 @@ var ColorPalette = () => {
72
72
  ] });
73
73
  };
74
74
 
75
- // src/stories/components/Typography.tsx
75
+ // src/stories/components/Icons.tsx
76
76
  import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
77
- var Typography = () => {
77
+ var ICON_GROUPS = [
78
+ {
79
+ category: "General UI",
80
+ names: [
81
+ "close",
82
+ "pencil",
83
+ "refresh",
84
+ "check",
85
+ "check-circle",
86
+ "chat",
87
+ "info",
88
+ "trash",
89
+ "copy",
90
+ "plus",
91
+ "search",
92
+ "download",
93
+ "upload",
94
+ "cloud-upload",
95
+ "external-link",
96
+ "link",
97
+ "send",
98
+ "paperclip",
99
+ "eye",
100
+ "eye-off",
101
+ "star",
102
+ "bookmark",
103
+ "tag",
104
+ "expand",
105
+ "compress"
106
+ ]
107
+ },
108
+ {
109
+ category: "Navigation arrows",
110
+ names: [
111
+ "chevron-down",
112
+ "chevron-right",
113
+ "chevron-left",
114
+ "arrow-left",
115
+ "arrow-right",
116
+ "arrow-up",
117
+ "arrow-down"
118
+ ]
119
+ },
120
+ {
121
+ category: "Status & alerts",
122
+ names: ["alert-triangle", "alert-circle", "shield", "ban", "clock", "calendar"]
123
+ },
124
+ {
125
+ category: "Media",
126
+ names: ["image", "camera", "play", "pause", "stop", "zoom-in", "zoom-out"]
127
+ },
128
+ {
129
+ category: "Content & sidebar navigation",
130
+ names: [
131
+ "projects",
132
+ "files",
133
+ "file",
134
+ "file-plus",
135
+ "folder",
136
+ "folder-plus",
137
+ "book",
138
+ "characters",
139
+ "scriptorium",
140
+ "photos",
141
+ "scenarios"
142
+ ]
143
+ },
144
+ {
145
+ category: "People",
146
+ names: ["profile", "user", "user-plus", "users", "megaphone", "dice"]
147
+ },
148
+ {
149
+ category: "System & tooling",
150
+ names: ["sparkles", "wand", "wrench", "code", "cpu", "database", "layers", "zap", "swap", "log-out"]
151
+ },
152
+ {
153
+ category: "Appearance & system",
154
+ names: ["settings", "themes", "wardrobe", "help", "sun", "moon", "monitor"]
155
+ },
156
+ {
157
+ category: "Brand",
158
+ names: ["brand"]
159
+ }
160
+ ];
161
+ var sectionHeading = {
162
+ fontSize: "1.125rem",
163
+ fontWeight: 700,
164
+ marginBottom: "1rem",
165
+ borderBottom: "1px solid var(--color-border)",
166
+ paddingBottom: "0.5rem"
167
+ };
168
+ var chip = {
169
+ fontFamily: "var(--theme-font-mono, ui-monospace, monospace)",
170
+ fontSize: "0.8125rem",
171
+ padding: "0.25rem 0.6rem",
172
+ borderRadius: "var(--radius-md, 0.375rem)",
173
+ border: "1px solid var(--color-border)",
174
+ background: "var(--color-muted)",
175
+ color: "var(--color-foreground)"
176
+ };
177
+ var codeBlock = {
178
+ fontFamily: "var(--theme-font-mono, ui-monospace, monospace)",
179
+ fontSize: "0.8125rem",
180
+ background: "var(--color-muted)",
181
+ color: "var(--color-foreground)",
182
+ border: "1px solid var(--color-border)",
183
+ borderRadius: "var(--radius-md, 0.375rem)",
184
+ padding: "1rem",
185
+ overflowX: "auto",
186
+ lineHeight: 1.6
187
+ };
188
+ var Icons = () => {
78
189
  return /* @__PURE__ */ jsxs2("div", { style: { padding: "1.5rem" }, children: [
79
- /* @__PURE__ */ jsx2("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Typography" }),
80
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
81
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Headings (qt-heading-*)" }),
82
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
83
- /* @__PURE__ */ jsxs2("div", { children: [
84
- /* @__PURE__ */ jsx2("h1", { className: "qt-heading-1", children: "Heading 1 - The quick brown fox" }),
85
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-1" })
86
- ] }),
87
- /* @__PURE__ */ jsxs2("div", { children: [
88
- /* @__PURE__ */ jsx2("h2", { className: "qt-heading-2", children: "Heading 2 - The quick brown fox" }),
89
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-2" })
90
- ] }),
91
- /* @__PURE__ */ jsxs2("div", { children: [
92
- /* @__PURE__ */ jsx2("h3", { className: "qt-heading-3", children: "Heading 3 - The quick brown fox" }),
93
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-3" })
94
- ] }),
95
- /* @__PURE__ */ jsxs2("div", { children: [
96
- /* @__PURE__ */ jsx2("h4", { className: "qt-heading-4", children: "Heading 4 - The quick brown fox" }),
97
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-4" })
190
+ /* @__PURE__ */ jsx2("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Icons" }),
191
+ /* @__PURE__ */ jsx2("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." }),
192
+ /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2.5rem" }, children: [
193
+ /* @__PURE__ */ jsx2("h3", { style: sectionHeading, children: "Overriding an icon" }),
194
+ /* @__PURE__ */ jsxs2("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem", maxWidth: "46rem" }, children: [
195
+ "Drop replacement assets into your bundle's ",
196
+ /* @__PURE__ */ jsx2("code", { children: "icons/" }),
197
+ " folder and add an",
198
+ " ",
199
+ /* @__PURE__ */ jsx2("code", { children: "icons" }),
200
+ " map to ",
201
+ /* @__PURE__ */ jsx2("code", { children: "theme.json" }),
202
+ ", keyed by the built-in icon name:"
203
+ ] }),
204
+ /* @__PURE__ */ jsx2("pre", { style: codeBlock, children: `{
205
+ "icons": {
206
+ "settings": "icons/settings.svg",
207
+ "brand": "icons/brand.webp"
208
+ }
209
+ }` }),
210
+ /* @__PURE__ */ jsxs2("ul", { style: { color: "var(--color-muted-foreground)", marginTop: "1rem", maxWidth: "46rem", lineHeight: 1.7 }, children: [
211
+ /* @__PURE__ */ jsxs2("li", { children: [
212
+ /* @__PURE__ */ jsx2("strong", { style: { color: "var(--color-foreground)" }, children: ".svg overrides" }),
213
+ " are tinted by the current text color, exactly like the built-in icons \u2014 best for monochrome glyphs that should follow the theme."
214
+ ] }),
215
+ /* @__PURE__ */ jsxs2("li", { children: [
216
+ /* @__PURE__ */ jsx2("strong", { style: { color: "var(--color-foreground)" }, children: ".webp overrides" }),
217
+ " are drawn in full color \u2014 best for textured or multi-color marks."
218
+ ] }),
219
+ /* @__PURE__ */ jsxs2("li", { children: [
220
+ "The ",
221
+ /* @__PURE__ */ jsx2("code", { children: "brand" }),
222
+ " mark follows the same rule: an ",
223
+ /* @__PURE__ */ jsx2("code", { children: ".svg" }),
224
+ " override is tinted like any other icon, so ship it as ",
225
+ /* @__PURE__ */ jsx2("code", { children: ".webp" }),
226
+ " if it should keep its own colors."
227
+ ] }),
228
+ /* @__PURE__ */ jsxs2("li", { children: [
229
+ "Names must match the built-in names below; unknown names are ignored. Run",
230
+ " ",
231
+ /* @__PURE__ */ jsx2("code", { children: "quilltap themes validate" }),
232
+ " to catch typos and bad asset paths."
98
233
  ] })
99
234
  ] })
100
235
  ] }),
101
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
102
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Body Text" }),
103
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "40rem" }, children: [
104
- /* @__PURE__ */ jsxs2("div", { children: [
105
- /* @__PURE__ */ jsx2("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." }),
106
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-lead" })
107
- ] }),
108
- /* @__PURE__ */ jsxs2("div", { children: [
109
- /* @__PURE__ */ jsx2("p", { className: "qt-text-large", children: "Large text - Slightly larger than body text for emphasis. The quick brown fox jumps over the lazy dog." }),
110
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-large" })
111
- ] }),
112
- /* @__PURE__ */ jsxs2("div", { children: [
113
- /* @__PURE__ */ jsx2("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." }),
114
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default / no class" })
115
- ] }),
116
- /* @__PURE__ */ jsxs2("div", { children: [
117
- /* @__PURE__ */ jsx2("p", { className: "qt-text-small", children: "Small text - For less important or supplementary information. The quick brown fox jumps over the lazy dog." }),
118
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-small" })
119
- ] }),
120
- /* @__PURE__ */ jsxs2("div", { children: [
121
- /* @__PURE__ */ jsx2("p", { className: "qt-text-xs", children: "Extra small text - For fine print, captions, or metadata. The quick brown fox jumps over the lazy dog." }),
122
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-xs" })
236
+ /* @__PURE__ */ jsxs2("section", { children: [
237
+ /* @__PURE__ */ jsx2("h3", { style: sectionHeading, children: "Override-able icon names" }),
238
+ /* @__PURE__ */ jsx2("div", { style: { display: "flex", flexDirection: "column", gap: "1.5rem" }, children: ICON_GROUPS.map((group) => /* @__PURE__ */ jsxs2("div", { children: [
239
+ /* @__PURE__ */ jsx2("p", { style: { fontWeight: 600, marginBottom: "0.6rem", fontSize: "0.9375rem" }, children: group.category }),
240
+ /* @__PURE__ */ jsx2("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: group.names.map((name) => /* @__PURE__ */ jsx2("code", { style: chip, children: name }, name)) })
241
+ ] }, group.category)) })
242
+ ] })
243
+ ] });
244
+ };
245
+
246
+ // src/stories/components/Typography.tsx
247
+ import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
248
+ var Typography = () => {
249
+ return /* @__PURE__ */ jsxs3("div", { style: { padding: "1.5rem" }, children: [
250
+ /* @__PURE__ */ jsx3("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Typography" }),
251
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
252
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Headings (qt-heading-*)" }),
253
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
254
+ /* @__PURE__ */ jsxs3("div", { children: [
255
+ /* @__PURE__ */ jsx3("h1", { className: "qt-heading-1", children: "Heading 1 - The quick brown fox" }),
256
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-1" })
257
+ ] }),
258
+ /* @__PURE__ */ jsxs3("div", { children: [
259
+ /* @__PURE__ */ jsx3("h2", { className: "qt-heading-2", children: "Heading 2 - The quick brown fox" }),
260
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-2" })
261
+ ] }),
262
+ /* @__PURE__ */ jsxs3("div", { children: [
263
+ /* @__PURE__ */ jsx3("h3", { className: "qt-heading-3", children: "Heading 3 - The quick brown fox" }),
264
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-3" })
265
+ ] }),
266
+ /* @__PURE__ */ jsxs3("div", { children: [
267
+ /* @__PURE__ */ jsx3("h4", { className: "qt-heading-4", children: "Heading 4 - The quick brown fox" }),
268
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-heading-4" })
123
269
  ] })
124
270
  ] })
125
271
  ] }),
126
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
127
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Colors" }),
128
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
129
- /* @__PURE__ */ jsxs2("div", { children: [
130
- /* @__PURE__ */ jsx2("p", { children: "Default text color" }),
131
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default" })
132
- ] }),
133
- /* @__PURE__ */ jsxs2("div", { children: [
134
- /* @__PURE__ */ jsx2("p", { className: "qt-text-muted", children: "Muted text - For secondary content" }),
135
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-muted" })
136
- ] }),
137
- /* @__PURE__ */ jsxs2("div", { children: [
138
- /* @__PURE__ */ jsx2("p", { className: "qt-text-primary", children: "Primary text - For emphasis and links" }),
139
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-primary" })
140
- ] }),
141
- /* @__PURE__ */ jsxs2("div", { children: [
142
- /* @__PURE__ */ jsx2("p", { className: "qt-text-success", children: "Success text - For positive messages" }),
143
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-success" })
144
- ] }),
145
- /* @__PURE__ */ jsxs2("div", { children: [
146
- /* @__PURE__ */ jsx2("p", { className: "qt-text-warning", children: "Warning text - For caution messages" }),
147
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-warning" })
148
- ] }),
149
- /* @__PURE__ */ jsxs2("div", { children: [
150
- /* @__PURE__ */ jsx2("p", { className: "qt-text-destructive", children: "Destructive text - For error messages" }),
151
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-destructive" })
152
- ] }),
153
- /* @__PURE__ */ jsxs2("div", { children: [
154
- /* @__PURE__ */ jsx2("p", { className: "qt-text-info", children: "Info text - For informational messages" }),
155
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-info" })
272
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
273
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Body Text" }),
274
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "40rem" }, children: [
275
+ /* @__PURE__ */ jsxs3("div", { children: [
276
+ /* @__PURE__ */ jsx3("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." }),
277
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-lead" })
278
+ ] }),
279
+ /* @__PURE__ */ jsxs3("div", { children: [
280
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-large", children: "Large text - Slightly larger than body text for emphasis. The quick brown fox jumps over the lazy dog." }),
281
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-large" })
282
+ ] }),
283
+ /* @__PURE__ */ jsxs3("div", { children: [
284
+ /* @__PURE__ */ jsx3("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." }),
285
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default / no class" })
286
+ ] }),
287
+ /* @__PURE__ */ jsxs3("div", { children: [
288
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-small", children: "Small text - For less important or supplementary information. The quick brown fox jumps over the lazy dog." }),
289
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-small" })
290
+ ] }),
291
+ /* @__PURE__ */ jsxs3("div", { children: [
292
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-xs", children: "Extra small text - For fine print, captions, or metadata. The quick brown fox jumps over the lazy dog." }),
293
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-xs" })
156
294
  ] })
157
295
  ] })
158
296
  ] }),
159
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
160
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Labels & UI Text" }),
161
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
162
- /* @__PURE__ */ jsxs2("div", { children: [
163
- /* @__PURE__ */ jsx2("span", { className: "qt-label", children: "Form Label" }),
164
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-label" })
165
- ] }),
166
- /* @__PURE__ */ jsxs2("div", { children: [
167
- /* @__PURE__ */ jsx2("span", { className: "qt-hint", children: "Hint text for form fields" }),
168
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-hint" })
169
- ] }),
170
- /* @__PURE__ */ jsxs2("div", { children: [
171
- /* @__PURE__ */ jsx2("span", { className: "qt-text-label", children: "UI Label Text" }),
172
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-label" })
173
- ] }),
174
- /* @__PURE__ */ jsxs2("div", { children: [
175
- /* @__PURE__ */ jsx2("span", { className: "qt-text-section", children: "Section Header" }),
176
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-section" })
297
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
298
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Colors" }),
299
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
300
+ /* @__PURE__ */ jsxs3("div", { children: [
301
+ /* @__PURE__ */ jsx3("p", { children: "Default text color" }),
302
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "default" })
303
+ ] }),
304
+ /* @__PURE__ */ jsxs3("div", { children: [
305
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-muted", children: "Muted text - For secondary content" }),
306
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-muted" })
307
+ ] }),
308
+ /* @__PURE__ */ jsxs3("div", { children: [
309
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-primary", children: "Primary text - For emphasis and links" }),
310
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-primary" })
311
+ ] }),
312
+ /* @__PURE__ */ jsxs3("div", { children: [
313
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-success", children: "Success text - For positive messages" }),
314
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-success" })
315
+ ] }),
316
+ /* @__PURE__ */ jsxs3("div", { children: [
317
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-warning", children: "Warning text - For caution messages" }),
318
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-warning" })
319
+ ] }),
320
+ /* @__PURE__ */ jsxs3("div", { children: [
321
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-destructive", children: "Destructive text - For error messages" }),
322
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-destructive" })
323
+ ] }),
324
+ /* @__PURE__ */ jsxs3("div", { children: [
325
+ /* @__PURE__ */ jsx3("p", { className: "qt-text-info", children: "Info text - For informational messages" }),
326
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-text-info" })
177
327
  ] })
178
328
  ] })
179
329
  ] }),
180
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
181
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code & Monospace" }),
182
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
183
- /* @__PURE__ */ jsxs2("div", { children: [
184
- /* @__PURE__ */ jsx2("code", { className: "qt-code-inline", children: "inline code example" }),
185
- /* @__PURE__ */ jsx2("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-code-inline" })
186
- ] }),
187
- /* @__PURE__ */ jsxs2("div", { children: [
188
- /* @__PURE__ */ jsx2("pre", { className: "qt-code-block", children: `function greet(name: string): string {
330
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
331
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Labels & UI Text" }),
332
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
333
+ /* @__PURE__ */ jsxs3("div", { children: [
334
+ /* @__PURE__ */ jsx3("span", { className: "qt-label", children: "Form Label" }),
335
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-label" })
336
+ ] }),
337
+ /* @__PURE__ */ jsxs3("div", { children: [
338
+ /* @__PURE__ */ jsx3("span", { className: "qt-hint", children: "Hint text for form fields" }),
339
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-hint" })
340
+ ] }),
341
+ /* @__PURE__ */ jsxs3("div", { children: [
342
+ /* @__PURE__ */ jsx3("span", { className: "qt-text-label", children: "UI Label Text" }),
343
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-label" })
344
+ ] }),
345
+ /* @__PURE__ */ jsxs3("div", { children: [
346
+ /* @__PURE__ */ jsx3("span", { className: "qt-text-section", children: "Section Header" }),
347
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-text-section" })
348
+ ] })
349
+ ] })
350
+ ] }),
351
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
352
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code & Monospace" }),
353
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
354
+ /* @__PURE__ */ jsxs3("div", { children: [
355
+ /* @__PURE__ */ jsx3("code", { className: "qt-code-inline", children: "inline code example" }),
356
+ /* @__PURE__ */ jsx3("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginLeft: "1rem" }, children: ".qt-code-inline" })
357
+ ] }),
358
+ /* @__PURE__ */ jsxs3("div", { children: [
359
+ /* @__PURE__ */ jsx3("pre", { className: "qt-code-block", children: `function greet(name: string): string {
189
360
  return \`Hello, \${name}!\`;
190
361
  }
191
362
 
192
363
  console.log(greet('World'));` }),
193
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-code-block" })
364
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-code-block" })
194
365
  ] })
195
366
  ] })
196
367
  ] }),
197
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
198
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Prose (Long-form Content)" }),
199
- /* @__PURE__ */ jsxs2("div", { className: "qt-prose", style: { maxWidth: "40rem" }, children: [
200
- /* @__PURE__ */ jsx2("h3", { children: "Article Title" }),
201
- /* @__PURE__ */ jsxs2("p", { children: [
368
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
369
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Prose (Long-form Content)" }),
370
+ /* @__PURE__ */ jsxs3("div", { className: "qt-prose", style: { maxWidth: "40rem" }, children: [
371
+ /* @__PURE__ */ jsx3("h3", { children: "Article Title" }),
372
+ /* @__PURE__ */ jsxs3("p", { children: [
202
373
  "This is an example of the ",
203
- /* @__PURE__ */ jsx2("code", { children: ".qt-prose" }),
374
+ /* @__PURE__ */ jsx3("code", { children: ".qt-prose" }),
204
375
  " class applied to a container. It provides sensible defaults for long-form content like articles, documentation, and chat messages."
205
376
  ] }),
206
- /* @__PURE__ */ jsx2("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." }),
207
- /* @__PURE__ */ jsx2("h4", { children: "Subsection" }),
208
- /* @__PURE__ */ jsx2("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." })
377
+ /* @__PURE__ */ jsx3("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." }),
378
+ /* @__PURE__ */ jsx3("h4", { children: "Subsection" }),
379
+ /* @__PURE__ */ jsx3("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." })
209
380
  ] }),
210
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-prose" })
211
- ] }),
212
- /* @__PURE__ */ jsxs2("section", { style: { marginBottom: "2rem" }, children: [
213
- /* @__PURE__ */ jsx2("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Font Families" }),
214
- /* @__PURE__ */ jsxs2("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
215
- /* @__PURE__ */ jsxs2("div", { children: [
216
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-sans" }),
217
- /* @__PURE__ */ jsx2("p", { style: { fontFamily: "var(--font-sans)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
218
- ] }),
219
- /* @__PURE__ */ jsxs2("div", { children: [
220
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-serif" }),
221
- /* @__PURE__ */ jsx2("p", { style: { fontFamily: "var(--font-serif)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
222
- ] }),
223
- /* @__PURE__ */ jsxs2("div", { children: [
224
- /* @__PURE__ */ jsx2("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-mono" }),
225
- /* @__PURE__ */ jsx2("p", { style: { fontFamily: "var(--font-mono)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
381
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: ".qt-prose" })
382
+ ] }),
383
+ /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
384
+ /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Font Families" }),
385
+ /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
386
+ /* @__PURE__ */ jsxs3("div", { children: [
387
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-sans" }),
388
+ /* @__PURE__ */ jsx3("p", { style: { fontFamily: "var(--font-sans)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
389
+ ] }),
390
+ /* @__PURE__ */ jsxs3("div", { children: [
391
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-serif" }),
392
+ /* @__PURE__ */ jsx3("p", { style: { fontFamily: "var(--font-serif)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
393
+ ] }),
394
+ /* @__PURE__ */ jsxs3("div", { children: [
395
+ /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--font-mono" }),
396
+ /* @__PURE__ */ jsx3("p", { style: { fontFamily: "var(--font-mono)", fontSize: "1.125rem", marginTop: "0.25rem" }, children: "The quick brown fox jumps over the lazy dog." })
226
397
  ] })
227
398
  ] })
228
399
  ] })
@@ -230,7 +401,7 @@ console.log(greet('World'));` }),
230
401
  };
231
402
 
232
403
  // src/stories/components/Spacing.tsx
233
- import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
404
+ import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
234
405
  var Spacing = () => {
235
406
  const radiusTokens = [
236
407
  { name: "None", variable: "0", value: "0" },
@@ -258,12 +429,12 @@ var Spacing = () => {
258
429
  { name: "Button Primary Shadow", variable: "--qt-button-primary-shadow" },
259
430
  { name: "Chat Message Shadow", variable: "--qt-chat-message-shadow" }
260
431
  ];
261
- return /* @__PURE__ */ jsxs3("div", { style: { padding: "1.5rem" }, children: [
262
- /* @__PURE__ */ jsx3("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Spacing & Borders" }),
263
- /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
264
- /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Border Radius Scale" }),
265
- /* @__PURE__ */ jsx3("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(6rem, 1fr))", gap: "1.5rem" }, children: radiusTokens.map(({ name, variable, value }) => /* @__PURE__ */ jsxs3("div", { style: { textAlign: "center" }, children: [
266
- /* @__PURE__ */ jsx3(
432
+ return /* @__PURE__ */ jsxs4("div", { style: { padding: "1.5rem" }, children: [
433
+ /* @__PURE__ */ jsx4("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Spacing & Borders" }),
434
+ /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
435
+ /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Border Radius Scale" }),
436
+ /* @__PURE__ */ jsx4("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(6rem, 1fr))", gap: "1.5rem" }, children: radiusTokens.map(({ name, variable, value }) => /* @__PURE__ */ jsxs4("div", { style: { textAlign: "center" }, children: [
437
+ /* @__PURE__ */ jsx4(
267
438
  "div",
268
439
  {
269
440
  style: {
@@ -275,14 +446,14 @@ var Spacing = () => {
275
446
  }
276
447
  }
277
448
  ),
278
- /* @__PURE__ */ jsx3("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
279
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
449
+ /* @__PURE__ */ jsx4("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
450
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
280
451
  ] }, variable)) })
281
452
  ] }),
282
- /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
283
- /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Border Radii" }),
284
- /* @__PURE__ */ jsx3("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "1.5rem" }, children: componentRadii.map(({ name, variable }) => /* @__PURE__ */ jsxs3("div", { style: { textAlign: "center" }, children: [
285
- /* @__PURE__ */ jsx3(
453
+ /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
454
+ /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Border Radii" }),
455
+ /* @__PURE__ */ jsx4("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "1.5rem" }, children: componentRadii.map(({ name, variable }) => /* @__PURE__ */ jsxs4("div", { style: { textAlign: "center" }, children: [
456
+ /* @__PURE__ */ jsx4(
286
457
  "div",
287
458
  {
288
459
  style: {
@@ -295,14 +466,14 @@ var Spacing = () => {
295
466
  }
296
467
  }
297
468
  ),
298
- /* @__PURE__ */ jsx3("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
299
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
469
+ /* @__PURE__ */ jsx4("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
470
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
300
471
  ] }, variable)) })
301
472
  ] }),
302
- /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
303
- /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Shadows" }),
304
- /* @__PURE__ */ jsx3("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(10rem, 1fr))", gap: "1.5rem" }, children: shadowTokens.map(({ name, variable }) => /* @__PURE__ */ jsxs3("div", { style: { padding: "1rem" }, children: [
305
- /* @__PURE__ */ jsx3(
473
+ /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
474
+ /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Shadows" }),
475
+ /* @__PURE__ */ jsx4("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(10rem, 1fr))", gap: "1.5rem" }, children: shadowTokens.map(({ name, variable }) => /* @__PURE__ */ jsxs4("div", { style: { padding: "1rem" }, children: [
476
+ /* @__PURE__ */ jsx4(
306
477
  "div",
307
478
  {
308
479
  style: {
@@ -315,15 +486,15 @@ var Spacing = () => {
315
486
  }
316
487
  }
317
488
  ),
318
- /* @__PURE__ */ jsx3("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
319
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
489
+ /* @__PURE__ */ jsx4("div", { style: { fontWeight: 500, fontSize: "0.875rem" }, children: name }),
490
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: variable })
320
491
  ] }, variable)) })
321
492
  ] }),
322
- /* @__PURE__ */ jsxs3("section", { style: { marginBottom: "2rem" }, children: [
323
- /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Padding Tokens" }),
324
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
325
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
326
- /* @__PURE__ */ jsx3(
493
+ /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
494
+ /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Padding Tokens" }),
495
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
496
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
497
+ /* @__PURE__ */ jsx4(
327
498
  "div",
328
499
  {
329
500
  style: {
@@ -335,10 +506,10 @@ var Spacing = () => {
335
506
  children: "Button padding"
336
507
  }
337
508
  ),
338
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-button-padding-x, --qt-button-padding-y" })
509
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-button-padding-x, --qt-button-padding-y" })
339
510
  ] }),
340
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
341
- /* @__PURE__ */ jsx3(
511
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
512
+ /* @__PURE__ */ jsx4(
342
513
  "div",
343
514
  {
344
515
  style: {
@@ -350,10 +521,10 @@ var Spacing = () => {
350
521
  children: "Card padding"
351
522
  }
352
523
  ),
353
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-card-padding" })
524
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-card-padding" })
354
525
  ] }),
355
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
356
- /* @__PURE__ */ jsx3(
526
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
527
+ /* @__PURE__ */ jsx4(
357
528
  "div",
358
529
  {
359
530
  style: {
@@ -365,10 +536,10 @@ var Spacing = () => {
365
536
  children: "Input padding"
366
537
  }
367
538
  ),
368
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-input-padding-x, --qt-input-padding-y" })
539
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-input-padding-x, --qt-input-padding-y" })
369
540
  ] }),
370
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
371
- /* @__PURE__ */ jsx3(
541
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
542
+ /* @__PURE__ */ jsx4(
372
543
  "div",
373
544
  {
374
545
  style: {
@@ -380,15 +551,15 @@ var Spacing = () => {
380
551
  children: "Chat message padding"
381
552
  }
382
553
  ),
383
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-message-padding" })
554
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-message-padding" })
384
555
  ] })
385
556
  ] })
386
557
  ] }),
387
- /* @__PURE__ */ jsxs3("section", { children: [
388
- /* @__PURE__ */ jsx3("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Layout Dimensions" }),
389
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
390
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
391
- /* @__PURE__ */ jsx3(
558
+ /* @__PURE__ */ jsxs4("section", { children: [
559
+ /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Layout Dimensions" }),
560
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
561
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
562
+ /* @__PURE__ */ jsx4(
392
563
  "div",
393
564
  {
394
565
  style: {
@@ -403,10 +574,10 @@ var Spacing = () => {
403
574
  children: "Navbar height"
404
575
  }
405
576
  ),
406
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-navbar-height" })
577
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-navbar-height" })
407
578
  ] }),
408
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
409
- /* @__PURE__ */ jsx3(
579
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
580
+ /* @__PURE__ */ jsx4(
410
581
  "div",
411
582
  {
412
583
  style: {
@@ -421,10 +592,10 @@ var Spacing = () => {
421
592
  children: "Sidebar width"
422
593
  }
423
594
  ),
424
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-sidebar-width" })
595
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-sidebar-width" })
425
596
  ] }),
426
- /* @__PURE__ */ jsxs3("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
427
- /* @__PURE__ */ jsx3(
597
+ /* @__PURE__ */ jsxs4("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
598
+ /* @__PURE__ */ jsx4(
428
599
  "div",
429
600
  {
430
601
  style: {
@@ -439,7 +610,7 @@ var Spacing = () => {
439
610
  children: "Chat sidebar width"
440
611
  }
441
612
  ),
442
- /* @__PURE__ */ jsx3("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-sidebar-width" })
613
+ /* @__PURE__ */ jsx4("code", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "--qt-chat-sidebar-width" })
443
614
  ] })
444
615
  ] })
445
616
  ] })
@@ -447,145 +618,145 @@ var Spacing = () => {
447
618
  };
448
619
 
449
620
  // src/stories/components/Buttons.tsx
450
- import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
621
+ import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
451
622
  var Buttons = () => {
452
- return /* @__PURE__ */ jsxs4("div", { style: { padding: "1.5rem" }, children: [
453
- /* @__PURE__ */ jsx4("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Buttons" }),
454
- /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
455
- /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Variants" }),
456
- /* @__PURE__ */ jsxs4("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
457
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary", children: "Primary" }),
458
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
459
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
460
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-destructive", children: "Destructive" })
623
+ return /* @__PURE__ */ jsxs5("div", { style: { padding: "1.5rem" }, children: [
624
+ /* @__PURE__ */ jsx5("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Buttons" }),
625
+ /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
626
+ /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Variants" }),
627
+ /* @__PURE__ */ jsxs5("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
628
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary", children: "Primary" }),
629
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
630
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
631
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-destructive", children: "Destructive" })
461
632
  ] })
462
633
  ] }),
463
- /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
464
- /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Sizes" }),
465
- /* @__PURE__ */ jsxs4("div", { style: { display: "flex", flexWrap: "wrap", alignItems: "center", gap: "1rem" }, children: [
466
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Small" }),
467
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary", children: "Default" }),
468
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary qt-button-lg", children: "Large" })
634
+ /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
635
+ /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Sizes" }),
636
+ /* @__PURE__ */ jsxs5("div", { style: { display: "flex", flexWrap: "wrap", alignItems: "center", gap: "1rem" }, children: [
637
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Small" }),
638
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary", children: "Default" }),
639
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary qt-button-lg", children: "Large" })
469
640
  ] })
470
641
  ] }),
471
- /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
472
- /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Disabled States" }),
473
- /* @__PURE__ */ jsxs4("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
474
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary", disabled: true, children: "Primary" }),
475
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-secondary", disabled: true, children: "Secondary" }),
476
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-ghost", disabled: true, children: "Ghost" }),
477
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-destructive", disabled: true, children: "Destructive" })
642
+ /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
643
+ /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Disabled States" }),
644
+ /* @__PURE__ */ jsxs5("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
645
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary", disabled: true, children: "Primary" }),
646
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-secondary", disabled: true, children: "Secondary" }),
647
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-ghost", disabled: true, children: "Ghost" }),
648
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-destructive", disabled: true, children: "Destructive" })
478
649
  ] })
479
650
  ] }),
480
- /* @__PURE__ */ jsxs4("section", { style: { marginBottom: "2rem" }, children: [
481
- /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Icon Buttons" }),
482
- /* @__PURE__ */ jsxs4("div", { style: { display: "flex", gap: "0.5rem" }, children: [
483
- /* @__PURE__ */ jsx4("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ jsxs4("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
484
- /* @__PURE__ */ jsx4("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" }),
485
- /* @__PURE__ */ jsx4("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
651
+ /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
652
+ /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Icon Buttons" }),
653
+ /* @__PURE__ */ jsxs5("div", { style: { display: "flex", gap: "0.5rem" }, children: [
654
+ /* @__PURE__ */ jsx5("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ jsxs5("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
655
+ /* @__PURE__ */ jsx5("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" }),
656
+ /* @__PURE__ */ jsx5("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
486
657
  ] }) }),
487
- /* @__PURE__ */ jsx4("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ jsx4("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx4("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) }),
488
- /* @__PURE__ */ jsx4("button", { className: "qt-button-icon", "aria-label": "Add", children: /* @__PURE__ */ jsx4("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx4("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
489
- /* @__PURE__ */ jsx4("button", { className: "qt-button-icon", "aria-label": "More", children: /* @__PURE__ */ jsx4("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx4("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" }) }) })
658
+ /* @__PURE__ */ jsx5("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ jsx5("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx5("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) }),
659
+ /* @__PURE__ */ jsx5("button", { className: "qt-button-icon", "aria-label": "Add", children: /* @__PURE__ */ jsx5("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx5("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
660
+ /* @__PURE__ */ jsx5("button", { className: "qt-button-icon", "aria-label": "More", children: /* @__PURE__ */ jsx5("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx5("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" }) }) })
490
661
  ] })
491
662
  ] }),
492
- /* @__PURE__ */ jsxs4("section", { children: [
493
- /* @__PURE__ */ jsx4("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Groups" }),
494
- /* @__PURE__ */ jsxs4("div", { style: { display: "flex", gap: "0.5rem" }, children: [
495
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
496
- /* @__PURE__ */ jsx4("button", { className: "qt-button qt-button-primary", children: "Save Changes" })
663
+ /* @__PURE__ */ jsxs5("section", { children: [
664
+ /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Button Groups" }),
665
+ /* @__PURE__ */ jsxs5("div", { style: { display: "flex", gap: "0.5rem" }, children: [
666
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
667
+ /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary", children: "Save Changes" })
497
668
  ] })
498
669
  ] })
499
670
  ] });
500
671
  };
501
672
 
502
673
  // src/stories/components/Cards.tsx
503
- import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
674
+ import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
504
675
  var Cards = () => {
505
- return /* @__PURE__ */ jsxs5("div", { style: { padding: "1.5rem" }, children: [
506
- /* @__PURE__ */ jsx5("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Cards" }),
507
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
508
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Card" }),
509
- /* @__PURE__ */ jsxs5("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
510
- /* @__PURE__ */ jsxs5("div", { className: "qt-card-header", children: [
511
- /* @__PURE__ */ jsx5("h4", { className: "qt-card-title", children: "Card Title" }),
512
- /* @__PURE__ */ jsx5("p", { className: "qt-card-description", children: "Card description goes here." })
513
- ] }),
514
- /* @__PURE__ */ jsx5("div", { className: "qt-card-body", children: /* @__PURE__ */ jsx5("p", { children: "This is the card body content. It can contain any content you want." }) }),
515
- /* @__PURE__ */ jsxs5("div", { className: "qt-card-footer", children: [
516
- /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
517
- /* @__PURE__ */ jsx5("button", { className: "qt-button qt-button-primary", children: "Save" })
676
+ return /* @__PURE__ */ jsxs6("div", { style: { padding: "1.5rem" }, children: [
677
+ /* @__PURE__ */ jsx6("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Cards" }),
678
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
679
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Card" }),
680
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
681
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card-header", children: [
682
+ /* @__PURE__ */ jsx6("h4", { className: "qt-card-title", children: "Card Title" }),
683
+ /* @__PURE__ */ jsx6("p", { className: "qt-card-description", children: "Card description goes here." })
684
+ ] }),
685
+ /* @__PURE__ */ jsx6("div", { className: "qt-card-body", children: /* @__PURE__ */ jsx6("p", { children: "This is the card body content. It can contain any content you want." }) }),
686
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card-footer", children: [
687
+ /* @__PURE__ */ jsx6("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
688
+ /* @__PURE__ */ jsx6("button", { className: "qt-button qt-button-primary", children: "Save" })
518
689
  ] })
519
690
  ] })
520
691
  ] }),
521
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
522
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Interactive Card" }),
523
- /* @__PURE__ */ jsxs5("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "24rem", cursor: "pointer" }, children: [
524
- /* @__PURE__ */ jsxs5("div", { className: "qt-card-header", children: [
525
- /* @__PURE__ */ jsx5("h4", { className: "qt-card-title", children: "Clickable Card" }),
526
- /* @__PURE__ */ jsx5("p", { className: "qt-card-description", children: "Hover over me to see the effect." })
692
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
693
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Interactive Card" }),
694
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "24rem", cursor: "pointer" }, children: [
695
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card-header", children: [
696
+ /* @__PURE__ */ jsx6("h4", { className: "qt-card-title", children: "Clickable Card" }),
697
+ /* @__PURE__ */ jsx6("p", { className: "qt-card-description", children: "Hover over me to see the effect." })
527
698
  ] }),
528
- /* @__PURE__ */ jsx5("div", { className: "qt-card-body", children: /* @__PURE__ */ jsx5("p", { children: "This card has hover states and can be clicked." }) })
699
+ /* @__PURE__ */ jsx6("div", { className: "qt-card-body", children: /* @__PURE__ */ jsx6("p", { children: "This card has hover states and can be clicked." }) })
529
700
  ] })
530
701
  ] }),
531
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
532
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Cards" }),
533
- /* @__PURE__ */ jsx5("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used for characters, chats, and other list items." }),
534
- /* @__PURE__ */ jsx5("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))", gap: "1rem" }, children: ["Alice", "Bob", "Carol"].map((name) => /* @__PURE__ */ jsx5("div", { className: "qt-entity-card", children: /* @__PURE__ */ jsxs5("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "1rem" }, children: [
535
- /* @__PURE__ */ jsx5("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx5("div", { className: "qt-avatar-fallback", children: name[0] }) }),
536
- /* @__PURE__ */ jsxs5("div", { children: [
537
- /* @__PURE__ */ jsxs5("h4", { style: { fontWeight: 600 }, children: [
702
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
703
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Cards" }),
704
+ /* @__PURE__ */ jsx6("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used for characters, chats, and other list items." }),
705
+ /* @__PURE__ */ jsx6("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(16rem, 1fr))", gap: "1rem" }, children: ["Alice", "Bob", "Carol"].map((name) => /* @__PURE__ */ jsx6("div", { className: "qt-entity-card", children: /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "1rem" }, children: [
706
+ /* @__PURE__ */ jsx6("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx6("div", { className: "qt-avatar-fallback", children: name[0] }) }),
707
+ /* @__PURE__ */ jsxs6("div", { children: [
708
+ /* @__PURE__ */ jsxs6("h4", { style: { fontWeight: 600 }, children: [
538
709
  name,
539
710
  " Character"
540
711
  ] }),
541
- /* @__PURE__ */ jsx5("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "A friendly character" })
712
+ /* @__PURE__ */ jsx6("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "A friendly character" })
542
713
  ] })
543
714
  ] }) }, name)) })
544
715
  ] }),
545
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
546
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Cards" }),
547
- /* @__PURE__ */ jsx5("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." }),
548
- /* @__PURE__ */ jsx5("div", { style: { display: "grid", gridTemplateColumns: "repeat(3, minmax(0, 140px))", gap: "0.75rem" }, children: [
716
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
717
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Cards" }),
718
+ /* @__PURE__ */ jsx6("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." }),
719
+ /* @__PURE__ */ jsx6("div", { style: { display: "grid", gridTemplateColumns: "repeat(3, minmax(0, 140px))", gap: "0.75rem" }, children: [
549
720
  { name: "Alice", title: "The Adventurer", provider: "Claude Sonnet" },
550
721
  { name: "Bob", title: "The Keeper of Many Long Titles", provider: "GPT-4o" },
551
722
  { name: "Carol", title: "Scribe", provider: "Gemini Pro" }
552
- ].map((char) => /* @__PURE__ */ jsxs5("div", { className: "qt-character-card", children: [
553
- /* @__PURE__ */ jsx5("div", { className: "qt-avatar", style: { width: "3rem", height: "3rem" }, children: /* @__PURE__ */ jsx5("div", { className: "qt-avatar-fallback", children: char.name[0] }) }),
554
- /* @__PURE__ */ jsxs5("div", { style: { textAlign: "center", width: "100%", minWidth: 0 }, children: [
555
- /* @__PURE__ */ jsx5("p", { className: "qt-card-title", style: { overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }, children: char.name }),
556
- /* @__PURE__ */ jsx5("p", { className: "qt-card-subtitle", style: { fontStyle: "italic", minHeight: "2.5rem" }, children: char.title }),
557
- /* @__PURE__ */ jsx5("span", { style: { fontSize: "0.75rem", opacity: 0.6 }, children: char.provider })
558
- ] }),
559
- /* @__PURE__ */ jsx5("button", { className: "qt-button-success qt-button-sm", style: { marginTop: "auto", width: "100%" }, children: "Chat" })
723
+ ].map((char) => /* @__PURE__ */ jsxs6("div", { className: "qt-character-card", children: [
724
+ /* @__PURE__ */ jsx6("div", { className: "qt-avatar", style: { width: "3rem", height: "3rem" }, children: /* @__PURE__ */ jsx6("div", { className: "qt-avatar-fallback", children: char.name[0] }) }),
725
+ /* @__PURE__ */ jsxs6("div", { style: { textAlign: "center", width: "100%", minWidth: 0 }, children: [
726
+ /* @__PURE__ */ jsx6("p", { className: "qt-card-title", style: { overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }, children: char.name }),
727
+ /* @__PURE__ */ jsx6("p", { className: "qt-card-subtitle", style: { fontStyle: "italic", minHeight: "2.5rem" }, children: char.title }),
728
+ /* @__PURE__ */ jsx6("span", { style: { fontSize: "0.75rem", opacity: 0.6 }, children: char.provider })
729
+ ] }),
730
+ /* @__PURE__ */ jsx6("button", { className: "qt-button-success qt-button-sm", style: { marginTop: "auto", width: "100%" }, children: "Chat" })
560
731
  ] }, char.name)) })
561
732
  ] }),
562
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
563
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Card Grid" }),
564
- /* @__PURE__ */ jsxs5("div", { className: "qt-card-grid-3", children: [
565
- /* @__PURE__ */ jsxs5("div", { className: "qt-card", style: { padding: "1rem" }, children: [
566
- /* @__PURE__ */ jsx5("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 1" }),
567
- /* @__PURE__ */ jsx5("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
568
- ] }),
569
- /* @__PURE__ */ jsxs5("div", { className: "qt-card", style: { padding: "1rem" }, children: [
570
- /* @__PURE__ */ jsx5("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 2" }),
571
- /* @__PURE__ */ jsx5("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
572
- ] }),
573
- /* @__PURE__ */ jsxs5("div", { className: "qt-card", style: { padding: "1rem" }, children: [
574
- /* @__PURE__ */ jsx5("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 3" }),
575
- /* @__PURE__ */ jsx5("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
733
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
734
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Card Grid" }),
735
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card-grid-3", children: [
736
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card", style: { padding: "1rem" }, children: [
737
+ /* @__PURE__ */ jsx6("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 1" }),
738
+ /* @__PURE__ */ jsx6("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
739
+ ] }),
740
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card", style: { padding: "1rem" }, children: [
741
+ /* @__PURE__ */ jsx6("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 2" }),
742
+ /* @__PURE__ */ jsx6("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
743
+ ] }),
744
+ /* @__PURE__ */ jsxs6("div", { className: "qt-card", style: { padding: "1rem" }, children: [
745
+ /* @__PURE__ */ jsx6("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Card 3" }),
746
+ /* @__PURE__ */ jsx6("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "Grid card content" })
576
747
  ] })
577
748
  ] })
578
749
  ] }),
579
- /* @__PURE__ */ jsxs5("section", { style: { marginBottom: "2rem" }, children: [
580
- /* @__PURE__ */ jsx5("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Panels" }),
581
- /* @__PURE__ */ jsxs5("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap" }, children: [
582
- /* @__PURE__ */ jsxs5("div", { className: "qt-panel", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
583
- /* @__PURE__ */ jsx5("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Basic Panel" }),
584
- /* @__PURE__ */ jsx5("p", { style: { color: "var(--color-muted-foreground)" }, children: "Panels are similar to cards but often used for larger content areas." })
585
- ] }),
586
- /* @__PURE__ */ jsxs5("div", { className: "qt-panel qt-panel-elevated", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
587
- /* @__PURE__ */ jsx5("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Elevated Panel" }),
588
- /* @__PURE__ */ jsx5("p", { style: { color: "var(--color-muted-foreground)" }, children: "This panel has additional shadow for emphasis." })
750
+ /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
751
+ /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Panels" }),
752
+ /* @__PURE__ */ jsxs6("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap" }, children: [
753
+ /* @__PURE__ */ jsxs6("div", { className: "qt-panel", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
754
+ /* @__PURE__ */ jsx6("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Basic Panel" }),
755
+ /* @__PURE__ */ jsx6("p", { style: { color: "var(--color-muted-foreground)" }, children: "Panels are similar to cards but often used for larger content areas." })
756
+ ] }),
757
+ /* @__PURE__ */ jsxs6("div", { className: "qt-panel qt-panel-elevated", style: { padding: "1.5rem", maxWidth: "20rem" }, children: [
758
+ /* @__PURE__ */ jsx6("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Elevated Panel" }),
759
+ /* @__PURE__ */ jsx6("p", { style: { color: "var(--color-muted-foreground)" }, children: "This panel has additional shadow for emphasis." })
589
760
  ] })
590
761
  ] })
591
762
  ] })
@@ -593,42 +764,42 @@ var Cards = () => {
593
764
  };
594
765
 
595
766
  // src/stories/components/Inputs.tsx
596
- import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
767
+ import { jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
597
768
  var Inputs = () => {
598
- return /* @__PURE__ */ jsxs6("div", { style: { padding: "1.5rem" }, children: [
599
- /* @__PURE__ */ jsx6("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Inputs" }),
600
- /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
601
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Inputs" }),
602
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "24rem" }, children: [
603
- /* @__PURE__ */ jsxs6("div", { children: [
604
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Default" }),
605
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
606
- ] }),
607
- /* @__PURE__ */ jsxs6("div", { children: [
608
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "With Hint" }),
609
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "text", placeholder: "Enter email..." }),
610
- /* @__PURE__ */ jsx6("span", { className: "qt-hint", children: "We'll never share your email." })
611
- ] }),
612
- /* @__PURE__ */ jsxs6("div", { children: [
613
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "With Value" }),
614
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "text", defaultValue: "Sample text" })
615
- ] }),
616
- /* @__PURE__ */ jsxs6("div", { children: [
617
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Disabled" }),
618
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "text", placeholder: "Disabled input", disabled: true })
619
- ] }),
620
- /* @__PURE__ */ jsxs6("div", { children: [
621
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "With Error" }),
622
- /* @__PURE__ */ jsx6("input", { className: "qt-input qt-input-error", type: "text", placeholder: "Invalid input" }),
623
- /* @__PURE__ */ jsx6("span", { className: "qt-hint", style: { color: "var(--color-destructive)" }, children: "This field is required." })
769
+ return /* @__PURE__ */ jsxs7("div", { style: { padding: "1.5rem" }, children: [
770
+ /* @__PURE__ */ jsx7("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Inputs" }),
771
+ /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
772
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Text Inputs" }),
773
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "24rem" }, children: [
774
+ /* @__PURE__ */ jsxs7("div", { children: [
775
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Default" }),
776
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
777
+ ] }),
778
+ /* @__PURE__ */ jsxs7("div", { children: [
779
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "With Hint" }),
780
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "text", placeholder: "Enter email..." }),
781
+ /* @__PURE__ */ jsx7("span", { className: "qt-hint", children: "We'll never share your email." })
782
+ ] }),
783
+ /* @__PURE__ */ jsxs7("div", { children: [
784
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "With Value" }),
785
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "text", defaultValue: "Sample text" })
786
+ ] }),
787
+ /* @__PURE__ */ jsxs7("div", { children: [
788
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Disabled" }),
789
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "text", placeholder: "Disabled input", disabled: true })
790
+ ] }),
791
+ /* @__PURE__ */ jsxs7("div", { children: [
792
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "With Error" }),
793
+ /* @__PURE__ */ jsx7("input", { className: "qt-input qt-input-error", type: "text", placeholder: "Invalid input" }),
794
+ /* @__PURE__ */ jsx7("span", { className: "qt-hint", style: { color: "var(--color-destructive)" }, children: "This field is required." })
624
795
  ] })
625
796
  ] })
626
797
  ] }),
627
- /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
628
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Textarea" }),
629
- /* @__PURE__ */ jsxs6("div", { style: { maxWidth: "24rem" }, children: [
630
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Message" }),
631
- /* @__PURE__ */ jsx6(
798
+ /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
799
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Textarea" }),
800
+ /* @__PURE__ */ jsxs7("div", { style: { maxWidth: "24rem" }, children: [
801
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Message" }),
802
+ /* @__PURE__ */ jsx7(
632
803
  "textarea",
633
804
  {
634
805
  className: "qt-input qt-textarea",
@@ -638,74 +809,74 @@ var Inputs = () => {
638
809
  )
639
810
  ] })
640
811
  ] }),
641
- /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
642
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Select" }),
643
- /* @__PURE__ */ jsxs6("div", { style: { maxWidth: "24rem" }, children: [
644
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Choose an option" }),
645
- /* @__PURE__ */ jsxs6("select", { className: "qt-input qt-select", children: [
646
- /* @__PURE__ */ jsx6("option", { value: "", children: "Select an option..." }),
647
- /* @__PURE__ */ jsx6("option", { value: "1", children: "Option 1" }),
648
- /* @__PURE__ */ jsx6("option", { value: "2", children: "Option 2" }),
649
- /* @__PURE__ */ jsx6("option", { value: "3", children: "Option 3" })
812
+ /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
813
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Select" }),
814
+ /* @__PURE__ */ jsxs7("div", { style: { maxWidth: "24rem" }, children: [
815
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Choose an option" }),
816
+ /* @__PURE__ */ jsxs7("select", { className: "qt-input qt-select", children: [
817
+ /* @__PURE__ */ jsx7("option", { value: "", children: "Select an option..." }),
818
+ /* @__PURE__ */ jsx7("option", { value: "1", children: "Option 1" }),
819
+ /* @__PURE__ */ jsx7("option", { value: "2", children: "Option 2" }),
820
+ /* @__PURE__ */ jsx7("option", { value: "3", children: "Option 3" })
650
821
  ] })
651
822
  ] })
652
823
  ] }),
653
- /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
654
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Checkboxes & Radios" }),
655
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem", maxWidth: "24rem" }, children: [
656
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
657
- /* @__PURE__ */ jsx6("input", { type: "checkbox", id: "check1", className: "qt-checkbox" }),
658
- /* @__PURE__ */ jsx6("label", { htmlFor: "check1", style: { margin: 0 }, children: "Checkbox option" })
659
- ] }),
660
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
661
- /* @__PURE__ */ jsx6("input", { type: "checkbox", id: "check2", className: "qt-checkbox", defaultChecked: true }),
662
- /* @__PURE__ */ jsx6("label", { htmlFor: "check2", style: { margin: 0 }, children: "Checked checkbox" })
663
- ] }),
664
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
665
- /* @__PURE__ */ jsx6("input", { type: "checkbox", id: "check3", className: "qt-checkbox", disabled: true }),
666
- /* @__PURE__ */ jsx6("label", { htmlFor: "check3", style: { margin: 0, color: "var(--color-muted-foreground)" }, children: "Disabled checkbox" })
667
- ] }),
668
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem", marginTop: "0.5rem" }, children: [
669
- /* @__PURE__ */ jsx6("input", { type: "radio", name: "radio", id: "radio1", className: "qt-radio" }),
670
- /* @__PURE__ */ jsx6("label", { htmlFor: "radio1", style: { margin: 0 }, children: "Radio option 1" })
671
- ] }),
672
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
673
- /* @__PURE__ */ jsx6("input", { type: "radio", name: "radio", id: "radio2", className: "qt-radio", defaultChecked: true }),
674
- /* @__PURE__ */ jsx6("label", { htmlFor: "radio2", style: { margin: 0 }, children: "Radio option 2" })
824
+ /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
825
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Checkboxes & Radios" }),
826
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem", maxWidth: "24rem" }, children: [
827
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
828
+ /* @__PURE__ */ jsx7("input", { type: "checkbox", id: "check1", className: "qt-checkbox" }),
829
+ /* @__PURE__ */ jsx7("label", { htmlFor: "check1", style: { margin: 0 }, children: "Checkbox option" })
830
+ ] }),
831
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
832
+ /* @__PURE__ */ jsx7("input", { type: "checkbox", id: "check2", className: "qt-checkbox", defaultChecked: true }),
833
+ /* @__PURE__ */ jsx7("label", { htmlFor: "check2", style: { margin: 0 }, children: "Checked checkbox" })
834
+ ] }),
835
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
836
+ /* @__PURE__ */ jsx7("input", { type: "checkbox", id: "check3", className: "qt-checkbox", disabled: true }),
837
+ /* @__PURE__ */ jsx7("label", { htmlFor: "check3", style: { margin: 0, color: "var(--color-muted-foreground)" }, children: "Disabled checkbox" })
838
+ ] }),
839
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem", marginTop: "0.5rem" }, children: [
840
+ /* @__PURE__ */ jsx7("input", { type: "radio", name: "radio", id: "radio1", className: "qt-radio" }),
841
+ /* @__PURE__ */ jsx7("label", { htmlFor: "radio1", style: { margin: 0 }, children: "Radio option 1" })
842
+ ] }),
843
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
844
+ /* @__PURE__ */ jsx7("input", { type: "radio", name: "radio", id: "radio2", className: "qt-radio", defaultChecked: true }),
845
+ /* @__PURE__ */ jsx7("label", { htmlFor: "radio2", style: { margin: 0 }, children: "Radio option 2" })
675
846
  ] })
676
847
  ] })
677
848
  ] }),
678
- /* @__PURE__ */ jsxs6("section", { style: { marginBottom: "2rem" }, children: [
679
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Links" }),
680
- /* @__PURE__ */ jsxs6("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
681
- /* @__PURE__ */ jsx6("div", { children: /* @__PURE__ */ jsx6("a", { href: "#", className: "qt-link", children: "Default link" }) }),
682
- /* @__PURE__ */ jsx6("div", { children: /* @__PURE__ */ jsx6("a", { href: "#", className: "qt-link-subtle", children: "Subtle link" }) })
849
+ /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
850
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Links" }),
851
+ /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
852
+ /* @__PURE__ */ jsx7("div", { children: /* @__PURE__ */ jsx7("a", { href: "#", className: "qt-link", children: "Default link" }) }),
853
+ /* @__PURE__ */ jsx7("div", { children: /* @__PURE__ */ jsx7("a", { href: "#", className: "qt-link-subtle", children: "Subtle link" }) })
683
854
  ] })
684
855
  ] }),
685
- /* @__PURE__ */ jsxs6("section", { children: [
686
- /* @__PURE__ */ jsx6("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Form Example" }),
687
- /* @__PURE__ */ jsxs6("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
688
- /* @__PURE__ */ jsxs6("div", { className: "qt-card-header", children: [
689
- /* @__PURE__ */ jsx6("h4", { className: "qt-card-title", children: "Contact Form" }),
690
- /* @__PURE__ */ jsx6("p", { className: "qt-card-description", children: "Fill out the form below." })
691
- ] }),
692
- /* @__PURE__ */ jsxs6("div", { className: "qt-card-body", style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
693
- /* @__PURE__ */ jsxs6("div", { children: [
694
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Name" }),
695
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "text", placeholder: "Your name" })
856
+ /* @__PURE__ */ jsxs7("section", { children: [
857
+ /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Form Example" }),
858
+ /* @__PURE__ */ jsxs7("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: [
859
+ /* @__PURE__ */ jsxs7("div", { className: "qt-card-header", children: [
860
+ /* @__PURE__ */ jsx7("h4", { className: "qt-card-title", children: "Contact Form" }),
861
+ /* @__PURE__ */ jsx7("p", { className: "qt-card-description", children: "Fill out the form below." })
862
+ ] }),
863
+ /* @__PURE__ */ jsxs7("div", { className: "qt-card-body", style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
864
+ /* @__PURE__ */ jsxs7("div", { children: [
865
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Name" }),
866
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "text", placeholder: "Your name" })
696
867
  ] }),
697
- /* @__PURE__ */ jsxs6("div", { children: [
698
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Email" }),
699
- /* @__PURE__ */ jsx6("input", { className: "qt-input", type: "email", placeholder: "you@example.com" })
868
+ /* @__PURE__ */ jsxs7("div", { children: [
869
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Email" }),
870
+ /* @__PURE__ */ jsx7("input", { className: "qt-input", type: "email", placeholder: "you@example.com" })
700
871
  ] }),
701
- /* @__PURE__ */ jsxs6("div", { children: [
702
- /* @__PURE__ */ jsx6("label", { className: "qt-label", children: "Message" }),
703
- /* @__PURE__ */ jsx6("textarea", { className: "qt-input qt-textarea", placeholder: "Your message...", style: { minHeight: "5rem" } })
872
+ /* @__PURE__ */ jsxs7("div", { children: [
873
+ /* @__PURE__ */ jsx7("label", { className: "qt-label", children: "Message" }),
874
+ /* @__PURE__ */ jsx7("textarea", { className: "qt-input qt-textarea", placeholder: "Your message...", style: { minHeight: "5rem" } })
704
875
  ] })
705
876
  ] }),
706
- /* @__PURE__ */ jsxs6("div", { className: "qt-card-footer", children: [
707
- /* @__PURE__ */ jsx6("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
708
- /* @__PURE__ */ jsx6("button", { className: "qt-button qt-button-primary", children: "Send" })
877
+ /* @__PURE__ */ jsxs7("div", { className: "qt-card-footer", children: [
878
+ /* @__PURE__ */ jsx7("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
879
+ /* @__PURE__ */ jsx7("button", { className: "qt-button qt-button-primary", children: "Send" })
709
880
  ] })
710
881
  ] })
711
882
  ] })
@@ -713,141 +884,141 @@ var Inputs = () => {
713
884
  };
714
885
 
715
886
  // src/stories/components/Badges.tsx
716
- import { jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
887
+ import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
717
888
  var Badges = () => {
718
- return /* @__PURE__ */ jsxs7("div", { style: { padding: "1.5rem" }, children: [
719
- /* @__PURE__ */ jsx7("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Badges" }),
720
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
721
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badge Variants" }),
722
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
723
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-default", children: "Default" }),
724
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
725
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
726
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-success", children: "Success" }),
727
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
728
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
889
+ return /* @__PURE__ */ jsxs8("div", { style: { padding: "1.5rem" }, children: [
890
+ /* @__PURE__ */ jsx8("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Badges" }),
891
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
892
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badge Variants" }),
893
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
894
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-default", children: "Default" }),
895
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
896
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
897
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-success", children: "Success" }),
898
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
899
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
729
900
  ] })
730
901
  ] }),
731
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
732
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Outline Badges" }),
733
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
734
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline", children: "Outline" }),
735
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline-primary", children: "Primary" }),
736
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline-success", children: "Success" }),
737
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline-warning", children: "Warning" }),
738
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline-destructive", children: "Destructive" })
902
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
903
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Outline Badges" }),
904
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
905
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline", children: "Outline" }),
906
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline-primary", children: "Primary" }),
907
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline-success", children: "Success" }),
908
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline-warning", children: "Warning" }),
909
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline-destructive", children: "Destructive" })
739
910
  ] })
740
911
  ] }),
741
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
742
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Provider Badges" }),
743
- /* @__PURE__ */ jsx7("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used to identify AI provider sources." }),
744
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
745
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-provider-openai", children: "OpenAI" }),
746
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-provider-anthropic", children: "Anthropic" }),
747
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-provider-google", children: "Google" }),
748
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-provider-openrouter", children: "OpenRouter" })
912
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
913
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Provider Badges" }),
914
+ /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Used to identify AI provider sources." }),
915
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
916
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-provider-openai", children: "OpenAI" }),
917
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-provider-anthropic", children: "Anthropic" }),
918
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-provider-google", children: "Google" }),
919
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-provider-openrouter", children: "OpenRouter" })
749
920
  ] })
750
921
  ] }),
751
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
752
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badges with Icons" }),
753
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
754
- /* @__PURE__ */ jsxs7("span", { className: "qt-badge qt-badge-success", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
755
- /* @__PURE__ */ jsx7("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5 13l4 4L19 7" }) }),
922
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
923
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Badges with Icons" }),
924
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
925
+ /* @__PURE__ */ jsxs8("span", { className: "qt-badge qt-badge-success", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
926
+ /* @__PURE__ */ jsx8("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx8("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5 13l4 4L19 7" }) }),
756
927
  "Complete"
757
928
  ] }),
758
- /* @__PURE__ */ jsxs7("span", { className: "qt-badge qt-badge-warning", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
759
- /* @__PURE__ */ jsx7("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx7("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" }) }),
929
+ /* @__PURE__ */ jsxs8("span", { className: "qt-badge qt-badge-warning", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
930
+ /* @__PURE__ */ jsx8("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx8("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" }) }),
760
931
  "Warning"
761
932
  ] }),
762
- /* @__PURE__ */ jsxs7("span", { className: "qt-badge qt-badge-destructive", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
763
- /* @__PURE__ */ jsx7("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx7("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }),
933
+ /* @__PURE__ */ jsxs8("span", { className: "qt-badge qt-badge-destructive", style: { display: "inline-flex", alignItems: "center", gap: "0.25rem" }, children: [
934
+ /* @__PURE__ */ jsx8("svg", { width: "12", height: "12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx8("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }),
764
935
  "Error"
765
936
  ] })
766
937
  ] })
767
938
  ] }),
768
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
769
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Type Badges" }),
770
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
771
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-character", children: "Character" }),
772
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-user-character", children: "User Character" }),
773
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-chat", children: "Chat" }),
774
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-tag", children: "Tag" }),
775
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-memory", children: "Memory" })
939
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
940
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Entity Type Badges" }),
941
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
942
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-character", children: "Character" }),
943
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-user-character", children: "User Character" }),
944
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-chat", children: "Chat" }),
945
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-tag", children: "Tag" }),
946
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-memory", children: "Memory" })
776
947
  ] })
777
948
  ] }),
778
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
779
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "State Badges" }),
780
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
781
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-enabled", children: "Enabled" }),
782
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-disabled", children: "Disabled" }),
783
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-related", children: "Related" }),
784
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-manual", children: "Manual" }),
785
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-auto", children: "Auto" })
949
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
950
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "State Badges" }),
951
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
952
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-enabled", children: "Enabled" }),
953
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-disabled", children: "Disabled" }),
954
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-related", children: "Related" }),
955
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-manual", children: "Manual" }),
956
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-auto", children: "Auto" })
786
957
  ] })
787
958
  ] }),
788
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
789
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Plugin Source Badges" }),
790
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
791
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-source-included", children: "Included" }),
792
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-source-npm", children: "NPM" }),
793
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-source-git", children: "Git" }),
794
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-source-manual", children: "Manual" })
959
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
960
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Plugin Source Badges" }),
961
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
962
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-source-included", children: "Included" }),
963
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-source-npm", children: "NPM" }),
964
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-source-git", children: "Git" }),
965
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-source-manual", children: "Manual" })
795
966
  ] })
796
967
  ] }),
797
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
798
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tag Badges" }),
799
- /* @__PURE__ */ jsxs7("div", { style: { marginBottom: "1.5rem" }, children: [
800
- /* @__PURE__ */ jsx7("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Basic tags" }),
801
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
802
- /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge", children: "Fantasy" }),
803
- /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge", children: "Sci-Fi" }),
804
- /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge", children: "Romance" })
968
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
969
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tag Badges" }),
970
+ /* @__PURE__ */ jsxs8("div", { style: { marginBottom: "1.5rem" }, children: [
971
+ /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Basic tags" }),
972
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
973
+ /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge", children: "Fantasy" }),
974
+ /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge", children: "Sci-Fi" }),
975
+ /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge", children: "Romance" })
805
976
  ] })
806
977
  ] }),
807
- /* @__PURE__ */ jsxs7("div", { style: { marginBottom: "1.5rem" }, children: [
808
- /* @__PURE__ */ jsx7("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Emoji tag" }),
809
- /* @__PURE__ */ jsx7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge qt-tag-badge-emoji", children: "Adventure" }) })
978
+ /* @__PURE__ */ jsxs8("div", { style: { marginBottom: "1.5rem" }, children: [
979
+ /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Emoji tag" }),
980
+ /* @__PURE__ */ jsx8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge qt-tag-badge-emoji", children: "Adventure" }) })
810
981
  ] }),
811
- /* @__PURE__ */ jsxs7("div", { style: { marginBottom: "1.5rem" }, children: [
812
- /* @__PURE__ */ jsx7("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Removable tag" }),
813
- /* @__PURE__ */ jsx7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ jsxs7("span", { className: "qt-tag-badge", children: [
982
+ /* @__PURE__ */ jsxs8("div", { style: { marginBottom: "1.5rem" }, children: [
983
+ /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Removable tag" }),
984
+ /* @__PURE__ */ jsx8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: /* @__PURE__ */ jsxs8("span", { className: "qt-tag-badge", children: [
814
985
  "Fantasy",
815
- /* @__PURE__ */ jsx7("button", { className: "qt-tag-badge-remove", children: "\xD7" })
986
+ /* @__PURE__ */ jsx8("button", { className: "qt-tag-badge-remove", children: "\xD7" })
816
987
  ] }) })
817
988
  ] }),
818
- /* @__PURE__ */ jsxs7("div", { children: [
819
- /* @__PURE__ */ jsx7("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Small tags in card context" }),
820
- /* @__PURE__ */ jsx7("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ jsx7("div", { className: "qt-card-body", children: /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
821
- /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Fantasy" }),
822
- /* @__PURE__ */ jsx7("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Sci-Fi" })
989
+ /* @__PURE__ */ jsxs8("div", { children: [
990
+ /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem", fontSize: "0.875rem" }, children: "Small tags in card context" }),
991
+ /* @__PURE__ */ jsx8("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ jsx8("div", { className: "qt-card-body", children: /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
992
+ /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Fantasy" }),
993
+ /* @__PURE__ */ jsx8("span", { className: "qt-tag-badge qt-tag-badge-sm", children: "Sci-Fi" })
823
994
  ] }) }) })
824
995
  ] })
825
996
  ] }),
826
- /* @__PURE__ */ jsxs7("section", { style: { marginBottom: "2rem" }, children: [
827
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status Badges" }),
828
- /* @__PURE__ */ jsx7("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." }),
829
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
830
- /* @__PURE__ */ jsx7("span", { className: "qt-badge-silent", children: "Silent" }),
831
- /* @__PURE__ */ jsx7("span", { className: "qt-badge-absent", children: "Absent" })
997
+ /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
998
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status Badges" }),
999
+ /* @__PURE__ */ jsx8("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." }),
1000
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1001
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge-silent", children: "Silent" }),
1002
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge-absent", children: "Absent" })
832
1003
  ] })
833
1004
  ] }),
834
- /* @__PURE__ */ jsxs7("section", { children: [
835
- /* @__PURE__ */ jsx7("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage Examples" }),
836
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
837
- /* @__PURE__ */ jsx7("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ jsxs7("div", { className: "qt-card-header", children: [
838
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between" }, children: [
839
- /* @__PURE__ */ jsx7("h4", { className: "qt-card-title", children: "Feature Name" }),
840
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-success", children: "Active" })
1005
+ /* @__PURE__ */ jsxs8("section", { children: [
1006
+ /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage Examples" }),
1007
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1008
+ /* @__PURE__ */ jsx8("div", { className: "qt-card", style: { maxWidth: "24rem" }, children: /* @__PURE__ */ jsxs8("div", { className: "qt-card-header", children: [
1009
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between" }, children: [
1010
+ /* @__PURE__ */ jsx8("h4", { className: "qt-card-title", children: "Feature Name" }),
1011
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-success", children: "Active" })
841
1012
  ] }),
842
- /* @__PURE__ */ jsx7("p", { className: "qt-card-description", children: "With status badge" })
1013
+ /* @__PURE__ */ jsx8("p", { className: "qt-card-description", children: "With status badge" })
843
1014
  ] }) }),
844
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
845
- /* @__PURE__ */ jsx7("span", { style: { fontWeight: 500 }, children: "Notifications" }),
846
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-primary", style: { borderRadius: "9999px", minWidth: "1.25rem", textAlign: "center" }, children: "5" })
1015
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1016
+ /* @__PURE__ */ jsx8("span", { style: { fontWeight: 500 }, children: "Notifications" }),
1017
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-primary", style: { borderRadius: "9999px", minWidth: "1.25rem", textAlign: "center" }, children: "5" })
847
1018
  ] }),
848
- /* @__PURE__ */ jsxs7("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
849
- /* @__PURE__ */ jsx7("span", { style: { fontWeight: 500 }, children: "Version" }),
850
- /* @__PURE__ */ jsx7("span", { className: "qt-badge qt-badge-outline", children: "v2.5.0" })
1019
+ /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1020
+ /* @__PURE__ */ jsx8("span", { style: { fontWeight: 500 }, children: "Version" }),
1021
+ /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-outline", children: "v2.5.0" })
851
1022
  ] })
852
1023
  ] })
853
1024
  ] })
@@ -855,74 +1026,74 @@ var Badges = () => {
855
1026
  };
856
1027
 
857
1028
  // src/stories/components/Avatars.tsx
858
- import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
1029
+ import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
859
1030
  var Avatars = () => {
860
- return /* @__PURE__ */ jsxs8("div", { style: { padding: "1.5rem" }, children: [
861
- /* @__PURE__ */ jsx8("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
862
- /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
863
- /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
864
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
865
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "SM" }) }),
866
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "MD" }) }),
867
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "LG" }) }),
868
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "XL" }) })
1031
+ return /* @__PURE__ */ jsxs9("div", { style: { padding: "1.5rem" }, children: [
1032
+ /* @__PURE__ */ jsx9("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
1033
+ /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1034
+ /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
1035
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1036
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1037
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "MD" }) }),
1038
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "LG" }) }),
1039
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "XL" }) })
869
1040
  ] })
870
1041
  ] }),
871
- /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
872
- /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
873
- /* @__PURE__ */ jsx8("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
874
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
875
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "AB" }) }),
876
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "CD" }) }),
877
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "EF" }) })
1042
+ /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1043
+ /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
1044
+ /* @__PURE__ */ jsx9("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
1045
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1046
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "AB" }) }),
1047
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "CD" }) }),
1048
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "EF" }) })
878
1049
  ] })
879
1050
  ] }),
880
- /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
881
- /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
882
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
883
- /* @__PURE__ */ jsxs8("div", { children: [
884
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "CR" }) }),
885
- /* @__PURE__ */ jsx8("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
886
- ] }),
887
- /* @__PURE__ */ jsxs8("div", { children: [
888
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "RD" }) }),
889
- /* @__PURE__ */ jsx8("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
890
- ] }),
891
- /* @__PURE__ */ jsxs8("div", { children: [
892
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
893
- /* @__PURE__ */ jsx8("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
1051
+ /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1052
+ /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
1053
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1054
+ /* @__PURE__ */ jsxs9("div", { children: [
1055
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "CR" }) }),
1056
+ /* @__PURE__ */ jsx9("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
1057
+ ] }),
1058
+ /* @__PURE__ */ jsxs9("div", { children: [
1059
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "RD" }) }),
1060
+ /* @__PURE__ */ jsx9("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
1061
+ ] }),
1062
+ /* @__PURE__ */ jsxs9("div", { children: [
1063
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
1064
+ /* @__PURE__ */ jsx9("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
894
1065
  ] })
895
1066
  ] })
896
1067
  ] }),
897
- /* @__PURE__ */ jsxs8("section", { style: { marginBottom: "2rem" }, children: [
898
- /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
899
- /* @__PURE__ */ jsxs8("div", { className: "qt-avatar-group", children: [
900
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "A" }) }),
901
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "B" }) }),
902
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "C" }) }),
903
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "D" }) }),
904
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "+3" }) })
1068
+ /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1069
+ /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
1070
+ /* @__PURE__ */ jsxs9("div", { className: "qt-avatar-group", children: [
1071
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "A" }) }),
1072
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "B" }) }),
1073
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "C" }) }),
1074
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "D" }) }),
1075
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "+3" }) })
905
1076
  ] })
906
1077
  ] }),
907
- /* @__PURE__ */ jsxs8("section", { children: [
908
- /* @__PURE__ */ jsx8("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
909
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
910
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
911
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "JD" }) }),
912
- /* @__PURE__ */ jsxs8("div", { style: { flex: 1 }, children: [
913
- /* @__PURE__ */ jsx8("div", { style: { fontWeight: 600 }, children: "John Doe" }),
914
- /* @__PURE__ */ jsx8("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
1078
+ /* @__PURE__ */ jsxs9("section", { children: [
1079
+ /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
1080
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1081
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
1082
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "JD" }) }),
1083
+ /* @__PURE__ */ jsxs9("div", { style: { flex: 1 }, children: [
1084
+ /* @__PURE__ */ jsx9("div", { style: { fontWeight: 600 }, children: "John Doe" }),
1085
+ /* @__PURE__ */ jsx9("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
915
1086
  ] }),
916
- /* @__PURE__ */ jsx8("span", { className: "qt-badge qt-badge-success", children: "Active" })
917
- ] }),
918
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", gap: "0.75rem" }, children: [
919
- /* @__PURE__ */ jsx8("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx8("div", { className: "qt-avatar-fallback", children: "SM" }) }),
920
- /* @__PURE__ */ jsxs8("div", { style: { flex: 1 }, children: [
921
- /* @__PURE__ */ jsxs8("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
922
- /* @__PURE__ */ jsx8("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
923
- /* @__PURE__ */ jsx8("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
1087
+ /* @__PURE__ */ jsx9("span", { className: "qt-badge qt-badge-success", children: "Active" })
1088
+ ] }),
1089
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1090
+ /* @__PURE__ */ jsx9("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx9("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1091
+ /* @__PURE__ */ jsxs9("div", { style: { flex: 1 }, children: [
1092
+ /* @__PURE__ */ jsxs9("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1093
+ /* @__PURE__ */ jsx9("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
1094
+ /* @__PURE__ */ jsx9("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
924
1095
  ] }),
925
- /* @__PURE__ */ jsx8("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
1096
+ /* @__PURE__ */ jsx9("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
926
1097
  ] })
927
1098
  ] })
928
1099
  ] })
@@ -932,131 +1103,131 @@ var Avatars = () => {
932
1103
 
933
1104
  // src/stories/components/Dialogs.tsx
934
1105
  import { useState } from "react";
935
- import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
1106
+ import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
936
1107
  var Dialogs = () => {
937
1108
  const [basicOpen, setBasicOpen] = useState(false);
938
1109
  const [confirmOpen, setConfirmOpen] = useState(false);
939
1110
  const [formOpen, setFormOpen] = useState(false);
940
- return /* @__PURE__ */ jsxs9("div", { style: { padding: "1.5rem" }, children: [
941
- /* @__PURE__ */ jsx9("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
942
- /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
943
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
944
- /* @__PURE__ */ jsx9("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
945
- /* @__PURE__ */ jsxs9("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
946
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
947
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
948
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
949
- ] })
950
- ] }),
951
- basicOpen && /* @__PURE__ */ jsx9("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
952
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-header", children: [
953
- /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
954
- /* @__PURE__ */ jsx9("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." }),
955
- /* @__PURE__ */ jsx9("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx9("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx9("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1111
+ return /* @__PURE__ */ jsxs10("div", { style: { padding: "1.5rem" }, children: [
1112
+ /* @__PURE__ */ jsx10("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
1113
+ /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1114
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
1115
+ /* @__PURE__ */ jsx10("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
1116
+ /* @__PURE__ */ jsxs10("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1117
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
1118
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
1119
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
1120
+ ] })
1121
+ ] }),
1122
+ basicOpen && /* @__PURE__ */ jsx10("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1123
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-header", children: [
1124
+ /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
1125
+ /* @__PURE__ */ jsx10("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." }),
1126
+ /* @__PURE__ */ jsx10("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx10("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
956
1127
  ] }),
957
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx9("p", { children: "Dialog content area with additional details and information." }) }),
958
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
1128
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx10("p", { children: "Dialog content area with additional details and information." }) }),
1129
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
959
1130
  ] }) }),
960
- confirmOpen && /* @__PURE__ */ jsx9("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
961
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-header", children: [
962
- /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
963
- /* @__PURE__ */ jsx9("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
964
- /* @__PURE__ */ jsx9("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx9("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx9("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1131
+ confirmOpen && /* @__PURE__ */ jsx10("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1132
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-header", children: [
1133
+ /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
1134
+ /* @__PURE__ */ jsx10("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
1135
+ /* @__PURE__ */ jsx10("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx10("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
965
1136
  ] }),
966
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx9("p", { children: "This will remove the item from your collection permanently." }) }),
967
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-footer", children: [
968
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
969
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
1137
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx10("p", { children: "This will remove the item from your collection permanently." }) }),
1138
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-footer", children: [
1139
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
1140
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
970
1141
  ] })
971
1142
  ] }) }),
972
- formOpen && /* @__PURE__ */ jsx9("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
973
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-header", children: [
974
- /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Create New Item" }),
975
- /* @__PURE__ */ jsx9("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
976
- /* @__PURE__ */ jsx9("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx9("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx9("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1143
+ formOpen && /* @__PURE__ */ jsx10("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
1144
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-header", children: [
1145
+ /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Create New Item" }),
1146
+ /* @__PURE__ */ jsx10("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
1147
+ /* @__PURE__ */ jsx10("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ jsx10("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
977
1148
  ] }),
978
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsxs9("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
979
- /* @__PURE__ */ jsxs9("div", { children: [
980
- /* @__PURE__ */ jsx9("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
981
- /* @__PURE__ */ jsx9("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
982
- ] }),
983
- /* @__PURE__ */ jsxs9("div", { children: [
984
- /* @__PURE__ */ jsx9("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
985
- /* @__PURE__ */ jsx9("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
986
- ] }),
987
- /* @__PURE__ */ jsxs9("div", { children: [
988
- /* @__PURE__ */ jsx9("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
989
- /* @__PURE__ */ jsxs9("select", { className: "qt-input qt-select", children: [
990
- /* @__PURE__ */ jsx9("option", { value: "", children: "Select category..." }),
991
- /* @__PURE__ */ jsx9("option", { value: "1", children: "Category 1" }),
992
- /* @__PURE__ */ jsx9("option", { value: "2", children: "Category 2" }),
993
- /* @__PURE__ */ jsx9("option", { value: "3", children: "Category 3" })
1149
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsxs10("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1150
+ /* @__PURE__ */ jsxs10("div", { children: [
1151
+ /* @__PURE__ */ jsx10("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
1152
+ /* @__PURE__ */ jsx10("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
1153
+ ] }),
1154
+ /* @__PURE__ */ jsxs10("div", { children: [
1155
+ /* @__PURE__ */ jsx10("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
1156
+ /* @__PURE__ */ jsx10("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
1157
+ ] }),
1158
+ /* @__PURE__ */ jsxs10("div", { children: [
1159
+ /* @__PURE__ */ jsx10("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
1160
+ /* @__PURE__ */ jsxs10("select", { className: "qt-input qt-select", children: [
1161
+ /* @__PURE__ */ jsx10("option", { value: "", children: "Select category..." }),
1162
+ /* @__PURE__ */ jsx10("option", { value: "1", children: "Category 1" }),
1163
+ /* @__PURE__ */ jsx10("option", { value: "2", children: "Category 2" }),
1164
+ /* @__PURE__ */ jsx10("option", { value: "3", children: "Category 3" })
994
1165
  ] })
995
1166
  ] })
996
1167
  ] }) }),
997
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-footer", children: [
998
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
999
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1168
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-footer", children: [
1169
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
1170
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1000
1171
  ] })
1001
1172
  ] }) }),
1002
- /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1003
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1004
- /* @__PURE__ */ jsx9("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1005
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-header", children: [
1006
- /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1007
- /* @__PURE__ */ jsx9("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1008
- /* @__PURE__ */ jsx9("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ jsx9("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx9("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1009
- ] }),
1010
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx9("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1011
- /* @__PURE__ */ jsxs9("div", { className: "qt-dialog-footer", children: [
1012
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1013
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1173
+ /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1174
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1175
+ /* @__PURE__ */ jsx10("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1176
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-header", children: [
1177
+ /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1178
+ /* @__PURE__ */ jsx10("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1179
+ /* @__PURE__ */ jsx10("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ jsx10("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1180
+ ] }),
1181
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx10("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1182
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dialog-footer", children: [
1183
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1184
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1014
1185
  ] })
1015
1186
  ] }) })
1016
1187
  ] }),
1017
- /* @__PURE__ */ jsxs9("section", { children: [
1018
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1019
- /* @__PURE__ */ jsxs9("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1020
- /* @__PURE__ */ jsxs9("div", { children: [
1021
- /* @__PURE__ */ jsx9("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1022
- /* @__PURE__ */ jsx9("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1023
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-header", children: /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1024
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx9("p", { children: "Compact dialog for simple confirmations." }) })
1188
+ /* @__PURE__ */ jsxs10("section", { children: [
1189
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1190
+ /* @__PURE__ */ jsxs10("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1191
+ /* @__PURE__ */ jsxs10("div", { children: [
1192
+ /* @__PURE__ */ jsx10("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1193
+ /* @__PURE__ */ jsx10("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1194
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-header", children: /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1195
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx10("p", { children: "Compact dialog for simple confirmations." }) })
1025
1196
  ] }) })
1026
1197
  ] }),
1027
- /* @__PURE__ */ jsxs9("div", { children: [
1028
- /* @__PURE__ */ jsx9("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1029
- /* @__PURE__ */ jsx9("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ jsxs9("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1030
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-header", children: /* @__PURE__ */ jsx9("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1031
- /* @__PURE__ */ jsx9("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx9("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1198
+ /* @__PURE__ */ jsxs10("div", { children: [
1199
+ /* @__PURE__ */ jsx10("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1200
+ /* @__PURE__ */ jsx10("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ jsxs10("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1201
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-header", children: /* @__PURE__ */ jsx10("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1202
+ /* @__PURE__ */ jsx10("div", { className: "qt-dialog-body", children: /* @__PURE__ */ jsx10("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1032
1203
  ] }) })
1033
1204
  ] })
1034
1205
  ] })
1035
1206
  ] }),
1036
- /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1037
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1038
- /* @__PURE__ */ jsxs9("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1039
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1040
- /* @__PURE__ */ jsx9("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ jsxs9("div", { style: { padding: "0.75rem" }, children: [
1041
- /* @__PURE__ */ jsx9("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1042
- /* @__PURE__ */ jsx9("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1207
+ /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1208
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1209
+ /* @__PURE__ */ jsxs10("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1210
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1211
+ /* @__PURE__ */ jsx10("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ jsxs10("div", { style: { padding: "0.75rem" }, children: [
1212
+ /* @__PURE__ */ jsx10("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1213
+ /* @__PURE__ */ jsx10("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1043
1214
  ] }) })
1044
1215
  ] })
1045
1216
  ] }),
1046
- /* @__PURE__ */ jsxs9("section", { style: { marginBottom: "2rem" }, children: [
1047
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1048
- /* @__PURE__ */ jsxs9("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1049
- /* @__PURE__ */ jsx9("div", { className: "qt-dropdown-item", children: "Profile" }),
1050
- /* @__PURE__ */ jsx9("div", { className: "qt-dropdown-item", children: "Settings" }),
1051
- /* @__PURE__ */ jsx9("div", { className: "qt-dropdown-separator" }),
1052
- /* @__PURE__ */ jsx9("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1217
+ /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1218
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1219
+ /* @__PURE__ */ jsxs10("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1220
+ /* @__PURE__ */ jsx10("div", { className: "qt-dropdown-item", children: "Profile" }),
1221
+ /* @__PURE__ */ jsx10("div", { className: "qt-dropdown-item", children: "Settings" }),
1222
+ /* @__PURE__ */ jsx10("div", { className: "qt-dropdown-separator" }),
1223
+ /* @__PURE__ */ jsx10("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1053
1224
  ] })
1054
1225
  ] }),
1055
- /* @__PURE__ */ jsxs9("section", { children: [
1056
- /* @__PURE__ */ jsx9("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1057
- /* @__PURE__ */ jsx9("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ jsxs9("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1058
- /* @__PURE__ */ jsx9("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1059
- /* @__PURE__ */ jsx9("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1226
+ /* @__PURE__ */ jsxs10("section", { children: [
1227
+ /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1228
+ /* @__PURE__ */ jsx10("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ jsxs10("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1229
+ /* @__PURE__ */ jsx10("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1230
+ /* @__PURE__ */ jsx10("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1060
1231
  ] }) })
1061
1232
  ] })
1062
1233
  ] });
@@ -1064,15 +1235,15 @@ var Dialogs = () => {
1064
1235
 
1065
1236
  // src/stories/components/Tabs.tsx
1066
1237
  import { useState as useState2 } from "react";
1067
- import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
1238
+ import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
1068
1239
  var Tabs = () => {
1069
1240
  const [activeTab, setActiveTab] = useState2("tab1");
1070
- return /* @__PURE__ */ jsxs10("div", { style: { padding: "1.5rem" }, children: [
1071
- /* @__PURE__ */ jsx10("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1072
- /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1073
- /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1074
- /* @__PURE__ */ jsxs10("div", { className: "qt-tab-group", children: [
1075
- /* @__PURE__ */ jsx10(
1241
+ return /* @__PURE__ */ jsxs11("div", { style: { padding: "1.5rem" }, children: [
1242
+ /* @__PURE__ */ jsx11("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1243
+ /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1244
+ /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1245
+ /* @__PURE__ */ jsxs11("div", { className: "qt-tab-group", children: [
1246
+ /* @__PURE__ */ jsx11(
1076
1247
  "button",
1077
1248
  {
1078
1249
  className: `qt-tab ${activeTab === "tab1" ? "qt-tab-active" : ""}`,
@@ -1080,7 +1251,7 @@ var Tabs = () => {
1080
1251
  children: "Account"
1081
1252
  }
1082
1253
  ),
1083
- /* @__PURE__ */ jsx10(
1254
+ /* @__PURE__ */ jsx11(
1084
1255
  "button",
1085
1256
  {
1086
1257
  className: `qt-tab ${activeTab === "tab2" ? "qt-tab-active" : ""}`,
@@ -1088,7 +1259,7 @@ var Tabs = () => {
1088
1259
  children: "Settings"
1089
1260
  }
1090
1261
  ),
1091
- /* @__PURE__ */ jsx10(
1262
+ /* @__PURE__ */ jsx11(
1092
1263
  "button",
1093
1264
  {
1094
1265
  className: `qt-tab ${activeTab === "tab3" ? "qt-tab-active" : ""}`,
@@ -1097,56 +1268,56 @@ var Tabs = () => {
1097
1268
  }
1098
1269
  )
1099
1270
  ] }),
1100
- /* @__PURE__ */ jsxs10("div", { children: [
1101
- activeTab === "tab1" && /* @__PURE__ */ jsxs10("div", { className: "qt-tab-content", children: [
1102
- /* @__PURE__ */ jsx10("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1103
- /* @__PURE__ */ jsx10("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1104
- ] }),
1105
- activeTab === "tab2" && /* @__PURE__ */ jsxs10("div", { className: "qt-tab-content", children: [
1106
- /* @__PURE__ */ jsx10("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1107
- /* @__PURE__ */ jsx10("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1108
- ] }),
1109
- activeTab === "tab3" && /* @__PURE__ */ jsxs10("div", { className: "qt-tab-content", children: [
1110
- /* @__PURE__ */ jsx10("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1111
- /* @__PURE__ */ jsx10("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1271
+ /* @__PURE__ */ jsxs11("div", { children: [
1272
+ activeTab === "tab1" && /* @__PURE__ */ jsxs11("div", { className: "qt-tab-content", children: [
1273
+ /* @__PURE__ */ jsx11("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1274
+ /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1275
+ ] }),
1276
+ activeTab === "tab2" && /* @__PURE__ */ jsxs11("div", { className: "qt-tab-content", children: [
1277
+ /* @__PURE__ */ jsx11("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1278
+ /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1279
+ ] }),
1280
+ activeTab === "tab3" && /* @__PURE__ */ jsxs11("div", { className: "qt-tab-content", children: [
1281
+ /* @__PURE__ */ jsx11("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1282
+ /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1112
1283
  ] })
1113
1284
  ] })
1114
1285
  ] }),
1115
- /* @__PURE__ */ jsxs10("section", { style: { marginBottom: "2rem" }, children: [
1116
- /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1117
- /* @__PURE__ */ jsxs10("div", { className: "qt-tab-group", children: [
1118
- /* @__PURE__ */ jsxs10("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1119
- /* @__PURE__ */ jsx10("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("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" }) }),
1286
+ /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1287
+ /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1288
+ /* @__PURE__ */ jsxs11("div", { className: "qt-tab-group", children: [
1289
+ /* @__PURE__ */ jsxs11("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1290
+ /* @__PURE__ */ jsx11("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }),
1120
1291
  "Home"
1121
1292
  ] }),
1122
- /* @__PURE__ */ jsxs10("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1123
- /* @__PURE__ */ jsx10("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("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" }) }),
1293
+ /* @__PURE__ */ jsxs11("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1294
+ /* @__PURE__ */ jsx11("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }),
1124
1295
  "Profile"
1125
1296
  ] }),
1126
- /* @__PURE__ */ jsxs10("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1127
- /* @__PURE__ */ jsxs10("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1128
- /* @__PURE__ */ jsx10("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" }),
1129
- /* @__PURE__ */ jsx10("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1297
+ /* @__PURE__ */ jsxs11("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1298
+ /* @__PURE__ */ jsxs11("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1299
+ /* @__PURE__ */ jsx11("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" }),
1300
+ /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1130
1301
  ] }),
1131
1302
  "Settings"
1132
1303
  ] })
1133
1304
  ] })
1134
1305
  ] }),
1135
- /* @__PURE__ */ jsxs10("section", { children: [
1136
- /* @__PURE__ */ jsx10("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1137
- /* @__PURE__ */ jsxs10("div", { className: "qt-navbar", children: [
1138
- /* @__PURE__ */ jsxs10("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1139
- /* @__PURE__ */ jsx10("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1140
- /* @__PURE__ */ jsxs10("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1141
- /* @__PURE__ */ jsx10("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1142
- /* @__PURE__ */ jsx10("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1143
- /* @__PURE__ */ jsx10("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1144
- /* @__PURE__ */ jsx10("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1306
+ /* @__PURE__ */ jsxs11("section", { children: [
1307
+ /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1308
+ /* @__PURE__ */ jsxs11("div", { className: "qt-navbar", children: [
1309
+ /* @__PURE__ */ jsxs11("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1310
+ /* @__PURE__ */ jsx11("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1311
+ /* @__PURE__ */ jsxs11("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1312
+ /* @__PURE__ */ jsx11("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1313
+ /* @__PURE__ */ jsx11("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1314
+ /* @__PURE__ */ jsx11("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1315
+ /* @__PURE__ */ jsx11("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1145
1316
  ] })
1146
1317
  ] }),
1147
- /* @__PURE__ */ jsxs10("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1148
- /* @__PURE__ */ jsx10("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ jsx10("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx10("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" }) }) }),
1149
- /* @__PURE__ */ jsx10("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx10("div", { className: "qt-avatar-fallback", children: "U" }) })
1318
+ /* @__PURE__ */ jsxs11("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1319
+ /* @__PURE__ */ jsx11("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ jsx11("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }) }),
1320
+ /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "U" }) })
1150
1321
  ] })
1151
1322
  ] })
1152
1323
  ] })
@@ -1154,215 +1325,215 @@ var Tabs = () => {
1154
1325
  };
1155
1326
 
1156
1327
  // src/stories/components/Chat.tsx
1157
- import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
1328
+ import { jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
1158
1329
  var Chat = () => {
1159
- return /* @__PURE__ */ jsxs11("div", { style: { padding: "1.5rem" }, children: [
1160
- /* @__PURE__ */ jsx11("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1161
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1162
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1163
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1164
- /* @__PURE__ */ jsx11("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-user", children: [
1165
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-header", children: [
1166
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "You" }),
1167
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1330
+ return /* @__PURE__ */ jsxs12("div", { style: { padding: "1.5rem" }, children: [
1331
+ /* @__PURE__ */ jsx12("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1332
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1333
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1334
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1335
+ /* @__PURE__ */ jsx12("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-user", children: [
1336
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-header", children: [
1337
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "You" }),
1338
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1168
1339
  ] }),
1169
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx11("p", { children: "Hello! How are you today?" }) })
1340
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx12("p", { children: "Hello! How are you today?" }) })
1170
1341
  ] }) }),
1171
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1172
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1173
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1174
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-header", children: [
1175
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "Assistant" }),
1176
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1342
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1343
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1344
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1345
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-header", children: [
1346
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "Assistant" }),
1347
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1177
1348
  ] }),
1178
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx11("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1349
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx12("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1179
1350
  ] })
1180
1351
  ] }),
1181
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1182
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1183
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1184
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-header", children: [
1185
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "Assistant" }),
1186
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1352
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1353
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1354
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1355
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-header", children: [
1356
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "Assistant" }),
1357
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1187
1358
  ] }),
1188
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-content", children: [
1189
- /* @__PURE__ */ jsx11("p", { children: "Here's some information you might find helpful:" }),
1190
- /* @__PURE__ */ jsxs11("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1191
- /* @__PURE__ */ jsx11("li", { children: "First point of interest" }),
1192
- /* @__PURE__ */ jsx11("li", { children: "Second important detail" }),
1193
- /* @__PURE__ */ jsx11("li", { children: "Third relevant fact" })
1359
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-content", children: [
1360
+ /* @__PURE__ */ jsx12("p", { children: "Here's some information you might find helpful:" }),
1361
+ /* @__PURE__ */ jsxs12("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1362
+ /* @__PURE__ */ jsx12("li", { children: "First point of interest" }),
1363
+ /* @__PURE__ */ jsx12("li", { children: "Second important detail" }),
1364
+ /* @__PURE__ */ jsx12("li", { children: "Third relevant fact" })
1194
1365
  ] }),
1195
- /* @__PURE__ */ jsx11("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1366
+ /* @__PURE__ */ jsx12("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1196
1367
  ] }),
1197
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-actions", children: [
1198
- /* @__PURE__ */ jsx11("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ jsx11("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }) }),
1199
- /* @__PURE__ */ jsx11("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ jsx11("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }) })
1368
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-actions", children: [
1369
+ /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ jsx12("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("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" }) }) }),
1370
+ /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ jsx12("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("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" }) }) })
1200
1371
  ] })
1201
1372
  ] })
1202
1373
  ] }),
1203
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx11("p", { children: "Alice has joined the conversation." }) }) }),
1204
- /* @__PURE__ */ jsx11("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-user", children: [
1205
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "You" }) }),
1206
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx11("p", { children: "That's exactly what I needed, thanks!" }) })
1374
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx12("p", { children: "Alice has joined the conversation." }) }) }),
1375
+ /* @__PURE__ */ jsx12("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-user", children: [
1376
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "You" }) }),
1377
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx12("p", { children: "That's exactly what I needed, thanks!" }) })
1207
1378
  ] }) })
1208
1379
  ] })
1209
1380
  ] }),
1210
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1211
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1212
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1213
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1214
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1215
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "A" }) }),
1216
- /* @__PURE__ */ jsxs11("div", { children: [
1217
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1218
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx11("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1381
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1382
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1383
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1384
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1385
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1386
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "A" }) }),
1387
+ /* @__PURE__ */ jsxs12("div", { children: [
1388
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1389
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx12("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1219
1390
  ] })
1220
1391
  ] }),
1221
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1222
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "B" }) }),
1223
- /* @__PURE__ */ jsxs11("div", { children: [
1224
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1225
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx11("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1392
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1393
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "B" }) }),
1394
+ /* @__PURE__ */ jsxs12("div", { children: [
1395
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1396
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx12("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1226
1397
  ] })
1227
1398
  ] })
1228
1399
  ] })
1229
1400
  ] }),
1230
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1231
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1232
- /* @__PURE__ */ jsx11("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." }),
1233
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1234
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1235
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "A" }) }),
1236
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1237
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1238
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsxs11("p", { children: [
1401
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1402
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1403
+ /* @__PURE__ */ jsx12("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." }),
1404
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1405
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1406
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "A" }) }),
1407
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1408
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1409
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsxs12("p", { children: [
1239
1410
  '"Hello there!" ',
1240
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1411
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1241
1412
  ] }) })
1242
1413
  ] })
1243
1414
  ] }),
1244
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1245
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "A" }) }),
1246
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1247
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1248
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsxs11("p", { children: [
1249
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1415
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1416
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "A" }) }),
1417
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1418
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1419
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsxs12("p", { children: [
1420
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1250
1421
  " ",
1251
- /* @__PURE__ */ jsx11("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1422
+ /* @__PURE__ */ jsx12("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1252
1423
  ] }) })
1253
1424
  ] })
1254
1425
  ] }),
1255
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1256
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "A" }) }),
1257
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1258
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx11("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1259
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx11("p", { children: /* @__PURE__ */ jsx11("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1426
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1427
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "A" }) }),
1428
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1429
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ jsx12("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1430
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ jsx12("p", { children: /* @__PURE__ */ jsx12("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1260
1431
  ] })
1261
1432
  ] })
1262
1433
  ] })
1263
1434
  ] }),
1264
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1265
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1266
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1267
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1268
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1269
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1270
- /* @__PURE__ */ jsx11("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1435
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1436
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1437
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1438
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1439
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1440
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1441
+ /* @__PURE__ */ jsx12("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1271
1442
  ] }) }),
1272
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1273
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1274
- /* @__PURE__ */ jsx11("p", { children: "Keep an eye on the door. We may need a quick exit." })
1443
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1444
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1445
+ /* @__PURE__ */ jsx12("p", { children: "Keep an eye on the door. We may need a quick exit." })
1275
1446
  ] }) })
1276
1447
  ] })
1277
1448
  ] }),
1278
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1279
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1280
- /* @__PURE__ */ jsx11("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." }),
1281
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1282
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1283
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1284
- /* @__PURE__ */ jsx11("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1449
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1450
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1451
+ /* @__PURE__ */ jsx12("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." }),
1452
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1453
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1454
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1455
+ /* @__PURE__ */ jsx12("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1285
1456
  ] }) }),
1286
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1287
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1288
- /* @__PURE__ */ jsx11("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1457
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1458
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1459
+ /* @__PURE__ */ jsx12("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1289
1460
  ] }) })
1290
1461
  ] })
1291
1462
  ] }),
1292
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1293
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1294
- /* @__PURE__ */ jsx11("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." }),
1295
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1296
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-notice", children: [
1297
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1298
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-summary", children: [
1299
- /* @__PURE__ */ jsx11("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1300
- /* @__PURE__ */ jsx11("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1463
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1464
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1465
+ /* @__PURE__ */ jsx12("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." }),
1466
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1467
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-notice", children: [
1468
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1469
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-summary", children: [
1470
+ /* @__PURE__ */ jsx12("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1471
+ /* @__PURE__ */ jsx12("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1301
1472
  ] })
1302
1473
  ] }),
1303
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-notice", children: [
1304
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1305
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-summary", children: [
1306
- /* @__PURE__ */ jsx11("div", { children: "Removed item from the footwear slot." }),
1307
- /* @__PURE__ */ jsx11("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1474
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-notice", children: [
1475
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1476
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-summary", children: [
1477
+ /* @__PURE__ */ jsx12("div", { children: "Removed item from the footwear slot." }),
1478
+ /* @__PURE__ */ jsx12("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1308
1479
  ] })
1309
1480
  ] }),
1310
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-notice", children: [
1311
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1312
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-wardrobe-summary", children: [
1313
- /* @__PURE__ */ jsx11("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1314
- /* @__PURE__ */ jsx11("div", { children: "Marcus put it on immediately." })
1481
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-notice", children: [
1482
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1483
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-wardrobe-summary", children: [
1484
+ /* @__PURE__ */ jsx12("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1485
+ /* @__PURE__ */ jsx12("div", { children: "Marcus put it on immediately." })
1315
1486
  ] })
1316
1487
  ] })
1317
1488
  ] })
1318
1489
  ] }),
1319
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1320
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1321
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1322
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1323
- /* @__PURE__ */ jsx11("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ jsx11("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1324
- /* @__PURE__ */ jsx11("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ jsx11("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1325
- /* @__PURE__ */ jsx11("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ jsx11("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1326
- /* @__PURE__ */ jsx11("div", { style: { flex: 1 } }),
1327
- /* @__PURE__ */ jsx11("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ jsxs11("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1328
- /* @__PURE__ */ jsx11("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" }),
1329
- /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1490
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1491
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1492
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1493
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1494
+ /* @__PURE__ */ jsx12("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ jsx12("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1495
+ /* @__PURE__ */ jsx12("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ jsx12("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1496
+ /* @__PURE__ */ jsx12("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ jsx12("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1497
+ /* @__PURE__ */ jsx12("div", { style: { flex: 1 } }),
1498
+ /* @__PURE__ */ jsx12("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ jsxs12("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1499
+ /* @__PURE__ */ jsx12("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" }),
1500
+ /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1330
1501
  ] }) })
1331
1502
  ] })
1332
1503
  ] }),
1333
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1334
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1335
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1336
- /* @__PURE__ */ jsxs11("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1337
- /* @__PURE__ */ jsxs11("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1338
- /* @__PURE__ */ jsx11("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1504
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1505
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1506
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1507
+ /* @__PURE__ */ jsxs12("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1508
+ /* @__PURE__ */ jsxs12("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1509
+ /* @__PURE__ */ jsx12("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1339
1510
  "Narration"
1340
1511
  ] }),
1341
- /* @__PURE__ */ jsxs11("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1342
- /* @__PURE__ */ jsx11("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }),
1512
+ /* @__PURE__ */ jsxs12("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1513
+ /* @__PURE__ */ jsx12("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("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" }) }),
1343
1514
  "Internal"
1344
1515
  ] }),
1345
- /* @__PURE__ */ jsxs11("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1346
- /* @__PURE__ */ jsx11("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }),
1516
+ /* @__PURE__ */ jsxs12("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1517
+ /* @__PURE__ */ jsx12("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("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" }) }),
1347
1518
  "OOC"
1348
1519
  ] })
1349
1520
  ] })
1350
1521
  ] }),
1351
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1352
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1353
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1354
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1355
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1356
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-attachment-chip", children: [
1357
- /* @__PURE__ */ jsx11("span", { children: "document.pdf" }),
1358
- /* @__PURE__ */ jsx11("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1522
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1523
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1524
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1525
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1526
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1527
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-attachment-chip", children: [
1528
+ /* @__PURE__ */ jsx12("span", { children: "document.pdf" }),
1529
+ /* @__PURE__ */ jsx12("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1359
1530
  ] }),
1360
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-attachment-chip", children: [
1361
- /* @__PURE__ */ jsx11("span", { children: "image.png" }),
1362
- /* @__PURE__ */ jsx11("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1531
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-attachment-chip", children: [
1532
+ /* @__PURE__ */ jsx12("span", { children: "image.png" }),
1533
+ /* @__PURE__ */ jsx12("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1363
1534
  ] })
1364
1535
  ] }),
1365
- /* @__PURE__ */ jsx11(
1536
+ /* @__PURE__ */ jsx12(
1366
1537
  "textarea",
1367
1538
  {
1368
1539
  className: "qt-chat-composer-input",
@@ -1371,17 +1542,17 @@ var Chat = () => {
1371
1542
  style: { width: "100%", padding: "0.5rem", marginBottom: "0.5rem" }
1372
1543
  }
1373
1544
  ),
1374
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1375
- /* @__PURE__ */ jsx11("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ jsx11("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1376
- /* @__PURE__ */ jsx11("button", { className: "qt-button qt-button-primary", children: "Send" })
1545
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1546
+ /* @__PURE__ */ jsx12("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ jsx12("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1547
+ /* @__PURE__ */ jsx12("button", { className: "qt-button qt-button-primary", children: "Send" })
1377
1548
  ] })
1378
1549
  ] })
1379
1550
  ] }),
1380
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1381
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1382
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ jsxs11("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1383
- /* @__PURE__ */ jsx11("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ jsx11("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("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" }) }) }),
1384
- /* @__PURE__ */ jsx11(
1551
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1552
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1553
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ jsxs12("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1554
+ /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ jsx12("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("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" }) }) }),
1555
+ /* @__PURE__ */ jsx12(
1385
1556
  "textarea",
1386
1557
  {
1387
1558
  className: "qt-chat-composer-input qt-input",
@@ -1389,65 +1560,65 @@ var Chat = () => {
1389
1560
  rows: 1
1390
1561
  }
1391
1562
  ),
1392
- /* @__PURE__ */ jsx11("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ jsx11("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1563
+ /* @__PURE__ */ jsx12("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ jsx12("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1393
1564
  ] }) })
1394
1565
  ] }),
1395
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1396
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1397
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1398
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1399
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsxs11("div", { className: "qt-typing-indicator", children: [
1400
- /* @__PURE__ */ jsx11("span", {}),
1401
- /* @__PURE__ */ jsx11("span", {}),
1402
- /* @__PURE__ */ jsx11("span", {})
1566
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1567
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1568
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1569
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1570
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsxs12("div", { className: "qt-typing-indicator", children: [
1571
+ /* @__PURE__ */ jsx12("span", {}),
1572
+ /* @__PURE__ */ jsx12("span", {}),
1573
+ /* @__PURE__ */ jsx12("span", {})
1403
1574
  ] }) })
1404
1575
  ] })
1405
1576
  ] }),
1406
- /* @__PURE__ */ jsxs11("section", { style: { marginBottom: "2rem" }, children: [
1407
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1408
- /* @__PURE__ */ jsx11("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1409
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1410
- /* @__PURE__ */ jsxs11("button", { className: "qt-chat-continue-button", children: [
1411
- /* @__PURE__ */ jsxs11("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1412
- /* @__PURE__ */ jsx11("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" }),
1413
- /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1577
+ /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1578
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1579
+ /* @__PURE__ */ jsx12("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1580
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1581
+ /* @__PURE__ */ jsxs12("button", { className: "qt-chat-continue-button", children: [
1582
+ /* @__PURE__ */ jsxs12("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1583
+ /* @__PURE__ */ jsx12("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" }),
1584
+ /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1414
1585
  ] }),
1415
1586
  "Continue"
1416
1587
  ] }),
1417
- /* @__PURE__ */ jsxs11("button", { className: "qt-chat-stop-button", children: [
1418
- /* @__PURE__ */ jsxs11("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1419
- /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1420
- /* @__PURE__ */ jsx11("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" })
1588
+ /* @__PURE__ */ jsxs12("button", { className: "qt-chat-stop-button", children: [
1589
+ /* @__PURE__ */ jsxs12("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1590
+ /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1591
+ /* @__PURE__ */ jsx12("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" })
1421
1592
  ] }),
1422
1593
  "Stop"
1423
1594
  ] })
1424
1595
  ] })
1425
1596
  ] }),
1426
- /* @__PURE__ */ jsxs11("section", { children: [
1427
- /* @__PURE__ */ jsx11("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1428
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1429
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1430
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1431
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1432
- /* @__PURE__ */ jsxs11("div", { children: [
1433
- /* @__PURE__ */ jsx11("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1434
- /* @__PURE__ */ jsx11("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1597
+ /* @__PURE__ */ jsxs12("section", { children: [
1598
+ /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1599
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1600
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1601
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1602
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1603
+ /* @__PURE__ */ jsxs12("div", { children: [
1604
+ /* @__PURE__ */ jsx12("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1605
+ /* @__PURE__ */ jsx12("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1435
1606
  ] })
1436
1607
  ] }),
1437
- /* @__PURE__ */ jsx11("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ jsx11("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ jsxs11("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1438
- /* @__PURE__ */ jsx11("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" }),
1439
- /* @__PURE__ */ jsx11("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1608
+ /* @__PURE__ */ jsx12("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ jsxs12("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1609
+ /* @__PURE__ */ jsx12("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" }),
1610
+ /* @__PURE__ */ jsx12("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1440
1611
  ] }) }) })
1441
1612
  ] }),
1442
- /* @__PURE__ */ jsxs11("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1443
- /* @__PURE__ */ jsxs11("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1444
- /* @__PURE__ */ jsx11("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx11("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1445
- /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx11("p", { children: "Hello! How can I help you today?" }) })
1613
+ /* @__PURE__ */ jsxs12("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1614
+ /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1615
+ /* @__PURE__ */ jsx12("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx12("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1616
+ /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ jsx12("p", { children: "Hello! How can I help you today?" }) })
1446
1617
  ] }),
1447
- /* @__PURE__ */ jsx11("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsx11("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ jsx11("p", { children: "I'd like to know more about theming." }) }) })
1618
+ /* @__PURE__ */ jsx12("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsx12("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ jsx12("p", { children: "I'd like to know more about theming." }) }) })
1448
1619
  ] }),
1449
- /* @__PURE__ */ jsxs11("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1450
- /* @__PURE__ */ jsx11(
1620
+ /* @__PURE__ */ jsxs12("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1621
+ /* @__PURE__ */ jsx12(
1451
1622
  "textarea",
1452
1623
  {
1453
1624
  className: "qt-chat-composer-input qt-input",
@@ -1455,7 +1626,7 @@ var Chat = () => {
1455
1626
  rows: 1
1456
1627
  }
1457
1628
  ),
1458
- /* @__PURE__ */ jsx11("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1629
+ /* @__PURE__ */ jsx12("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1459
1630
  ] })
1460
1631
  ] })
1461
1632
  ] })
@@ -1463,7 +1634,7 @@ var Chat = () => {
1463
1634
  };
1464
1635
 
1465
1636
  // src/stories/components/Terminal.tsx
1466
- import { jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
1637
+ import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
1467
1638
  var sampleOutput = `$ git status
1468
1639
  On branch main
1469
1640
  Your branch is up to date with 'origin/main'.
@@ -1475,117 +1646,117 @@ $ npm run dev
1475
1646
  - Local: http://localhost:3000
1476
1647
  - ready started server on 0.0.0.0:3000`;
1477
1648
  var Terminal = () => {
1478
- return /* @__PURE__ */ jsxs12("div", { style: { padding: "1.5rem" }, children: [
1479
- /* @__PURE__ */ jsx12("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1480
- /* @__PURE__ */ jsxs12("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1649
+ return /* @__PURE__ */ jsxs13("div", { style: { padding: "1.5rem" }, children: [
1650
+ /* @__PURE__ */ jsx13("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1651
+ /* @__PURE__ */ jsxs13("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1481
1652
  "The terminal carries its own identity. By default it stays dark in both light and dark themes \u2014 but a theme can override",
1482
1653
  " ",
1483
- /* @__PURE__ */ jsx12("code", { children: "--qt-terminal-bg" }),
1654
+ /* @__PURE__ */ jsx13("code", { children: "--qt-terminal-bg" }),
1484
1655
  ", ",
1485
- /* @__PURE__ */ jsx12("code", { children: "--qt-terminal-fg" }),
1656
+ /* @__PURE__ */ jsx13("code", { children: "--qt-terminal-fg" }),
1486
1657
  ", and the",
1487
- /* @__PURE__ */ jsx12("code", { children: "--qt-terminal-chrome-*" }),
1658
+ /* @__PURE__ */ jsx13("code", { children: "--qt-terminal-chrome-*" }),
1488
1659
  " tokens to reskin every surface below."
1489
1660
  ] }),
1490
- /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1491
- /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1492
- /* @__PURE__ */ jsxs12("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1493
- /* @__PURE__ */ jsx12("code", { children: ".qt-terminal-embed" }),
1661
+ /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1662
+ /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1663
+ /* @__PURE__ */ jsxs13("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1664
+ /* @__PURE__ */ jsx13("code", { children: ".qt-terminal-embed" }),
1494
1665
  " wraps the embed card; the header and footer strips inherit the surrounding theme so they nest cleanly with chat bubbles."
1495
1666
  ] }),
1496
- /* @__PURE__ */ jsxs12("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1497
- /* @__PURE__ */ jsxs12("div", { className: "qt-terminal-embed-header", children: [
1498
- /* @__PURE__ */ jsx12("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ jsx12("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1499
- /* @__PURE__ */ jsxs12("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1500
- /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1501
- /* @__PURE__ */ jsx12("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1667
+ /* @__PURE__ */ jsxs13("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1668
+ /* @__PURE__ */ jsxs13("div", { className: "qt-terminal-embed-header", children: [
1669
+ /* @__PURE__ */ jsx13("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ jsx13("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1670
+ /* @__PURE__ */ jsxs13("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1671
+ /* @__PURE__ */ jsx13("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1672
+ /* @__PURE__ */ jsx13("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1502
1673
  ] })
1503
1674
  ] }),
1504
- /* @__PURE__ */ jsx12("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 })
1675
+ /* @__PURE__ */ jsx13("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 })
1505
1676
  ] })
1506
1677
  ] }),
1507
- /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1508
- /* @__PURE__ */ jsx12("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)" }),
1509
- /* @__PURE__ */ jsxs12("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1510
- /* @__PURE__ */ jsx12("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ jsx12("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1511
- /* @__PURE__ */ jsxs12("div", { className: "qt-terminal-embed-footer", children: [
1512
- /* @__PURE__ */ jsx12("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1513
- /* @__PURE__ */ jsx12("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1678
+ /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1679
+ /* @__PURE__ */ jsx13("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)" }),
1680
+ /* @__PURE__ */ jsxs13("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1681
+ /* @__PURE__ */ jsx13("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ jsx13("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1682
+ /* @__PURE__ */ jsxs13("div", { className: "qt-terminal-embed-footer", children: [
1683
+ /* @__PURE__ */ jsx13("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1684
+ /* @__PURE__ */ jsx13("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1514
1685
  ] })
1515
1686
  ] })
1516
1687
  ] }),
1517
- /* @__PURE__ */ jsxs12("section", { style: { marginBottom: "2rem" }, children: [
1518
- /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1519
- /* @__PURE__ */ jsxs12("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1688
+ /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1689
+ /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1690
+ /* @__PURE__ */ jsxs13("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1520
1691
  "The full-screen pop-out page uses",
1521
1692
  " ",
1522
- /* @__PURE__ */ jsx12("code", { children: ".qt-terminal-popout-page" }),
1693
+ /* @__PURE__ */ jsx13("code", { children: ".qt-terminal-popout-page" }),
1523
1694
  " as the outer canvas and",
1524
1695
  " ",
1525
- /* @__PURE__ */ jsx12("code", { children: ".qt-terminal-popout-header" }),
1696
+ /* @__PURE__ */ jsx13("code", { children: ".qt-terminal-popout-header" }),
1526
1697
  " for the breadcrumb bar."
1527
1698
  ] }),
1528
- /* @__PURE__ */ jsxs12("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: [
1529
- /* @__PURE__ */ jsxs12("div", { className: "qt-terminal-popout-header", children: [
1530
- /* @__PURE__ */ jsxs12("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1531
- /* @__PURE__ */ jsx12("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1532
- /* @__PURE__ */ jsx12("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1533
- /* @__PURE__ */ jsx12("span", { className: "qt-terminal-popout-separator", children: "/" }),
1534
- /* @__PURE__ */ jsx12("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1699
+ /* @__PURE__ */ jsxs13("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: [
1700
+ /* @__PURE__ */ jsxs13("div", { className: "qt-terminal-popout-header", children: [
1701
+ /* @__PURE__ */ jsxs13("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1702
+ /* @__PURE__ */ jsx13("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1703
+ /* @__PURE__ */ jsx13("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1704
+ /* @__PURE__ */ jsx13("span", { className: "qt-terminal-popout-separator", children: "/" }),
1705
+ /* @__PURE__ */ jsx13("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1535
1706
  ] }),
1536
- /* @__PURE__ */ jsx12("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1707
+ /* @__PURE__ */ jsx13("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1537
1708
  ] }),
1538
- /* @__PURE__ */ jsx12("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 })
1709
+ /* @__PURE__ */ jsx13("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 })
1539
1710
  ] })
1540
1711
  ] }),
1541
- /* @__PURE__ */ jsxs12("section", { children: [
1542
- /* @__PURE__ */ jsx12("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1543
- /* @__PURE__ */ jsxs12("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1712
+ /* @__PURE__ */ jsxs13("section", { children: [
1713
+ /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1714
+ /* @__PURE__ */ jsxs13("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1544
1715
  "When the PTY exits but the terminal stays mounted, the",
1545
1716
  " ",
1546
- /* @__PURE__ */ jsx12("code", { children: ".qt-terminal-closed-badge" }),
1717
+ /* @__PURE__ */ jsx13("code", { children: ".qt-terminal-closed-badge" }),
1547
1718
  " overlay marks it."
1548
1719
  ] }),
1549
- /* @__PURE__ */ jsx12("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ jsx12("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1720
+ /* @__PURE__ */ jsx13("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ jsx13("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1550
1721
  ] })
1551
1722
  ] });
1552
1723
  };
1553
1724
 
1554
1725
  // src/stories/components/FilePreview.tsx
1555
- import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
1726
+ import { jsx as jsx14, jsxs as jsxs14 } from "react/jsx-runtime";
1556
1727
  var FilePreview = () => {
1557
- return /* @__PURE__ */ jsxs13("div", { style: { padding: "1.5rem" }, children: [
1558
- /* @__PURE__ */ jsx13("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1559
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1560
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1561
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1562
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-scroll" }),
1728
+ return /* @__PURE__ */ jsxs14("div", { style: { padding: "1.5rem" }, children: [
1729
+ /* @__PURE__ */ jsx14("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1730
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1731
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1732
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1733
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-scroll" }),
1563
1734
  " - Scrollable container for file content with configurable max height."
1564
1735
  ] }),
1565
- /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx13("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ jsxs13("p", { style: { margin: "0.5rem 0" }, children: [
1736
+ /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx14("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ jsxs14("p", { style: { margin: "0.5rem 0" }, children: [
1566
1737
  "Line ",
1567
1738
  i + 1,
1568
1739
  ": Lorem ipsum dolor sit amet, consectetur adipiscing elit."
1569
1740
  ] }, i)) }) })
1570
1741
  ] }),
1571
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1572
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1573
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1574
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-panel" }),
1742
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1743
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1744
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1745
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-panel" }),
1575
1746
  " - Background panel for rendered markdown content."
1576
1747
  ] }),
1577
- /* @__PURE__ */ jsxs13("div", { className: "qt-file-preview-panel", children: [
1578
- /* @__PURE__ */ jsx13("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1579
- /* @__PURE__ */ jsx13("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1748
+ /* @__PURE__ */ jsxs14("div", { className: "qt-file-preview-panel", children: [
1749
+ /* @__PURE__ */ jsx14("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1750
+ /* @__PURE__ */ jsx14("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1580
1751
  ] })
1581
1752
  ] }),
1582
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1583
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1584
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1585
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-code" }),
1753
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1754
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1755
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1756
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-code" }),
1586
1757
  " - Styled code block for plain text and source files with word wrap."
1587
1758
  ] }),
1588
- /* @__PURE__ */ jsx13("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1759
+ /* @__PURE__ */ jsx14("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1589
1760
  return \`Hello, \${name}!\`;
1590
1761
  }
1591
1762
 
@@ -1593,133 +1764,133 @@ var FilePreview = () => {
1593
1764
  const message = greet("World");
1594
1765
  console.log(message);` })
1595
1766
  ] }),
1596
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1597
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1598
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1599
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-loading" }),
1767
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1768
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1769
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1770
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-loading" }),
1600
1771
  " + ",
1601
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-loading-text" }),
1772
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-loading-text" }),
1602
1773
  " - Loading indicator."
1603
1774
  ] }),
1604
- /* @__PURE__ */ jsx13("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1775
+ /* @__PURE__ */ jsx14("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1605
1776
  ] }),
1606
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1607
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1608
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1609
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-empty" }),
1777
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1778
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1779
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1780
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-empty" }),
1610
1781
  " + ",
1611
- /* @__PURE__ */ jsx13("code", { children: ".qt-file-preview-empty-icon" }),
1782
+ /* @__PURE__ */ jsx14("code", { children: ".qt-file-preview-empty-icon" }),
1612
1783
  " - Empty or error state display."
1613
1784
  ] }),
1614
- /* @__PURE__ */ jsxs13("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1615
- /* @__PURE__ */ jsx13("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs13("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1616
- /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1617
- /* @__PURE__ */ jsx13("p", { children: "No content available" })
1785
+ /* @__PURE__ */ jsxs14("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1786
+ /* @__PURE__ */ jsx14("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs14("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1787
+ /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1788
+ /* @__PURE__ */ jsx14("p", { children: "No content available" })
1618
1789
  ] }) }),
1619
- /* @__PURE__ */ jsx13("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs13("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1620
- /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1621
- /* @__PURE__ */ jsx13("p", { children: "Failed to load file" })
1790
+ /* @__PURE__ */ jsx14("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ jsxs14("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1791
+ /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1792
+ /* @__PURE__ */ jsx14("p", { children: "Failed to load file" })
1622
1793
  ] }) })
1623
1794
  ] })
1624
1795
  ] }),
1625
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1626
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1627
- /* @__PURE__ */ jsxs13("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1628
- /* @__PURE__ */ jsx13("code", { children: ".qt-wikilink" }),
1796
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1797
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1798
+ /* @__PURE__ */ jsxs14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1799
+ /* @__PURE__ */ jsx14("code", { children: ".qt-wikilink" }),
1629
1800
  " + ",
1630
- /* @__PURE__ */ jsx13("code", { children: ".qt-wikilink-broken" }),
1801
+ /* @__PURE__ */ jsx14("code", { children: ".qt-wikilink-broken" }),
1631
1802
  " - Internal document links in markdown."
1632
1803
  ] }),
1633
- /* @__PURE__ */ jsx13("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ jsxs13("p", { style: { margin: 0, lineHeight: 2 }, children: [
1804
+ /* @__PURE__ */ jsx14("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ jsxs14("p", { style: { margin: 0, lineHeight: 2 }, children: [
1634
1805
  "This document references ",
1635
- /* @__PURE__ */ jsx13("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1806
+ /* @__PURE__ */ jsx14("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1636
1807
  " and links to ",
1637
- /* @__PURE__ */ jsx13("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1808
+ /* @__PURE__ */ jsx14("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1638
1809
  ". There's also a ",
1639
- /* @__PURE__ */ jsx13("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1810
+ /* @__PURE__ */ jsx14("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1640
1811
  " that doesn't exist yet."
1641
1812
  ] }) })
1642
1813
  ] }),
1643
- /* @__PURE__ */ jsxs13("section", { style: { marginBottom: "2rem" }, children: [
1644
- /* @__PURE__ */ jsx13("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1645
- /* @__PURE__ */ jsx13("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1814
+ /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1815
+ /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1816
+ /* @__PURE__ */ jsx14("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1646
1817
  { name: "--qt-file-preview-max-height", value: "70vh", desc: "Max height of scroll container" },
1647
1818
  { name: "--qt-file-preview-min-height", value: "300px", desc: "Min height of loading/empty states" },
1648
1819
  { name: "--qt-file-preview-panel-bg", value: "muted/30%", desc: "Content panel background" },
1649
1820
  { name: "--qt-code-bg", value: "muted", desc: "Code block background" },
1650
1821
  { name: "--qt-code-fg", value: "foreground", desc: "Code block text color" },
1651
1822
  { name: "--qt-code-font", value: "monospace", desc: "Code block font family" }
1652
- ].map(({ name, value, desc }) => /* @__PURE__ */ jsxs13("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
1653
- /* @__PURE__ */ jsx13("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
1654
- /* @__PURE__ */ jsxs13("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1823
+ ].map(({ name, value, desc }) => /* @__PURE__ */ jsxs14("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
1824
+ /* @__PURE__ */ jsx14("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
1825
+ /* @__PURE__ */ jsxs14("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1655
1826
  "Default: ",
1656
1827
  value
1657
1828
  ] }),
1658
- /* @__PURE__ */ jsx13("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
1829
+ /* @__PURE__ */ jsx14("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
1659
1830
  ] }, name)) })
1660
1831
  ] })
1661
1832
  ] });
1662
1833
  };
1663
1834
 
1664
1835
  // src/stories/components/ThemeComparison.tsx
1665
- import { jsx as jsx14, jsxs as jsxs14 } from "react/jsx-runtime";
1836
+ import { jsx as jsx15, jsxs as jsxs15 } from "react/jsx-runtime";
1666
1837
  var ThemePanel = ({ title, description }) => {
1667
- return /* @__PURE__ */ jsxs14("div", { style: { flex: 1, minWidth: "20rem" }, children: [
1668
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "1rem" }, children: [
1669
- /* @__PURE__ */ jsx14("h4", { style: { fontWeight: 600 }, children: title }),
1670
- /* @__PURE__ */ jsx14("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
1671
- ] }),
1672
- /* @__PURE__ */ jsxs14("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
1673
- /* @__PURE__ */ jsxs14("div", { className: "qt-card-header", children: [
1674
- /* @__PURE__ */ jsx14("h5", { className: "qt-card-title", children: "Sample Card" }),
1675
- /* @__PURE__ */ jsx14("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
1838
+ return /* @__PURE__ */ jsxs15("div", { style: { flex: 1, minWidth: "20rem" }, children: [
1839
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "1rem" }, children: [
1840
+ /* @__PURE__ */ jsx15("h4", { style: { fontWeight: 600 }, children: title }),
1841
+ /* @__PURE__ */ jsx15("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
1842
+ ] }),
1843
+ /* @__PURE__ */ jsxs15("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
1844
+ /* @__PURE__ */ jsxs15("div", { className: "qt-card-header", children: [
1845
+ /* @__PURE__ */ jsx15("h5", { className: "qt-card-title", children: "Sample Card" }),
1846
+ /* @__PURE__ */ jsx15("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
1676
1847
  ] }),
1677
- /* @__PURE__ */ jsxs14("div", { className: "qt-card-body", children: [
1678
- /* @__PURE__ */ jsx14("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
1679
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1680
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1681
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1682
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-success", children: "Success" })
1848
+ /* @__PURE__ */ jsxs15("div", { className: "qt-card-body", children: [
1849
+ /* @__PURE__ */ jsx15("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
1850
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1851
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1852
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1853
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-success", children: "Success" })
1683
1854
  ] })
1684
1855
  ] }),
1685
- /* @__PURE__ */ jsxs14("div", { className: "qt-card-footer", children: [
1686
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
1687
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-primary", children: "Save" })
1856
+ /* @__PURE__ */ jsxs15("div", { className: "qt-card-footer", children: [
1857
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
1858
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary", children: "Save" })
1688
1859
  ] })
1689
1860
  ] }),
1690
- /* @__PURE__ */ jsxs14("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
1691
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "0.75rem" }, children: [
1692
- /* @__PURE__ */ jsx14("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
1693
- /* @__PURE__ */ jsx14("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
1861
+ /* @__PURE__ */ jsxs15("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
1862
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "0.75rem" }, children: [
1863
+ /* @__PURE__ */ jsx15("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
1864
+ /* @__PURE__ */ jsx15("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
1694
1865
  ] }),
1695
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "0.75rem" }, children: [
1696
- /* @__PURE__ */ jsx14("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
1697
- /* @__PURE__ */ jsxs14("select", { className: "qt-input qt-select", children: [
1698
- /* @__PURE__ */ jsx14("option", { children: "Option 1" }),
1699
- /* @__PURE__ */ jsx14("option", { children: "Option 2" })
1866
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "0.75rem" }, children: [
1867
+ /* @__PURE__ */ jsx15("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
1868
+ /* @__PURE__ */ jsxs15("select", { className: "qt-input qt-select", children: [
1869
+ /* @__PURE__ */ jsx15("option", { children: "Option 1" }),
1870
+ /* @__PURE__ */ jsx15("option", { children: "Option 2" })
1700
1871
  ] })
1701
1872
  ] }),
1702
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1703
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
1704
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
1873
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1874
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
1875
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
1705
1876
  ] })
1706
1877
  ] }),
1707
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1708
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1709
- /* @__PURE__ */ jsx14("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx14("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1710
- /* @__PURE__ */ jsx14("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ jsx14("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
1878
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1879
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1880
+ /* @__PURE__ */ jsx15("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx15("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1881
+ /* @__PURE__ */ jsx15("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ jsx15("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
1711
1882
  ] }),
1712
- /* @__PURE__ */ jsx14("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsx14("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ jsx14("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
1883
+ /* @__PURE__ */ jsx15("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ jsx15("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ jsx15("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
1713
1884
  ] })
1714
1885
  ] });
1715
1886
  };
1716
1887
  var ThemeComparison = () => {
1717
- return /* @__PURE__ */ jsxs14("div", { style: { padding: "1.5rem" }, children: [
1718
- /* @__PURE__ */ jsx14("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
1719
- /* @__PURE__ */ jsx14("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." }),
1720
- /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1721
- /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
1722
- /* @__PURE__ */ jsx14(
1888
+ return /* @__PURE__ */ jsxs15("div", { style: { padding: "1.5rem" }, children: [
1889
+ /* @__PURE__ */ jsx15("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
1890
+ /* @__PURE__ */ jsx15("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." }),
1891
+ /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1892
+ /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
1893
+ /* @__PURE__ */ jsx15(
1723
1894
  ThemePanel,
1724
1895
  {
1725
1896
  title: "Active Theme",
@@ -1727,9 +1898,9 @@ var ThemeComparison = () => {
1727
1898
  }
1728
1899
  )
1729
1900
  ] }),
1730
- /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1731
- /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
1732
- /* @__PURE__ */ jsx14("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1901
+ /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1902
+ /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
1903
+ /* @__PURE__ */ jsx15("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1733
1904
  { name: "Background", var: "--color-background" },
1734
1905
  { name: "Foreground", var: "--color-foreground" },
1735
1906
  { name: "Card", var: "--color-card" },
@@ -1738,8 +1909,8 @@ var ThemeComparison = () => {
1738
1909
  { name: "Muted", var: "--color-muted" },
1739
1910
  { name: "Accent", var: "--color-accent" },
1740
1911
  { name: "Border", var: "--color-border" }
1741
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ jsxs14("div", { style: { textAlign: "center" }, children: [
1742
- /* @__PURE__ */ jsx14(
1912
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ jsxs15("div", { style: { textAlign: "center" }, children: [
1913
+ /* @__PURE__ */ jsx15(
1743
1914
  "div",
1744
1915
  {
1745
1916
  style: {
@@ -1751,17 +1922,17 @@ var ThemeComparison = () => {
1751
1922
  }
1752
1923
  }
1753
1924
  ),
1754
- /* @__PURE__ */ jsx14("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1925
+ /* @__PURE__ */ jsx15("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1755
1926
  ] }, cssVar)) })
1756
1927
  ] }),
1757
- /* @__PURE__ */ jsxs14("section", { style: { marginBottom: "2rem" }, children: [
1758
- /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
1759
- /* @__PURE__ */ jsx14("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1928
+ /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1929
+ /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
1930
+ /* @__PURE__ */ jsx15("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1760
1931
  { name: "Destructive", var: "--color-destructive" },
1761
1932
  { name: "Success", var: "--color-success" },
1762
1933
  { name: "Warning", var: "--color-warning" }
1763
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ jsxs14("div", { style: { textAlign: "center" }, children: [
1764
- /* @__PURE__ */ jsx14(
1934
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ jsxs15("div", { style: { textAlign: "center" }, children: [
1935
+ /* @__PURE__ */ jsx15(
1765
1936
  "div",
1766
1937
  {
1767
1938
  style: {
@@ -1773,50 +1944,50 @@ var ThemeComparison = () => {
1773
1944
  }
1774
1945
  }
1775
1946
  ),
1776
- /* @__PURE__ */ jsx14("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1947
+ /* @__PURE__ */ jsx15("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1777
1948
  ] }, cssVar)) })
1778
1949
  ] }),
1779
- /* @__PURE__ */ jsxs14("section", { children: [
1780
- /* @__PURE__ */ jsx14("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
1781
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "1.5rem" }, children: [
1782
- /* @__PURE__ */ jsx14("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
1783
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1784
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-primary", children: "Primary" }),
1785
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
1786
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
1787
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
1788
- /* @__PURE__ */ jsx14("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
1950
+ /* @__PURE__ */ jsxs15("section", { children: [
1951
+ /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
1952
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "1.5rem" }, children: [
1953
+ /* @__PURE__ */ jsx15("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
1954
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1955
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary", children: "Primary" }),
1956
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
1957
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
1958
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
1959
+ /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
1789
1960
  ] })
1790
1961
  ] }),
1791
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "1.5rem" }, children: [
1792
- /* @__PURE__ */ jsx14("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
1793
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1794
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-default", children: "Default" }),
1795
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1796
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1797
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-success", children: "Success" }),
1798
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
1799
- /* @__PURE__ */ jsx14("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
1962
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "1.5rem" }, children: [
1963
+ /* @__PURE__ */ jsx15("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
1964
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
1965
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-default", children: "Default" }),
1966
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1967
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1968
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-success", children: "Success" }),
1969
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
1970
+ /* @__PURE__ */ jsx15("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
1800
1971
  ] })
1801
1972
  ] }),
1802
- /* @__PURE__ */ jsxs14("div", { style: { marginBottom: "1.5rem" }, children: [
1803
- /* @__PURE__ */ jsx14("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
1804
- /* @__PURE__ */ jsx14("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ jsx14("div", { className: "qt-card-header", children: /* @__PURE__ */ jsxs14("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1805
- /* @__PURE__ */ jsx14("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx14("div", { className: "qt-avatar-fallback", children: "A" }) }),
1806
- /* @__PURE__ */ jsxs14("div", { children: [
1807
- /* @__PURE__ */ jsx14("h5", { className: "qt-card-title", children: "Character Name" }),
1808
- /* @__PURE__ */ jsx14("p", { className: "qt-card-description", children: "Click to interact" })
1973
+ /* @__PURE__ */ jsxs15("div", { style: { marginBottom: "1.5rem" }, children: [
1974
+ /* @__PURE__ */ jsx15("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
1975
+ /* @__PURE__ */ jsx15("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ jsx15("div", { className: "qt-card-header", children: /* @__PURE__ */ jsxs15("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1976
+ /* @__PURE__ */ jsx15("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx15("div", { className: "qt-avatar-fallback", children: "A" }) }),
1977
+ /* @__PURE__ */ jsxs15("div", { children: [
1978
+ /* @__PURE__ */ jsx15("h5", { className: "qt-card-title", children: "Character Name" }),
1979
+ /* @__PURE__ */ jsx15("p", { className: "qt-card-description", children: "Click to interact" })
1809
1980
  ] })
1810
1981
  ] }) }) })
1811
1982
  ] }),
1812
- /* @__PURE__ */ jsxs14("div", { children: [
1813
- /* @__PURE__ */ jsx14("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
1814
- /* @__PURE__ */ jsxs14("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
1815
- /* @__PURE__ */ jsx14("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
1816
- /* @__PURE__ */ jsxs14("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
1817
- /* @__PURE__ */ jsx14("option", { children: "Select option" }),
1818
- /* @__PURE__ */ jsx14("option", { children: "Option 1" }),
1819
- /* @__PURE__ */ jsx14("option", { children: "Option 2" })
1983
+ /* @__PURE__ */ jsxs15("div", { children: [
1984
+ /* @__PURE__ */ jsx15("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
1985
+ /* @__PURE__ */ jsxs15("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
1986
+ /* @__PURE__ */ jsx15("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
1987
+ /* @__PURE__ */ jsxs15("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
1988
+ /* @__PURE__ */ jsx15("option", { children: "Select option" }),
1989
+ /* @__PURE__ */ jsx15("option", { children: "Option 1" }),
1990
+ /* @__PURE__ */ jsx15("option", { children: "Option 2" })
1820
1991
  ] })
1821
1992
  ] })
1822
1993
  ] })
@@ -1825,125 +1996,125 @@ var ThemeComparison = () => {
1825
1996
  };
1826
1997
 
1827
1998
  // src/stories/components/EmptyState.tsx
1828
- import { jsx as jsx15, jsxs as jsxs15 } from "react/jsx-runtime";
1999
+ import { jsx as jsx16, jsxs as jsxs16 } from "react/jsx-runtime";
1829
2000
  var EmptyState = () => {
1830
- return /* @__PURE__ */ jsxs15("div", { style: { padding: "1.5rem" }, children: [
1831
- /* @__PURE__ */ jsx15("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
1832
- /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1833
- /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
1834
- /* @__PURE__ */ jsxs15("div", { className: "qt-empty-state", children: [
1835
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx15("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx15("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" }) }) }),
1836
- /* @__PURE__ */ jsx15("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
1837
- /* @__PURE__ */ jsx15("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2001
+ return /* @__PURE__ */ jsxs16("div", { style: { padding: "1.5rem" }, children: [
2002
+ /* @__PURE__ */ jsx16("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2003
+ /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
2004
+ /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
2005
+ /* @__PURE__ */ jsxs16("div", { className: "qt-empty-state", children: [
2006
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx16("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("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" }) }) }),
2007
+ /* @__PURE__ */ jsx16("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2008
+ /* @__PURE__ */ jsx16("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
1838
2009
  ] })
1839
2010
  ] }),
1840
- /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1841
- /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
1842
- /* @__PURE__ */ jsxs15("div", { className: "qt-empty-state", children: [
1843
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx15("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx15("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" }) }) }),
1844
- /* @__PURE__ */ jsx15("h4", { className: "qt-empty-state-title", children: "No characters" }),
1845
- /* @__PURE__ */ jsx15("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
1846
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2011
+ /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
2012
+ /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
2013
+ /* @__PURE__ */ jsxs16("div", { className: "qt-empty-state", children: [
2014
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx16("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("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" }) }) }),
2015
+ /* @__PURE__ */ jsx16("h4", { className: "qt-empty-state-title", children: "No characters" }),
2016
+ /* @__PURE__ */ jsx16("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2017
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx16("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
1847
2018
  ] })
1848
2019
  ] }),
1849
- /* @__PURE__ */ jsxs15("section", { style: { marginBottom: "2rem" }, children: [
1850
- /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
1851
- /* @__PURE__ */ jsxs15("div", { className: "qt-empty-state", children: [
1852
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx15("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx15("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
1853
- /* @__PURE__ */ jsx15("h4", { className: "qt-empty-state-title", children: "No results found" }),
1854
- /* @__PURE__ */ jsx15("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
1855
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2020
+ /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
2021
+ /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
2022
+ /* @__PURE__ */ jsxs16("div", { className: "qt-empty-state", children: [
2023
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ jsx16("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
2024
+ /* @__PURE__ */ jsx16("h4", { className: "qt-empty-state-title", children: "No results found" }),
2025
+ /* @__PURE__ */ jsx16("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2026
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx16("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
1856
2027
  ] })
1857
2028
  ] }),
1858
- /* @__PURE__ */ jsxs15("section", { children: [
1859
- /* @__PURE__ */ jsx15("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
1860
- /* @__PURE__ */ jsxs15("div", { className: "qt-empty-state", children: [
1861
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ jsx15("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx15("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" }) }) }),
1862
- /* @__PURE__ */ jsx15("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
1863
- /* @__PURE__ */ jsx15("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
1864
- /* @__PURE__ */ jsx15("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx15("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2029
+ /* @__PURE__ */ jsxs16("section", { children: [
2030
+ /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
2031
+ /* @__PURE__ */ jsxs16("div", { className: "qt-empty-state", children: [
2032
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ jsx16("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("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" }) }) }),
2033
+ /* @__PURE__ */ jsx16("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2034
+ /* @__PURE__ */ jsx16("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2035
+ /* @__PURE__ */ jsx16("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ jsx16("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
1865
2036
  ] })
1866
2037
  ] })
1867
2038
  ] });
1868
2039
  };
1869
2040
 
1870
2041
  // src/stories/components/Loading.tsx
1871
- import { jsx as jsx16, jsxs as jsxs16 } from "react/jsx-runtime";
2042
+ import { jsx as jsx17, jsxs as jsxs17 } from "react/jsx-runtime";
1872
2043
  var Loading = () => {
1873
- return /* @__PURE__ */ jsxs16("div", { style: { padding: "1.5rem" }, children: [
1874
- /* @__PURE__ */ jsx16("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
1875
- /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
1876
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
1877
- /* @__PURE__ */ jsxs16("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
1878
- /* @__PURE__ */ jsxs16("div", { style: { textAlign: "center" }, children: [
1879
- /* @__PURE__ */ jsx16("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
1880
- /* @__PURE__ */ jsx16("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
1881
- ] }),
1882
- /* @__PURE__ */ jsxs16("div", { style: { textAlign: "center" }, children: [
1883
- /* @__PURE__ */ jsx16("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
1884
- /* @__PURE__ */ jsx16("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
1885
- ] }),
1886
- /* @__PURE__ */ jsxs16("div", { style: { textAlign: "center" }, children: [
1887
- /* @__PURE__ */ jsx16("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
1888
- /* @__PURE__ */ jsx16("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2044
+ return /* @__PURE__ */ jsxs17("div", { style: { padding: "1.5rem" }, children: [
2045
+ /* @__PURE__ */ jsx17("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2046
+ /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2047
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
2048
+ /* @__PURE__ */ jsxs17("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2049
+ /* @__PURE__ */ jsxs17("div", { style: { textAlign: "center" }, children: [
2050
+ /* @__PURE__ */ jsx17("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2051
+ /* @__PURE__ */ jsx17("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2052
+ ] }),
2053
+ /* @__PURE__ */ jsxs17("div", { style: { textAlign: "center" }, children: [
2054
+ /* @__PURE__ */ jsx17("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2055
+ /* @__PURE__ */ jsx17("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2056
+ ] }),
2057
+ /* @__PURE__ */ jsxs17("div", { style: { textAlign: "center" }, children: [
2058
+ /* @__PURE__ */ jsx17("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2059
+ /* @__PURE__ */ jsx17("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
1889
2060
  ] })
1890
2061
  ] })
1891
2062
  ] }),
1892
- /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
1893
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
1894
- /* @__PURE__ */ jsxs16("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1895
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
1896
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
1897
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2063
+ /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2064
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2065
+ /* @__PURE__ */ jsxs17("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2066
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2067
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2068
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
1898
2069
  ] })
1899
2070
  ] }),
1900
- /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
1901
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
1902
- /* @__PURE__ */ jsxs16("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
1903
- /* @__PURE__ */ jsxs16("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
1904
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
1905
- /* @__PURE__ */ jsxs16("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1906
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
1907
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2071
+ /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2072
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2073
+ /* @__PURE__ */ jsxs17("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2074
+ /* @__PURE__ */ jsxs17("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2075
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2076
+ /* @__PURE__ */ jsxs17("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2077
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2078
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
1908
2079
  ] })
1909
2080
  ] }),
1910
- /* @__PURE__ */ jsxs16("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1911
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text" }),
1912
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text" }),
1913
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2081
+ /* @__PURE__ */ jsxs17("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2082
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text" }),
2083
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text" }),
2084
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
1914
2085
  ] })
1915
2086
  ] })
1916
2087
  ] }),
1917
- /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
1918
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
1919
- /* @__PURE__ */ jsx16("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ jsxs16("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1920
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
1921
- /* @__PURE__ */ jsxs16("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1922
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
1923
- /* @__PURE__ */ jsx16("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ jsxs16("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1924
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text" }),
1925
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text" }),
1926
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2088
+ /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2089
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2090
+ /* @__PURE__ */ jsx17("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ jsxs17("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2091
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2092
+ /* @__PURE__ */ jsxs17("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2093
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2094
+ /* @__PURE__ */ jsx17("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ jsxs17("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2095
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text" }),
2096
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text" }),
2097
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
1927
2098
  ] }) })
1928
2099
  ] })
1929
2100
  ] }) })
1930
2101
  ] }),
1931
- /* @__PURE__ */ jsxs16("section", { style: { marginBottom: "2rem" }, children: [
1932
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
1933
- /* @__PURE__ */ jsx16("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ jsxs16("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
1934
- /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
1935
- /* @__PURE__ */ jsx16("div", { style: { flex: 1 }, children: /* @__PURE__ */ jsx16("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2102
+ /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2103
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2104
+ /* @__PURE__ */ jsx17("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ jsxs17("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2105
+ /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2106
+ /* @__PURE__ */ jsx17("div", { style: { flex: 1 }, children: /* @__PURE__ */ jsx17("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
1936
2107
  ] }, i)) })
1937
2108
  ] }),
1938
- /* @__PURE__ */ jsxs16("section", { children: [
1939
- /* @__PURE__ */ jsx16("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
1940
- /* @__PURE__ */ jsxs16("div", { style: { display: "flex", gap: "1rem" }, children: [
1941
- /* @__PURE__ */ jsxs16("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1942
- /* @__PURE__ */ jsx16("div", { className: "qt-spinner qt-spinner-sm" }),
2109
+ /* @__PURE__ */ jsxs17("section", { children: [
2110
+ /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2111
+ /* @__PURE__ */ jsxs17("div", { style: { display: "flex", gap: "1rem" }, children: [
2112
+ /* @__PURE__ */ jsxs17("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2113
+ /* @__PURE__ */ jsx17("div", { className: "qt-spinner qt-spinner-sm" }),
1943
2114
  "Loading..."
1944
2115
  ] }),
1945
- /* @__PURE__ */ jsxs16("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1946
- /* @__PURE__ */ jsx16("div", { className: "qt-spinner qt-spinner-sm" }),
2116
+ /* @__PURE__ */ jsxs17("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2117
+ /* @__PURE__ */ jsx17("div", { className: "qt-spinner qt-spinner-sm" }),
1947
2118
  "Saving..."
1948
2119
  ] })
1949
2120
  ] })
@@ -1952,130 +2123,130 @@ var Loading = () => {
1952
2123
  };
1953
2124
 
1954
2125
  // src/stories/components/Participant.tsx
1955
- import { jsx as jsx17, jsxs as jsxs17 } from "react/jsx-runtime";
2126
+ import { jsx as jsx18, jsxs as jsxs18 } from "react/jsx-runtime";
1956
2127
  var Participant = () => {
1957
- return /* @__PURE__ */ jsxs17("div", { style: { padding: "1.5rem" }, children: [
1958
- /* @__PURE__ */ jsx17("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
1959
- /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
1960
- /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
1961
- /* @__PURE__ */ jsxs17("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1962
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
1963
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
1964
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
1965
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Alice Character" }),
1966
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2128
+ return /* @__PURE__ */ jsxs18("div", { style: { padding: "1.5rem" }, children: [
2129
+ /* @__PURE__ */ jsx18("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2130
+ /* @__PURE__ */ jsxs18("section", { style: { marginBottom: "2rem" }, children: [
2131
+ /* @__PURE__ */ jsx18("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2132
+ /* @__PURE__ */ jsxs18("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2133
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2134
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2135
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2136
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2137
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "AI Assistant" })
1967
2138
  ] })
1968
2139
  ] }) }),
1969
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
1970
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
1971
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
1972
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Bob Character" }),
1973
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2140
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2141
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2142
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2143
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2144
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
1974
2145
  ] })
1975
2146
  ] }) }),
1976
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
1977
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
1978
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
1979
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "You" }),
1980
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Human" })
2147
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2148
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2149
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2150
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "You" }),
2151
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Human" })
1981
2152
  ] })
1982
2153
  ] }) })
1983
2154
  ] })
1984
2155
  ] }),
1985
- /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
1986
- /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
1987
- /* @__PURE__ */ jsx17("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." }),
1988
- /* @__PURE__ */ jsxs17("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1989
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
1990
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
1991
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
1992
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Alice Character" }),
1993
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2156
+ /* @__PURE__ */ jsxs18("section", { style: { marginBottom: "2rem" }, children: [
2157
+ /* @__PURE__ */ jsx18("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2158
+ /* @__PURE__ */ jsx18("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." }),
2159
+ /* @__PURE__ */ jsxs18("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2160
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2161
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2162
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2163
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2164
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
1994
2165
  ] })
1995
2166
  ] }) }),
1996
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
1997
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
1998
- /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "BC" }) }),
1999
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ jsx17("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx17("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" }) }) })
2167
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2168
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2169
+ /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2170
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ jsx18("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx18("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" }) }) })
2000
2171
  ] }),
2001
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
2002
- /* @__PURE__ */ jsxs17("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2003
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2004
- /* @__PURE__ */ jsx17("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2172
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2173
+ /* @__PURE__ */ jsxs18("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2174
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2175
+ /* @__PURE__ */ jsx18("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2005
2176
  ] }),
2006
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2177
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2007
2178
  ] })
2008
2179
  ] }) }),
2009
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2010
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2011
- /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2012
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ jsx17("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx17("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2180
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2181
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2182
+ /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2183
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ jsx18("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx18("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2013
2184
  ] }),
2014
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
2015
- /* @__PURE__ */ jsxs17("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2016
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2017
- /* @__PURE__ */ jsx17("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2185
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2186
+ /* @__PURE__ */ jsxs18("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2187
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2188
+ /* @__PURE__ */ jsx18("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2018
2189
  ] }),
2019
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2190
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2020
2191
  ] })
2021
2192
  ] }) }),
2022
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2023
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2024
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
2025
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "You" }),
2026
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "Human" })
2193
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2194
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2195
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2196
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "You" }),
2197
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "Human" })
2027
2198
  ] })
2028
2199
  ] }) })
2029
2200
  ] })
2030
2201
  ] }),
2031
- /* @__PURE__ */ jsxs17("section", { style: { marginBottom: "2rem" }, children: [
2032
- /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2033
- /* @__PURE__ */ jsxs17("div", { style: { display: "flex", gap: "1rem" }, children: [
2034
- /* @__PURE__ */ jsx17("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ jsx17("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2035
- /* @__PURE__ */ jsxs17("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2036
- /* @__PURE__ */ jsx17("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ jsx17("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2037
- /* @__PURE__ */ jsxs17("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2038
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2039
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2040
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2202
+ /* @__PURE__ */ jsxs18("section", { style: { marginBottom: "2rem" }, children: [
2203
+ /* @__PURE__ */ jsx18("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2204
+ /* @__PURE__ */ jsxs18("div", { style: { display: "flex", gap: "1rem" }, children: [
2205
+ /* @__PURE__ */ jsx18("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ jsx18("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2206
+ /* @__PURE__ */ jsxs18("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2207
+ /* @__PURE__ */ jsx18("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ jsx18("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2208
+ /* @__PURE__ */ jsxs18("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2209
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2210
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2211
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2041
2212
  ] }) }),
2042
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2043
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2044
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2213
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2214
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2215
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2045
2216
  ] }) })
2046
2217
  ] })
2047
2218
  ] })
2048
2219
  ] })
2049
2220
  ] }),
2050
- /* @__PURE__ */ jsxs17("section", { children: [
2051
- /* @__PURE__ */ jsx17("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2052
- /* @__PURE__ */ jsxs17("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2053
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2054
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2055
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
2056
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2057
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2058
- /* @__PURE__ */ jsx17("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ jsxs17("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2059
- /* @__PURE__ */ jsx17("option", { value: "", children: "Select a provider..." }),
2060
- /* @__PURE__ */ jsx17("option", { value: "__user__", children: "User (you type)" }),
2061
- /* @__PURE__ */ jsx17("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2062
- /* @__PURE__ */ jsx17("option", { value: "claude", children: "claude-3-opus" }),
2063
- /* @__PURE__ */ jsx17("option", { value: "gemini", children: "gemini-pro" })
2221
+ /* @__PURE__ */ jsxs18("section", { children: [
2222
+ /* @__PURE__ */ jsx18("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2223
+ /* @__PURE__ */ jsxs18("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2224
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2225
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2226
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2227
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2228
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2229
+ /* @__PURE__ */ jsx18("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ jsxs18("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2230
+ /* @__PURE__ */ jsx18("option", { value: "", children: "Select a provider..." }),
2231
+ /* @__PURE__ */ jsx18("option", { value: "__user__", children: "User (you type)" }),
2232
+ /* @__PURE__ */ jsx18("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2233
+ /* @__PURE__ */ jsx18("option", { value: "claude", children: "claude-3-opus" }),
2234
+ /* @__PURE__ */ jsx18("option", { value: "gemini", children: "gemini-pro" })
2064
2235
  ] }) })
2065
2236
  ] })
2066
2237
  ] }) }),
2067
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-header", children: [
2068
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx17("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2069
- /* @__PURE__ */ jsxs17("div", { className: "qt-participant-card-info", children: [
2070
- /* @__PURE__ */ jsxs17("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2071
- /* @__PURE__ */ jsx17("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2072
- /* @__PURE__ */ jsx17("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2238
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card", children: /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-header", children: [
2239
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar", children: /* @__PURE__ */ jsx18("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2240
+ /* @__PURE__ */ jsxs18("div", { className: "qt-participant-card-info", children: [
2241
+ /* @__PURE__ */ jsxs18("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2242
+ /* @__PURE__ */ jsx18("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2243
+ /* @__PURE__ */ jsx18("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2073
2244
  ] }),
2074
- /* @__PURE__ */ jsx17("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ jsxs17("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2075
- /* @__PURE__ */ jsx17("option", { value: "", children: "Select a provider..." }),
2076
- /* @__PURE__ */ jsx17("option", { value: "__user__", children: "User (you type)" }),
2077
- /* @__PURE__ */ jsx17("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2078
- /* @__PURE__ */ jsx17("option", { value: "claude", children: "claude-3-opus" })
2245
+ /* @__PURE__ */ jsx18("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ jsxs18("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2246
+ /* @__PURE__ */ jsx18("option", { value: "", children: "Select a provider..." }),
2247
+ /* @__PURE__ */ jsx18("option", { value: "__user__", children: "User (you type)" }),
2248
+ /* @__PURE__ */ jsx18("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2249
+ /* @__PURE__ */ jsx18("option", { value: "claude", children: "claude-3-opus" })
2079
2250
  ] }) })
2080
2251
  ] })
2081
2252
  ] }) })
@@ -2088,6 +2259,7 @@ export {
2088
2259
  ColorSwatch,
2089
2260
  ColorGroup,
2090
2261
  ColorPalette,
2262
+ Icons,
2091
2263
  Typography,
2092
2264
  Spacing,
2093
2265
  Buttons,