@quilltap/theme-storybook 1.0.41 → 1.0.44

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.
@@ -36,6 +36,7 @@ __export(stories_exports, {
36
36
  Loading: () => Loading,
37
37
  Participant: () => Participant,
38
38
  Spacing: () => Spacing,
39
+ Surfaces: () => Surfaces,
39
40
  Tabs: () => Tabs,
40
41
  Terminal: () => Terminal,
41
42
  ThemeComparison: () => ThemeComparison,
@@ -133,6 +134,7 @@ var ICON_GROUPS = [
133
134
  "trash",
134
135
  "copy",
135
136
  "plus",
137
+ "minus",
136
138
  "search",
137
139
  "download",
138
140
  "upload",
@@ -159,7 +161,8 @@ var ICON_GROUPS = [
159
161
  "arrow-left",
160
162
  "arrow-right",
161
163
  "arrow-up",
162
- "arrow-down"
164
+ "arrow-down",
165
+ "sort"
163
166
  ]
164
167
  },
165
168
  {
@@ -1070,75 +1073,175 @@ var Badges = () => {
1070
1073
  ] });
1071
1074
  };
1072
1075
 
1073
- // src/stories/components/Avatars.tsx
1076
+ // src/stories/components/Surfaces.tsx
1074
1077
  var import_jsx_runtime9 = require("react/jsx-runtime");
1075
- var Avatars = () => {
1078
+ var sectionHeading2 = {
1079
+ fontSize: "1.125rem",
1080
+ fontWeight: 700,
1081
+ marginBottom: "1rem",
1082
+ borderBottom: "1px solid var(--color-border)",
1083
+ paddingBottom: "0.5rem"
1084
+ };
1085
+ var note = {
1086
+ color: "var(--color-muted-foreground)",
1087
+ marginBottom: "1rem",
1088
+ fontSize: "0.875rem"
1089
+ };
1090
+ var Surfaces = () => {
1076
1091
  return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1077
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
1092
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Surfaces" }),
1093
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("p", { style: { ...note, maxWidth: "44rem" }, children: [
1094
+ "How accent-coloured surfaces stay legible no matter how bold a theme makes its ",
1095
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "accent" }),
1096
+ " token. Filled surfaces pair the background with",
1097
+ " ",
1098
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-text-on-accent" }),
1099
+ "; hover rows use ",
1100
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-hover-accent" }),
1101
+ "; quiet selected/panel surfaces lean on ",
1102
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "muted" }),
1103
+ " and faint",
1104
+ " ",
1105
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "primary" }),
1106
+ " instead of the accent."
1107
+ ] }),
1078
1108
  /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1079
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
1080
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1081
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1082
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "MD" }) }),
1083
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "LG" }) }),
1084
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "XL" }) })
1109
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: sectionHeading2, children: "Filled accent surfaces" }),
1110
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("p", { style: note, children: [
1111
+ "A solid ",
1112
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-bg-accent" }),
1113
+ " fill ",
1114
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("strong", { children: "must" }),
1115
+ " be paired with",
1116
+ " ",
1117
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-text-on-accent" }),
1118
+ " (the theme's ",
1119
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "accentForeground" }),
1120
+ "). A fill without it falls back to the page foreground and washes out on bold accents."
1121
+ ] }),
1122
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.75rem", alignItems: "center" }, children: [
1123
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-bg-accent qt-text-on-accent", style: { padding: "0.125rem 0.5rem", borderRadius: "0.25rem", fontSize: "0.75rem" }, children: "keyword" }),
1124
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-bg-accent qt-text-on-accent", style: { padding: "0.125rem 0.5rem", borderRadius: "0.25rem", fontSize: "0.75rem" }, children: "another keyword" }),
1125
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("kbd", { className: "qt-bg-accent qt-text-on-accent", style: { padding: "0.125rem 0.375rem", borderRadius: "0.25rem", fontSize: "0.75rem" }, children: "\u21B5" })
1085
1126
  ] })
1086
1127
  ] }),
1087
1128
  /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1088
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
1089
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
1090
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1091
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "AB" }) }),
1092
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "CD" }) }),
1093
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "EF" }) })
1129
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("h3", { style: sectionHeading2, children: [
1130
+ "Hover-highlight rows \u2014 ",
1131
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-hover-accent" })
1132
+ ] }),
1133
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("p", { style: note, children: [
1134
+ "For list rows, menu items, and option cards. On hover it paints the accent background and forces the accent foreground onto the row ",
1135
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("em", { children: "and every descendant" }),
1136
+ " \u2014 so children that carry their own colour (the title and the muted subtitle below) flip too, instead of washing out (or, when their colour matches the accent, vanishing). Hover the rows to see it."
1137
+ ] }),
1138
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.25rem", maxWidth: "24rem", border: "1px solid var(--color-border)", borderRadius: "0.5rem", padding: "0.375rem" }, children: [
1139
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-hover-accent", style: { display: "flex", flexDirection: "column", padding: "0.5rem 0.75rem", borderRadius: "0.375rem", cursor: "pointer" }, children: [
1140
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-primary", children: "Compose a reply" }),
1141
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-secondary", style: { fontSize: "0.8125rem" }, children: "Draft a response in this thread" })
1142
+ ] }),
1143
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-hover-accent", style: { display: "flex", flexDirection: "column", padding: "0.5rem 0.75rem", borderRadius: "0.375rem", cursor: "pointer" }, children: [
1144
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-primary", children: "Mark as resolved" }),
1145
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-secondary", style: { fontSize: "0.8125rem" }, children: "Close and archive this item" })
1146
+ ] }),
1147
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-hover-accent", style: { display: "flex", flexDirection: "column", padding: "0.5rem 0.75rem", borderRadius: "0.375rem", cursor: "pointer" }, children: [
1148
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-primary", children: "Delete" }),
1149
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-text-secondary", style: { fontSize: "0.8125rem" }, children: "Remove permanently" })
1150
+ ] })
1094
1151
  ] })
1095
1152
  ] }),
1096
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1097
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
1098
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1099
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
1100
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "CR" }) }),
1101
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
1102
- ] }),
1103
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
1104
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "RD" }) }),
1105
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
1106
- ] }),
1107
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
1108
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
1109
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
1153
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { children: [
1154
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: sectionHeading2, children: "Quiet selected & panel surfaces" }),
1155
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("p", { style: note, children: [
1156
+ "Persistent surfaces (selected cards, informational panels) deliberately avoid the bold accent. Selected states use a faint ",
1157
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-bg-primary/10" }),
1158
+ " tint; informational panels use the neutral ",
1159
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("code", { children: "qt-bg-muted" }),
1160
+ " surface."
1161
+ ] }),
1162
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1163
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-bg-primary/10", style: { padding: "0.75rem 1rem", borderRadius: "0.5rem", border: "1px solid var(--color-primary)", maxWidth: "16rem" }, children: [
1164
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-text-primary", style: { fontWeight: 600 }, children: "Selected option" }),
1165
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-text-secondary", style: { fontSize: "0.8125rem" }, children: "Faint primary tint marks the choice." })
1166
+ ] }),
1167
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-bg-muted", style: { padding: "0.75rem 1rem", borderRadius: "0.5rem", border: "1px solid var(--color-border)", maxWidth: "16rem" }, children: [
1168
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { fontWeight: 600 }, children: "Informational panel" }),
1169
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-text-secondary", style: { fontSize: "0.8125rem" }, children: "Neutral muted surface, never the accent." })
1170
+ ] })
1171
+ ] })
1172
+ ] })
1173
+ ] });
1174
+ };
1175
+
1176
+ // src/stories/components/Avatars.tsx
1177
+ var import_jsx_runtime10 = require("react/jsx-runtime");
1178
+ var Avatars = () => {
1179
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1180
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Avatars" }),
1181
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1182
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Sizes" }),
1183
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1184
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1185
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "MD" }) }),
1186
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-lg", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "LG" }) }),
1187
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-xl", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "XL" }) })
1188
+ ] })
1189
+ ] }),
1190
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1191
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar with Images" }),
1192
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Avatars gracefully fall back to initials when image is unavailable." }),
1193
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1194
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "AB" }) }),
1195
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "CD" }) }),
1196
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "EF" }) })
1197
+ ] })
1198
+ ] }),
1199
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1200
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Shapes" }),
1201
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1202
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1203
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "9999px" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "CR" }) }),
1204
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Circle" })
1205
+ ] }),
1206
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1207
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "RD" }) }),
1208
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Rounded" })
1209
+ ] }),
1210
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1211
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", style: { borderRadius: "var(--radius-sm)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SQ" }) }),
1212
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { marginTop: "0.5rem", fontSize: "0.75rem", color: "var(--color-muted-foreground)", textAlign: "center" }, children: "Square" })
1110
1213
  ] })
1111
1214
  ] })
1112
1215
  ] }),
1113
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1114
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
1115
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "qt-avatar-group", children: [
1116
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1117
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1118
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "C" }) }),
1119
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "D" }) }),
1120
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "+3" }) })
1216
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1217
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Avatar Groups" }),
1218
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-avatar-group", children: [
1219
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1220
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1221
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "C" }) }),
1222
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "D" }) }),
1223
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "+3" }) })
1121
1224
  ] })
1122
1225
  ] }),
1123
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { children: [
1124
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
1125
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1126
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
1127
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "JD" }) }),
1128
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { flex: 1 }, children: [
1129
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { fontWeight: 600 }, children: "John Doe" }),
1130
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
1226
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1227
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Usage in Context" }),
1228
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1229
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem", padding: "0.75rem", backgroundColor: "var(--color-muted)", borderRadius: "var(--radius-lg)" }, children: [
1230
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "JD" }) }),
1231
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { flex: 1 }, children: [
1232
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { fontWeight: 600 }, children: "John Doe" }),
1233
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "john@example.com" })
1131
1234
  ] }),
1132
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
1133
- ] }),
1134
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1135
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1136
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { flex: 1 }, children: [
1137
- /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1138
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
1139
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
1235
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: "qt-badge qt-badge-success", children: "Active" })
1236
+ ] }),
1237
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
1238
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-avatar-fallback", children: "SM" }) }),
1239
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { flex: 1 }, children: [
1240
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1241
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontWeight: 600, fontSize: "0.875rem" }, children: "Sarah Miller" }),
1242
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "2 hours ago" })
1140
1243
  ] }),
1141
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
1244
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontSize: "0.875rem", marginTop: "0.25rem" }, children: "This is a sample comment with an avatar." })
1142
1245
  ] })
1143
1246
  ] })
1144
1247
  ] })
@@ -1148,131 +1251,131 @@ var Avatars = () => {
1148
1251
 
1149
1252
  // src/stories/components/Dialogs.tsx
1150
1253
  var import_react = require("react");
1151
- var import_jsx_runtime10 = require("react/jsx-runtime");
1254
+ var import_jsx_runtime11 = require("react/jsx-runtime");
1152
1255
  var Dialogs = () => {
1153
1256
  const [basicOpen, setBasicOpen] = (0, import_react.useState)(false);
1154
1257
  const [confirmOpen, setConfirmOpen] = (0, import_react.useState)(false);
1155
1258
  const [formOpen, setFormOpen] = (0, import_react.useState)(false);
1156
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1157
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
1158
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1159
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
1160
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
1161
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1162
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
1163
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
1164
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
1165
- ] })
1166
- ] }),
1167
- basicOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1168
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1169
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
1170
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "This is a basic dialog with some content. Dialogs are used to show important information or gather user input." }),
1171
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1259
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1260
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Dialogs & Modals" }),
1261
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1262
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Examples" }),
1263
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Click the buttons below to open different dialog types." }),
1264
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "1rem" }, children: [
1265
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", onClick: () => setBasicOpen(true), children: "Basic Dialog" }),
1266
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(true), children: "Confirmation Dialog" }),
1267
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(true), children: "Form Dialog" })
1268
+ ] })
1269
+ ] }),
1270
+ basicOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setBasicOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1271
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1272
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Basic Dialog" }),
1273
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "This is a basic dialog with some content. Dialogs are used to show important information or gather user input." }),
1274
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setBasicOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1172
1275
  ] }),
1173
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Dialog content area with additional details and information." }) }),
1174
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
1276
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Dialog content area with additional details and information." }) }),
1277
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-footer", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setBasicOpen(false), children: "Got it" }) })
1175
1278
  ] }) }),
1176
- confirmOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1177
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1178
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
1179
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
1180
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1279
+ confirmOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setConfirmOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), children: [
1280
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1281
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Delete Item?" }),
1282
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "Are you sure you want to delete this item? This action cannot be undone." }),
1283
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setConfirmOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1181
1284
  ] }),
1182
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "This will remove the item from your collection permanently." }) }),
1183
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1184
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
1185
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
1285
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "This will remove the item from your collection permanently." }) }),
1286
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1287
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setConfirmOpen(false), children: "Cancel" }),
1288
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-destructive", onClick: () => setConfirmOpen(false), children: "Delete" })
1186
1289
  ] })
1187
1290
  ] }) }),
1188
- formOpen && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
1189
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1190
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Create New Item" }),
1191
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
1192
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1291
+ formOpen && /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-overlay", onClick: () => setFormOpen(false), children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", onClick: (e) => e.stopPropagation(), style: { maxWidth: "28rem" }, children: [
1292
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1293
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Create New Item" }),
1294
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "Fill in the details below to create a new item." }),
1295
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", onClick: () => setFormOpen(false), "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1193
1296
  ] }),
1194
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1195
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1196
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
1197
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
1198
- ] }),
1199
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1200
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
1201
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
1202
- ] }),
1203
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1204
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
1205
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("select", { className: "qt-input qt-select", children: [
1206
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "", children: "Select category..." }),
1207
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "1", children: "Category 1" }),
1208
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "2", children: "Category 2" }),
1209
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("option", { value: "3", children: "Category 3" })
1297
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1298
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1299
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Name" }),
1300
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter name..." })
1301
+ ] }),
1302
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1303
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Description" }),
1304
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("textarea", { className: "qt-input qt-textarea", placeholder: "Enter description...", style: { minHeight: "5rem" } })
1305
+ ] }),
1306
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1307
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Category" }),
1308
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("select", { className: "qt-input qt-select", children: [
1309
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "", children: "Select category..." }),
1310
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "1", children: "Category 1" }),
1311
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "2", children: "Category 2" }),
1312
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("option", { value: "3", children: "Category 3" })
1210
1313
  ] })
1211
1314
  ] })
1212
1315
  ] }) }),
1213
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1214
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
1215
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1316
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1317
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", onClick: () => setFormOpen(false), children: "Cancel" }),
1318
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", onClick: () => setFormOpen(false), children: "Create" })
1216
1319
  ] })
1217
1320
  ] }) }),
1218
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1219
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1220
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1221
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-header", children: [
1222
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1223
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1224
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1225
- ] }),
1226
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1227
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog-footer", children: [
1228
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1229
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1321
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1322
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Structure (Static Preview)" }),
1323
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "2rem", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: "0 auto" }, children: [
1324
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-header", children: [
1325
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Dialog Title" }),
1326
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { className: "qt-dialog-description", children: "This is a dialog with a title and description." }),
1327
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", "aria-label": "Close", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) }) })
1328
+ ] }),
1329
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Dialog content area. This can contain text, forms, or any other content." }) }),
1330
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog-footer", children: [
1331
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-ghost", children: "Secondary Action" }),
1332
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary Action" })
1230
1333
  ] })
1231
1334
  ] }) })
1232
1335
  ] }),
1233
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1234
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1235
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1236
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1237
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1238
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1239
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1240
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Compact dialog for simple confirmations." }) })
1336
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1337
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dialog Sizes" }),
1338
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem" }, children: [
1339
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1340
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Small (max-width: 24rem)" }),
1341
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog", style: { position: "relative", transform: "none", margin: 0, maxWidth: "24rem" }, children: [
1342
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Small Dialog" }) }),
1343
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Compact dialog for simple confirmations." }) })
1241
1344
  ] }) })
1242
1345
  ] }),
1243
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { children: [
1244
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1245
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1246
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1247
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1346
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1347
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { style: { fontSize: "0.875rem", fontWeight: 500, color: "var(--color-muted-foreground)" }, children: "Large (max-width: 42rem)" }),
1348
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { backgroundColor: "var(--color-muted)", padding: "1rem", borderRadius: "var(--radius-lg)", marginTop: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dialog qt-dialog-wide", style: { position: "relative", transform: "none", margin: 0, maxWidth: "42rem" }, children: [
1349
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-header", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { className: "qt-dialog-title", children: "Large Dialog" }) }),
1350
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dialog-body", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { children: "Larger dialog for complex forms or detailed content that needs more space." }) })
1248
1351
  ] }) })
1249
1352
  ] })
1250
1353
  ] })
1251
1354
  ] }),
1252
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1253
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1254
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1255
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1256
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { padding: "0.75rem" }, children: [
1257
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1258
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1355
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1356
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Popover" }),
1357
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1358
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover for popover" }),
1359
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-popover", style: { position: "absolute", left: 0, top: "100%", marginTop: "0.5rem", display: "block" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "0.75rem" }, children: [
1360
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { fontWeight: 600, marginBottom: "0.25rem" }, children: "Popover Title" }),
1361
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: "This is popover content that provides additional context." })
1259
1362
  ] }) })
1260
1363
  ] })
1261
1364
  ] }),
1262
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1263
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1264
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1265
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", children: "Profile" }),
1266
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", children: "Settings" }),
1267
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-separator" }),
1268
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1365
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1366
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Dropdown Menu" }),
1367
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-dropdown", style: { display: "inline-block", position: "relative" }, children: [
1368
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", children: "Profile" }),
1369
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", children: "Settings" }),
1370
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-separator" }),
1371
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-dropdown-item", style: { color: "var(--color-destructive)" }, children: "Sign Out" })
1269
1372
  ] })
1270
1373
  ] }),
1271
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { children: [
1272
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1273
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1274
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1275
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1374
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1375
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tooltip" }),
1376
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "2rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { position: "relative", display: "inline-block", marginTop: "2rem" }, children: [
1377
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button qt-button-secondary", children: "Hover me" }),
1378
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-tooltip", style: { position: "absolute", left: "50%", transform: "translateX(-50%)", bottom: "100%", marginBottom: "0.5rem", display: "block" }, children: "Helpful tooltip text" })
1276
1379
  ] }) })
1277
1380
  ] })
1278
1381
  ] });
@@ -1280,15 +1383,15 @@ var Dialogs = () => {
1280
1383
 
1281
1384
  // src/stories/components/Tabs.tsx
1282
1385
  var import_react2 = require("react");
1283
- var import_jsx_runtime11 = require("react/jsx-runtime");
1386
+ var import_jsx_runtime12 = require("react/jsx-runtime");
1284
1387
  var Tabs = () => {
1285
1388
  const [activeTab, setActiveTab] = (0, import_react2.useState)("tab1");
1286
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1287
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1288
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1289
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1290
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-group", children: [
1291
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1389
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1390
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Tabs & Navigation" }),
1391
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1392
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Tabs" }),
1393
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-group", children: [
1394
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1292
1395
  "button",
1293
1396
  {
1294
1397
  className: `qt-tab ${activeTab === "tab1" ? "qt-tab-active" : ""}`,
@@ -1296,7 +1399,7 @@ var Tabs = () => {
1296
1399
  children: "Account"
1297
1400
  }
1298
1401
  ),
1299
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1402
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1300
1403
  "button",
1301
1404
  {
1302
1405
  className: `qt-tab ${activeTab === "tab2" ? "qt-tab-active" : ""}`,
@@ -1304,7 +1407,7 @@ var Tabs = () => {
1304
1407
  children: "Settings"
1305
1408
  }
1306
1409
  ),
1307
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1410
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1308
1411
  "button",
1309
1412
  {
1310
1413
  className: `qt-tab ${activeTab === "tab3" ? "qt-tab-active" : ""}`,
@@ -1313,56 +1416,56 @@ var Tabs = () => {
1313
1416
  }
1314
1417
  )
1315
1418
  ] }),
1316
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { children: [
1317
- activeTab === "tab1" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1318
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1319
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1320
- ] }),
1321
- activeTab === "tab2" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1322
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1323
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1324
- ] }),
1325
- activeTab === "tab3" && /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-content", children: [
1326
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1327
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1419
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1420
+ activeTab === "tab1" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1421
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Account Settings" }),
1422
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Manage your account settings and preferences." })
1423
+ ] }),
1424
+ activeTab === "tab2" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1425
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "General Settings" }),
1426
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Configure general application settings." })
1427
+ ] }),
1428
+ activeTab === "tab3" && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-content", children: [
1429
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h4", { style: { fontWeight: 600, marginBottom: "0.5rem" }, children: "Notification Preferences" }),
1430
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)" }, children: "Choose how you want to receive notifications." })
1328
1431
  ] })
1329
1432
  ] })
1330
1433
  ] }),
1331
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1332
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1333
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-tab-group", children: [
1334
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1335
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" }) }),
1434
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1435
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Tabs with Icons" }),
1436
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-tab-group", children: [
1437
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab qt-tab-active", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1438
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" }) }),
1336
1439
  "Home"
1337
1440
  ] }),
1338
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1339
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" }) }),
1441
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1442
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" }) }),
1340
1443
  "Profile"
1341
1444
  ] }),
1342
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1343
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1344
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1345
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1445
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-tab", style: { display: "inline-flex", alignItems: "center", gap: "0.5rem" }, children: [
1446
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1447
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1448
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1346
1449
  ] }),
1347
1450
  "Settings"
1348
1451
  ] })
1349
1452
  ] })
1350
1453
  ] }),
1351
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("section", { children: [
1352
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1353
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "qt-navbar", children: [
1354
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1355
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1356
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1357
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1358
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1359
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1360
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1454
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { children: [
1455
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Navigation Bar" }),
1456
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-navbar", children: [
1457
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "1rem" }, children: [
1458
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontWeight: 700, fontSize: "1.125rem" }, children: "Quilltap" }),
1459
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("nav", { style: { display: "flex", gap: "0.25rem" }, children: [
1460
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link qt-navbar-link-active", children: "Dashboard" }),
1461
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Characters" }),
1462
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Chats" }),
1463
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("a", { href: "#", className: "qt-navbar-link", children: "Settings" })
1361
1464
  ] })
1362
1465
  ] }),
1363
- /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1364
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" }) }) }),
1365
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("div", { className: "qt-avatar-fallback", children: "U" }) })
1466
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
1467
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Notifications", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9" }) }) }),
1468
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "U" }) })
1366
1469
  ] })
1367
1470
  ] })
1368
1471
  ] })
@@ -1370,215 +1473,243 @@ var Tabs = () => {
1370
1473
  };
1371
1474
 
1372
1475
  // src/stories/components/Chat.tsx
1373
- var import_jsx_runtime12 = require("react/jsx-runtime");
1476
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1374
1477
  var Chat = () => {
1375
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1376
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1377
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1378
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1379
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1380
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1381
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1382
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1383
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1478
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1479
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1480
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1481
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Message Bubbles" }),
1482
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1483
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1484
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1485
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1486
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1384
1487
  ] }),
1385
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! How are you today?" }) })
1488
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! How are you today?" }) })
1386
1489
  ] }) }),
1387
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1388
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1389
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1390
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1391
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1392
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1490
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1491
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1492
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1493
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1494
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1495
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1393
1496
  ] }),
1394
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1497
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1395
1498
  ] })
1396
1499
  ] }),
1397
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1398
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1399
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1400
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-header", children: [
1401
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1402
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1500
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1501
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1502
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1503
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-header", children: [
1504
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1505
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1403
1506
  ] }),
1404
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-content", children: [
1405
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Here's some information you might find helpful:" }),
1406
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1407
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "First point of interest" }),
1408
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "Second important detail" }),
1409
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("li", { children: "Third relevant fact" })
1507
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-content", children: [
1508
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Here's some information you might find helpful:" }),
1509
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1510
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "First point of interest" }),
1511
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "Second important detail" }),
1512
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("li", { children: "Third relevant fact" })
1410
1513
  ] }),
1411
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1514
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1412
1515
  ] }),
1413
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-actions", children: [
1414
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" }) }) }),
1415
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" }) }) })
1516
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-actions", children: [
1517
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" }) }) }),
1518
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" }) }) })
1416
1519
  ] })
1417
1520
  ] })
1418
1521
  ] }),
1419
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1420
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1421
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1422
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1522
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1523
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1524
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1525
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1423
1526
  ] }) })
1424
1527
  ] })
1425
1528
  ] }),
1426
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1427
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1428
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1429
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1430
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1431
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1432
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1433
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1434
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1529
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1530
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Character Messages" }),
1531
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1532
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1533
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1534
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1535
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1536
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1537
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1435
1538
  ] })
1436
1539
  ] }),
1437
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1438
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1439
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1440
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1441
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1540
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1541
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1542
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1543
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1544
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1442
1545
  ] })
1443
1546
  ] })
1444
1547
  ] })
1445
1548
  ] }),
1446
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1447
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1448
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Special text formatting for roleplay-style messages with narration, inner thoughts, and out-of-character text." }),
1449
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1450
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1451
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1452
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1453
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1454
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("p", { children: [
1549
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1550
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay Annotations" }),
1551
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Special text formatting for roleplay-style messages with narration, inner thoughts, and out-of-character text." }),
1552
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1553
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1554
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1555
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1556
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1557
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { children: [
1455
1558
  '"Hello there!" ',
1456
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1559
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1457
1560
  ] }) })
1458
1561
  ] })
1459
1562
  ] }),
1460
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1461
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1462
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1463
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1464
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("p", { children: [
1465
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1563
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1564
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1565
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1566
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1567
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { children: [
1568
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1466
1569
  " ",
1467
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1570
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1468
1571
  ] }) })
1469
1572
  ] })
1470
1573
  ] }),
1471
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1472
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1473
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1474
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1475
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1574
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1575
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1576
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1577
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1578
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1476
1579
  ] })
1477
1580
  ] })
1478
1581
  ] })
1479
1582
  ] }),
1480
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1481
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1482
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1483
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1484
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1485
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1486
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1583
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1584
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Roleplay-Template Styles" }),
1585
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Style classes a roleplay-template delimiter can be assigned: four high-contrast chips (each theme picks its own four hues) plus a semantic set. Add-on flourishes (bold, italic, reverse, underline, border, font) compose on top." }),
1586
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-content", style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "36rem" }, children: [
1587
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1588
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-1", children: "Style 1" }),
1589
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-2", children: "Style 2" }),
1590
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-3", children: "Style 3" }),
1591
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-4", children: "Style 4" })
1592
+ ] }),
1593
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1594
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-danger", children: "Danger" }),
1595
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-warning", children: "Warning" }),
1596
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-success", children: "Success" }),
1597
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-info", children: "Info" }),
1598
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-muted", children: "Muted" }),
1599
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-code", children: "code" })
1600
+ ] }),
1601
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1602
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-2 qt-rp-bold", children: "Bold" }),
1603
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-3 qt-rp-italic", children: "Italic" }),
1604
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-1 qt-rp-reverse", children: "Reverse" }),
1605
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-4 qt-rp-underline-double", children: "Underline" }),
1606
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-info qt-rp-border-dashed", children: "Dashed border" }),
1607
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-roleplay-muted qt-rp-font-serif", children: "Serif font" })
1608
+ ] })
1609
+ ] })
1610
+ ] }),
1611
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1612
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Whisper Messages" }),
1613
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Private messages visible only to sender and recipient. Overheard whispers have a faded style." }),
1614
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1615
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1616
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1617
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1487
1618
  ] }) }),
1488
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1489
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1490
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1619
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1620
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1621
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1491
1622
  ] }) })
1492
1623
  ] })
1493
1624
  ] }),
1494
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1495
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1496
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inner thoughts and actions from characters in silent mode. They can think and act physically, but cannot speak aloud. Distinguished from whispers by dotted borders and sage/teal tones." }),
1497
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1498
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1499
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1500
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1625
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1626
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Silent Messages" }),
1627
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inner thoughts and actions from characters in silent mode. They can think and act physically, but cannot speak aloud. Distinguished from whispers by dotted borders and sage/teal tones." }),
1628
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1629
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1630
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1631
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1501
1632
  ] }) }),
1502
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1503
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1504
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1633
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1634
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1635
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1505
1636
  ] }) })
1506
1637
  ] })
1507
1638
  ] }),
1508
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1509
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1510
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inline summaries of outfit changes (equip, unequip, gift). Distinguished from whispers (dashed purple) and silent messages (dotted teal) by a double border and warm amber/gold tones." }),
1511
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1512
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1513
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1514
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1515
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1516
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1639
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1640
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wardrobe Action Notices" }),
1641
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Inline summaries of outfit changes (equip, unequip, gift). Distinguished from whispers (dashed purple) and silent messages (dotted teal) by a double border and warm amber/gold tones." }),
1642
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1643
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1644
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1645
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1646
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1647
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1517
1648
  ] })
1518
1649
  ] }),
1519
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1520
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1521
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1522
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Removed item from the footwear slot." }),
1523
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1650
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1651
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1652
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1653
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Removed item from the footwear slot." }),
1654
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1524
1655
  ] })
1525
1656
  ] }),
1526
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1527
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1528
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1529
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1530
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Marcus put it on immediately." })
1657
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1658
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1659
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1660
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1661
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: "Marcus put it on immediately." })
1531
1662
  ] })
1532
1663
  ] })
1533
1664
  ] })
1534
1665
  ] }),
1535
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1536
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1537
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1538
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1539
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1540
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1541
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1542
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { flex: 1 } }),
1543
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1544
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1545
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1666
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1667
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Toolbar" }),
1668
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1669
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1670
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1671
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1672
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1673
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { flex: 1 } }),
1674
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1675
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1676
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1546
1677
  ] }) })
1547
1678
  ] })
1548
1679
  ] }),
1549
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1550
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1551
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1552
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1553
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1554
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1680
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1681
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "RP Annotation Buttons" }),
1682
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1683
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1684
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1685
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1555
1686
  "Narration"
1556
1687
  ] }),
1557
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1558
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" }) }),
1688
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1689
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" }) }),
1559
1690
  "Internal"
1560
1691
  ] }),
1561
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1562
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" }) }),
1692
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1693
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z" }) }),
1563
1694
  "OOC"
1564
1695
  ] })
1565
1696
  ] })
1566
1697
  ] }),
1567
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1568
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1569
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1570
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1571
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1572
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1573
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { children: "document.pdf" }),
1574
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1698
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1699
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Attachments" }),
1700
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1701
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1702
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1703
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1704
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { children: "document.pdf" }),
1705
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1575
1706
  ] }),
1576
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1577
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { children: "image.png" }),
1578
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1707
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1708
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { children: "image.png" }),
1709
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1579
1710
  ] })
1580
1711
  ] }),
1581
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1712
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1582
1713
  "textarea",
1583
1714
  {
1584
1715
  className: "qt-chat-composer-input",
@@ -1587,17 +1718,17 @@ var Chat = () => {
1587
1718
  style: { width: "100%", padding: "0.5rem", marginBottom: "0.5rem" }
1588
1719
  }
1589
1720
  ),
1590
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1591
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1592
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1721
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1722
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1723
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1593
1724
  ] })
1594
1725
  ] })
1595
1726
  ] }),
1596
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1597
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1598
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1599
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13" }) }) }),
1600
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1727
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1728
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Input" }),
1729
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1730
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.172 7l-6.586 6.586a2 2 0 102.828 2.828l6.414-6.586a4 4 0 00-5.656-5.656l-6.415 6.585a6 6 0 108.486 8.486L20.5 13" }) }) }),
1731
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1601
1732
  "textarea",
1602
1733
  {
1603
1734
  className: "qt-chat-composer-input qt-input",
@@ -1605,65 +1736,65 @@ var Chat = () => {
1605
1736
  rows: 1
1606
1737
  }
1607
1738
  ),
1608
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1739
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1609
1740
  ] }) })
1610
1741
  ] }),
1611
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1612
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1613
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1614
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1615
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-typing-indicator", children: [
1616
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {}),
1617
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {}),
1618
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", {})
1742
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1743
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Typing Indicator" }),
1744
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1745
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1746
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-typing-indicator", children: [
1747
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {}),
1748
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {}),
1749
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", {})
1619
1750
  ] }) })
1620
1751
  ] })
1621
1752
  ] }),
1622
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1623
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1624
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1625
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1626
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-chat-continue-button", children: [
1627
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1628
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" }),
1629
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1753
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1754
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Control Buttons" }),
1755
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1756
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1757
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-chat-continue-button", children: [
1758
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1759
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" }),
1760
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1630
1761
  ] }),
1631
1762
  "Continue"
1632
1763
  ] }),
1633
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("button", { className: "qt-chat-stop-button", children: [
1634
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1635
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1636
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z" })
1764
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("button", { className: "qt-chat-stop-button", children: [
1765
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1766
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1767
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9 10a1 1 0 011-1h4a1 1 0 011 1v4a1 1 0 01-1 1h-4a1 1 0 01-1-1v-4z" })
1637
1768
  ] }),
1638
1769
  "Stop"
1639
1770
  ] })
1640
1771
  ] })
1641
1772
  ] }),
1642
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("section", { children: [
1643
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1644
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1645
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1646
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1647
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1648
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
1649
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1650
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1773
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { children: [
1774
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Full Chat Layout" }),
1775
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1776
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1777
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1778
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1779
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { children: [
1780
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1781
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1651
1782
  ] })
1652
1783
  ] }),
1653
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1654
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1655
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1784
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1785
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" }),
1786
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1656
1787
  ] }) }) })
1657
1788
  ] }),
1658
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1659
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1660
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1661
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "Hello! How can I help you today?" }) })
1789
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1790
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1791
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1792
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "Hello! How can I help you today?" }) })
1662
1793
  ] }),
1663
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1794
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1664
1795
  ] }),
1665
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1666
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1796
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1797
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1667
1798
  "textarea",
1668
1799
  {
1669
1800
  className: "qt-chat-composer-input qt-input",
@@ -1671,7 +1802,7 @@ var Chat = () => {
1671
1802
  rows: 1
1672
1803
  }
1673
1804
  ),
1674
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1805
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1675
1806
  ] })
1676
1807
  ] })
1677
1808
  ] })
@@ -1679,7 +1810,7 @@ var Chat = () => {
1679
1810
  };
1680
1811
 
1681
1812
  // src/stories/components/Terminal.tsx
1682
- var import_jsx_runtime13 = require("react/jsx-runtime");
1813
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1683
1814
  var sampleOutput = `$ git status
1684
1815
  On branch main
1685
1816
  Your branch is up to date with 'origin/main'.
@@ -1691,117 +1822,117 @@ $ npm run dev
1691
1822
  - Local: http://localhost:3000
1692
1823
  - ready started server on 0.0.0.0:3000`;
1693
1824
  var Terminal = () => {
1694
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1695
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1696
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1825
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1826
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1827
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1697
1828
  "The terminal carries its own identity. By default it stays dark in both light and dark themes \u2014 but a theme can override",
1698
1829
  " ",
1699
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-bg" }),
1830
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-bg" }),
1700
1831
  ", ",
1701
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-fg" }),
1832
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-fg" }),
1702
1833
  ", and the",
1703
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1834
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1704
1835
  " tokens to reskin every surface below."
1705
1836
  ] }),
1706
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1707
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1708
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1709
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-embed" }),
1837
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1838
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "In-chat embed" }),
1839
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1840
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-embed" }),
1710
1841
  " wraps the embed card; the header and footer strips inherit the surrounding theme so they nest cleanly with chat bubbles."
1711
1842
  ] }),
1712
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1713
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed-header", children: [
1714
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1715
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1716
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1717
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1843
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1844
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed-header", children: [
1845
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1846
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1847
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1848
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1718
1849
  ] })
1719
1850
  ] }),
1720
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-surface", style: { padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1851
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-surface", style: { padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1721
1852
  ] })
1722
1853
  ] }),
1723
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1724
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Embed footer (handed off to Terminal Mode pane)" }),
1725
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1726
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1727
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
1728
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1729
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1854
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1855
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Embed footer (handed off to Terminal Mode pane)" }),
1856
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1857
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1858
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
1859
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1860
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1730
1861
  ] })
1731
1862
  ] })
1732
1863
  ] }),
1733
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1734
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1735
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1864
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1865
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Pop-out page chrome" }),
1866
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1736
1867
  "The full-screen pop-out page uses",
1737
1868
  " ",
1738
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-popout-page" }),
1869
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-popout-page" }),
1739
1870
  " as the outer canvas and",
1740
1871
  " ",
1741
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-popout-header" }),
1872
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-popout-header" }),
1742
1873
  " for the breadcrumb bar."
1743
1874
  ] }),
1744
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-popout-page", style: { borderRadius: "0.5rem", overflow: "hidden", border: "1px solid var(--color-border)", height: "240px", display: "flex", flexDirection: "column" }, children: [
1745
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "qt-terminal-popout-header", children: [
1746
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1747
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1748
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1749
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
1750
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1875
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-popout-page", style: { borderRadius: "0.5rem", overflow: "hidden", border: "1px solid var(--color-border)", height: "240px", display: "flex", flexDirection: "column" }, children: [
1876
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-terminal-popout-header", children: [
1877
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1878
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1879
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1880
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
1881
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1751
1882
  ] }),
1752
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1883
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1753
1884
  ] }),
1754
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { flex: 1, padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1885
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { flex: 1, padding: "0.75rem", fontFamily: "var(--qt-font-mono, monospace)", color: "var(--qt-terminal-fg)", fontSize: "0.8125rem", whiteSpace: "pre-wrap" }, children: sampleOutput })
1755
1886
  ] })
1756
1887
  ] }),
1757
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { children: [
1758
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1759
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1888
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { children: [
1889
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Session-exited overlay" }),
1890
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1760
1891
  "When the PTY exits but the terminal stays mounted, the",
1761
1892
  " ",
1762
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("code", { children: ".qt-terminal-closed-badge" }),
1893
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-terminal-closed-badge" }),
1763
1894
  " overlay marks it."
1764
1895
  ] }),
1765
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1896
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1766
1897
  ] })
1767
1898
  ] });
1768
1899
  };
1769
1900
 
1770
1901
  // src/stories/components/FilePreview.tsx
1771
- var import_jsx_runtime14 = require("react/jsx-runtime");
1902
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1772
1903
  var FilePreview = () => {
1773
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1774
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1775
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1776
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1777
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1778
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-scroll" }),
1904
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1905
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1906
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1907
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Scroll Container" }),
1908
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1909
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-scroll" }),
1779
1910
  " - Scrollable container for file content with configurable max height."
1780
1911
  ] }),
1781
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
1912
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-scroll", style: { height: "150px", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
1782
1913
  "Line ",
1783
1914
  i + 1,
1784
1915
  ": Lorem ipsum dolor sit amet, consectetur adipiscing elit."
1785
1916
  ] }, i)) }) })
1786
1917
  ] }),
1787
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1788
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1789
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1790
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-panel" }),
1918
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1919
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Content Panel" }),
1920
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1921
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-panel" }),
1791
1922
  " - Background panel for rendered markdown content."
1792
1923
  ] }),
1793
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-panel", children: [
1794
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1795
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1924
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-panel", children: [
1925
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1926
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1796
1927
  ] })
1797
1928
  ] }),
1798
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1799
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1800
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1801
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-code" }),
1929
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1930
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Code Block" }),
1931
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1932
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-code" }),
1802
1933
  " - Styled code block for plain text and source files with word wrap."
1803
1934
  ] }),
1804
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1935
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1805
1936
  return \`Hello, \${name}!\`;
1806
1937
  }
1807
1938
 
@@ -1809,133 +1940,133 @@ var FilePreview = () => {
1809
1940
  const message = greet("World");
1810
1941
  console.log(message);` })
1811
1942
  ] }),
1812
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1813
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1814
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1815
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-loading" }),
1943
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1944
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading State" }),
1945
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1946
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-loading" }),
1816
1947
  " + ",
1817
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-loading-text" }),
1948
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-loading-text" }),
1818
1949
  " - Loading indicator."
1819
1950
  ] }),
1820
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1951
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
1821
1952
  ] }),
1822
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1823
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1824
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1825
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-empty" }),
1953
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1954
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty / Error State" }),
1955
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1956
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-empty" }),
1826
1957
  " + ",
1827
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
1958
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
1828
1959
  " - Empty or error state display."
1829
1960
  ] }),
1830
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1831
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1832
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1833
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "No content available" })
1961
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
1962
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1963
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
1964
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "No content available" })
1834
1965
  ] }) }),
1835
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1836
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1837
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Failed to load file" })
1966
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
1967
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
1968
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Failed to load file" })
1838
1969
  ] }) })
1839
1970
  ] })
1840
1971
  ] }),
1841
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1842
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1843
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1844
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-wikilink" }),
1972
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1973
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Wikilinks" }),
1974
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1975
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-wikilink" }),
1845
1976
  " + ",
1846
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: ".qt-wikilink-broken" }),
1977
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-wikilink-broken" }),
1847
1978
  " - Internal document links in markdown."
1848
1979
  ] }),
1849
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
1980
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
1850
1981
  "This document references ",
1851
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1982
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
1852
1983
  " and links to ",
1853
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1984
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
1854
1985
  ". There's also a ",
1855
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1986
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
1856
1987
  " that doesn't exist yet."
1857
1988
  ] }) })
1858
1989
  ] }),
1859
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1860
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1861
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1990
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1991
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "CSS Variables" }),
1992
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
1862
1993
  { name: "--qt-file-preview-max-height", value: "70vh", desc: "Max height of scroll container" },
1863
1994
  { name: "--qt-file-preview-min-height", value: "300px", desc: "Min height of loading/empty states" },
1864
1995
  { name: "--qt-file-preview-panel-bg", value: "muted/30%", desc: "Content panel background" },
1865
1996
  { name: "--qt-code-bg", value: "muted", desc: "Code block background" },
1866
1997
  { name: "--qt-code-fg", value: "foreground", desc: "Code block text color" },
1867
1998
  { name: "--qt-code-font", value: "monospace", desc: "Code block font family" }
1868
- ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
1869
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
1870
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1999
+ ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
2000
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
2001
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
1871
2002
  "Default: ",
1872
2003
  value
1873
2004
  ] }),
1874
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
2005
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
1875
2006
  ] }, name)) })
1876
2007
  ] })
1877
2008
  ] });
1878
2009
  };
1879
2010
 
1880
2011
  // src/stories/components/ThemeComparison.tsx
1881
- var import_jsx_runtime15 = require("react/jsx-runtime");
2012
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1882
2013
  var ThemePanel = ({ title, description }) => {
1883
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
1884
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
1885
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
1886
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
1887
- ] }),
1888
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
1889
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-header", children: [
1890
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
1891
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
2014
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
2015
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
2016
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
2017
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
2018
+ ] }),
2019
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
2020
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-header", children: [
2021
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
2022
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
1892
2023
  ] }),
1893
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-body", children: [
1894
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
1895
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1896
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
1897
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
1898
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
2024
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-body", children: [
2025
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
2026
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
2027
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2028
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2029
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
1899
2030
  ] })
1900
2031
  ] }),
1901
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-card-footer", children: [
1902
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
1903
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
2032
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-card-footer", children: [
2033
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
2034
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
1904
2035
  ] })
1905
2036
  ] }),
1906
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
1907
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1908
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
1909
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
2037
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
2038
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2039
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
2040
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
1910
2041
  ] }),
1911
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
1912
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
1913
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("select", { className: "qt-input qt-select", children: [
1914
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 1" }),
1915
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 2" })
2042
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2043
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
2044
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("select", { className: "qt-input qt-select", children: [
2045
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 1" }),
2046
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 2" })
1916
2047
  ] })
1917
2048
  ] }),
1918
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1919
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
1920
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
2049
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2050
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
2051
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
1921
2052
  ] })
1922
2053
  ] }),
1923
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
1924
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1925
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1926
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
2054
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2055
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2056
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
2057
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
1927
2058
  ] }),
1928
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
2059
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
1929
2060
  ] })
1930
2061
  ] });
1931
2062
  };
1932
2063
  var ThemeComparison = () => {
1933
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1934
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
1935
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1.5rem" }, children: "Compare your custom theme against the default Quilltap theme. Use the theme toggle above to switch between themes." }),
1936
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1937
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
1938
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2064
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2065
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
2066
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1.5rem" }, children: "Compare your custom theme against the default Quilltap theme. Use the theme toggle above to switch between themes." }),
2067
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2068
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Current Theme Preview" }),
2069
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1939
2070
  ThemePanel,
1940
2071
  {
1941
2072
  title: "Active Theme",
@@ -1943,9 +2074,9 @@ var ThemeComparison = () => {
1943
2074
  }
1944
2075
  )
1945
2076
  ] }),
1946
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1947
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
1948
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2077
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2078
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Key Theme Colors" }),
2079
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1949
2080
  { name: "Background", var: "--color-background" },
1950
2081
  { name: "Foreground", var: "--color-foreground" },
1951
2082
  { name: "Card", var: "--color-card" },
@@ -1954,8 +2085,8 @@ var ThemeComparison = () => {
1954
2085
  { name: "Muted", var: "--color-muted" },
1955
2086
  { name: "Accent", var: "--color-accent" },
1956
2087
  { name: "Border", var: "--color-border" }
1957
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { textAlign: "center" }, children: [
1958
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2088
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { textAlign: "center" }, children: [
2089
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1959
2090
  "div",
1960
2091
  {
1961
2092
  style: {
@@ -1967,17 +2098,17 @@ var ThemeComparison = () => {
1967
2098
  }
1968
2099
  }
1969
2100
  ),
1970
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2101
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1971
2102
  ] }, cssVar)) })
1972
2103
  ] }),
1973
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1974
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
1975
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2104
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2105
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Semantic Colors" }),
2106
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
1976
2107
  { name: "Destructive", var: "--color-destructive" },
1977
2108
  { name: "Success", var: "--color-success" },
1978
2109
  { name: "Warning", var: "--color-warning" }
1979
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { textAlign: "center" }, children: [
1980
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2110
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { textAlign: "center" }, children: [
2111
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1981
2112
  "div",
1982
2113
  {
1983
2114
  style: {
@@ -1989,50 +2120,50 @@ var ThemeComparison = () => {
1989
2120
  }
1990
2121
  }
1991
2122
  ),
1992
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2123
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
1993
2124
  ] }, cssVar)) })
1994
2125
  ] }),
1995
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { children: [
1996
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
1997
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
1998
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
1999
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2000
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
2001
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
2002
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
2003
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
2004
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
2126
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { children: [
2127
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Component Showcase" }),
2128
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2129
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
2130
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2131
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
2132
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
2133
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
2134
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
2135
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
2005
2136
  ] })
2006
2137
  ] }),
2007
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2008
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
2009
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2010
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
2011
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2012
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2013
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
2014
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
2015
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
2138
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2139
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
2140
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2141
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
2142
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2143
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2144
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
2145
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
2146
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
2016
2147
  ] })
2017
2148
  ] }),
2018
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2019
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
2020
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2021
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
2022
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
2023
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
2024
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
2149
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2150
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
2151
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2152
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
2153
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { children: [
2154
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
2155
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
2025
2156
  ] })
2026
2157
  ] }) }) })
2027
2158
  ] }),
2028
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
2029
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
2030
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
2031
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
2032
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
2033
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Select option" }),
2034
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 1" }),
2035
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("option", { children: "Option 2" })
2159
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { children: [
2160
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
2161
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
2162
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
2163
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
2164
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Select option" }),
2165
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 1" }),
2166
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("option", { children: "Option 2" })
2036
2167
  ] })
2037
2168
  ] })
2038
2169
  ] })
@@ -2041,125 +2172,125 @@ var ThemeComparison = () => {
2041
2172
  };
2042
2173
 
2043
2174
  // src/stories/components/EmptyState.tsx
2044
- var import_jsx_runtime16 = require("react/jsx-runtime");
2175
+ var import_jsx_runtime17 = require("react/jsx-runtime");
2045
2176
  var EmptyState = () => {
2046
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2047
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2048
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2049
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
2050
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
2051
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" }) }) }),
2052
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2053
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2177
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2178
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2179
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2180
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Basic Empty State" }),
2181
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2182
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4" }) }) }),
2183
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2184
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2054
2185
  ] })
2055
2186
  ] }),
2056
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2057
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
2058
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
2059
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" }) }) }),
2060
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
2061
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2062
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2187
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2188
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Empty State with Action" }),
2189
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2190
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" }) }) }),
2191
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
2192
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2193
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2063
2194
  ] })
2064
2195
  ] }),
2065
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2066
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
2067
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
2068
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
2069
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
2070
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2071
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2196
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2197
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Search Empty State" }),
2198
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2199
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" }) }) }),
2200
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
2201
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2202
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2072
2203
  ] })
2073
2204
  ] }),
2074
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { children: [
2075
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
2076
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-empty-state", children: [
2077
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }) }),
2078
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2079
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2080
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2205
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { children: [
2206
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Error Empty State" }),
2207
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-empty-state", children: [
2208
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" }) }) }),
2209
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2210
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2211
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2081
2212
  ] })
2082
2213
  ] })
2083
2214
  ] });
2084
2215
  };
2085
2216
 
2086
2217
  // src/stories/components/Loading.tsx
2087
- var import_jsx_runtime17 = require("react/jsx-runtime");
2218
+ var import_jsx_runtime18 = require("react/jsx-runtime");
2088
2219
  var Loading = () => {
2089
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2090
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2091
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2092
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
2093
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2094
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
2095
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2096
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2097
- ] }),
2098
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
2099
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2100
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2101
- ] }),
2102
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
2103
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2104
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2220
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2221
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2222
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2223
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
2224
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2225
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2226
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2227
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2228
+ ] }),
2229
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2230
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2231
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2232
+ ] }),
2233
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2234
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2235
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2105
2236
  ] })
2106
2237
  ] })
2107
2238
  ] }),
2108
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2109
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2110
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2111
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2112
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2113
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2239
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2240
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2241
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2242
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2243
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2244
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2114
2245
  ] })
2115
2246
  ] }),
2116
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2117
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2118
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2119
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2120
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2121
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2122
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2123
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2247
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2248
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2249
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2250
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2251
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2252
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2253
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2254
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2124
2255
  ] })
2125
2256
  ] }),
2126
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2127
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2128
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2129
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2257
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2258
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2259
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2260
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2130
2261
  ] })
2131
2262
  ] })
2132
2263
  ] }),
2133
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2134
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2135
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2136
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2137
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2138
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2139
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2140
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2141
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2142
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2264
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2265
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2266
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2267
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2268
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2269
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2270
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2271
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2272
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2273
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2143
2274
  ] }) })
2144
2275
  ] })
2145
2276
  ] }) })
2146
2277
  ] }),
2147
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2148
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2149
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2150
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2151
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2278
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2279
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2280
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2281
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2282
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2152
2283
  ] }, i)) })
2153
2284
  ] }),
2154
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { children: [
2155
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2156
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2157
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2158
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2285
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2286
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2287
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2288
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2289
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2159
2290
  "Loading..."
2160
2291
  ] }),
2161
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2162
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2292
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2293
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2163
2294
  "Saving..."
2164
2295
  ] })
2165
2296
  ] })
@@ -2168,130 +2299,130 @@ var Loading = () => {
2168
2299
  };
2169
2300
 
2170
2301
  // src/stories/components/Participant.tsx
2171
- var import_jsx_runtime18 = require("react/jsx-runtime");
2302
+ var import_jsx_runtime19 = require("react/jsx-runtime");
2172
2303
  var Participant = () => {
2173
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2174
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2175
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2176
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2177
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2178
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2179
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2180
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2181
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2182
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2304
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2305
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2306
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2307
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2308
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2309
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2310
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2311
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2312
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2313
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2183
2314
  ] })
2184
2315
  ] }) }),
2185
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2186
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2187
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2188
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2189
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2316
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2317
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2318
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2319
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2320
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2190
2321
  ] })
2191
2322
  ] }) }),
2192
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2193
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2194
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2195
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2196
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2323
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2324
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2325
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2326
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2327
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2197
2328
  ] })
2198
2329
  ] }) })
2199
2330
  ] })
2200
2331
  ] }),
2201
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2202
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2203
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Characters can be active, silent (thinking but not speaking), absent (away from the scene), or removed." }),
2204
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2205
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2206
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2207
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2208
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2209
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2332
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2333
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2334
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Characters can be active, silent (thinking but not speaking), absent (away from the scene), or removed." }),
2335
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2336
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2337
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2338
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2339
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2340
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2210
2341
  ] })
2211
2342
  ] }) }),
2212
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2213
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2214
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2215
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M16.5 12A4.5 4.5 0 0 0 12 7.5v4.09l3.13 3.13A4.46 4.46 0 0 0 16.5 12ZM19 12c0 1.68-.59 3.22-1.57 4.43L21 20l-1.41 1.41-18-18L3 2l4.57 4.57A7.97 7.97 0 0 1 12 4c4.42 0 8 3.58 8 8Zm-7-8a6 6 0 0 0-6 6c0 1.33.44 2.56 1.17 3.56L5 11.44A7.94 7.94 0 0 1 4 8" }) }) })
2343
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2344
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2345
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2346
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M16.5 12A4.5 4.5 0 0 0 12 7.5v4.09l3.13 3.13A4.46 4.46 0 0 0 16.5 12ZM19 12c0 1.68-.59 3.22-1.57 4.43L21 20l-1.41 1.41-18-18L3 2l4.57 4.57A7.97 7.97 0 0 1 12 4c4.42 0 8 3.58 8 8Zm-7-8a6 6 0 0 0-6 6c0 1.33.44 2.56 1.17 3.56L5 11.44A7.94 7.94 0 0 1 4 8" }) }) })
2216
2347
  ] }),
2217
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2218
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2219
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2220
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2348
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2349
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2350
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2351
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2221
2352
  ] }),
2222
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2353
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2223
2354
  ] })
2224
2355
  ] }) }),
2225
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2226
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2227
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2228
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2356
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2357
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2358
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2359
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2229
2360
  ] }),
2230
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2231
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2232
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2233
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2361
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2362
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2363
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2364
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2234
2365
  ] }),
2235
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2366
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2236
2367
  ] })
2237
2368
  ] }) }),
2238
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2239
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2240
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2241
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2242
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2369
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2370
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2371
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2372
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2373
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2243
2374
  ] })
2244
2375
  ] }) })
2245
2376
  ] })
2246
2377
  ] }),
2247
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2248
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2249
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2250
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2251
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2252
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2253
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2254
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2255
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2256
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2378
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2379
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2380
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2381
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2382
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2383
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2384
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2385
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2386
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2387
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2257
2388
  ] }) }),
2258
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2259
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2260
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2389
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2390
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2391
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2261
2392
  ] }) })
2262
2393
  ] })
2263
2394
  ] })
2264
2395
  ] })
2265
2396
  ] }),
2266
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2267
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2268
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2269
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2270
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2271
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2272
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2273
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2274
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2275
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "", children: "Select a provider..." }),
2276
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "__user__", children: "User (you type)" }),
2277
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2278
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2279
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gemini", children: "gemini-pro" })
2397
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { children: [
2398
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2399
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2400
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2401
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2402
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2403
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2404
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2405
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2406
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "", children: "Select a provider..." }),
2407
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "__user__", children: "User (you type)" }),
2408
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2409
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2410
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gemini", children: "gemini-pro" })
2280
2411
  ] }) })
2281
2412
  ] })
2282
2413
  ] }) }),
2283
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-header", children: [
2284
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2285
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-participant-card-info", children: [
2286
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2287
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2288
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2414
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-header", children: [
2415
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2416
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-participant-card-info", children: [
2417
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2418
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2419
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2289
2420
  ] }),
2290
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2291
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "", children: "Select a provider..." }),
2292
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "__user__", children: "User (you type)" }),
2293
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2294
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { value: "claude", children: "claude-3-opus" })
2421
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2422
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "", children: "Select a provider..." }),
2423
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "__user__", children: "User (you type)" }),
2424
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2425
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("option", { value: "claude", children: "claude-3-opus" })
2295
2426
  ] }) })
2296
2427
  ] })
2297
2428
  ] }) })
@@ -2317,6 +2448,7 @@ var Participant = () => {
2317
2448
  Loading,
2318
2449
  Participant,
2319
2450
  Spacing,
2451
+ Surfaces,
2320
2452
  Tabs,
2321
2453
  Terminal,
2322
2454
  ThemeComparison,