@arbidocs/blocks 0.3.177 → 0.3.179
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/{chunk-6HGMAQLB.cjs → chunk-DBAUZD7A.cjs} +448 -113
- package/dist/chunk-DBAUZD7A.cjs.map +1 -0
- package/dist/{chunk-27Q4AST5.js → chunk-FZ2S6VAZ.js} +449 -116
- package/dist/chunk-FZ2S6VAZ.js.map +1 -0
- package/dist/{index-er1L8kkn.d.cts → index-DduoEosi.d.cts} +65 -2
- package/dist/{index-er1L8kkn.d.ts → index-DduoEosi.d.ts} +65 -2
- package/dist/index.cjs +258 -178
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +64 -9
- package/dist/index.d.ts +64 -9
- package/dist/index.js +110 -40
- package/dist/index.js.map +1 -1
- package/dist/site/index.cjs +61 -61
- package/dist/site/index.d.cts +1 -1
- package/dist/site/index.d.ts +1 -1
- package/dist/site/index.js +1 -1
- package/package.json +3 -3
- package/dist/chunk-27Q4AST5.js.map +0 -1
- package/dist/chunk-6HGMAQLB.cjs.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkDBAUZD7A_cjs = require('./chunk-DBAUZD7A.cjs');
|
|
4
4
|
var react$1 = require('react');
|
|
5
5
|
var lucideReact = require('lucide-react');
|
|
6
6
|
var react = require('@arbidocs/react');
|
|
@@ -219,27 +219,25 @@ function CitationEditor({
|
|
|
219
219
|
setLocalValue(value);
|
|
220
220
|
}
|
|
221
221
|
}, [value, isEditing]);
|
|
222
|
-
const
|
|
223
|
-
const hasCitations =
|
|
222
|
+
const sources = react$1.useMemo(() => citations ?? [], [citations]);
|
|
223
|
+
const hasCitations = sources.length > 0;
|
|
224
224
|
const byDoc = react$1.useMemo(() => {
|
|
225
225
|
const groups = /* @__PURE__ */ new Map();
|
|
226
|
-
for (const
|
|
227
|
-
|
|
228
|
-
const
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
group.pages.push(passage.page);
|
|
232
|
-
groups.set(passage.doc_ext_id, group);
|
|
226
|
+
for (const doc of sources) {
|
|
227
|
+
const chunks = doc.chunks ?? [];
|
|
228
|
+
const pages = [];
|
|
229
|
+
for (const c of chunks) if (c.page != null && !pages.includes(c.page)) pages.push(c.page);
|
|
230
|
+
groups.set(doc.doc_ext_id, { pages, count: chunks.length });
|
|
233
231
|
}
|
|
234
232
|
return groups;
|
|
235
|
-
}, [
|
|
233
|
+
}, [sources]);
|
|
236
234
|
const docIds = Array.from(byDoc.keys());
|
|
237
235
|
const handleRemoveDocument = react$1.useCallback(
|
|
238
236
|
(docExtId) => {
|
|
239
|
-
const remaining =
|
|
240
|
-
onChange(localValue, remaining.length ?
|
|
237
|
+
const remaining = sources.filter((d) => d.doc_ext_id !== docExtId);
|
|
238
|
+
onChange(localValue, remaining.length ? remaining : null);
|
|
241
239
|
},
|
|
242
|
-
[
|
|
240
|
+
[sources, localValue, onChange]
|
|
243
241
|
);
|
|
244
242
|
const handleToggleDocument = react$1.useCallback(
|
|
245
243
|
(docExtId) => {
|
|
@@ -330,7 +328,7 @@ function CitationEditor({
|
|
|
330
328
|
children: /* @__PURE__ */ jsxRuntime.jsx(react.DocumentEntity, { doc, fullWidth: true, labelMaxWidth: "max-w-full" })
|
|
331
329
|
}
|
|
332
330
|
) : /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground", children: docId }),
|
|
333
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground shrink-0", children:
|
|
331
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground shrink-0", children: chunkDBAUZD7A_cjs.formatPageRefs(pages) }),
|
|
334
332
|
!readOnly && /* @__PURE__ */ jsxRuntime.jsx(
|
|
335
333
|
"button",
|
|
336
334
|
{
|
|
@@ -346,10 +344,6 @@ function CitationEditor({
|
|
|
346
344
|
docId
|
|
347
345
|
);
|
|
348
346
|
}),
|
|
349
|
-
passages.some((p) => !p.doc_ext_id) && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-sm text-muted-foreground", children: [
|
|
350
|
-
passages.filter((p) => !p.doc_ext_id).length,
|
|
351
|
-
" passage(s) without a recorded document"
|
|
352
|
-
] }),
|
|
353
347
|
!readOnly && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-1", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 min-w-0", "data-testid": "citation-document-picker", children: renderDocumentPicker?.(handleToggleDocument, docIds) }) })
|
|
354
348
|
] }),
|
|
355
349
|
activeCitationKey && /* @__PURE__ */ jsxRuntime.jsxs("p", { className: "text-sm text-blue-text", children: [
|
|
@@ -580,9 +574,9 @@ function DataTable({
|
|
|
580
574
|
className
|
|
581
575
|
}) {
|
|
582
576
|
if (rows.length === 0) {
|
|
583
|
-
return /* @__PURE__ */ jsxRuntime.jsx(EmptyState, { title: emptyTitle, description: emptyDescription, testId:
|
|
577
|
+
return /* @__PURE__ */ jsxRuntime.jsx(EmptyState, { title: emptyTitle, description: emptyDescription, testId: chunkDBAUZD7A_cjs.tid(area, "empty") });
|
|
584
578
|
}
|
|
585
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: react.cn("rounded-xl border border-border bg-card", className), children: /* @__PURE__ */ jsxRuntime.jsxs(react.Table, { "data-testid":
|
|
579
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: react.cn("rounded-xl border border-border bg-card", className), children: /* @__PURE__ */ jsxRuntime.jsxs(react.Table, { "data-testid": chunkDBAUZD7A_cjs.tid(area, "table"), children: [
|
|
586
580
|
/* @__PURE__ */ jsxRuntime.jsx(react.TableHeader, { children: /* @__PURE__ */ jsxRuntime.jsx(react.TableRow, { className: "hover:bg-transparent", children: columns.map((c) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
587
581
|
react.TableHead,
|
|
588
582
|
{
|
|
@@ -596,7 +590,7 @@ function DataTable({
|
|
|
596
590
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
597
591
|
react.TableRow,
|
|
598
592
|
{
|
|
599
|
-
"data-testid":
|
|
593
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(area, "row", id),
|
|
600
594
|
onClick: onRowClick ? () => onRowClick(row) : void 0,
|
|
601
595
|
className: react.cn(onRowClick && "cursor-pointer"),
|
|
602
596
|
children: columns.map((c) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -1269,16 +1263,24 @@ function EntityIdentityBar({
|
|
|
1269
1263
|
children: [
|
|
1270
1264
|
/* @__PURE__ */ jsxRuntime.jsxs("dl", { className: "min-w-0 flex-1 space-y-1.5", children: [
|
|
1271
1265
|
fields.map((field) => /* @__PURE__ */ jsxRuntime.jsx(IdentityFieldRow, { field, canEdit }, field.label)),
|
|
1272
|
-
extraRows.map((row) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1266
|
+
extraRows.map((row) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1267
|
+
"div",
|
|
1268
|
+
{
|
|
1269
|
+
className: "flex min-h-7 min-w-0 items-center gap-2",
|
|
1270
|
+
"data-testid": row.testId,
|
|
1271
|
+
children: [
|
|
1272
|
+
/* @__PURE__ */ jsxRuntime.jsxs("dt", { className: "w-24 shrink-0 text-sm font-medium text-muted-foreground", children: [
|
|
1273
|
+
row.label,
|
|
1274
|
+
":"
|
|
1275
|
+
] }),
|
|
1276
|
+
/* @__PURE__ */ jsxRuntime.jsxs("dd", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
|
|
1277
|
+
row.content,
|
|
1278
|
+
row.trailing ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "ml-auto shrink-0", children: row.trailing }) : null
|
|
1279
|
+
] })
|
|
1280
|
+
]
|
|
1281
|
+
},
|
|
1282
|
+
row.label
|
|
1283
|
+
)),
|
|
1282
1284
|
footer ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center pt-0.5", children: footer }) : null
|
|
1283
1285
|
] }),
|
|
1284
1286
|
actions ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex shrink-0 items-center gap-2", children: actions }) : null
|
|
@@ -1333,7 +1335,7 @@ function IdentityFieldRow({ field, canEdit }) {
|
|
|
1333
1335
|
}
|
|
1334
1336
|
}
|
|
1335
1337
|
};
|
|
1336
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: react.cn("flex min-w-0 gap-2", multiline ? "items-start" : "items-center"), children: [
|
|
1338
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: react.cn("flex min-h-7 min-w-0 gap-2", multiline ? "items-start" : "items-center"), children: [
|
|
1337
1339
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1338
1340
|
"dt",
|
|
1339
1341
|
{
|
|
@@ -1410,7 +1412,7 @@ function MemberAvatarStack({
|
|
|
1410
1412
|
const faces = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
1411
1413
|
hidden ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm text-muted-foreground", children: "\u2014" }) : shown.map((m, i) => /* @__PURE__ */ jsxRuntime.jsxs(react.Avatar, { className: react.cn("size-6 border-2", ringClassName), title: m.name, children: [
|
|
1412
1414
|
m.picture && /* @__PURE__ */ jsxRuntime.jsx(react.AvatarImage, { src: m.picture, alt: m.name }),
|
|
1413
|
-
/* @__PURE__ */ jsxRuntime.jsx(react.AvatarFallback, { className: "bg-foreground text-[9px] font-medium text-background", children:
|
|
1415
|
+
/* @__PURE__ */ jsxRuntime.jsx(react.AvatarFallback, { className: "bg-foreground text-[9px] font-medium text-background", children: chunkDBAUZD7A_cjs.initials(m.name || "?") })
|
|
1414
1416
|
] }, i)),
|
|
1415
1417
|
!hidden && extra > 0 && /* @__PURE__ */ jsxRuntime.jsx(react.Avatar, { className: react.cn("size-6 border-2", ringClassName), children: /* @__PURE__ */ jsxRuntime.jsxs(react.AvatarFallback, { className: "bg-accent text-[9px] font-medium text-muted-foreground", children: [
|
|
1416
1418
|
"+",
|
|
@@ -1603,18 +1605,18 @@ function RecentActivityCard({
|
|
|
1603
1605
|
onClick: row.onClick,
|
|
1604
1606
|
title: row.title,
|
|
1605
1607
|
className: react.cn(
|
|
1606
|
-
"flex min-w-0 flex-1 items-start gap-3 py-
|
|
1608
|
+
"flex min-w-0 flex-1 items-start gap-3 py-1.5 pl-4 pr-2 text-left focus-visible:outline-none",
|
|
1607
1609
|
row.onClick && "cursor-pointer"
|
|
1608
1610
|
),
|
|
1609
1611
|
"data-testid": testId && `${testId}-row`,
|
|
1610
1612
|
children: [
|
|
1611
1613
|
row.leading,
|
|
1612
1614
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
1613
|
-
/* @__PURE__ */ jsxRuntime.
|
|
1614
|
-
|
|
1615
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "min-w-0 flex-1 truncate text-xs text-muted-foreground", children: row.subtitle }),
|
|
1615
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-baseline gap-1.5", children: [
|
|
1616
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "min-w-0 flex-1 truncate text-sm font-semibold text-foreground group-hover:text-primary", children: row.title }),
|
|
1616
1617
|
!row.trailing && row.meta && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "shrink-0 text-[11px] text-muted-foreground", children: row.meta })
|
|
1617
|
-
] })
|
|
1618
|
+
] }),
|
|
1619
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-0.5 truncate text-xs text-muted-foreground", children: row.subtitle })
|
|
1618
1620
|
] })
|
|
1619
1621
|
]
|
|
1620
1622
|
}
|
|
@@ -1758,6 +1760,74 @@ function ResumeStrip({
|
|
|
1758
1760
|
)) })
|
|
1759
1761
|
] });
|
|
1760
1762
|
}
|
|
1763
|
+
function SectionCaption({ children, className, testId }) {
|
|
1764
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1765
|
+
"p",
|
|
1766
|
+
{
|
|
1767
|
+
className: react.cn(
|
|
1768
|
+
"text-[11px] font-medium uppercase tracking-wide text-muted-foreground",
|
|
1769
|
+
className
|
|
1770
|
+
),
|
|
1771
|
+
"data-testid": testId,
|
|
1772
|
+
children
|
|
1773
|
+
}
|
|
1774
|
+
);
|
|
1775
|
+
}
|
|
1776
|
+
function QuickActionCards({
|
|
1777
|
+
items,
|
|
1778
|
+
caption,
|
|
1779
|
+
className,
|
|
1780
|
+
testId = "quick-action-cards"
|
|
1781
|
+
}) {
|
|
1782
|
+
if (items.length === 0) return null;
|
|
1783
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("section", { className: react.cn("flex flex-col gap-2", className), "data-testid": testId, children: [
|
|
1784
|
+
caption && /* @__PURE__ */ jsxRuntime.jsx(SectionCaption, { children: caption }),
|
|
1785
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-2 [grid-template-columns:repeat(auto-fit,minmax(190px,1fr))]", children: items.map((item) => {
|
|
1786
|
+
const Icon = item.icon;
|
|
1787
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1788
|
+
"button",
|
|
1789
|
+
{
|
|
1790
|
+
type: "button",
|
|
1791
|
+
onClick: item.onClick,
|
|
1792
|
+
disabled: item.disabled,
|
|
1793
|
+
title: item.disabled ? item.disabledReason : void 0,
|
|
1794
|
+
"aria-describedby": void 0,
|
|
1795
|
+
className: react.cn(
|
|
1796
|
+
"group flex h-full items-start gap-3 rounded-2xl border border-border/70 bg-card p-4 text-left",
|
|
1797
|
+
"transition-colors",
|
|
1798
|
+
// `[&:hover]` rather than `hover:` — Tailwind v4 wraps the hover
|
|
1799
|
+
// variant in @media (hover: hover), so on a touchscreen the
|
|
1800
|
+
// affordance would never appear at all.
|
|
1801
|
+
"[&:hover]:border-theme-cyan/50 [&:hover]:bg-theme-cyan/5",
|
|
1802
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-theme-cyan focus-visible:ring-offset-2",
|
|
1803
|
+
"disabled:cursor-default disabled:opacity-55",
|
|
1804
|
+
"disabled:[&:hover]:border-border/70 disabled:[&:hover]:bg-card"
|
|
1805
|
+
),
|
|
1806
|
+
"data-testid": item.testId,
|
|
1807
|
+
children: [
|
|
1808
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1809
|
+
"span",
|
|
1810
|
+
{
|
|
1811
|
+
className: react.cn(
|
|
1812
|
+
"flex h-10 w-10 shrink-0 items-center justify-center rounded-full",
|
|
1813
|
+
"bg-theme-cyan/10 text-theme-cyan transition-colors",
|
|
1814
|
+
"[.group:hover_&]:bg-theme-cyan/20",
|
|
1815
|
+
item.disabled && "bg-muted text-muted-foreground [.group:hover_&]:bg-muted"
|
|
1816
|
+
),
|
|
1817
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { className: "h-5 w-5" })
|
|
1818
|
+
}
|
|
1819
|
+
),
|
|
1820
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "min-w-0", children: [
|
|
1821
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "block text-base font-medium text-foreground", children: item.title }),
|
|
1822
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "mt-0.5 block text-sm leading-snug text-muted-foreground", children: item.disabled && item.disabledReason ? item.disabledReason : item.description })
|
|
1823
|
+
] })
|
|
1824
|
+
]
|
|
1825
|
+
},
|
|
1826
|
+
item.id
|
|
1827
|
+
);
|
|
1828
|
+
}) })
|
|
1829
|
+
] });
|
|
1830
|
+
}
|
|
1761
1831
|
function SectionStrip({
|
|
1762
1832
|
icon: Icon,
|
|
1763
1833
|
title,
|
|
@@ -2049,18 +2119,18 @@ function WorkspaceCard({
|
|
|
2049
2119
|
)
|
|
2050
2120
|
] }),
|
|
2051
2121
|
/* @__PURE__ */ jsxRuntime.jsxs(react.CardFooter, { className: "mt-auto flex w-full min-w-0 flex-col items-stretch gap-3 overflow-hidden p-0", children: [
|
|
2052
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-center gap-x-3 text-
|
|
2122
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-center gap-x-3 text-[15px]", children: [
|
|
2053
2123
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3", children: [
|
|
2054
2124
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Documents", children: [
|
|
2055
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-
|
|
2125
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-4 text-muted-foreground" }),
|
|
2056
2126
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: docCount.toLocaleString() })
|
|
2057
2127
|
] }),
|
|
2058
2128
|
chatCount !== void 0 && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Chats", children: [
|
|
2059
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.MessagesSquare, { className: "size-
|
|
2129
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.MessagesSquare, { className: "size-4 text-muted-foreground" }),
|
|
2060
2130
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: chatCount.toLocaleString() })
|
|
2061
2131
|
] }),
|
|
2062
2132
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Members", children: [
|
|
2063
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-
|
|
2133
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-4 text-muted-foreground" }),
|
|
2064
2134
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2065
2135
|
"span",
|
|
2066
2136
|
{
|
|
@@ -2087,10 +2157,10 @@ function WorkspaceCard({
|
|
|
2087
2157
|
"span",
|
|
2088
2158
|
{
|
|
2089
2159
|
className: "min-w-0 max-w-full self-start truncate text-left text-xs text-muted-foreground",
|
|
2090
|
-
title:
|
|
2160
|
+
title: chunkDBAUZD7A_cjs.fmtDate(updatedAt),
|
|
2091
2161
|
children: [
|
|
2092
2162
|
"Updated ",
|
|
2093
|
-
|
|
2163
|
+
chunkDBAUZD7A_cjs.fromNow(updatedAt)
|
|
2094
2164
|
]
|
|
2095
2165
|
}
|
|
2096
2166
|
)
|
|
@@ -2122,7 +2192,7 @@ function NavItemLink({ item, onNavigate }) {
|
|
|
2122
2192
|
to: item.to,
|
|
2123
2193
|
end: item.end,
|
|
2124
2194
|
onClick: onNavigate,
|
|
2125
|
-
"data-testid":
|
|
2195
|
+
"data-testid": chunkDBAUZD7A_cjs.tid("sidebar-nav", item.id),
|
|
2126
2196
|
className: ({ isActive }) => react.cn(
|
|
2127
2197
|
"group flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors",
|
|
2128
2198
|
isActive ? "bg-sidebar-accent text-sidebar-accent-foreground" : "text-sidebar-foreground hover:bg-sidebar-accent/60 hover:text-sidebar-accent-foreground"
|
|
@@ -2295,7 +2365,7 @@ function AppHeader({
|
|
|
2295
2365
|
type: "button",
|
|
2296
2366
|
onClick: onSearch,
|
|
2297
2367
|
className: classNames?.search ?? "relative hidden max-w-md flex-1 items-center rounded-md border border-input bg-background py-2 pl-9 pr-3 text-left text-sm text-muted-foreground transition-colors hover:bg-accent md:flex",
|
|
2298
|
-
"data-testid":
|
|
2368
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "global-search"),
|
|
2299
2369
|
children: [
|
|
2300
2370
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Search, { className: "pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" }),
|
|
2301
2371
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-1", children: searchPlaceholder }),
|
|
@@ -2311,7 +2381,7 @@ function AppHeader({
|
|
|
2311
2381
|
size: "sm",
|
|
2312
2382
|
onClick: onAsk ?? onSearch,
|
|
2313
2383
|
className: classNames?.askButton,
|
|
2314
|
-
"data-testid":
|
|
2384
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "ask-ai"),
|
|
2315
2385
|
children: [
|
|
2316
2386
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-4" }),
|
|
2317
2387
|
askLabel
|
|
@@ -2322,7 +2392,7 @@ function AppHeader({
|
|
|
2322
2392
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2323
2393
|
react.NotificationBell,
|
|
2324
2394
|
{
|
|
2325
|
-
testId:
|
|
2395
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "notifications"),
|
|
2326
2396
|
onNavigate: onNotificationNavigate,
|
|
2327
2397
|
toneClassNames: notificationTones
|
|
2328
2398
|
}
|
|
@@ -2333,8 +2403,8 @@ function AppHeader({
|
|
|
2333
2403
|
user,
|
|
2334
2404
|
items: userItems,
|
|
2335
2405
|
onLogout,
|
|
2336
|
-
testId:
|
|
2337
|
-
logoutTestId:
|
|
2406
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "user-menu"),
|
|
2407
|
+
logoutTestId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "logout")
|
|
2338
2408
|
}
|
|
2339
2409
|
)
|
|
2340
2410
|
] })
|
|
@@ -2554,7 +2624,7 @@ function createArbiMaterializer(arbi, opts = {}) {
|
|
|
2554
2624
|
}
|
|
2555
2625
|
function collectAssetRefs(node, acc) {
|
|
2556
2626
|
if (typeof node === "string") {
|
|
2557
|
-
if (
|
|
2627
|
+
if (chunkDBAUZD7A_cjs.isAssetRef(node)) acc.add(node);
|
|
2558
2628
|
return;
|
|
2559
2629
|
}
|
|
2560
2630
|
if (Array.isArray(node)) {
|
|
@@ -2588,7 +2658,7 @@ async function materializePageData(data, materialize) {
|
|
|
2588
2658
|
const replacements = /* @__PURE__ */ new Map();
|
|
2589
2659
|
await Promise.all(
|
|
2590
2660
|
[...refs].map(async (ref) => {
|
|
2591
|
-
const src = await materialize(
|
|
2661
|
+
const src = await materialize(chunkDBAUZD7A_cjs.assetRefId(ref));
|
|
2592
2662
|
if (src) replacements.set(ref, src);
|
|
2593
2663
|
})
|
|
2594
2664
|
);
|
|
@@ -2673,7 +2743,7 @@ function StudioEditor({
|
|
|
2673
2743
|
radius: stored.radius ?? defaultTheme.radius,
|
|
2674
2744
|
activePresetId: null
|
|
2675
2745
|
});
|
|
2676
|
-
|
|
2746
|
+
chunkDBAUZD7A_cjs.applyStoredTheme(themeBundle);
|
|
2677
2747
|
})();
|
|
2678
2748
|
return () => {
|
|
2679
2749
|
cancelled = true;
|
|
@@ -2766,7 +2836,7 @@ function StudioEditor({
|
|
|
2766
2836
|
"\u201D\u2026"
|
|
2767
2837
|
]
|
|
2768
2838
|
}
|
|
2769
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
2839
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.AssetResolverProvider, { render: AssetThumb, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2770
2840
|
puck.Puck,
|
|
2771
2841
|
{
|
|
2772
2842
|
config,
|
|
@@ -2784,7 +2854,7 @@ function StudioEditor({
|
|
|
2784
2854
|
className: "w-80 shrink-0 border-l border-border",
|
|
2785
2855
|
"data-testid": `${testIdPrefix}-theme-drawer`,
|
|
2786
2856
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2787
|
-
|
|
2857
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
2788
2858
|
{
|
|
2789
2859
|
bundle: themeBundle,
|
|
2790
2860
|
variant: "drawer",
|
|
@@ -2823,7 +2893,7 @@ function PageRenderer({
|
|
|
2823
2893
|
const page = initialData ?? (await persistence.loadPublished(arbi, live, slug)).data ?? (await persistence.loadPage(arbi, live, slug)).data;
|
|
2824
2894
|
if (cancelled) return;
|
|
2825
2895
|
if (applyTheme) {
|
|
2826
|
-
|
|
2896
|
+
chunkDBAUZD7A_cjs.applyThemeVars(
|
|
2827
2897
|
theme ? { ...defaultTheme, ...theme, colors: { ...defaultTheme.colors, ...theme.colors } } : defaultTheme
|
|
2828
2898
|
);
|
|
2829
2899
|
}
|
|
@@ -3025,7 +3095,7 @@ function AiTextField({
|
|
|
3025
3095
|
setActive(true);
|
|
3026
3096
|
await task.run(buildPrompt({ kind, label, current: value ?? "" }), docIds);
|
|
3027
3097
|
};
|
|
3028
|
-
const inputTid =
|
|
3098
|
+
const inputTid = chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-field`, name);
|
|
3029
3099
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "al-ai-field", children: [
|
|
3030
3100
|
multiline ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
3031
3101
|
"textarea",
|
|
@@ -3054,7 +3124,7 @@ function AiTextField({
|
|
|
3054
3124
|
className: "al-ai-field__btn",
|
|
3055
3125
|
onClick: () => void write(),
|
|
3056
3126
|
disabled: task.isRunning,
|
|
3057
|
-
"data-testid":
|
|
3127
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-ai-write`, name),
|
|
3058
3128
|
title: "Draft this field with AI, grounded in the marketing workspace",
|
|
3059
3129
|
children: [
|
|
3060
3130
|
task.isRunning ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Loader2, { className: "size-3 animate-spin" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-3" }),
|
|
@@ -3157,8 +3227,8 @@ function ImageFieldControl({
|
|
|
3157
3227
|
const arbi = react.useArbi();
|
|
3158
3228
|
const gen = useImageGen();
|
|
3159
3229
|
const queryClient = reactQuery.useQueryClient();
|
|
3160
|
-
const currentAssetImage = useAssetImage(
|
|
3161
|
-
const tp = (...q) =>
|
|
3230
|
+
const currentAssetImage = useAssetImage(chunkDBAUZD7A_cjs.isAssetRef(value) ? chunkDBAUZD7A_cjs.assetRefId(value) : "");
|
|
3231
|
+
const tp = (...q) => chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-image`, name, ...q);
|
|
3162
3232
|
const refreshAssets = () => queryClient.invalidateQueries({ queryKey: ["arbi", "documents", workspaceId] });
|
|
3163
3233
|
const { data: docs } = react.useDocuments(workspaceId);
|
|
3164
3234
|
const imageDocs = react$1.useMemo(
|
|
@@ -3192,7 +3262,7 @@ function ImageFieldControl({
|
|
|
3192
3262
|
const res = await arbi.documents.uploadFile(file, name2, { folder });
|
|
3193
3263
|
const id = res.doc_ext_ids?.[0];
|
|
3194
3264
|
if (id) {
|
|
3195
|
-
onChange(
|
|
3265
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3196
3266
|
void refreshAssets();
|
|
3197
3267
|
}
|
|
3198
3268
|
} finally {
|
|
@@ -3210,7 +3280,7 @@ function ImageFieldControl({
|
|
|
3210
3280
|
if (!prompt.trim() || gen.isGenerating) return;
|
|
3211
3281
|
const id = await gen.generate(prompt, refIds);
|
|
3212
3282
|
if (id) {
|
|
3213
|
-
onChange(
|
|
3283
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3214
3284
|
setRefIds([]);
|
|
3215
3285
|
void refreshAssets();
|
|
3216
3286
|
}
|
|
@@ -3225,7 +3295,7 @@ function ImageFieldControl({
|
|
|
3225
3295
|
const tabClass = (on) => `inline-flex items-center gap-1 rounded-md px-2 py-1 text-xs font-medium ${on ? "bg-primary text-primary-foreground" : "text-muted-foreground hover:text-foreground"}`;
|
|
3226
3296
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", "data-testid": tp(), children: [
|
|
3227
3297
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
|
|
3228
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3298
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.BlockImage, { src: value, aspect: "16:9", rounded: "md", testId: tp("preview") }),
|
|
3229
3299
|
currentAssetImage ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3230
3300
|
"button",
|
|
3231
3301
|
{
|
|
@@ -3259,12 +3329,12 @@ function ImageFieldControl({
|
|
|
3259
3329
|
imageDocs.length === 0 && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "col-span-3 py-3 text-center text-xs text-muted-foreground", children: "No image assets yet \u2014 upload or generate one." }),
|
|
3260
3330
|
imageDocs.map((d) => {
|
|
3261
3331
|
const thumb = thumbs?.[d.external_id];
|
|
3262
|
-
const selected = value ===
|
|
3332
|
+
const selected = value === chunkDBAUZD7A_cjs.asAssetRef(d.external_id);
|
|
3263
3333
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3264
3334
|
"button",
|
|
3265
3335
|
{
|
|
3266
3336
|
type: "button",
|
|
3267
|
-
onClick: () => onChange(
|
|
3337
|
+
onClick: () => onChange(chunkDBAUZD7A_cjs.asAssetRef(d.external_id)),
|
|
3268
3338
|
className: `overflow-hidden rounded border ${selected ? "border-primary ring-1 ring-primary" : "border-border"}`,
|
|
3269
3339
|
title: d.file_name ?? "",
|
|
3270
3340
|
"data-testid": tp("asset", d.external_id),
|
|
@@ -3326,14 +3396,14 @@ function ImageFieldControl({
|
|
|
3326
3396
|
"Reference images",
|
|
3327
3397
|
refIds.length > 0 ? ` (${refIds.length})` : " (optional)"
|
|
3328
3398
|
] }),
|
|
3329
|
-
|
|
3399
|
+
chunkDBAUZD7A_cjs.isAssetRef(value) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3330
3400
|
"button",
|
|
3331
3401
|
{
|
|
3332
3402
|
type: "button",
|
|
3333
3403
|
className: "text-xs font-medium text-primary hover:underline",
|
|
3334
|
-
onClick: () => toggleRef(
|
|
3404
|
+
onClick: () => toggleRef(chunkDBAUZD7A_cjs.assetRefId(value)),
|
|
3335
3405
|
"data-testid": tp("vary-current"),
|
|
3336
|
-
children: refIds.includes(
|
|
3406
|
+
children: refIds.includes(chunkDBAUZD7A_cjs.assetRefId(value)) ? "Varying current" : "Vary current image"
|
|
3337
3407
|
}
|
|
3338
3408
|
)
|
|
3339
3409
|
] }),
|
|
@@ -3547,7 +3617,7 @@ function createBlockKit(ai, image, eyebrowClassName) {
|
|
|
3547
3617
|
}),
|
|
3548
3618
|
iconField: (label = "Icon") => ({ type: "select", label, options: ICON_OPTIONS }),
|
|
3549
3619
|
resolveIcon: (name) => name ? iconMap[name] : void 0,
|
|
3550
|
-
blockTestId: (id) =>
|
|
3620
|
+
blockTestId: (id) => chunkDBAUZD7A_cjs.tid("arbi-block", id)
|
|
3551
3621
|
};
|
|
3552
3622
|
}
|
|
3553
3623
|
var emptySlot = [];
|
|
@@ -3612,7 +3682,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3612
3682
|
render: ({ id, count, gap, col1, col2, col3, col4 }) => {
|
|
3613
3683
|
const n = Number(count) || 3;
|
|
3614
3684
|
const columns = [col1, col2, col3, col4].slice(0, n).map(renderSlot);
|
|
3615
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3685
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Columns, { count: n, gap, columns, testId: blockTestId(id) });
|
|
3616
3686
|
}
|
|
3617
3687
|
};
|
|
3618
3688
|
const SpacerBlock = {
|
|
@@ -3630,7 +3700,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3630
3700
|
}
|
|
3631
3701
|
},
|
|
3632
3702
|
defaultProps: { size: "md" },
|
|
3633
|
-
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3703
|
+
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Spacer, { size, testId: blockTestId(id) })
|
|
3634
3704
|
};
|
|
3635
3705
|
const ContainerBlock = {
|
|
3636
3706
|
label: "Container",
|
|
@@ -3658,7 +3728,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3658
3728
|
children: { type: "slot" }
|
|
3659
3729
|
},
|
|
3660
3730
|
defaultProps: { width: "default", padding: "md", children: emptySlot },
|
|
3661
|
-
render: ({ id, width, padding, children }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3731
|
+
render: ({ id, width, padding, children }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Container, { width, padding, testId: blockTestId(id), children: renderSlot(children) })
|
|
3662
3732
|
};
|
|
3663
3733
|
const HeroBlock = {
|
|
3664
3734
|
label: "Hero",
|
|
@@ -3709,7 +3779,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3709
3779
|
backgroundImage,
|
|
3710
3780
|
overlay
|
|
3711
3781
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3712
|
-
|
|
3782
|
+
chunkDBAUZD7A_cjs.Hero,
|
|
3713
3783
|
{
|
|
3714
3784
|
eyebrow,
|
|
3715
3785
|
title,
|
|
@@ -3781,7 +3851,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3781
3851
|
icon: resolveIcon(it.icon)
|
|
3782
3852
|
})
|
|
3783
3853
|
);
|
|
3784
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3854
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FeatureGrid, { columns, items: list, testId: blockTestId(id) });
|
|
3785
3855
|
}
|
|
3786
3856
|
};
|
|
3787
3857
|
const StatGroupBlock = {
|
|
@@ -3823,7 +3893,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3823
3893
|
avatarUrl: ""
|
|
3824
3894
|
},
|
|
3825
3895
|
render: ({ id, quote, author, role, avatarUrl }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3826
|
-
|
|
3896
|
+
chunkDBAUZD7A_cjs.Testimonial,
|
|
3827
3897
|
{
|
|
3828
3898
|
quote,
|
|
3829
3899
|
author,
|
|
@@ -3852,7 +3922,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3852
3922
|
overlay: true
|
|
3853
3923
|
},
|
|
3854
3924
|
render: ({ id, title, subtitle, cta, tone, backgroundImage, overlay }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3855
|
-
|
|
3925
|
+
chunkDBAUZD7A_cjs.CTABanner,
|
|
3856
3926
|
{
|
|
3857
3927
|
title,
|
|
3858
3928
|
subtitle,
|
|
@@ -3884,7 +3954,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3884
3954
|
{ label: "Umbrella" }
|
|
3885
3955
|
]
|
|
3886
3956
|
},
|
|
3887
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3957
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.LogoCloud, { items, testId: blockTestId(id) })
|
|
3888
3958
|
};
|
|
3889
3959
|
const FAQBlock = {
|
|
3890
3960
|
label: "FAQ",
|
|
@@ -3916,7 +3986,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3916
3986
|
}
|
|
3917
3987
|
]
|
|
3918
3988
|
},
|
|
3919
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3989
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FAQ, { items, testId: blockTestId(id) })
|
|
3920
3990
|
};
|
|
3921
3991
|
const TimelineBlockConfig = {
|
|
3922
3992
|
label: "Timeline",
|
|
@@ -3969,7 +4039,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3969
4039
|
]
|
|
3970
4040
|
},
|
|
3971
4041
|
render: ({ id, view, height, items }) => /* @__PURE__ */ jsxRuntime.jsx("div", { style: { height: height ?? 520 }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3972
|
-
|
|
4042
|
+
chunkDBAUZD7A_cjs.Timeline,
|
|
3973
4043
|
{
|
|
3974
4044
|
items: (items ?? []).filter((item) => !!item?.start).map((item, index) => ({
|
|
3975
4045
|
id: `${id}-${index}`,
|
|
@@ -3991,7 +4061,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3991
4061
|
defaultProps: {
|
|
3992
4062
|
content: "## About us\n\nWe build tools that help teams do their best work. Our platform combines **power** and _simplicity_ so you can focus on what matters.\n\n- Fast to learn\n- Easy to scale\n- Loved by teams"
|
|
3993
4063
|
},
|
|
3994
|
-
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4064
|
+
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.RichTextBlock, { content, testId: blockTestId(id) })
|
|
3995
4065
|
};
|
|
3996
4066
|
const CalloutBlock = {
|
|
3997
4067
|
label: "Callout",
|
|
@@ -4014,7 +4084,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4014
4084
|
title: "Good to know",
|
|
4015
4085
|
body: "This is a helpful note that draws attention to important information."
|
|
4016
4086
|
},
|
|
4017
|
-
render: ({ id, variant, title, body }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4087
|
+
render: ({ id, variant, title, body }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Callout, { variant, title, body, testId: blockTestId(id) })
|
|
4018
4088
|
};
|
|
4019
4089
|
const ImageBlock = {
|
|
4020
4090
|
label: "Image",
|
|
@@ -4045,7 +4115,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4045
4115
|
},
|
|
4046
4116
|
defaultProps: { src: "", alt: "Image", aspect: "16:9", rounded: "lg", framed: false },
|
|
4047
4117
|
render: ({ id, src, alt, aspect, rounded, framed }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4048
|
-
|
|
4118
|
+
chunkDBAUZD7A_cjs.BlockImage,
|
|
4049
4119
|
{
|
|
4050
4120
|
src,
|
|
4051
4121
|
alt,
|
|
@@ -4073,7 +4143,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4073
4143
|
}
|
|
4074
4144
|
},
|
|
4075
4145
|
defaultProps: { src: "", name: "Jane Doe", size: "md" },
|
|
4076
|
-
render: ({ id, src, name, size }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4146
|
+
render: ({ id, src, name, size }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.AvatarBlock, { src, name, size, testId: blockTestId(id) })
|
|
4077
4147
|
};
|
|
4078
4148
|
const NavbarBlock = {
|
|
4079
4149
|
label: "Navbar",
|
|
@@ -4101,7 +4171,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4101
4171
|
],
|
|
4102
4172
|
cta: { label: "Sign up", href: "#" }
|
|
4103
4173
|
},
|
|
4104
|
-
render: ({ id, brand, links, cta }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4174
|
+
render: ({ id, brand, links, cta }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Navbar, { brand, links, cta, testId: blockTestId(id) })
|
|
4105
4175
|
};
|
|
4106
4176
|
const FooterBlock = {
|
|
4107
4177
|
label: "Footer",
|
|
@@ -4160,7 +4230,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4160
4230
|
],
|
|
4161
4231
|
copyright: "\xA9 2026 Acme, Inc. All rights reserved."
|
|
4162
4232
|
},
|
|
4163
|
-
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4233
|
+
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Footer, { columns, copyright, testId: blockTestId(id) })
|
|
4164
4234
|
};
|
|
4165
4235
|
const ListBlockConfig = {
|
|
4166
4236
|
label: "List",
|
|
@@ -4178,7 +4248,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4178
4248
|
ordered: false,
|
|
4179
4249
|
items: [{ text: "First item" }, { text: "Second item" }, { text: "Third item" }]
|
|
4180
4250
|
},
|
|
4181
|
-
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4251
|
+
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.ListBlock, { ordered, items, testId: blockTestId(id) })
|
|
4182
4252
|
};
|
|
4183
4253
|
return {
|
|
4184
4254
|
Columns: ColumnsBlock,
|
|
@@ -4281,7 +4351,7 @@ function createSiteBlocks(kit) {
|
|
|
4281
4351
|
]
|
|
4282
4352
|
},
|
|
4283
4353
|
render: ({ id, plans }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4284
|
-
|
|
4354
|
+
chunkDBAUZD7A_cjs.PricingTable,
|
|
4285
4355
|
{
|
|
4286
4356
|
plans: (plans ?? []).map(
|
|
4287
4357
|
(p) => ({
|
|
@@ -4319,7 +4389,7 @@ function createSiteBlocks(kit) {
|
|
|
4319
4389
|
{ label: "FAQ", content: "Answers to common questions." }
|
|
4320
4390
|
]
|
|
4321
4391
|
},
|
|
4322
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4392
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Tabs, { items, testId: blockTestId(id) })
|
|
4323
4393
|
};
|
|
4324
4394
|
const AccordionBlock = {
|
|
4325
4395
|
label: "Accordion",
|
|
@@ -4343,7 +4413,7 @@ function createSiteBlocks(kit) {
|
|
|
4343
4413
|
{ title: "How does billing work?", content: "Monthly or annually, cancel anytime." }
|
|
4344
4414
|
]
|
|
4345
4415
|
},
|
|
4346
|
-
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4416
|
+
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Accordion, { allowMultiple, items, testId: blockTestId(id) })
|
|
4347
4417
|
};
|
|
4348
4418
|
const GalleryBlock = {
|
|
4349
4419
|
label: "Gallery",
|
|
@@ -4379,7 +4449,7 @@ function createSiteBlocks(kit) {
|
|
|
4379
4449
|
{ src: "", alt: "Image three", caption: "" }
|
|
4380
4450
|
]
|
|
4381
4451
|
},
|
|
4382
|
-
render: ({ id, columns, aspect, images }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4452
|
+
render: ({ id, columns, aspect, images }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Gallery, { columns, aspect, images, testId: blockTestId(id) })
|
|
4383
4453
|
};
|
|
4384
4454
|
const VideoBlock = {
|
|
4385
4455
|
label: "Video",
|
|
@@ -4399,7 +4469,7 @@ function createSiteBlocks(kit) {
|
|
|
4399
4469
|
},
|
|
4400
4470
|
defaultProps: { url: "", title: "", aspect: "16:9", rounded: true },
|
|
4401
4471
|
render: ({ id, url, title, aspect, rounded }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4402
|
-
|
|
4472
|
+
chunkDBAUZD7A_cjs.VideoEmbed,
|
|
4403
4473
|
{
|
|
4404
4474
|
url,
|
|
4405
4475
|
title,
|
|
@@ -4448,7 +4518,7 @@ function createSiteBlocks(kit) {
|
|
|
4448
4518
|
]
|
|
4449
4519
|
},
|
|
4450
4520
|
render: ({ id, submitLabel, action, successMessage, fields }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4451
|
-
|
|
4521
|
+
chunkDBAUZD7A_cjs.ContactForm,
|
|
4452
4522
|
{
|
|
4453
4523
|
submitLabel,
|
|
4454
4524
|
action: action || void 0,
|
|
@@ -4478,7 +4548,7 @@ function createSiteBlocks(kit) {
|
|
|
4478
4548
|
cta: { label: "Read more", href: "#" },
|
|
4479
4549
|
tone: "primary"
|
|
4480
4550
|
},
|
|
4481
|
-
render: ({ id, text, cta, tone }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4551
|
+
render: ({ id, text, cta, tone }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Banner, { text, cta, tone, testId: blockTestId(id) })
|
|
4482
4552
|
};
|
|
4483
4553
|
const MediaTextBlock = {
|
|
4484
4554
|
label: "Media & text",
|
|
@@ -4506,7 +4576,7 @@ function createSiteBlocks(kit) {
|
|
|
4506
4576
|
cta: { label: "Learn more", href: "#" }
|
|
4507
4577
|
},
|
|
4508
4578
|
render: ({ id, eyebrow, title, body, imageUrl, mediaSide, cta }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4509
|
-
|
|
4579
|
+
chunkDBAUZD7A_cjs.MediaText,
|
|
4510
4580
|
{
|
|
4511
4581
|
eyebrow,
|
|
4512
4582
|
title,
|
|
@@ -4543,7 +4613,7 @@ function createSiteBlocks(kit) {
|
|
|
4543
4613
|
{ name: "Jordan Lee", role: "Lead Engineer", bio: "", avatarUrl: "" }
|
|
4544
4614
|
]
|
|
4545
4615
|
},
|
|
4546
|
-
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4616
|
+
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TeamGrid, { columns, members, testId: blockTestId(id) })
|
|
4547
4617
|
};
|
|
4548
4618
|
const StepsBlock = {
|
|
4549
4619
|
label: "Steps",
|
|
@@ -4575,7 +4645,7 @@ function createSiteBlocks(kit) {
|
|
|
4575
4645
|
{ title: "Launch", description: "Go live and start seeing results." }
|
|
4576
4646
|
]
|
|
4577
4647
|
},
|
|
4578
|
-
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4648
|
+
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Steps, { variant, steps, testId: blockTestId(id) })
|
|
4579
4649
|
};
|
|
4580
4650
|
const TestimonialGridBlock = {
|
|
4581
4651
|
label: "Testimonial grid",
|
|
@@ -4617,7 +4687,7 @@ function createSiteBlocks(kit) {
|
|
|
4617
4687
|
}
|
|
4618
4688
|
]
|
|
4619
4689
|
},
|
|
4620
|
-
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4690
|
+
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TestimonialGrid, { columns, items, testId: blockTestId(id) })
|
|
4621
4691
|
};
|
|
4622
4692
|
return {
|
|
4623
4693
|
Pricing: PricingBlock,
|
|
@@ -4661,7 +4731,7 @@ function createArbiBlocksConfig(opts = {}) {
|
|
|
4661
4731
|
},
|
|
4662
4732
|
defaultProps: { title: "Section title", align: "left", invert: false },
|
|
4663
4733
|
render: ({ id, title, eyebrow, lead, align, invert }) => /* @__PURE__ */ jsxRuntime.jsx("div", { "data-testid": blockTestId(id), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4664
|
-
|
|
4734
|
+
chunkDBAUZD7A_cjs.SectionHeading,
|
|
4665
4735
|
{
|
|
4666
4736
|
title,
|
|
4667
4737
|
eyebrow,
|
|
@@ -5255,7 +5325,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5255
5325
|
{
|
|
5256
5326
|
variant: "elevated",
|
|
5257
5327
|
className: "rounded-xl",
|
|
5258
|
-
"data-testid":
|
|
5328
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-modules-section`, group.section),
|
|
5259
5329
|
children: [
|
|
5260
5330
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardHeader, { children: /* @__PURE__ */ jsxRuntime.jsx(react.CardTitle, { className: "text-base", children: group.section }) }),
|
|
5261
5331
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardContent, { className: "space-y-1.5", children: group.modules.map((m, idx) => {
|
|
@@ -5264,7 +5334,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5264
5334
|
"div",
|
|
5265
5335
|
{
|
|
5266
5336
|
className: "flex items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5267
|
-
"data-testid":
|
|
5337
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module`, m.id),
|
|
5268
5338
|
children: [
|
|
5269
5339
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
5270
5340
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5276,7 +5346,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5276
5346
|
disabled: idx === 0,
|
|
5277
5347
|
onClick: () => move(m.id, "up"),
|
|
5278
5348
|
"aria-label": `Move ${m.label} up`,
|
|
5279
|
-
"data-testid":
|
|
5349
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-up`, m.id),
|
|
5280
5350
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { className: "size-3.5" })
|
|
5281
5351
|
}
|
|
5282
5352
|
),
|
|
@@ -5289,7 +5359,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5289
5359
|
disabled: idx === group.modules.length - 1,
|
|
5290
5360
|
onClick: () => move(m.id, "down"),
|
|
5291
5361
|
"aria-label": `Move ${m.label} down`,
|
|
5292
|
-
"data-testid":
|
|
5362
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-down`, m.id),
|
|
5293
5363
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "size-3.5" })
|
|
5294
5364
|
}
|
|
5295
5365
|
)
|
|
@@ -5309,7 +5379,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5309
5379
|
checked: m.enabled,
|
|
5310
5380
|
onCheckedChange: () => toggle2(m.id),
|
|
5311
5381
|
"aria-label": `Enable ${m.label}`,
|
|
5312
|
-
"data-testid":
|
|
5382
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-toggle`, m.id)
|
|
5313
5383
|
}
|
|
5314
5384
|
)
|
|
5315
5385
|
]
|
|
@@ -5341,7 +5411,7 @@ function ConfigModelBadge({ configId, testIdPrefix }) {
|
|
|
5341
5411
|
react.Badge,
|
|
5342
5412
|
{
|
|
5343
5413
|
variant: TIER_VARIANT[tier] ?? "secondary",
|
|
5344
|
-
"data-testid":
|
|
5414
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-tier`, configId),
|
|
5345
5415
|
children: [
|
|
5346
5416
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Cpu, { className: "size-3" }),
|
|
5347
5417
|
" ",
|
|
@@ -5378,14 +5448,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5378
5448
|
"label",
|
|
5379
5449
|
{
|
|
5380
5450
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5381
|
-
"data-testid":
|
|
5451
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config`, v.external_id),
|
|
5382
5452
|
children: [
|
|
5383
5453
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5384
5454
|
react.Checkbox,
|
|
5385
5455
|
{
|
|
5386
5456
|
checked: configIds.includes(v.external_id),
|
|
5387
5457
|
onCheckedChange: () => toggleConfig(v.external_id),
|
|
5388
|
-
"data-testid":
|
|
5458
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-toggle`, v.external_id)
|
|
5389
5459
|
}
|
|
5390
5460
|
),
|
|
5391
5461
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5414,14 +5484,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5414
5484
|
"label",
|
|
5415
5485
|
{
|
|
5416
5486
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5417
|
-
"data-testid":
|
|
5487
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent`, a.external_id),
|
|
5418
5488
|
children: [
|
|
5419
5489
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5420
5490
|
react.Checkbox,
|
|
5421
5491
|
{
|
|
5422
5492
|
checked: agentIds.includes(a.external_id),
|
|
5423
5493
|
onCheckedChange: () => toggleAgent(a.external_id),
|
|
5424
|
-
"data-testid":
|
|
5494
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent-toggle`, a.external_id)
|
|
5425
5495
|
}
|
|
5426
5496
|
),
|
|
5427
5497
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5508,7 +5578,7 @@ function VerticalBuilder({
|
|
|
5508
5578
|
] })
|
|
5509
5579
|
] }),
|
|
5510
5580
|
/* @__PURE__ */ jsxRuntime.jsx(react.TabsContent, { value: "theme", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5511
|
-
|
|
5581
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
5512
5582
|
{
|
|
5513
5583
|
bundle: themeBundle,
|
|
5514
5584
|
variant: "panel",
|
|
@@ -5534,275 +5604,283 @@ function VerticalBuilder({
|
|
|
5534
5604
|
|
|
5535
5605
|
Object.defineProperty(exports, "ASSET_REF_PREFIX", {
|
|
5536
5606
|
enumerable: true,
|
|
5537
|
-
get: function () { return
|
|
5607
|
+
get: function () { return chunkDBAUZD7A_cjs.ASSET_REF_PREFIX; }
|
|
5538
5608
|
});
|
|
5539
5609
|
Object.defineProperty(exports, "Accordion", {
|
|
5540
5610
|
enumerable: true,
|
|
5541
|
-
get: function () { return
|
|
5611
|
+
get: function () { return chunkDBAUZD7A_cjs.Accordion; }
|
|
5542
5612
|
});
|
|
5543
5613
|
Object.defineProperty(exports, "AssetResolverProvider", {
|
|
5544
5614
|
enumerable: true,
|
|
5545
|
-
get: function () { return
|
|
5615
|
+
get: function () { return chunkDBAUZD7A_cjs.AssetResolverProvider; }
|
|
5546
5616
|
});
|
|
5547
5617
|
Object.defineProperty(exports, "AvatarBlock", {
|
|
5548
5618
|
enumerable: true,
|
|
5549
|
-
get: function () { return
|
|
5619
|
+
get: function () { return chunkDBAUZD7A_cjs.AvatarBlock; }
|
|
5550
5620
|
});
|
|
5551
5621
|
Object.defineProperty(exports, "Banner", {
|
|
5552
5622
|
enumerable: true,
|
|
5553
|
-
get: function () { return
|
|
5623
|
+
get: function () { return chunkDBAUZD7A_cjs.Banner; }
|
|
5554
5624
|
});
|
|
5555
5625
|
Object.defineProperty(exports, "BlockImage", {
|
|
5556
5626
|
enumerable: true,
|
|
5557
|
-
get: function () { return
|
|
5627
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockImage; }
|
|
5558
5628
|
});
|
|
5559
5629
|
Object.defineProperty(exports, "BlockLink", {
|
|
5560
5630
|
enumerable: true,
|
|
5561
|
-
get: function () { return
|
|
5631
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockLink; }
|
|
5562
5632
|
});
|
|
5563
5633
|
Object.defineProperty(exports, "CTABanner", {
|
|
5564
5634
|
enumerable: true,
|
|
5565
|
-
get: function () { return
|
|
5635
|
+
get: function () { return chunkDBAUZD7A_cjs.CTABanner; }
|
|
5566
5636
|
});
|
|
5567
5637
|
Object.defineProperty(exports, "Callout", {
|
|
5568
5638
|
enumerable: true,
|
|
5569
|
-
get: function () { return
|
|
5639
|
+
get: function () { return chunkDBAUZD7A_cjs.Callout; }
|
|
5570
5640
|
});
|
|
5571
5641
|
Object.defineProperty(exports, "Columns", {
|
|
5572
5642
|
enumerable: true,
|
|
5573
|
-
get: function () { return
|
|
5643
|
+
get: function () { return chunkDBAUZD7A_cjs.Columns; }
|
|
5574
5644
|
});
|
|
5575
5645
|
Object.defineProperty(exports, "ContactForm", {
|
|
5576
5646
|
enumerable: true,
|
|
5577
|
-
get: function () { return
|
|
5647
|
+
get: function () { return chunkDBAUZD7A_cjs.ContactForm; }
|
|
5578
5648
|
});
|
|
5579
5649
|
Object.defineProperty(exports, "Container", {
|
|
5580
5650
|
enumerable: true,
|
|
5581
|
-
get: function () { return
|
|
5651
|
+
get: function () { return chunkDBAUZD7A_cjs.Container; }
|
|
5582
5652
|
});
|
|
5583
5653
|
Object.defineProperty(exports, "FAQ", {
|
|
5584
5654
|
enumerable: true,
|
|
5585
|
-
get: function () { return
|
|
5655
|
+
get: function () { return chunkDBAUZD7A_cjs.FAQ; }
|
|
5586
5656
|
});
|
|
5587
5657
|
Object.defineProperty(exports, "FONT_PAIRINGS", {
|
|
5588
5658
|
enumerable: true,
|
|
5589
|
-
get: function () { return
|
|
5659
|
+
get: function () { return chunkDBAUZD7A_cjs.FONT_PAIRINGS; }
|
|
5590
5660
|
});
|
|
5591
5661
|
Object.defineProperty(exports, "FeatureGrid", {
|
|
5592
5662
|
enumerable: true,
|
|
5593
|
-
get: function () { return
|
|
5663
|
+
get: function () { return chunkDBAUZD7A_cjs.FeatureGrid; }
|
|
5594
5664
|
});
|
|
5595
5665
|
Object.defineProperty(exports, "Footer", {
|
|
5596
5666
|
enumerable: true,
|
|
5597
|
-
get: function () { return
|
|
5667
|
+
get: function () { return chunkDBAUZD7A_cjs.Footer; }
|
|
5598
5668
|
});
|
|
5599
5669
|
Object.defineProperty(exports, "Gallery", {
|
|
5600
5670
|
enumerable: true,
|
|
5601
|
-
get: function () { return
|
|
5671
|
+
get: function () { return chunkDBAUZD7A_cjs.Gallery; }
|
|
5602
5672
|
});
|
|
5603
5673
|
Object.defineProperty(exports, "Hero", {
|
|
5604
5674
|
enumerable: true,
|
|
5605
|
-
get: function () { return
|
|
5675
|
+
get: function () { return chunkDBAUZD7A_cjs.Hero; }
|
|
5606
5676
|
});
|
|
5607
5677
|
Object.defineProperty(exports, "ListBlock", {
|
|
5608
5678
|
enumerable: true,
|
|
5609
|
-
get: function () { return
|
|
5679
|
+
get: function () { return chunkDBAUZD7A_cjs.ListBlock; }
|
|
5610
5680
|
});
|
|
5611
5681
|
Object.defineProperty(exports, "LogoCloud", {
|
|
5612
5682
|
enumerable: true,
|
|
5613
|
-
get: function () { return
|
|
5683
|
+
get: function () { return chunkDBAUZD7A_cjs.LogoCloud; }
|
|
5614
5684
|
});
|
|
5615
5685
|
Object.defineProperty(exports, "MediaText", {
|
|
5616
5686
|
enumerable: true,
|
|
5617
|
-
get: function () { return
|
|
5687
|
+
get: function () { return chunkDBAUZD7A_cjs.MediaText; }
|
|
5618
5688
|
});
|
|
5619
5689
|
Object.defineProperty(exports, "Navbar", {
|
|
5620
5690
|
enumerable: true,
|
|
5621
|
-
get: function () { return
|
|
5691
|
+
get: function () { return chunkDBAUZD7A_cjs.Navbar; }
|
|
5622
5692
|
});
|
|
5623
5693
|
Object.defineProperty(exports, "PricingTable", {
|
|
5624
5694
|
enumerable: true,
|
|
5625
|
-
get: function () { return
|
|
5695
|
+
get: function () { return chunkDBAUZD7A_cjs.PricingTable; }
|
|
5626
5696
|
});
|
|
5627
5697
|
Object.defineProperty(exports, "RichTextBlock", {
|
|
5628
5698
|
enumerable: true,
|
|
5629
|
-
get: function () { return
|
|
5699
|
+
get: function () { return chunkDBAUZD7A_cjs.RichTextBlock; }
|
|
5630
5700
|
});
|
|
5631
5701
|
Object.defineProperty(exports, "SectionHeading", {
|
|
5632
5702
|
enumerable: true,
|
|
5633
|
-
get: function () { return
|
|
5703
|
+
get: function () { return chunkDBAUZD7A_cjs.SectionHeading; }
|
|
5634
5704
|
});
|
|
5635
5705
|
Object.defineProperty(exports, "Spacer", {
|
|
5636
5706
|
enumerable: true,
|
|
5637
|
-
get: function () { return
|
|
5707
|
+
get: function () { return chunkDBAUZD7A_cjs.Spacer; }
|
|
5638
5708
|
});
|
|
5639
5709
|
Object.defineProperty(exports, "Steps", {
|
|
5640
5710
|
enumerable: true,
|
|
5641
|
-
get: function () { return
|
|
5711
|
+
get: function () { return chunkDBAUZD7A_cjs.Steps; }
|
|
5642
5712
|
});
|
|
5643
5713
|
Object.defineProperty(exports, "THEME_STYLE_ID", {
|
|
5644
5714
|
enumerable: true,
|
|
5645
|
-
get: function () { return
|
|
5715
|
+
get: function () { return chunkDBAUZD7A_cjs.THEME_STYLE_ID; }
|
|
5716
|
+
});
|
|
5717
|
+
Object.defineProperty(exports, "TIMELINE_ZOOM", {
|
|
5718
|
+
enumerable: true,
|
|
5719
|
+
get: function () { return chunkDBAUZD7A_cjs.TIMELINE_ZOOM; }
|
|
5646
5720
|
});
|
|
5647
5721
|
Object.defineProperty(exports, "Tabs", {
|
|
5648
5722
|
enumerable: true,
|
|
5649
|
-
get: function () { return
|
|
5723
|
+
get: function () { return chunkDBAUZD7A_cjs.Tabs; }
|
|
5650
5724
|
});
|
|
5651
5725
|
Object.defineProperty(exports, "TeamGrid", {
|
|
5652
5726
|
enumerable: true,
|
|
5653
|
-
get: function () { return
|
|
5727
|
+
get: function () { return chunkDBAUZD7A_cjs.TeamGrid; }
|
|
5654
5728
|
});
|
|
5655
5729
|
Object.defineProperty(exports, "Testimonial", {
|
|
5656
5730
|
enumerable: true,
|
|
5657
|
-
get: function () { return
|
|
5731
|
+
get: function () { return chunkDBAUZD7A_cjs.Testimonial; }
|
|
5658
5732
|
});
|
|
5659
5733
|
Object.defineProperty(exports, "TestimonialGrid", {
|
|
5660
5734
|
enumerable: true,
|
|
5661
|
-
get: function () { return
|
|
5735
|
+
get: function () { return chunkDBAUZD7A_cjs.TestimonialGrid; }
|
|
5662
5736
|
});
|
|
5663
5737
|
Object.defineProperty(exports, "ThemeEditor", {
|
|
5664
5738
|
enumerable: true,
|
|
5665
|
-
get: function () { return
|
|
5739
|
+
get: function () { return chunkDBAUZD7A_cjs.ThemeEditor; }
|
|
5666
5740
|
});
|
|
5667
5741
|
Object.defineProperty(exports, "Timeline", {
|
|
5668
5742
|
enumerable: true,
|
|
5669
|
-
get: function () { return
|
|
5743
|
+
get: function () { return chunkDBAUZD7A_cjs.Timeline; }
|
|
5670
5744
|
});
|
|
5671
5745
|
Object.defineProperty(exports, "TimelineCalendar", {
|
|
5672
5746
|
enumerable: true,
|
|
5673
|
-
get: function () { return
|
|
5747
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineCalendar; }
|
|
5674
5748
|
});
|
|
5675
5749
|
Object.defineProperty(exports, "TimelineGantt", {
|
|
5676
5750
|
enumerable: true,
|
|
5677
|
-
get: function () { return
|
|
5751
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineGantt; }
|
|
5752
|
+
});
|
|
5753
|
+
Object.defineProperty(exports, "TimelineZoomControl", {
|
|
5754
|
+
enumerable: true,
|
|
5755
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineZoomControl; }
|
|
5678
5756
|
});
|
|
5679
5757
|
Object.defineProperty(exports, "VideoEmbed", {
|
|
5680
5758
|
enumerable: true,
|
|
5681
|
-
get: function () { return
|
|
5759
|
+
get: function () { return chunkDBAUZD7A_cjs.VideoEmbed; }
|
|
5682
5760
|
});
|
|
5683
5761
|
Object.defineProperty(exports, "applyFontVars", {
|
|
5684
5762
|
enumerable: true,
|
|
5685
|
-
get: function () { return
|
|
5763
|
+
get: function () { return chunkDBAUZD7A_cjs.applyFontVars; }
|
|
5686
5764
|
});
|
|
5687
5765
|
Object.defineProperty(exports, "applyStoredTheme", {
|
|
5688
5766
|
enumerable: true,
|
|
5689
|
-
get: function () { return
|
|
5767
|
+
get: function () { return chunkDBAUZD7A_cjs.applyStoredTheme; }
|
|
5690
5768
|
});
|
|
5691
5769
|
Object.defineProperty(exports, "applyThemeVars", {
|
|
5692
5770
|
enumerable: true,
|
|
5693
|
-
get: function () { return
|
|
5771
|
+
get: function () { return chunkDBAUZD7A_cjs.applyThemeVars; }
|
|
5694
5772
|
});
|
|
5695
5773
|
Object.defineProperty(exports, "asAssetRef", {
|
|
5696
5774
|
enumerable: true,
|
|
5697
|
-
get: function () { return
|
|
5775
|
+
get: function () { return chunkDBAUZD7A_cjs.asAssetRef; }
|
|
5698
5776
|
});
|
|
5699
5777
|
Object.defineProperty(exports, "assetRefId", {
|
|
5700
5778
|
enumerable: true,
|
|
5701
|
-
get: function () { return
|
|
5779
|
+
get: function () { return chunkDBAUZD7A_cjs.assetRefId; }
|
|
5702
5780
|
});
|
|
5703
5781
|
Object.defineProperty(exports, "clearFontVars", {
|
|
5704
5782
|
enumerable: true,
|
|
5705
|
-
get: function () { return
|
|
5783
|
+
get: function () { return chunkDBAUZD7A_cjs.clearFontVars; }
|
|
5706
5784
|
});
|
|
5707
5785
|
Object.defineProperty(exports, "clearThemeVars", {
|
|
5708
5786
|
enumerable: true,
|
|
5709
|
-
get: function () { return
|
|
5787
|
+
get: function () { return chunkDBAUZD7A_cjs.clearThemeVars; }
|
|
5710
5788
|
});
|
|
5711
5789
|
Object.defineProperty(exports, "createThemeStore", {
|
|
5712
5790
|
enumerable: true,
|
|
5713
|
-
get: function () { return
|
|
5791
|
+
get: function () { return chunkDBAUZD7A_cjs.createThemeStore; }
|
|
5714
5792
|
});
|
|
5715
5793
|
Object.defineProperty(exports, "dayKey", {
|
|
5716
5794
|
enumerable: true,
|
|
5717
|
-
get: function () { return
|
|
5795
|
+
get: function () { return chunkDBAUZD7A_cjs.dayKey; }
|
|
5718
5796
|
});
|
|
5719
5797
|
Object.defineProperty(exports, "daysUntil", {
|
|
5720
5798
|
enumerable: true,
|
|
5721
|
-
get: function () { return
|
|
5799
|
+
get: function () { return chunkDBAUZD7A_cjs.daysUntil; }
|
|
5722
5800
|
});
|
|
5723
5801
|
Object.defineProperty(exports, "fmtDate", {
|
|
5724
5802
|
enumerable: true,
|
|
5725
|
-
get: function () { return
|
|
5803
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDate; }
|
|
5726
5804
|
});
|
|
5727
5805
|
Object.defineProperty(exports, "fmtDateTime", {
|
|
5728
5806
|
enumerable: true,
|
|
5729
|
-
get: function () { return
|
|
5807
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDateTime; }
|
|
5730
5808
|
});
|
|
5731
5809
|
Object.defineProperty(exports, "fontPackages", {
|
|
5732
5810
|
enumerable: true,
|
|
5733
|
-
get: function () { return
|
|
5811
|
+
get: function () { return chunkDBAUZD7A_cjs.fontPackages; }
|
|
5734
5812
|
});
|
|
5735
5813
|
Object.defineProperty(exports, "formatPageRefs", {
|
|
5736
5814
|
enumerable: true,
|
|
5737
|
-
get: function () { return
|
|
5815
|
+
get: function () { return chunkDBAUZD7A_cjs.formatPageRefs; }
|
|
5738
5816
|
});
|
|
5739
5817
|
Object.defineProperty(exports, "formatSpan", {
|
|
5740
5818
|
enumerable: true,
|
|
5741
|
-
get: function () { return
|
|
5819
|
+
get: function () { return chunkDBAUZD7A_cjs.formatSpan; }
|
|
5742
5820
|
});
|
|
5743
5821
|
Object.defineProperty(exports, "fromNow", {
|
|
5744
5822
|
enumerable: true,
|
|
5745
|
-
get: function () { return
|
|
5823
|
+
get: function () { return chunkDBAUZD7A_cjs.fromNow; }
|
|
5746
5824
|
});
|
|
5747
5825
|
Object.defineProperty(exports, "gbp", {
|
|
5748
5826
|
enumerable: true,
|
|
5749
|
-
get: function () { return
|
|
5827
|
+
get: function () { return chunkDBAUZD7A_cjs.gbp; }
|
|
5750
5828
|
});
|
|
5751
5829
|
Object.defineProperty(exports, "getFontPairing", {
|
|
5752
5830
|
enumerable: true,
|
|
5753
|
-
get: function () { return
|
|
5831
|
+
get: function () { return chunkDBAUZD7A_cjs.getFontPairing; }
|
|
5754
5832
|
});
|
|
5755
5833
|
Object.defineProperty(exports, "hrs", {
|
|
5756
5834
|
enumerable: true,
|
|
5757
|
-
get: function () { return
|
|
5835
|
+
get: function () { return chunkDBAUZD7A_cjs.hrs; }
|
|
5758
5836
|
});
|
|
5759
5837
|
Object.defineProperty(exports, "initials", {
|
|
5760
5838
|
enumerable: true,
|
|
5761
|
-
get: function () { return
|
|
5839
|
+
get: function () { return chunkDBAUZD7A_cjs.initials; }
|
|
5762
5840
|
});
|
|
5763
5841
|
Object.defineProperty(exports, "isAssetRef", {
|
|
5764
5842
|
enumerable: true,
|
|
5765
|
-
get: function () { return
|
|
5843
|
+
get: function () { return chunkDBAUZD7A_cjs.isAssetRef; }
|
|
5766
5844
|
});
|
|
5767
5845
|
Object.defineProperty(exports, "matchFontPairing", {
|
|
5768
5846
|
enumerable: true,
|
|
5769
|
-
get: function () { return
|
|
5847
|
+
get: function () { return chunkDBAUZD7A_cjs.matchFontPairing; }
|
|
5770
5848
|
});
|
|
5771
5849
|
Object.defineProperty(exports, "monthLabel", {
|
|
5772
5850
|
enumerable: true,
|
|
5773
|
-
get: function () { return
|
|
5851
|
+
get: function () { return chunkDBAUZD7A_cjs.monthLabel; }
|
|
5774
5852
|
});
|
|
5775
5853
|
Object.defineProperty(exports, "parseIso", {
|
|
5776
5854
|
enumerable: true,
|
|
5777
|
-
get: function () { return
|
|
5855
|
+
get: function () { return chunkDBAUZD7A_cjs.parseIso; }
|
|
5778
5856
|
});
|
|
5779
5857
|
Object.defineProperty(exports, "pct", {
|
|
5780
5858
|
enumerable: true,
|
|
5781
|
-
get: function () { return
|
|
5859
|
+
get: function () { return chunkDBAUZD7A_cjs.pct; }
|
|
5782
5860
|
});
|
|
5783
5861
|
Object.defineProperty(exports, "tid", {
|
|
5784
5862
|
enumerable: true,
|
|
5785
|
-
get: function () { return
|
|
5863
|
+
get: function () { return chunkDBAUZD7A_cjs.tid; }
|
|
5786
5864
|
});
|
|
5787
5865
|
Object.defineProperty(exports, "toEmbedUrl", {
|
|
5788
5866
|
enumerable: true,
|
|
5789
|
-
get: function () { return
|
|
5867
|
+
get: function () { return chunkDBAUZD7A_cjs.toEmbedUrl; }
|
|
5790
5868
|
});
|
|
5791
5869
|
Object.defineProperty(exports, "toHslTriplet", {
|
|
5792
5870
|
enumerable: true,
|
|
5793
|
-
get: function () { return
|
|
5871
|
+
get: function () { return chunkDBAUZD7A_cjs.toHslTriplet; }
|
|
5794
5872
|
});
|
|
5795
5873
|
Object.defineProperty(exports, "useAssetRenderer", {
|
|
5796
5874
|
enumerable: true,
|
|
5797
|
-
get: function () { return
|
|
5875
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetRenderer; }
|
|
5798
5876
|
});
|
|
5799
5877
|
Object.defineProperty(exports, "useAssetResolverActive", {
|
|
5800
5878
|
enumerable: true,
|
|
5801
|
-
get: function () { return
|
|
5879
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetResolverActive; }
|
|
5802
5880
|
});
|
|
5803
5881
|
Object.defineProperty(exports, "utcDay", {
|
|
5804
5882
|
enumerable: true,
|
|
5805
|
-
get: function () { return
|
|
5883
|
+
get: function () { return chunkDBAUZD7A_cjs.utcDay; }
|
|
5806
5884
|
});
|
|
5807
5885
|
Object.defineProperty(exports, "DocumentCard", {
|
|
5808
5886
|
enumerable: true,
|
|
@@ -5880,9 +5958,11 @@ exports.MetricCard = MetricCard;
|
|
|
5880
5958
|
exports.ModuleManager = ModuleManager;
|
|
5881
5959
|
exports.PageHeader = PageHeader;
|
|
5882
5960
|
exports.PageRenderer = PageRenderer;
|
|
5961
|
+
exports.QuickActionCards = QuickActionCards;
|
|
5883
5962
|
exports.RecentActivityCard = RecentActivityCard;
|
|
5884
5963
|
exports.ResumeStrip = ResumeStrip;
|
|
5885
5964
|
exports.Section = Section;
|
|
5965
|
+
exports.SectionCaption = SectionCaption;
|
|
5886
5966
|
exports.SectionStrip = SectionStrip;
|
|
5887
5967
|
exports.StartHero = StartHero;
|
|
5888
5968
|
exports.StatGroup = StatGroup;
|