@quilltap/theme-storybook 1.0.44 → 1.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -42,6 +42,7 @@ __export(src_exports, {
42
42
  ThemeComparison: () => ThemeComparison,
43
43
  ThemeDecorator: () => ThemeDecorator,
44
44
  Typography: () => Typography,
45
+ Workspace: () => Workspace,
45
46
  defaultPreview: () => defaultPreview
46
47
  });
47
48
  module.exports = __toCommonJS(src_exports);
@@ -1535,244 +1536,335 @@ var Tabs = () => {
1535
1536
  ] });
1536
1537
  };
1537
1538
 
1538
- // src/stories/components/Chat.tsx
1539
+ // src/stories/components/Workspace.tsx
1540
+ var import_react3 = require("react");
1539
1541
  var import_jsx_runtime14 = require("react/jsx-runtime");
1540
- var Chat = () => {
1542
+ var SectionHeading = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1543
+ "h3",
1544
+ {
1545
+ style: {
1546
+ fontSize: "1.125rem",
1547
+ fontWeight: 700,
1548
+ marginBottom: "1rem",
1549
+ borderBottom: "1px solid var(--color-border)",
1550
+ paddingBottom: "0.5rem"
1551
+ },
1552
+ children
1553
+ }
1554
+ );
1555
+ var CloseGlyph = () => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "qt-tab-close-icon", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) });
1556
+ var WorkspaceTab = ({ label, active, closeable = true }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1557
+ "div",
1558
+ {
1559
+ className: `qt-tab ${active ? "qt-tab-active" : ""}`,
1560
+ style: { display: "inline-flex", alignItems: "center", gap: "0.5rem", cursor: "pointer" },
1561
+ children: [
1562
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-tab-label", children: label }),
1563
+ closeable && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-tab-close", role: "button", "aria-label": `Close ${label}`, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CloseGlyph, {}) })
1564
+ ]
1565
+ }
1566
+ );
1567
+ var Workspace = () => {
1568
+ const [active, setActive] = (0, import_react3.useState)("salon");
1541
1569
  return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1542
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1570
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Workspace" }),
1571
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1.5rem", maxWidth: "46rem" }, children: [
1572
+ "The tabbed two-pane shell. Set ",
1573
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("code", { children: "--qt-workspace-accent" }),
1574
+ " in your theme to re-tint the active tab, the pane divider, and the split drop-zone in one move."
1575
+ ] }),
1543
1576
  /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1544
- /* @__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: "Message Bubbles" }),
1545
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1546
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1547
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-header", children: [
1548
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1549
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1577
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(SectionHeading, { children: "Tab strip \u2014 active & inactive" }),
1578
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-tab-strip", role: "tablist", style: { borderRadius: "0.5rem 0.5rem 0 0" }, children: [
1579
+ { id: "home", label: "Home" },
1580
+ { id: "salon", label: "The Salon \u2014 Bertie" },
1581
+ { id: "aurora", label: "Aurora" },
1582
+ { id: "scriptorium", label: "The Scriptorium" }
1583
+ ].map((t) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { onClick: () => setActive(t.id), children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(WorkspaceTab, { label: t.label, active: active === t.id, closeable: t.id !== "home" }) }, t.id)) })
1584
+ ] }),
1585
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1586
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(SectionHeading, { children: "Pane divider" }),
1587
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem" }, children: "Resizable split between the two panes. Hover (or focus) to see the accent." }),
1588
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1589
+ "div",
1590
+ {
1591
+ style: {
1592
+ display: "grid",
1593
+ gridTemplateColumns: "1fr 8px 1fr",
1594
+ height: "120px",
1595
+ border: "1px solid var(--color-border)",
1596
+ borderRadius: "0.5rem",
1597
+ overflow: "hidden"
1598
+ },
1599
+ children: [
1600
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-panel", style: { display: "grid", placeItems: "center" }, children: "Left pane" }),
1601
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-workspace-divider", tabIndex: 0, role: "separator", "aria-label": "Resize panes", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-workspace-divider-grip" }) }),
1602
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-panel", style: { display: "grid", placeItems: "center" }, children: "Right pane" })
1603
+ ]
1604
+ }
1605
+ )
1606
+ ] }),
1607
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { children: [
1608
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(SectionHeading, { children: "Split drop-zone" }),
1609
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "0.75rem" }, children: "Shown while a tab is dragged toward a pane edge to create the split." }),
1610
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1611
+ "div",
1612
+ {
1613
+ style: {
1614
+ position: "relative",
1615
+ height: "120px",
1616
+ border: "1px solid var(--color-border)",
1617
+ borderRadius: "0.5rem",
1618
+ overflow: "hidden"
1619
+ },
1620
+ children: [
1621
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-panel", style: { height: "100%", display: "grid", placeItems: "center" }, children: "Pane" }),
1622
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-tab-drop-zone", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-tab-drop-zone-hint", children: "Drop to split" }) })
1623
+ ]
1624
+ }
1625
+ )
1626
+ ] })
1627
+ ] });
1628
+ };
1629
+
1630
+ // src/stories/components/Chat.tsx
1631
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1632
+ var Chat = () => {
1633
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1634
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Chat Components" }),
1635
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1636
+ /* @__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: "Message Bubbles" }),
1637
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1638
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1639
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-header", children: [
1640
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "You" }),
1641
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1550
1642
  ] }),
1551
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Hello! How are you today?" }) })
1643
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Hello! How are you today?" }) })
1552
1644
  ] }) }),
1553
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1554
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1555
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1556
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-header", children: [
1557
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1558
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1645
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1646
+ /* @__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" }) }),
1647
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1648
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-header", children: [
1649
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1650
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-time", children: "2:30 PM" })
1559
1651
  ] }),
1560
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1652
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Hello! I'm doing well, thank you for asking. How can I help you today?" }) })
1561
1653
  ] })
1562
1654
  ] }),
1563
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1564
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1565
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1566
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-header", children: [
1567
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1568
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1655
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1656
+ /* @__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" }) }),
1657
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1658
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-header", children: [
1659
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "Assistant" }),
1660
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-time", children: "2:31 PM" })
1569
1661
  ] }),
1570
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-content", children: [
1571
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Here's some information you might find helpful:" }),
1572
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1573
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("li", { children: "First point of interest" }),
1574
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("li", { children: "Second important detail" }),
1575
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("li", { children: "Third relevant fact" })
1662
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-content", children: [
1663
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Here's some information you might find helpful:" }),
1664
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("ul", { style: { marginTop: "0.5rem", paddingLeft: "1.25rem" }, children: [
1665
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("li", { children: "First point of interest" }),
1666
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("li", { children: "Second important detail" }),
1667
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("li", { children: "Third relevant fact" })
1576
1668
  ] }),
1577
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1669
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { marginTop: "0.5rem" }, children: "Let me know if you'd like more details about any of these!" })
1578
1670
  ] }),
1579
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-actions", children: [
1580
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.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" }) }) }),
1581
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.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" }) }) })
1671
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-actions", children: [
1672
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", title: "Edit", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.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" }) }) }),
1673
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", title: "Copy", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { className: "w-4 h-4", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.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" }) }) })
1582
1674
  ] })
1583
1675
  ] })
1584
1676
  ] }),
1585
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1586
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1587
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1588
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1677
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-system", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Alice has joined the conversation." }) }) }),
1678
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-user", children: [
1679
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "You" }) }),
1680
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "That's exactly what I needed, thanks!" }) })
1589
1681
  ] }) })
1590
1682
  ] })
1591
1683
  ] }),
1592
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1593
- /* @__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: "Character Messages" }),
1594
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1595
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1596
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1597
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1598
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { children: [
1599
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1600
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1684
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1685
+ /* @__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: "Character Messages" }),
1686
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Messages from different characters with their avatars." }),
1687
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1688
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1689
+ /* @__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: "A" }) }),
1690
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
1691
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Alice" }),
1692
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "*waves cheerfully* Hi there! I'm so glad to meet you!" }) })
1601
1693
  ] })
1602
1694
  ] }),
1603
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1604
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "B" }) }),
1605
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { children: [
1606
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1607
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1695
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1696
+ /* @__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: "B" }) }),
1697
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
1698
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-author", style: { fontSize: "0.75rem", fontWeight: 600, marginBottom: "0.25rem" }, children: "Bob" }),
1699
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "*nods thoughtfully* Interesting point. Let me think about that..." }) })
1608
1700
  ] })
1609
1701
  ] })
1610
1702
  ] })
1611
1703
  ] }),
1612
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1613
- /* @__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: "Roleplay Annotations" }),
1614
- /* @__PURE__ */ (0, import_jsx_runtime14.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." }),
1615
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1616
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1617
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1618
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1619
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1620
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { children: [
1704
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1705
+ /* @__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: "Roleplay Annotations" }),
1706
+ /* @__PURE__ */ (0, import_jsx_runtime15.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." }),
1707
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1708
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1709
+ /* @__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: "A" }) }),
1710
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1711
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1712
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { children: [
1621
1713
  '"Hello there!" ',
1622
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1714
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-narration", children: "she said with a warm smile, stepping forward to greet you." })
1623
1715
  ] }) })
1624
1716
  ] })
1625
1717
  ] }),
1626
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1627
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1628
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1629
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1630
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("p", { children: [
1631
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1718
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1719
+ /* @__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: "A" }) }),
1720
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1721
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1722
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { children: [
1723
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-narration", children: "She paused for a moment, considering her words carefully." }),
1632
1724
  " ",
1633
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1725
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-inner-monologue", children: "I wonder if they noticed..." })
1634
1726
  ] }) })
1635
1727
  ] })
1636
1728
  ] }),
1637
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1638
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
1639
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1640
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1641
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1729
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1730
+ /* @__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: "A" }) }),
1731
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message qt-chat-message-assistant", children: [
1732
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-message-author", children: "Alice" }) }),
1733
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-content", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-chat-ooc", children: "((OOC: Should we continue the scene or take a break?))" }) }) })
1642
1734
  ] })
1643
1735
  ] })
1644
1736
  ] })
1645
1737
  ] }),
1646
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1647
- /* @__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: "Roleplay-Template Styles" }),
1648
- /* @__PURE__ */ (0, import_jsx_runtime14.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." }),
1649
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-content", style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "36rem" }, children: [
1650
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1651
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-1", children: "Style 1" }),
1652
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-2", children: "Style 2" }),
1653
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-3", children: "Style 3" }),
1654
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-4", children: "Style 4" })
1655
- ] }),
1656
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1657
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-danger", children: "Danger" }),
1658
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-warning", children: "Warning" }),
1659
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-success", children: "Success" }),
1660
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-info", children: "Info" }),
1661
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-muted", children: "Muted" }),
1662
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-code", children: "code" })
1663
- ] }),
1664
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1665
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-2 qt-rp-bold", children: "Bold" }),
1666
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-3 qt-rp-italic", children: "Italic" }),
1667
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-1 qt-rp-reverse", children: "Reverse" }),
1668
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-4 qt-rp-underline-double", children: "Underline" }),
1669
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-info qt-rp-border-dashed", children: "Dashed border" }),
1670
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "qt-roleplay-muted qt-rp-font-serif", children: "Serif font" })
1738
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1739
+ /* @__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: "Roleplay-Template Styles" }),
1740
+ /* @__PURE__ */ (0, import_jsx_runtime15.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." }),
1741
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-content", style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "36rem" }, children: [
1742
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1743
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-1", children: "Style 1" }),
1744
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-2", children: "Style 2" }),
1745
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-3", children: "Style 3" }),
1746
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-4", children: "Style 4" })
1747
+ ] }),
1748
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1749
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-danger", children: "Danger" }),
1750
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-warning", children: "Warning" }),
1751
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-success", children: "Success" }),
1752
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-info", children: "Info" }),
1753
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-muted", children: "Muted" }),
1754
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-code", children: "code" })
1755
+ ] }),
1756
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem", alignItems: "center" }, children: [
1757
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-2 qt-rp-bold", children: "Bold" }),
1758
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-3 qt-rp-italic", children: "Italic" }),
1759
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-1 qt-rp-reverse", children: "Reverse" }),
1760
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-4 qt-rp-underline-double", children: "Underline" }),
1761
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-info qt-rp-border-dashed", children: "Dashed border" }),
1762
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-roleplay-muted qt-rp-font-serif", children: "Serif font" })
1671
1763
  ] })
1672
1764
  ] })
1673
1765
  ] }),
1674
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1675
- /* @__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: "Whisper Messages" }),
1676
- /* @__PURE__ */ (0, import_jsx_runtime14.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." }),
1677
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1678
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1679
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1680
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1766
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1767
+ /* @__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: "Whisper Messages" }),
1768
+ /* @__PURE__ */ (0, import_jsx_runtime15.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." }),
1769
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1770
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper", children: [
1771
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Elena" }),
1772
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "I don't trust the merchant. Meet me at the tavern tonight\u2014alone." })
1681
1773
  ] }) }),
1682
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1683
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1684
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1774
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-whisper qt-chat-message-whisper-overheard", children: [
1775
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-whisper-label", children: "whispered to Marcus" }),
1776
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Keep an eye on the door. We may need a quick exit." })
1685
1777
  ] }) })
1686
1778
  ] })
1687
1779
  ] }),
1688
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1689
- /* @__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: "Silent Messages" }),
1690
- /* @__PURE__ */ (0, import_jsx_runtime14.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." }),
1691
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1692
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1693
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1694
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1780
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1781
+ /* @__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: "Silent Messages" }),
1782
+ /* @__PURE__ */ (0, import_jsx_runtime15.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." }),
1783
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1784
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1785
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1786
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "*glances at the door, weighing whether to follow or stay behind*" })
1695
1787
  ] }) }),
1696
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1697
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1698
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1788
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message-row qt-chat-message-row-assistant", style: { marginBottom: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-message-body qt-chat-message-assistant qt-chat-message-silent", children: [
1789
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-silent-label", children: "silent \u2014 inner thoughts and actions only" }),
1790
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "*quietly pockets the letter before anyone notices, mind racing with questions about its contents*" })
1699
1791
  ] }) })
1700
1792
  ] })
1701
1793
  ] }),
1702
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1703
- /* @__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: "Wardrobe Action Notices" }),
1704
- /* @__PURE__ */ (0, import_jsx_runtime14.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." }),
1705
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1706
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1707
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1708
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1709
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1710
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1794
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1795
+ /* @__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: "Wardrobe Action Notices" }),
1796
+ /* @__PURE__ */ (0, import_jsx_runtime15.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." }),
1797
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "1rem", maxWidth: "32rem" }, children: [
1798
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1799
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1800
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1801
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Equipped \u201CCrimson Evening Gown\u201D in the top slot." }),
1802
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), Glass Slippers (footwear)" })
1711
1803
  ] })
1712
1804
  ] }),
1713
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1714
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1715
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1716
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Removed item from the footwear slot." }),
1717
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1805
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1806
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1807
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1808
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Removed item from the footwear slot." }),
1809
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Wearing: Crimson Evening Gown (top, bottom), barefoot" })
1718
1810
  ] })
1719
1811
  ] }),
1720
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1721
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1722
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1723
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1724
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { children: "Marcus put it on immediately." })
1812
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-notice", children: [
1813
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-wardrobe-label", children: "Wardrobe" }),
1814
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-wardrobe-summary", children: [
1815
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Gifted \u201CSilver Pocket Watch\u201D to Marcus." }),
1816
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: "Marcus put it on immediately." })
1725
1817
  ] })
1726
1818
  ] })
1727
1819
  ] })
1728
1820
  ] }),
1729
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1730
- /* @__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: "Chat Toolbar" }),
1731
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1732
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1733
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1734
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1735
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1736
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { flex: 1 } }),
1737
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1738
- /* @__PURE__ */ (0, import_jsx_runtime14.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" }),
1739
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1821
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1822
+ /* @__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: "Chat Toolbar" }),
1823
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Formatting and action buttons for chat composition." }),
1824
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1825
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-chat-toolbar-button", title: "Bold", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 4h8a4 4 0 014 4v2M6 4v16M6 4h8a2 2 0 012 2v2M6 12h12" }) }) }),
1826
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-chat-toolbar-button", title: "Italic", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5h4m-4 14h4M9 5h6M9 19H3" }) }) }),
1827
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-chat-toolbar-button", title: "Underline", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7 5v10a4 4 0 008 0V5m0 14H7" }) }) }),
1828
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { flex: 1 } }),
1829
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-chat-toolbar-button", title: "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1830
+ /* @__PURE__ */ (0, import_jsx_runtime15.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" }),
1831
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1740
1832
  ] }) })
1741
1833
  ] })
1742
1834
  ] }),
1743
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1744
- /* @__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: "RP Annotation Buttons" }),
1745
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1746
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1747
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1748
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1835
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1836
+ /* @__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: "RP Annotation Buttons" }),
1837
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Quick-insert buttons for roleplay annotation types." }),
1838
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-rp-annotation-toolbar", style: { maxWidth: "32rem", display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
1839
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { className: "qt-rp-annotation-button-narration", title: "Narration", children: [
1840
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h7" }) }),
1749
1841
  "Narration"
1750
1842
  ] }),
1751
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1752
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.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" }) }),
1843
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { className: "qt-rp-annotation-button-internal", title: "Inner Monologue", children: [
1844
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.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" }) }),
1753
1845
  "Internal"
1754
1846
  ] }),
1755
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1756
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.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" }) }),
1847
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { className: "qt-rp-annotation-button-ooc", title: "Out of Character", children: [
1848
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { className: "w-4 h-4 mr-1", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.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" }) }),
1757
1849
  "OOC"
1758
1850
  ] })
1759
1851
  ] })
1760
1852
  ] }),
1761
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1762
- /* @__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: "Attachments" }),
1763
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1764
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1765
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1766
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1767
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { children: "document.pdf" }),
1768
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1853
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1854
+ /* @__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: "Attachments" }),
1855
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "File attachment chips and attachment button." }),
1856
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: [
1857
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-attachment-list", style: { display: "flex", gap: "0.5rem", marginBottom: "0.75rem", flexWrap: "wrap" }, children: [
1858
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1859
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { children: "document.pdf" }),
1860
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1769
1861
  ] }),
1770
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1771
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { children: "image.png" }),
1772
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1862
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-attachment-chip", children: [
1863
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { children: "image.png" }),
1864
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "ml-2 text-gray-400 hover:text-gray-600", style: { marginLeft: "0.5rem" }, children: "\xD7" })
1773
1865
  ] })
1774
1866
  ] }),
1775
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1867
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1776
1868
  "textarea",
1777
1869
  {
1778
1870
  className: "qt-chat-composer-input",
@@ -1781,17 +1873,17 @@ var Chat = () => {
1781
1873
  style: { width: "100%", padding: "0.5rem", marginBottom: "0.5rem" }
1782
1874
  }
1783
1875
  ),
1784
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1785
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1786
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1876
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-composer-actions", style: { display: "flex", gap: "0.5rem" }, children: [
1877
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-chat-attachment-button", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "18", height: "18", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 4v16m8-8H4" }) }) }),
1878
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary", children: "Send" })
1787
1879
  ] })
1788
1880
  ] })
1789
1881
  ] }),
1790
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1791
- /* @__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: "Chat Input" }),
1792
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1793
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.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" }) }) }),
1794
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1882
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1883
+ /* @__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: "Chat Input" }),
1884
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-composer", style: { maxWidth: "32rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-composer-inner", style: { display: "flex", alignItems: "flex-end", gap: "0.5rem", flex: 1 }, children: [
1885
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", "aria-label": "Attach file", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.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" }) }) }),
1886
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1795
1887
  "textarea",
1796
1888
  {
1797
1889
  className: "qt-chat-composer-input qt-input",
@@ -1799,65 +1891,65 @@ var Chat = () => {
1799
1891
  rows: 1
1800
1892
  }
1801
1893
  ),
1802
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1894
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary qt-chat-composer-send", style: { height: "auto", padding: "0.5rem 1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 19l9 2-9-18-9 18 9-2zm0 0v-8" }) }) })
1803
1895
  ] }) })
1804
1896
  ] }),
1805
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1806
- /* @__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: "Typing Indicator" }),
1807
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1808
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1809
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-typing-indicator", children: [
1810
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", {}),
1811
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", {}),
1812
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", {})
1897
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1898
+ /* @__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: "Typing Indicator" }),
1899
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem", maxWidth: "32rem" }, children: [
1900
+ /* @__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" }) }),
1901
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-typing-indicator", children: [
1902
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", {}),
1903
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", {}),
1904
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", {})
1813
1905
  ] }) })
1814
1906
  ] })
1815
1907
  ] }),
1816
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1817
- /* @__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: "Chat Control Buttons" }),
1818
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1819
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1820
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", { className: "qt-chat-continue-button", children: [
1821
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1822
- /* @__PURE__ */ (0, import_jsx_runtime14.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" }),
1823
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1908
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1909
+ /* @__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: "Chat Control Buttons" }),
1910
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { style: { color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: "Continue and stop buttons for controlling AI response generation." }),
1911
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "1rem", maxWidth: "32rem" }, children: [
1912
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { className: "qt-chat-continue-button", children: [
1913
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1914
+ /* @__PURE__ */ (0, import_jsx_runtime15.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" }),
1915
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" })
1824
1916
  ] }),
1825
1917
  "Continue"
1826
1918
  ] }),
1827
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", { className: "qt-chat-stop-button", children: [
1828
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1829
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1830
- /* @__PURE__ */ (0, import_jsx_runtime14.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" })
1919
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("button", { className: "qt-chat-stop-button", children: [
1920
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1921
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }),
1922
+ /* @__PURE__ */ (0, import_jsx_runtime15.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" })
1831
1923
  ] }),
1832
1924
  "Stop"
1833
1925
  ] })
1834
1926
  ] })
1835
1927
  ] }),
1836
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("section", { children: [
1837
- /* @__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: "Full Chat Layout" }),
1838
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1839
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1840
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1841
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1842
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { children: [
1843
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1844
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1928
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { children: [
1929
+ /* @__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: "Full Chat Layout" }),
1930
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-layout", style: { height: "24rem", border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)", display: "flex", flexDirection: "column" }, children: [
1931
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", alignItems: "center", justifyContent: "space-between", padding: "0.75rem 1rem", borderBottom: "1px solid var(--color-border)" }, children: [
1932
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1933
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1934
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
1935
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { fontWeight: 600 }, children: "Assistant" }),
1936
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Online" })
1845
1937
  ] })
1846
1938
  ] }),
1847
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1848
- /* @__PURE__ */ (0, import_jsx_runtime14.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" }),
1849
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1939
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", "aria-label": "Settings", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", { width: "20", height: "20", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: [
1940
+ /* @__PURE__ */ (0, import_jsx_runtime15.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" }),
1941
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 12a3 3 0 11-6 0 3 3 0 016 0z" })
1850
1942
  ] }) }) })
1851
1943
  ] }),
1852
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1853
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1854
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
1855
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "Hello! How can I help you today?" }) })
1944
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { flex: 1, overflow: "auto", padding: "1rem", display: "flex", flexDirection: "column", gap: "0.75rem" }, children: [
1945
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1946
+ /* @__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" }) }),
1947
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "Hello! How can I help you today?" }) })
1856
1948
  ] }),
1857
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { className: "qt-chat-message qt-chat-message-user", children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1949
+ /* @__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", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("p", { children: "I'd like to know more about theming." }) }) })
1858
1950
  ] }),
1859
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1860
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1951
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-chat-composer", style: { margin: "0.5rem", borderRadius: "var(--radius-lg)" }, children: [
1952
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1861
1953
  "textarea",
1862
1954
  {
1863
1955
  className: "qt-chat-composer-input qt-input",
@@ -1865,7 +1957,7 @@ var Chat = () => {
1865
1957
  rows: 1
1866
1958
  }
1867
1959
  ),
1868
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1960
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Send" })
1869
1961
  ] })
1870
1962
  ] })
1871
1963
  ] })
@@ -1873,7 +1965,7 @@ var Chat = () => {
1873
1965
  };
1874
1966
 
1875
1967
  // src/stories/components/Terminal.tsx
1876
- var import_jsx_runtime15 = require("react/jsx-runtime");
1968
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1877
1969
  var sampleOutput = `$ git status
1878
1970
  On branch main
1879
1971
  Your branch is up to date with 'origin/main'.
@@ -1885,117 +1977,117 @@ $ npm run dev
1885
1977
  - Local: http://localhost:3000
1886
1978
  - ready started server on 0.0.0.0:3000`;
1887
1979
  var Terminal = () => {
1888
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1889
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1890
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1980
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1981
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Terminal Components" }),
1982
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { marginBottom: "1.5rem", color: "var(--color-muted-foreground)" }, children: [
1891
1983
  "The terminal carries its own identity. By default it stays dark in both light and dark themes \u2014 but a theme can override",
1892
1984
  " ",
1893
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: "--qt-terminal-bg" }),
1985
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: "--qt-terminal-bg" }),
1894
1986
  ", ",
1895
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: "--qt-terminal-fg" }),
1987
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: "--qt-terminal-fg" }),
1896
1988
  ", and the",
1897
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1989
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: "--qt-terminal-chrome-*" }),
1898
1990
  " tokens to reskin every surface below."
1899
1991
  ] }),
1900
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1901
- /* @__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: "In-chat embed" }),
1902
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1903
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-terminal-embed" }),
1992
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1993
+ /* @__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: "In-chat embed" }),
1994
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1995
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-terminal-embed" }),
1904
1996
  " wraps the embed card; the header and footer strips inherit the surrounding theme so they nest cleanly with chat bubbles."
1905
1997
  ] }),
1906
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1907
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-terminal-embed-header", children: [
1908
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1909
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
1910
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
1911
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1998
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1999
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-terminal-embed-header", children: [
2000
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
2001
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2002
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button-icon", type: "button", children: "Pop out" }),
2003
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button-icon qt-text-destructive", type: "button", children: "Kill" })
1912
2004
  ] })
1913
2005
  ] }),
1914
- /* @__PURE__ */ (0, import_jsx_runtime15.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 })
2006
+ /* @__PURE__ */ (0, import_jsx_runtime16.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 })
1915
2007
  ] })
1916
2008
  ] }),
1917
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1918
- /* @__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: "Embed footer (handed off to Terminal Mode pane)" }),
1919
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
1920
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
1921
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
1922
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
1923
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
2009
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2010
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Embed footer (handed off to Terminal Mode pane)" }),
2011
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-terminal-embed", style: { maxWidth: "36rem" }, children: [
2012
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-terminal-embed-header", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 500, margin: 0 }, children: "Terminal \u2014 zsh" }) }),
2013
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-terminal-embed-footer", children: [
2014
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-text-secondary", children: "Showing in Terminal Mode pane." }),
2015
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button-secondary", type: "button", style: { fontSize: "0.75rem", padding: "0.25rem 0.5rem" }, children: "Go to pane \u2192" })
1924
2016
  ] })
1925
2017
  ] })
1926
2018
  ] }),
1927
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1928
- /* @__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: "Pop-out page chrome" }),
1929
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
2019
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2020
+ /* @__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: "Pop-out page chrome" }),
2021
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1930
2022
  "The full-screen pop-out page uses",
1931
2023
  " ",
1932
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-terminal-popout-page" }),
2024
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-terminal-popout-page" }),
1933
2025
  " as the outer canvas and",
1934
2026
  " ",
1935
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-terminal-popout-header" }),
2027
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-terminal-popout-header" }),
1936
2028
  " for the breadcrumb bar."
1937
2029
  ] }),
1938
- /* @__PURE__ */ (0, import_jsx_runtime15.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: [
1939
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: "qt-terminal-popout-header", children: [
1940
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
1941
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
1942
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
1943
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
1944
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
2030
+ /* @__PURE__ */ (0, import_jsx_runtime16.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: [
2031
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-terminal-popout-header", children: [
2032
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2033
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button-icon", type: "button", style: { color: "inherit" }, children: "\u2190" }),
2034
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("a", { href: "#", className: "qt-terminal-popout-link", style: { fontSize: "0.875rem" }, children: "Chat" }),
2035
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-terminal-popout-separator", children: "/" }),
2036
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h1", { className: "qt-terminal-popout-title", style: { fontSize: "1rem", margin: 0 }, children: "Terminal \u2014 zsh" })
1945
2037
  ] }),
1946
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
2038
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { className: "qt-button-destructive", type: "button", style: { fontSize: "0.875rem" }, children: "Kill Session" })
1947
2039
  ] }),
1948
- /* @__PURE__ */ (0, import_jsx_runtime15.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 })
2040
+ /* @__PURE__ */ (0, import_jsx_runtime16.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 })
1949
2041
  ] })
1950
2042
  ] }),
1951
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("section", { children: [
1952
- /* @__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: "Session-exited overlay" }),
1953
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
2043
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { children: [
2044
+ /* @__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: "Session-exited overlay" }),
2045
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { marginBottom: "0.75rem", fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: [
1954
2046
  "When the PTY exits but the terminal stays mounted, the",
1955
2047
  " ",
1956
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("code", { children: ".qt-terminal-closed-badge" }),
2048
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-terminal-closed-badge" }),
1957
2049
  " overlay marks it."
1958
2050
  ] }),
1959
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
2051
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-terminal-surface", style: { position: "relative", height: "120px", borderRadius: "0.5rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "qt-terminal-closed-badge", children: "Closed" }) })
1960
2052
  ] })
1961
2053
  ] });
1962
2054
  };
1963
2055
 
1964
2056
  // src/stories/components/FilePreview.tsx
1965
- var import_jsx_runtime16 = require("react/jsx-runtime");
2057
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1966
2058
  var FilePreview = () => {
1967
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "1.5rem" }, children: [
1968
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
1969
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1970
- /* @__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: "Scroll Container" }),
1971
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1972
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-scroll" }),
2059
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2060
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "File Preview Components" }),
2061
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2062
+ /* @__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: "Scroll Container" }),
2063
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2064
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-scroll" }),
1973
2065
  " - Scrollable container for file content with configurable max height."
1974
2066
  ] }),
1975
- /* @__PURE__ */ (0, import_jsx_runtime16.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_runtime16.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
2067
+ /* @__PURE__ */ (0, import_jsx_runtime17.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_runtime17.jsx)("div", { style: { padding: "1rem" }, children: Array.from({ length: 20 }, (_, i) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { margin: "0.5rem 0" }, children: [
1976
2068
  "Line ",
1977
2069
  i + 1,
1978
2070
  ": Lorem ipsum dolor sit amet, consectetur adipiscing elit."
1979
2071
  ] }, i)) }) })
1980
2072
  ] }),
1981
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1982
- /* @__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: "Content Panel" }),
1983
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1984
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-panel" }),
2073
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2074
+ /* @__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: "Content Panel" }),
2075
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2076
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-panel" }),
1985
2077
  " - Background panel for rendered markdown content."
1986
2078
  ] }),
1987
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-file-preview-panel", children: [
1988
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
1989
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
2079
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-file-preview-panel", children: [
2080
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { margin: "0 0 0.5rem 0" }, children: "Document Title" }),
2081
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { margin: 0 }, children: "This is a content panel used for displaying rendered markdown files with a subtle background." })
1990
2082
  ] })
1991
2083
  ] }),
1992
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
1993
- /* @__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: "Code Block" }),
1994
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
1995
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-code" }),
2084
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2085
+ /* @__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: "Code Block" }),
2086
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2087
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-code" }),
1996
2088
  " - Styled code block for plain text and source files with word wrap."
1997
2089
  ] }),
1998
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
2090
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("pre", { className: "qt-file-preview-code", children: `function greet(name: string): string {
1999
2091
  return \`Hello, \${name}!\`;
2000
2092
  }
2001
2093
 
@@ -2003,133 +2095,133 @@ var FilePreview = () => {
2003
2095
  const message = greet("World");
2004
2096
  console.log(message);` })
2005
2097
  ] }),
2006
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2007
- /* @__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: "Loading State" }),
2008
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2009
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-loading" }),
2098
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2099
+ /* @__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 State" }),
2100
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2101
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-loading" }),
2010
2102
  " + ",
2011
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-loading-text" }),
2103
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-loading-text" }),
2012
2104
  " - Loading indicator."
2013
2105
  ] }),
2014
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
2106
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-file-preview-loading", style: { minHeight: "150px" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-file-preview-loading-text", children: "Loading file..." }) }) })
2015
2107
  ] }),
2016
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2017
- /* @__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 / Error State" }),
2018
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2019
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-empty" }),
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: "Empty / Error State" }),
2110
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2111
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-empty" }),
2020
2112
  " + ",
2021
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
2113
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-file-preview-empty-icon" }),
2022
2114
  " - Empty or error state display."
2023
2115
  ] }),
2024
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
2025
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
2026
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
2027
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { children: "No content available" })
2116
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "grid", gridTemplateColumns: "repeat(2, 1fr)", gap: "1rem" }, children: [
2117
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
2118
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u{1F4C4}" }),
2119
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { children: "No content available" })
2028
2120
  ] }) }),
2029
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
2030
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
2031
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("p", { children: "Failed to load file" })
2121
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { border: "1px solid var(--color-border)", borderRadius: "var(--radius-lg)" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-file-preview-empty", style: { minHeight: "150px" }, children: [
2122
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-file-preview-empty-icon", children: "\u26A0\uFE0F" }),
2123
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { children: "Failed to load file" })
2032
2124
  ] }) })
2033
2125
  ] })
2034
2126
  ] }),
2035
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2036
- /* @__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: "Wikilinks" }),
2037
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2038
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-wikilink" }),
2127
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2128
+ /* @__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: "Wikilinks" }),
2129
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)", marginBottom: "1rem" }, children: [
2130
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-wikilink" }),
2039
2131
  " + ",
2040
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { children: ".qt-wikilink-broken" }),
2132
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { children: ".qt-wikilink-broken" }),
2041
2133
  " - Internal document links in markdown."
2042
2134
  ] }),
2043
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
2135
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-file-preview-panel", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("p", { style: { margin: 0, lineHeight: 2 }, children: [
2044
2136
  "This document references ",
2045
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
2137
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { type: "button", className: "qt-wikilink", children: "Character Profile" }),
2046
2138
  " and links to ",
2047
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
2139
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { type: "button", className: "qt-wikilink", children: "World Building \u2192 Geography" }),
2048
2140
  ". There's also a ",
2049
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
2141
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { type: "button", className: "qt-wikilink-broken", children: "Missing Document" }),
2050
2142
  " that doesn't exist yet."
2051
2143
  ] }) })
2052
2144
  ] }),
2053
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2054
- /* @__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: "CSS Variables" }),
2055
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
2145
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2146
+ /* @__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: "CSS Variables" }),
2147
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "0.5rem" }, children: [
2056
2148
  { name: "--qt-file-preview-max-height", value: "70vh", desc: "Max height of scroll container" },
2057
2149
  { name: "--qt-file-preview-min-height", value: "300px", desc: "Min height of loading/empty states" },
2058
2150
  { name: "--qt-file-preview-panel-bg", value: "muted/30%", desc: "Content panel background" },
2059
2151
  { name: "--qt-code-bg", value: "muted", desc: "Code block background" },
2060
2152
  { name: "--qt-code-fg", value: "foreground", desc: "Code block text color" },
2061
2153
  { name: "--qt-code-font", value: "monospace", desc: "Code block font family" }
2062
- ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
2063
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
2064
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
2154
+ ].map(({ name, value, desc }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "0.75rem", background: "var(--color-muted)", borderRadius: "var(--radius-md)" }, children: [
2155
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("code", { style: { fontSize: "0.75rem", fontWeight: 600 }, children: name }),
2156
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)", marginTop: "0.25rem" }, children: [
2065
2157
  "Default: ",
2066
2158
  value
2067
2159
  ] }),
2068
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
2160
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { fontSize: "0.75rem", color: "var(--color-muted-foreground)" }, children: desc })
2069
2161
  ] }, name)) })
2070
2162
  ] })
2071
2163
  ] });
2072
2164
  };
2073
2165
 
2074
2166
  // src/stories/components/ThemeComparison.tsx
2075
- var import_jsx_runtime17 = require("react/jsx-runtime");
2167
+ var import_jsx_runtime18 = require("react/jsx-runtime");
2076
2168
  var ThemePanel = ({ title, description }) => {
2077
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
2078
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
2079
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
2080
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
2081
- ] }),
2082
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
2083
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card-header", children: [
2084
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
2085
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
2169
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { flex: 1, minWidth: "20rem" }, children: [
2170
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "1rem" }, children: [
2171
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontWeight: 600 }, children: title }),
2172
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.875rem", color: "var(--color-muted-foreground)" }, children: description })
2173
+ ] }),
2174
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card", style: { marginBottom: "1rem" }, children: [
2175
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card-header", children: [
2176
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h5", { className: "qt-card-title", children: "Sample Card" }),
2177
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-card-description", children: "This is how cards look in this theme." })
2086
2178
  ] }),
2087
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card-body", children: [
2088
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
2089
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
2090
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2091
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2092
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
2179
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card-body", children: [
2180
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { marginBottom: "1rem" }, children: "Cards are used throughout the application for grouping content." }),
2181
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.5rem", flexWrap: "wrap" }, children: [
2182
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2183
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2184
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" })
2093
2185
  ] })
2094
2186
  ] }),
2095
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-card-footer", children: [
2096
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
2097
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
2187
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-card-footer", children: [
2188
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-ghost", children: "Cancel" }),
2189
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary", children: "Save" })
2098
2190
  ] })
2099
2191
  ] }),
2100
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
2101
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2102
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
2103
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
2192
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-panel", style: { padding: "1rem", marginBottom: "1rem" }, children: [
2193
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2194
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Text Input" }),
2195
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("input", { className: "qt-input", type: "text", placeholder: "Enter text..." })
2104
2196
  ] }),
2105
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2106
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
2107
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("select", { className: "qt-input qt-select", children: [
2108
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("option", { children: "Option 1" }),
2109
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("option", { children: "Option 2" })
2197
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "0.75rem" }, children: [
2198
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("label", { style: { display: "block", marginBottom: "0.25rem", fontSize: "0.875rem", fontWeight: 500 }, children: "Select" }),
2199
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-input qt-select", children: [
2200
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { children: "Option 1" }),
2201
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { children: "Option 2" })
2110
2202
  ] })
2111
2203
  ] }),
2112
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2113
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
2114
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
2204
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2205
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-secondary qt-button-sm", children: "Secondary" }),
2206
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary qt-button-sm", children: "Primary" })
2115
2207
  ] })
2116
2208
  ] }),
2117
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2118
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2119
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-avatar-fallback", children: "AI" }) }),
2120
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
2209
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2210
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "0.5rem" }, children: [
2211
+ /* @__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: "AI" }) }),
2212
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-chat-message qt-chat-message-assistant", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Hello! This is a chat message." }) })
2121
2213
  ] }),
2122
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
2214
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { display: "flex", justifyContent: "flex-end" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-chat-message qt-chat-message-user", style: { maxWidth: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { style: { fontSize: "0.875rem" }, children: "Great, thanks!" }) }) })
2123
2215
  ] })
2124
2216
  ] });
2125
2217
  };
2126
2218
  var ThemeComparison = () => {
2127
- return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2128
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
2129
- /* @__PURE__ */ (0, import_jsx_runtime17.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." }),
2130
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2131
- /* @__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: "Current Theme Preview" }),
2132
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2219
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2220
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "0.5rem" }, children: "Theme Comparison" }),
2221
+ /* @__PURE__ */ (0, import_jsx_runtime18.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." }),
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: "Current Theme Preview" }),
2224
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2133
2225
  ThemePanel,
2134
2226
  {
2135
2227
  title: "Active Theme",
@@ -2137,9 +2229,9 @@ var ThemeComparison = () => {
2137
2229
  }
2138
2230
  )
2139
2231
  ] }),
2140
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2141
- /* @__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: "Key Theme Colors" }),
2142
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2232
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2233
+ /* @__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: "Key Theme Colors" }),
2234
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2143
2235
  { name: "Background", var: "--color-background" },
2144
2236
  { name: "Foreground", var: "--color-foreground" },
2145
2237
  { name: "Card", var: "--color-card" },
@@ -2148,8 +2240,8 @@ var ThemeComparison = () => {
2148
2240
  { name: "Muted", var: "--color-muted" },
2149
2241
  { name: "Accent", var: "--color-accent" },
2150
2242
  { name: "Border", var: "--color-border" }
2151
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
2152
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2243
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2244
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2153
2245
  "div",
2154
2246
  {
2155
2247
  style: {
@@ -2161,17 +2253,17 @@ var ThemeComparison = () => {
2161
2253
  }
2162
2254
  }
2163
2255
  ),
2164
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2256
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2165
2257
  ] }, cssVar)) })
2166
2258
  ] }),
2167
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2168
- /* @__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: "Semantic Colors" }),
2169
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2259
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2260
+ /* @__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: "Semantic Colors" }),
2261
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(8rem, 1fr))", gap: "0.75rem" }, children: [
2170
2262
  { name: "Destructive", var: "--color-destructive" },
2171
2263
  { name: "Success", var: "--color-success" },
2172
2264
  { name: "Warning", var: "--color-warning" }
2173
- ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { textAlign: "center" }, children: [
2174
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2265
+ ].map(({ name, var: cssVar }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { textAlign: "center" }, children: [
2266
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2175
2267
  "div",
2176
2268
  {
2177
2269
  style: {
@@ -2183,50 +2275,50 @@ var ThemeComparison = () => {
2183
2275
  }
2184
2276
  }
2185
2277
  ),
2186
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2278
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { style: { marginTop: "0.25rem", fontSize: "0.75rem", fontWeight: 500 }, children: name })
2187
2279
  ] }, cssVar)) })
2188
2280
  ] }),
2189
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("section", { children: [
2190
- /* @__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: "Component Showcase" }),
2191
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2192
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
2193
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2194
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
2195
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
2196
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
2197
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
2198
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
2281
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2282
+ /* @__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: "Component Showcase" }),
2283
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2284
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Buttons" }),
2285
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2286
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary", children: "Primary" }),
2287
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-secondary", children: "Secondary" }),
2288
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-ghost", children: "Ghost" }),
2289
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-destructive", children: "Destructive" }),
2290
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary", disabled: true, children: "Disabled" })
2199
2291
  ] })
2200
2292
  ] }),
2201
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2202
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
2203
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2204
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
2205
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2206
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2207
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
2208
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
2209
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
2293
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2294
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Badges" }),
2295
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", flexWrap: "wrap", gap: "0.5rem" }, children: [
2296
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-default", children: "Default" }),
2297
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-primary", children: "Primary" }),
2298
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-secondary", children: "Secondary" }),
2299
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-success", children: "Success" }),
2300
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-warning", children: "Warning" }),
2301
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "qt-badge qt-badge-destructive", children: "Destructive" })
2210
2302
  ] })
2211
2303
  ] }),
2212
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2213
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
2214
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2215
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
2216
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { children: [
2217
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
2218
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
2304
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { marginBottom: "1.5rem" }, children: [
2305
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Interactive Card" }),
2306
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card qt-card-interactive", style: { maxWidth: "20rem", cursor: "pointer" }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-card-header", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.75rem" }, children: [
2307
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-avatar-fallback", children: "A" }) }),
2308
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { children: [
2309
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h5", { className: "qt-card-title", children: "Character Name" }),
2310
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-card-description", children: "Click to interact" })
2219
2311
  ] })
2220
2312
  ] }) }) })
2221
2313
  ] }),
2222
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { children: [
2223
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
2224
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
2225
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
2226
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
2227
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("option", { children: "Select option" }),
2228
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("option", { children: "Option 1" }),
2229
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("option", { children: "Option 2" })
2314
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { children: [
2315
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { style: { fontSize: "0.875rem", fontWeight: 600, marginBottom: "0.75rem", color: "var(--color-muted-foreground)" }, children: "Form Elements" }),
2316
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { display: "flex", gap: "1rem", flexWrap: "wrap", maxWidth: "32rem" }, children: [
2317
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("input", { className: "qt-input", type: "text", placeholder: "Text input", style: { flex: "1 1 10rem" } }),
2318
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("select", { className: "qt-input qt-select", style: { flex: "1 1 10rem" }, children: [
2319
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { children: "Select option" }),
2320
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { children: "Option 1" }),
2321
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("option", { children: "Option 2" })
2230
2322
  ] })
2231
2323
  ] })
2232
2324
  ] })
@@ -2235,125 +2327,125 @@ var ThemeComparison = () => {
2235
2327
  };
2236
2328
 
2237
2329
  // src/stories/components/EmptyState.tsx
2238
- var import_jsx_runtime18 = require("react/jsx-runtime");
2330
+ var import_jsx_runtime19 = require("react/jsx-runtime");
2239
2331
  var EmptyState = () => {
2240
- return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2241
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2242
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2243
- /* @__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: "Basic Empty State" }),
2244
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-empty-state", children: [
2245
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.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" }) }) }),
2246
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2247
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2332
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2333
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Empty States" }),
2334
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2335
+ /* @__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: "Basic Empty State" }),
2336
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-empty-state", children: [
2337
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.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" }) }) }),
2338
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { className: "qt-empty-state-title", children: "No messages yet" }),
2339
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { className: "qt-empty-state-description", children: "Start a conversation to see messages appear here." })
2248
2340
  ] })
2249
2341
  ] }),
2250
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2251
- /* @__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: "Empty State with Action" }),
2252
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-empty-state", children: [
2253
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.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" }) }) }),
2254
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
2255
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2256
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2342
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2343
+ /* @__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: "Empty State with Action" }),
2344
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-empty-state", children: [
2345
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.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" }) }) }),
2346
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { className: "qt-empty-state-title", children: "No characters" }),
2347
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { className: "qt-empty-state-description", children: "You haven't created any characters yet. Create your first character to get started." }),
2348
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("button", { className: "qt-button qt-button-primary", children: "Create Character" }) })
2257
2349
  ] })
2258
2350
  ] }),
2259
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2260
- /* @__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: "Search Empty State" }),
2261
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-empty-state", children: [
2262
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.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" }) }) }),
2263
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
2264
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2265
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2351
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2352
+ /* @__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: "Search Empty State" }),
2353
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-empty-state", children: [
2354
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-icon", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.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" }) }) }),
2355
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { className: "qt-empty-state-title", children: "No results found" }),
2356
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { className: "qt-empty-state-description", children: "Try adjusting your search or filters to find what you're looking for." }),
2357
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("button", { className: "qt-button qt-button-secondary", children: "Clear Filters" }) })
2266
2358
  ] })
2267
2359
  ] }),
2268
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("section", { children: [
2269
- /* @__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: "Error Empty State" }),
2270
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "qt-empty-state", children: [
2271
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime18.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" }) }) }),
2272
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2273
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2274
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2360
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { children: [
2361
+ /* @__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: "Error Empty State" }),
2362
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-empty-state", children: [
2363
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-icon text-red-500", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("svg", { className: "w-12 h-12", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime19.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" }) }) }),
2364
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h4", { className: "qt-empty-state-title", children: "Something went wrong" }),
2365
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { className: "qt-empty-state-description", children: "We couldn't load the content. Please try again." }),
2366
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-empty-state-action", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("button", { className: "qt-button qt-button-primary", children: "Try Again" }) })
2275
2367
  ] })
2276
2368
  ] })
2277
2369
  ] });
2278
2370
  };
2279
2371
 
2280
2372
  // src/stories/components/Loading.tsx
2281
- var import_jsx_runtime19 = require("react/jsx-runtime");
2373
+ var import_jsx_runtime20 = require("react/jsx-runtime");
2282
2374
  var Loading = () => {
2283
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2284
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2285
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2286
- /* @__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: "Spinners" }),
2287
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2288
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { textAlign: "center" }, children: [
2289
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2290
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2291
- ] }),
2292
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { textAlign: "center" }, children: [
2293
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2294
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2295
- ] }),
2296
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { textAlign: "center" }, children: [
2297
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2298
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2375
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2376
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Loading States" }),
2377
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2378
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Spinners" }),
2379
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", gap: "2rem", alignItems: "center" }, children: [
2380
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { textAlign: "center" }, children: [
2381
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-spinner qt-spinner-sm", style: { margin: "0 auto" } }),
2382
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Small" })
2383
+ ] }),
2384
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { textAlign: "center" }, children: [
2385
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-spinner", style: { margin: "0 auto" } }),
2386
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Default" })
2387
+ ] }),
2388
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { textAlign: "center" }, children: [
2389
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-spinner qt-spinner-lg", style: { margin: "0 auto" } }),
2390
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { style: { fontSize: "0.75rem", marginTop: "0.5rem" }, children: "Large" })
2299
2391
  ] })
2300
2392
  ] })
2301
2393
  ] }),
2302
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2303
- /* @__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: "Skeleton Text" }),
2304
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2305
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2306
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2307
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2394
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2395
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Text" }),
2396
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { maxWidth: "28rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2397
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "100%" } }),
2398
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "80%" } }),
2399
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2308
2400
  ] })
2309
2401
  ] }),
2310
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2311
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2312
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2313
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2314
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2315
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2316
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2317
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2402
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2403
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Card" }),
2404
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-card", style: { maxWidth: "24rem", padding: "1rem" }, children: [
2405
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", gap: "0.75rem", marginBottom: "1rem", alignItems: "flex-start" }, children: [
2406
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "40px", height: "40px", flexShrink: 0 } }),
2407
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2408
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } }),
2409
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "40%" } })
2318
2410
  ] })
2319
2411
  ] }),
2320
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2321
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2322
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2323
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2412
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2413
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2414
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2415
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "75%" } })
2324
2416
  ] })
2325
2417
  ] })
2326
2418
  ] }),
2327
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2328
- /* @__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: "Skeleton Message" }),
2329
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2330
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2331
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2332
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2333
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2334
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2335
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2336
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2419
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2420
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton Message" }),
2421
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { maxWidth: "42rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", gap: "0.75rem" }, children: [
2422
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2423
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2424
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "120px" } }),
2425
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-card", style: { padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2426
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2427
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text" }),
2428
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "60%" } })
2337
2429
  ] }) })
2338
2430
  ] })
2339
2431
  ] }) })
2340
2432
  ] }),
2341
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2342
- /* @__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: "Skeleton List" }),
2343
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2344
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2345
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2433
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2434
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Skeleton List" }),
2435
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { maxWidth: "24rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [1, 2, 3].map((i) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-card", style: { padding: "0.75rem", display: "flex", gap: "0.75rem", alignItems: "center" }, children: [
2436
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-circle", style: { width: "32px", height: "32px", flexShrink: 0 } }),
2437
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { flex: 1 }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-skeleton qt-skeleton-text", style: { width: "70%" } }) })
2346
2438
  ] }, i)) })
2347
2439
  ] }),
2348
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("section", { children: [
2349
- /* @__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: "Loading Button" }),
2350
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2351
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2352
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2440
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { children: [
2441
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Loading Button" }),
2442
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2443
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("button", { className: "qt-button qt-button-primary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2444
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2353
2445
  "Loading..."
2354
2446
  ] }),
2355
- /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2356
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2447
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("button", { className: "qt-button qt-button-secondary", disabled: true, style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2448
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-spinner qt-spinner-sm" }),
2357
2449
  "Saving..."
2358
2450
  ] })
2359
2451
  ] })
@@ -2362,130 +2454,130 @@ var Loading = () => {
2362
2454
  };
2363
2455
 
2364
2456
  // src/stories/components/Participant.tsx
2365
- var import_jsx_runtime20 = require("react/jsx-runtime");
2457
+ var import_jsx_runtime21 = require("react/jsx-runtime");
2366
2458
  var Participant = () => {
2367
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2368
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2369
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2370
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2371
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2372
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2373
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2374
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2375
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2376
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2459
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { padding: "1.5rem" }, children: [
2460
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h2", { style: { fontSize: "1.5rem", fontWeight: 700, marginBottom: "1.5rem" }, children: "Participants" }),
2461
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2462
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Cards" }),
2463
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2464
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2465
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2466
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2467
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2468
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" })
2377
2469
  ] })
2378
2470
  ] }) }),
2379
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2380
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2381
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2382
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2383
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2471
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2472
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2473
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2474
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2475
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2384
2476
  ] })
2385
2477
  ] }) }),
2386
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2387
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2388
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2389
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2390
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2478
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2479
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2480
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2481
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2482
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2391
2483
  ] })
2392
2484
  ] }) })
2393
2485
  ] })
2394
2486
  ] }),
2395
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2396
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2397
- /* @__PURE__ */ (0, import_jsx_runtime20.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." }),
2398
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2399
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2400
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2401
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2402
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2403
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2487
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2488
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Participant Status States" }),
2489
+ /* @__PURE__ */ (0, import_jsx_runtime21.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." }),
2490
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2491
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2492
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2493
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2494
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2495
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Currently Speaking" })
2404
2496
  ] })
2405
2497
  ] }) }),
2406
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2407
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2408
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2409
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime20.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" }) }) })
2498
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card qt-participant-card-silent", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2499
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2500
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }),
2501
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-silent", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime21.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" }) }) })
2410
2502
  ] }),
2411
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2412
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2413
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2414
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2503
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2504
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2505
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2506
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { className: "qt-badge-silent", style: { fontSize: "0.625rem" }, children: "Silent" })
2415
2507
  ] }),
2416
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2508
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Inner thoughts only" })
2417
2509
  ] })
2418
2510
  ] }) }),
2419
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2420
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2421
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2422
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2511
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", style: { opacity: 0.7 }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2512
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-avatar", style: { position: "relative" }, children: [
2513
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "CC" }) }),
2514
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-status-overlay qt-participant-status-overlay-absent", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("svg", { width: "10", height: "10", fill: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) }) })
2423
2515
  ] }),
2424
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2425
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2426
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2427
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2516
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2517
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2518
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Clara Character" }),
2519
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { className: "qt-badge-absent", style: { fontSize: "0.625rem" }, children: "Absent" })
2428
2520
  ] }),
2429
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2521
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Away from the scene" })
2430
2522
  ] })
2431
2523
  ] }) }),
2432
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2433
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2434
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2435
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2436
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2524
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2525
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2526
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2527
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "You" }),
2528
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "Human" })
2437
2529
  ] })
2438
2530
  ] }) })
2439
2531
  ] })
2440
2532
  ] }),
2441
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2442
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2443
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2444
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2445
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2446
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2447
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2448
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2449
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2450
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2533
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("section", { style: { marginBottom: "2rem" }, children: [
2534
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Chat Sidebar Layout" }),
2535
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { display: "flex", gap: "1rem" }, children: [
2536
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-card", style: { flex: 1, padding: "1rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("p", { style: { color: "var(--color-text-muted)" }, children: "Chat messages area" }) }),
2537
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-chat-sidebar", style: { width: "16rem" }, children: [
2538
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { style: { padding: "1rem", borderBottom: "1px solid var(--qt-chat-sidebar-header-border)" }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h4", { style: { fontWeight: 600, color: "var(--qt-chat-sidebar-heading)" }, children: "Participants" }) }),
2539
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { padding: "0.5rem", display: "flex", flexDirection: "column", gap: "0.5rem" }, children: [
2540
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card qt-participant-card-active", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2541
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2542
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "Alice" }) })
2451
2543
  ] }) }),
2452
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2453
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2454
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2544
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2545
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar qt-avatar-sm", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "YO" }) }) }),
2546
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-info", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", style: { fontSize: "0.875rem" }, children: "You" }) })
2455
2547
  ] }) })
2456
2548
  ] })
2457
2549
  ] })
2458
2550
  ] })
2459
2551
  ] }),
2460
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("section", { children: [
2461
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2462
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2463
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2464
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2465
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2466
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2467
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2468
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2469
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "", children: "Select a provider..." }),
2470
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "__user__", children: "User (you type)" }),
2471
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2472
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2473
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "gemini", children: "gemini-pro" })
2552
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("section", { children: [
2553
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("h3", { style: { fontSize: "1.125rem", fontWeight: 700, marginBottom: "1rem", borderBottom: "1px solid var(--color-border)", paddingBottom: "0.5rem" }, children: "Connection Profile Dropdown" }),
2554
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { maxWidth: "20rem", display: "flex", flexDirection: "column", gap: "1rem" }, children: [
2555
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2556
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "AC" }) }) }),
2557
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2558
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Alice Character" }),
2559
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-status", children: "AI Assistant" }),
2560
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "gpt-4", children: [
2561
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "", children: "Select a provider..." }),
2562
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "__user__", children: "User (you type)" }),
2563
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2564
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "claude", children: "claude-3-opus" }),
2565
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "gemini", children: "gemini-pro" })
2474
2566
  ] }) })
2475
2567
  ] })
2476
2568
  ] }) }),
2477
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-header", children: [
2478
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2479
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "qt-participant-card-info", children: [
2480
- /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2481
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2482
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2569
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-header", children: [
2570
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-avatar-fallback", children: "BC" }) }) }),
2571
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "qt-participant-card-info", children: [
2572
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
2573
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "qt-participant-card-name", children: "Bob Character" }),
2574
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("span", { className: "qt-badge-secondary", style: { fontSize: "0.75rem" }, children: "You" })
2483
2575
  ] }),
2484
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2485
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "", children: "Select a provider..." }),
2486
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "__user__", children: "User (you type)" }),
2487
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2488
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("option", { value: "claude", children: "claude-3-opus" })
2576
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { style: { marginTop: "0.25rem" }, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("select", { className: "qt-select qt-select-sm", style: { width: "100%" }, defaultValue: "__user__", children: [
2577
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "", children: "Select a provider..." }),
2578
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "__user__", children: "User (you type)" }),
2579
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "gpt-4", children: "gpt-4-turbo" }),
2580
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("option", { value: "claude", children: "claude-3-opus" })
2489
2581
  ] }) })
2490
2582
  ] })
2491
2583
  ] }) })
@@ -2517,5 +2609,6 @@ var Participant = () => {
2517
2609
  ThemeComparison,
2518
2610
  ThemeDecorator,
2519
2611
  Typography,
2612
+ Workspace,
2520
2613
  defaultPreview
2521
2614
  });