@arbidocs/blocks 0.3.177 → 0.3.180
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 +268 -183
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +78 -9
- package/dist/index.d.ts +78 -9
- package/dist/index.js +120 -45
- 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/src/components/grid.css +10 -0
- 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
|
|
@@ -1295,6 +1297,8 @@ function IdentityFieldRow({ field, canEdit }) {
|
|
|
1295
1297
|
multiline = false,
|
|
1296
1298
|
maxLength,
|
|
1297
1299
|
valueClassName,
|
|
1300
|
+
leading,
|
|
1301
|
+
hideLabel,
|
|
1298
1302
|
trailing,
|
|
1299
1303
|
testId
|
|
1300
1304
|
} = field;
|
|
@@ -1333,13 +1337,12 @@ function IdentityFieldRow({ field, canEdit }) {
|
|
|
1333
1337
|
}
|
|
1334
1338
|
}
|
|
1335
1339
|
};
|
|
1336
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: react.cn("flex min-w-0 gap-2", multiline ? "items-start" : "items-center"), children: [
|
|
1340
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: react.cn("flex min-h-7 min-w-0 gap-2", multiline ? "items-start" : "items-center"), children: [
|
|
1337
1341
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1338
1342
|
"dt",
|
|
1339
1343
|
{
|
|
1340
1344
|
className: react.cn(
|
|
1341
|
-
"w-24 shrink-0 text-sm font-medium text-muted-foreground",
|
|
1342
|
-
multiline && "pt-1"
|
|
1345
|
+
hideLabel ? "sr-only" : react.cn("w-24 shrink-0 text-sm font-medium text-muted-foreground", multiline && "pt-1")
|
|
1343
1346
|
),
|
|
1344
1347
|
children: [
|
|
1345
1348
|
label,
|
|
@@ -1348,6 +1351,7 @@ function IdentityFieldRow({ field, canEdit }) {
|
|
|
1348
1351
|
}
|
|
1349
1352
|
),
|
|
1350
1353
|
/* @__PURE__ */ jsxRuntime.jsxs("dd", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
|
|
1354
|
+
leading,
|
|
1351
1355
|
isEditing ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative min-w-0 flex-1", children: [
|
|
1352
1356
|
multiline ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
1353
1357
|
react.Textarea,
|
|
@@ -1410,7 +1414,7 @@ function MemberAvatarStack({
|
|
|
1410
1414
|
const faces = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
1411
1415
|
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
1416
|
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:
|
|
1417
|
+
/* @__PURE__ */ jsxRuntime.jsx(react.AvatarFallback, { className: "bg-foreground text-[9px] font-medium text-background", children: chunkDBAUZD7A_cjs.initials(m.name || "?") })
|
|
1414
1418
|
] }, i)),
|
|
1415
1419
|
!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
1420
|
"+",
|
|
@@ -1577,7 +1581,7 @@ function RecentActivityCard({
|
|
|
1577
1581
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1578
1582
|
"p",
|
|
1579
1583
|
{
|
|
1580
|
-
className: "mt-1 px-4 pb-1 text-[11px] font-medium uppercase tracking-wide text-muted-foreground",
|
|
1584
|
+
className: "mt-1 px-4 pb-1 text-right text-[11px] font-medium uppercase tracking-wide text-muted-foreground",
|
|
1581
1585
|
"data-testid": testId && `${testId}-caption`,
|
|
1582
1586
|
children: caption
|
|
1583
1587
|
}
|
|
@@ -1603,18 +1607,18 @@ function RecentActivityCard({
|
|
|
1603
1607
|
onClick: row.onClick,
|
|
1604
1608
|
title: row.title,
|
|
1605
1609
|
className: react.cn(
|
|
1606
|
-
"flex min-w-0 flex-1 items-start gap-3 py-
|
|
1610
|
+
"flex min-w-0 flex-1 items-start gap-3 py-1.5 pl-4 pr-2 text-left focus-visible:outline-none",
|
|
1607
1611
|
row.onClick && "cursor-pointer"
|
|
1608
1612
|
),
|
|
1609
1613
|
"data-testid": testId && `${testId}-row`,
|
|
1610
1614
|
children: [
|
|
1611
1615
|
row.leading,
|
|
1612
1616
|
/* @__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 }),
|
|
1617
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-baseline gap-1.5", children: [
|
|
1618
|
+
/* @__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
1619
|
!row.trailing && row.meta && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "shrink-0 text-[11px] text-muted-foreground", children: row.meta })
|
|
1617
|
-
] })
|
|
1620
|
+
] }),
|
|
1621
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-0.5 truncate text-xs text-muted-foreground", children: row.subtitle })
|
|
1618
1622
|
] })
|
|
1619
1623
|
]
|
|
1620
1624
|
}
|
|
@@ -1758,6 +1762,74 @@ function ResumeStrip({
|
|
|
1758
1762
|
)) })
|
|
1759
1763
|
] });
|
|
1760
1764
|
}
|
|
1765
|
+
function SectionCaption({ children, className, testId }) {
|
|
1766
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1767
|
+
"p",
|
|
1768
|
+
{
|
|
1769
|
+
className: react.cn(
|
|
1770
|
+
"text-[11px] font-medium uppercase tracking-wide text-muted-foreground",
|
|
1771
|
+
className
|
|
1772
|
+
),
|
|
1773
|
+
"data-testid": testId,
|
|
1774
|
+
children
|
|
1775
|
+
}
|
|
1776
|
+
);
|
|
1777
|
+
}
|
|
1778
|
+
function QuickActionCards({
|
|
1779
|
+
items,
|
|
1780
|
+
caption,
|
|
1781
|
+
className,
|
|
1782
|
+
testId = "quick-action-cards"
|
|
1783
|
+
}) {
|
|
1784
|
+
if (items.length === 0) return null;
|
|
1785
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("section", { className: react.cn("flex flex-col gap-2", className), "data-testid": testId, children: [
|
|
1786
|
+
caption && /* @__PURE__ */ jsxRuntime.jsx(SectionCaption, { children: caption }),
|
|
1787
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-2 [grid-template-columns:repeat(auto-fit,minmax(190px,1fr))]", children: items.map((item) => {
|
|
1788
|
+
const Icon = item.icon;
|
|
1789
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1790
|
+
"button",
|
|
1791
|
+
{
|
|
1792
|
+
type: "button",
|
|
1793
|
+
onClick: item.onClick,
|
|
1794
|
+
disabled: item.disabled,
|
|
1795
|
+
title: item.disabled ? item.disabledReason : void 0,
|
|
1796
|
+
"aria-describedby": void 0,
|
|
1797
|
+
className: react.cn(
|
|
1798
|
+
"group flex h-full items-start gap-3 rounded-2xl border-2 border-border bg-card p-4 text-left",
|
|
1799
|
+
"transition-colors",
|
|
1800
|
+
// `[&:hover]` rather than `hover:` — Tailwind v4 wraps the hover
|
|
1801
|
+
// variant in @media (hover: hover), so on a touchscreen the
|
|
1802
|
+
// affordance would never appear at all.
|
|
1803
|
+
"[&:hover]:border-theme-cyan/50 [&:hover]:bg-theme-cyan/5",
|
|
1804
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-theme-cyan focus-visible:ring-offset-2",
|
|
1805
|
+
"disabled:cursor-default disabled:opacity-55",
|
|
1806
|
+
"disabled:[&:hover]:border-border disabled:[&:hover]:bg-card"
|
|
1807
|
+
),
|
|
1808
|
+
"data-testid": item.testId,
|
|
1809
|
+
children: [
|
|
1810
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1811
|
+
"span",
|
|
1812
|
+
{
|
|
1813
|
+
className: react.cn(
|
|
1814
|
+
"flex h-10 w-10 shrink-0 items-center justify-center rounded-full",
|
|
1815
|
+
"bg-theme-cyan/10 text-theme-cyan transition-colors",
|
|
1816
|
+
"[.group:hover_&]:bg-theme-cyan/20",
|
|
1817
|
+
item.disabled && "bg-muted text-muted-foreground [.group:hover_&]:bg-muted"
|
|
1818
|
+
),
|
|
1819
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { className: "h-5 w-5" })
|
|
1820
|
+
}
|
|
1821
|
+
),
|
|
1822
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "min-w-0", children: [
|
|
1823
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "block text-base font-medium text-foreground", children: item.title }),
|
|
1824
|
+
/* @__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 })
|
|
1825
|
+
] })
|
|
1826
|
+
]
|
|
1827
|
+
},
|
|
1828
|
+
item.id
|
|
1829
|
+
);
|
|
1830
|
+
}) })
|
|
1831
|
+
] });
|
|
1832
|
+
}
|
|
1761
1833
|
function SectionStrip({
|
|
1762
1834
|
icon: Icon,
|
|
1763
1835
|
title,
|
|
@@ -1773,7 +1845,10 @@ function SectionStrip({
|
|
|
1773
1845
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1774
1846
|
"div",
|
|
1775
1847
|
{
|
|
1776
|
-
className: react.cn(
|
|
1848
|
+
className: react.cn(
|
|
1849
|
+
"@container rounded-xl border border-border/60 bg-card p-2 shadow-sm",
|
|
1850
|
+
className
|
|
1851
|
+
),
|
|
1777
1852
|
"data-testid": testId,
|
|
1778
1853
|
children: [
|
|
1779
1854
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1", children: [
|
|
@@ -1842,7 +1917,7 @@ function SectionStrip({
|
|
|
1842
1917
|
]
|
|
1843
1918
|
}
|
|
1844
1919
|
) : null : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid gap-x-4 @2xl:grid-cols-2", children: filledGroups.map((group) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
1845
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-1 px-2 pb-0.5 text-[11px] font-medium uppercase tracking-wide text-muted-foreground", children: group.caption }),
|
|
1920
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-1 px-2 pb-0.5 text-right text-[11px] font-medium uppercase tracking-wide text-muted-foreground", children: group.caption }),
|
|
1846
1921
|
/* @__PURE__ */ jsxRuntime.jsx("ul", { children: group.rows.map((row) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1847
1922
|
"button",
|
|
1848
1923
|
{
|
|
@@ -2049,18 +2124,18 @@ function WorkspaceCard({
|
|
|
2049
2124
|
)
|
|
2050
2125
|
] }),
|
|
2051
2126
|
/* @__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-
|
|
2127
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full items-center gap-x-3 text-[15px]", children: [
|
|
2053
2128
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3", children: [
|
|
2054
2129
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Documents", children: [
|
|
2055
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-
|
|
2130
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-4 text-muted-foreground" }),
|
|
2056
2131
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: docCount.toLocaleString() })
|
|
2057
2132
|
] }),
|
|
2058
2133
|
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-
|
|
2134
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.MessagesSquare, { className: "size-4 text-muted-foreground" }),
|
|
2060
2135
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: chatCount.toLocaleString() })
|
|
2061
2136
|
] }),
|
|
2062
2137
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Members", children: [
|
|
2063
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-
|
|
2138
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-4 text-muted-foreground" }),
|
|
2064
2139
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2065
2140
|
"span",
|
|
2066
2141
|
{
|
|
@@ -2087,10 +2162,10 @@ function WorkspaceCard({
|
|
|
2087
2162
|
"span",
|
|
2088
2163
|
{
|
|
2089
2164
|
className: "min-w-0 max-w-full self-start truncate text-left text-xs text-muted-foreground",
|
|
2090
|
-
title:
|
|
2165
|
+
title: chunkDBAUZD7A_cjs.fmtDate(updatedAt),
|
|
2091
2166
|
children: [
|
|
2092
2167
|
"Updated ",
|
|
2093
|
-
|
|
2168
|
+
chunkDBAUZD7A_cjs.fromNow(updatedAt)
|
|
2094
2169
|
]
|
|
2095
2170
|
}
|
|
2096
2171
|
)
|
|
@@ -2122,7 +2197,7 @@ function NavItemLink({ item, onNavigate }) {
|
|
|
2122
2197
|
to: item.to,
|
|
2123
2198
|
end: item.end,
|
|
2124
2199
|
onClick: onNavigate,
|
|
2125
|
-
"data-testid":
|
|
2200
|
+
"data-testid": chunkDBAUZD7A_cjs.tid("sidebar-nav", item.id),
|
|
2126
2201
|
className: ({ isActive }) => react.cn(
|
|
2127
2202
|
"group flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors",
|
|
2128
2203
|
isActive ? "bg-sidebar-accent text-sidebar-accent-foreground" : "text-sidebar-foreground hover:bg-sidebar-accent/60 hover:text-sidebar-accent-foreground"
|
|
@@ -2295,7 +2370,7 @@ function AppHeader({
|
|
|
2295
2370
|
type: "button",
|
|
2296
2371
|
onClick: onSearch,
|
|
2297
2372
|
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":
|
|
2373
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "global-search"),
|
|
2299
2374
|
children: [
|
|
2300
2375
|
/* @__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
2376
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-1", children: searchPlaceholder }),
|
|
@@ -2311,7 +2386,7 @@ function AppHeader({
|
|
|
2311
2386
|
size: "sm",
|
|
2312
2387
|
onClick: onAsk ?? onSearch,
|
|
2313
2388
|
className: classNames?.askButton,
|
|
2314
|
-
"data-testid":
|
|
2389
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "ask-ai"),
|
|
2315
2390
|
children: [
|
|
2316
2391
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-4" }),
|
|
2317
2392
|
askLabel
|
|
@@ -2322,7 +2397,7 @@ function AppHeader({
|
|
|
2322
2397
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2323
2398
|
react.NotificationBell,
|
|
2324
2399
|
{
|
|
2325
|
-
testId:
|
|
2400
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "notifications"),
|
|
2326
2401
|
onNavigate: onNotificationNavigate,
|
|
2327
2402
|
toneClassNames: notificationTones
|
|
2328
2403
|
}
|
|
@@ -2333,8 +2408,8 @@ function AppHeader({
|
|
|
2333
2408
|
user,
|
|
2334
2409
|
items: userItems,
|
|
2335
2410
|
onLogout,
|
|
2336
|
-
testId:
|
|
2337
|
-
logoutTestId:
|
|
2411
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "user-menu"),
|
|
2412
|
+
logoutTestId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "logout")
|
|
2338
2413
|
}
|
|
2339
2414
|
)
|
|
2340
2415
|
] })
|
|
@@ -2554,7 +2629,7 @@ function createArbiMaterializer(arbi, opts = {}) {
|
|
|
2554
2629
|
}
|
|
2555
2630
|
function collectAssetRefs(node, acc) {
|
|
2556
2631
|
if (typeof node === "string") {
|
|
2557
|
-
if (
|
|
2632
|
+
if (chunkDBAUZD7A_cjs.isAssetRef(node)) acc.add(node);
|
|
2558
2633
|
return;
|
|
2559
2634
|
}
|
|
2560
2635
|
if (Array.isArray(node)) {
|
|
@@ -2588,7 +2663,7 @@ async function materializePageData(data, materialize) {
|
|
|
2588
2663
|
const replacements = /* @__PURE__ */ new Map();
|
|
2589
2664
|
await Promise.all(
|
|
2590
2665
|
[...refs].map(async (ref) => {
|
|
2591
|
-
const src = await materialize(
|
|
2666
|
+
const src = await materialize(chunkDBAUZD7A_cjs.assetRefId(ref));
|
|
2592
2667
|
if (src) replacements.set(ref, src);
|
|
2593
2668
|
})
|
|
2594
2669
|
);
|
|
@@ -2673,7 +2748,7 @@ function StudioEditor({
|
|
|
2673
2748
|
radius: stored.radius ?? defaultTheme.radius,
|
|
2674
2749
|
activePresetId: null
|
|
2675
2750
|
});
|
|
2676
|
-
|
|
2751
|
+
chunkDBAUZD7A_cjs.applyStoredTheme(themeBundle);
|
|
2677
2752
|
})();
|
|
2678
2753
|
return () => {
|
|
2679
2754
|
cancelled = true;
|
|
@@ -2766,7 +2841,7 @@ function StudioEditor({
|
|
|
2766
2841
|
"\u201D\u2026"
|
|
2767
2842
|
]
|
|
2768
2843
|
}
|
|
2769
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
2844
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.AssetResolverProvider, { render: AssetThumb, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2770
2845
|
puck.Puck,
|
|
2771
2846
|
{
|
|
2772
2847
|
config,
|
|
@@ -2784,7 +2859,7 @@ function StudioEditor({
|
|
|
2784
2859
|
className: "w-80 shrink-0 border-l border-border",
|
|
2785
2860
|
"data-testid": `${testIdPrefix}-theme-drawer`,
|
|
2786
2861
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2787
|
-
|
|
2862
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
2788
2863
|
{
|
|
2789
2864
|
bundle: themeBundle,
|
|
2790
2865
|
variant: "drawer",
|
|
@@ -2823,7 +2898,7 @@ function PageRenderer({
|
|
|
2823
2898
|
const page = initialData ?? (await persistence.loadPublished(arbi, live, slug)).data ?? (await persistence.loadPage(arbi, live, slug)).data;
|
|
2824
2899
|
if (cancelled) return;
|
|
2825
2900
|
if (applyTheme) {
|
|
2826
|
-
|
|
2901
|
+
chunkDBAUZD7A_cjs.applyThemeVars(
|
|
2827
2902
|
theme ? { ...defaultTheme, ...theme, colors: { ...defaultTheme.colors, ...theme.colors } } : defaultTheme
|
|
2828
2903
|
);
|
|
2829
2904
|
}
|
|
@@ -3025,7 +3100,7 @@ function AiTextField({
|
|
|
3025
3100
|
setActive(true);
|
|
3026
3101
|
await task.run(buildPrompt({ kind, label, current: value ?? "" }), docIds);
|
|
3027
3102
|
};
|
|
3028
|
-
const inputTid =
|
|
3103
|
+
const inputTid = chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-field`, name);
|
|
3029
3104
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "al-ai-field", children: [
|
|
3030
3105
|
multiline ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
3031
3106
|
"textarea",
|
|
@@ -3054,7 +3129,7 @@ function AiTextField({
|
|
|
3054
3129
|
className: "al-ai-field__btn",
|
|
3055
3130
|
onClick: () => void write(),
|
|
3056
3131
|
disabled: task.isRunning,
|
|
3057
|
-
"data-testid":
|
|
3132
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-ai-write`, name),
|
|
3058
3133
|
title: "Draft this field with AI, grounded in the marketing workspace",
|
|
3059
3134
|
children: [
|
|
3060
3135
|
task.isRunning ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Loader2, { className: "size-3 animate-spin" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-3" }),
|
|
@@ -3157,8 +3232,8 @@ function ImageFieldControl({
|
|
|
3157
3232
|
const arbi = react.useArbi();
|
|
3158
3233
|
const gen = useImageGen();
|
|
3159
3234
|
const queryClient = reactQuery.useQueryClient();
|
|
3160
|
-
const currentAssetImage = useAssetImage(
|
|
3161
|
-
const tp = (...q) =>
|
|
3235
|
+
const currentAssetImage = useAssetImage(chunkDBAUZD7A_cjs.isAssetRef(value) ? chunkDBAUZD7A_cjs.assetRefId(value) : "");
|
|
3236
|
+
const tp = (...q) => chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-image`, name, ...q);
|
|
3162
3237
|
const refreshAssets = () => queryClient.invalidateQueries({ queryKey: ["arbi", "documents", workspaceId] });
|
|
3163
3238
|
const { data: docs } = react.useDocuments(workspaceId);
|
|
3164
3239
|
const imageDocs = react$1.useMemo(
|
|
@@ -3192,7 +3267,7 @@ function ImageFieldControl({
|
|
|
3192
3267
|
const res = await arbi.documents.uploadFile(file, name2, { folder });
|
|
3193
3268
|
const id = res.doc_ext_ids?.[0];
|
|
3194
3269
|
if (id) {
|
|
3195
|
-
onChange(
|
|
3270
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3196
3271
|
void refreshAssets();
|
|
3197
3272
|
}
|
|
3198
3273
|
} finally {
|
|
@@ -3210,7 +3285,7 @@ function ImageFieldControl({
|
|
|
3210
3285
|
if (!prompt.trim() || gen.isGenerating) return;
|
|
3211
3286
|
const id = await gen.generate(prompt, refIds);
|
|
3212
3287
|
if (id) {
|
|
3213
|
-
onChange(
|
|
3288
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3214
3289
|
setRefIds([]);
|
|
3215
3290
|
void refreshAssets();
|
|
3216
3291
|
}
|
|
@@ -3225,7 +3300,7 @@ function ImageFieldControl({
|
|
|
3225
3300
|
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
3301
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", "data-testid": tp(), children: [
|
|
3227
3302
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
|
|
3228
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3303
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.BlockImage, { src: value, aspect: "16:9", rounded: "md", testId: tp("preview") }),
|
|
3229
3304
|
currentAssetImage ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3230
3305
|
"button",
|
|
3231
3306
|
{
|
|
@@ -3259,12 +3334,12 @@ function ImageFieldControl({
|
|
|
3259
3334
|
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
3335
|
imageDocs.map((d) => {
|
|
3261
3336
|
const thumb = thumbs?.[d.external_id];
|
|
3262
|
-
const selected = value ===
|
|
3337
|
+
const selected = value === chunkDBAUZD7A_cjs.asAssetRef(d.external_id);
|
|
3263
3338
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3264
3339
|
"button",
|
|
3265
3340
|
{
|
|
3266
3341
|
type: "button",
|
|
3267
|
-
onClick: () => onChange(
|
|
3342
|
+
onClick: () => onChange(chunkDBAUZD7A_cjs.asAssetRef(d.external_id)),
|
|
3268
3343
|
className: `overflow-hidden rounded border ${selected ? "border-primary ring-1 ring-primary" : "border-border"}`,
|
|
3269
3344
|
title: d.file_name ?? "",
|
|
3270
3345
|
"data-testid": tp("asset", d.external_id),
|
|
@@ -3326,14 +3401,14 @@ function ImageFieldControl({
|
|
|
3326
3401
|
"Reference images",
|
|
3327
3402
|
refIds.length > 0 ? ` (${refIds.length})` : " (optional)"
|
|
3328
3403
|
] }),
|
|
3329
|
-
|
|
3404
|
+
chunkDBAUZD7A_cjs.isAssetRef(value) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3330
3405
|
"button",
|
|
3331
3406
|
{
|
|
3332
3407
|
type: "button",
|
|
3333
3408
|
className: "text-xs font-medium text-primary hover:underline",
|
|
3334
|
-
onClick: () => toggleRef(
|
|
3409
|
+
onClick: () => toggleRef(chunkDBAUZD7A_cjs.assetRefId(value)),
|
|
3335
3410
|
"data-testid": tp("vary-current"),
|
|
3336
|
-
children: refIds.includes(
|
|
3411
|
+
children: refIds.includes(chunkDBAUZD7A_cjs.assetRefId(value)) ? "Varying current" : "Vary current image"
|
|
3337
3412
|
}
|
|
3338
3413
|
)
|
|
3339
3414
|
] }),
|
|
@@ -3547,7 +3622,7 @@ function createBlockKit(ai, image, eyebrowClassName) {
|
|
|
3547
3622
|
}),
|
|
3548
3623
|
iconField: (label = "Icon") => ({ type: "select", label, options: ICON_OPTIONS }),
|
|
3549
3624
|
resolveIcon: (name) => name ? iconMap[name] : void 0,
|
|
3550
|
-
blockTestId: (id) =>
|
|
3625
|
+
blockTestId: (id) => chunkDBAUZD7A_cjs.tid("arbi-block", id)
|
|
3551
3626
|
};
|
|
3552
3627
|
}
|
|
3553
3628
|
var emptySlot = [];
|
|
@@ -3612,7 +3687,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3612
3687
|
render: ({ id, count, gap, col1, col2, col3, col4 }) => {
|
|
3613
3688
|
const n = Number(count) || 3;
|
|
3614
3689
|
const columns = [col1, col2, col3, col4].slice(0, n).map(renderSlot);
|
|
3615
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3690
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Columns, { count: n, gap, columns, testId: blockTestId(id) });
|
|
3616
3691
|
}
|
|
3617
3692
|
};
|
|
3618
3693
|
const SpacerBlock = {
|
|
@@ -3630,7 +3705,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3630
3705
|
}
|
|
3631
3706
|
},
|
|
3632
3707
|
defaultProps: { size: "md" },
|
|
3633
|
-
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3708
|
+
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Spacer, { size, testId: blockTestId(id) })
|
|
3634
3709
|
};
|
|
3635
3710
|
const ContainerBlock = {
|
|
3636
3711
|
label: "Container",
|
|
@@ -3658,7 +3733,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3658
3733
|
children: { type: "slot" }
|
|
3659
3734
|
},
|
|
3660
3735
|
defaultProps: { width: "default", padding: "md", children: emptySlot },
|
|
3661
|
-
render: ({ id, width, padding, children }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3736
|
+
render: ({ id, width, padding, children }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Container, { width, padding, testId: blockTestId(id), children: renderSlot(children) })
|
|
3662
3737
|
};
|
|
3663
3738
|
const HeroBlock = {
|
|
3664
3739
|
label: "Hero",
|
|
@@ -3709,7 +3784,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3709
3784
|
backgroundImage,
|
|
3710
3785
|
overlay
|
|
3711
3786
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3712
|
-
|
|
3787
|
+
chunkDBAUZD7A_cjs.Hero,
|
|
3713
3788
|
{
|
|
3714
3789
|
eyebrow,
|
|
3715
3790
|
title,
|
|
@@ -3781,7 +3856,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3781
3856
|
icon: resolveIcon(it.icon)
|
|
3782
3857
|
})
|
|
3783
3858
|
);
|
|
3784
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3859
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FeatureGrid, { columns, items: list, testId: blockTestId(id) });
|
|
3785
3860
|
}
|
|
3786
3861
|
};
|
|
3787
3862
|
const StatGroupBlock = {
|
|
@@ -3823,7 +3898,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3823
3898
|
avatarUrl: ""
|
|
3824
3899
|
},
|
|
3825
3900
|
render: ({ id, quote, author, role, avatarUrl }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3826
|
-
|
|
3901
|
+
chunkDBAUZD7A_cjs.Testimonial,
|
|
3827
3902
|
{
|
|
3828
3903
|
quote,
|
|
3829
3904
|
author,
|
|
@@ -3852,7 +3927,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3852
3927
|
overlay: true
|
|
3853
3928
|
},
|
|
3854
3929
|
render: ({ id, title, subtitle, cta, tone, backgroundImage, overlay }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3855
|
-
|
|
3930
|
+
chunkDBAUZD7A_cjs.CTABanner,
|
|
3856
3931
|
{
|
|
3857
3932
|
title,
|
|
3858
3933
|
subtitle,
|
|
@@ -3884,7 +3959,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3884
3959
|
{ label: "Umbrella" }
|
|
3885
3960
|
]
|
|
3886
3961
|
},
|
|
3887
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3962
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.LogoCloud, { items, testId: blockTestId(id) })
|
|
3888
3963
|
};
|
|
3889
3964
|
const FAQBlock = {
|
|
3890
3965
|
label: "FAQ",
|
|
@@ -3916,7 +3991,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3916
3991
|
}
|
|
3917
3992
|
]
|
|
3918
3993
|
},
|
|
3919
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3994
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FAQ, { items, testId: blockTestId(id) })
|
|
3920
3995
|
};
|
|
3921
3996
|
const TimelineBlockConfig = {
|
|
3922
3997
|
label: "Timeline",
|
|
@@ -3969,7 +4044,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3969
4044
|
]
|
|
3970
4045
|
},
|
|
3971
4046
|
render: ({ id, view, height, items }) => /* @__PURE__ */ jsxRuntime.jsx("div", { style: { height: height ?? 520 }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3972
|
-
|
|
4047
|
+
chunkDBAUZD7A_cjs.Timeline,
|
|
3973
4048
|
{
|
|
3974
4049
|
items: (items ?? []).filter((item) => !!item?.start).map((item, index) => ({
|
|
3975
4050
|
id: `${id}-${index}`,
|
|
@@ -3991,7 +4066,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3991
4066
|
defaultProps: {
|
|
3992
4067
|
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
4068
|
},
|
|
3994
|
-
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4069
|
+
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.RichTextBlock, { content, testId: blockTestId(id) })
|
|
3995
4070
|
};
|
|
3996
4071
|
const CalloutBlock = {
|
|
3997
4072
|
label: "Callout",
|
|
@@ -4014,7 +4089,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4014
4089
|
title: "Good to know",
|
|
4015
4090
|
body: "This is a helpful note that draws attention to important information."
|
|
4016
4091
|
},
|
|
4017
|
-
render: ({ id, variant, title, body }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4092
|
+
render: ({ id, variant, title, body }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Callout, { variant, title, body, testId: blockTestId(id) })
|
|
4018
4093
|
};
|
|
4019
4094
|
const ImageBlock = {
|
|
4020
4095
|
label: "Image",
|
|
@@ -4045,7 +4120,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4045
4120
|
},
|
|
4046
4121
|
defaultProps: { src: "", alt: "Image", aspect: "16:9", rounded: "lg", framed: false },
|
|
4047
4122
|
render: ({ id, src, alt, aspect, rounded, framed }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4048
|
-
|
|
4123
|
+
chunkDBAUZD7A_cjs.BlockImage,
|
|
4049
4124
|
{
|
|
4050
4125
|
src,
|
|
4051
4126
|
alt,
|
|
@@ -4073,7 +4148,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4073
4148
|
}
|
|
4074
4149
|
},
|
|
4075
4150
|
defaultProps: { src: "", name: "Jane Doe", size: "md" },
|
|
4076
|
-
render: ({ id, src, name, size }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4151
|
+
render: ({ id, src, name, size }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.AvatarBlock, { src, name, size, testId: blockTestId(id) })
|
|
4077
4152
|
};
|
|
4078
4153
|
const NavbarBlock = {
|
|
4079
4154
|
label: "Navbar",
|
|
@@ -4101,7 +4176,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4101
4176
|
],
|
|
4102
4177
|
cta: { label: "Sign up", href: "#" }
|
|
4103
4178
|
},
|
|
4104
|
-
render: ({ id, brand, links, cta }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4179
|
+
render: ({ id, brand, links, cta }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Navbar, { brand, links, cta, testId: blockTestId(id) })
|
|
4105
4180
|
};
|
|
4106
4181
|
const FooterBlock = {
|
|
4107
4182
|
label: "Footer",
|
|
@@ -4160,7 +4235,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4160
4235
|
],
|
|
4161
4236
|
copyright: "\xA9 2026 Acme, Inc. All rights reserved."
|
|
4162
4237
|
},
|
|
4163
|
-
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4238
|
+
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Footer, { columns, copyright, testId: blockTestId(id) })
|
|
4164
4239
|
};
|
|
4165
4240
|
const ListBlockConfig = {
|
|
4166
4241
|
label: "List",
|
|
@@ -4178,7 +4253,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4178
4253
|
ordered: false,
|
|
4179
4254
|
items: [{ text: "First item" }, { text: "Second item" }, { text: "Third item" }]
|
|
4180
4255
|
},
|
|
4181
|
-
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4256
|
+
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.ListBlock, { ordered, items, testId: blockTestId(id) })
|
|
4182
4257
|
};
|
|
4183
4258
|
return {
|
|
4184
4259
|
Columns: ColumnsBlock,
|
|
@@ -4281,7 +4356,7 @@ function createSiteBlocks(kit) {
|
|
|
4281
4356
|
]
|
|
4282
4357
|
},
|
|
4283
4358
|
render: ({ id, plans }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4284
|
-
|
|
4359
|
+
chunkDBAUZD7A_cjs.PricingTable,
|
|
4285
4360
|
{
|
|
4286
4361
|
plans: (plans ?? []).map(
|
|
4287
4362
|
(p) => ({
|
|
@@ -4319,7 +4394,7 @@ function createSiteBlocks(kit) {
|
|
|
4319
4394
|
{ label: "FAQ", content: "Answers to common questions." }
|
|
4320
4395
|
]
|
|
4321
4396
|
},
|
|
4322
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4397
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Tabs, { items, testId: blockTestId(id) })
|
|
4323
4398
|
};
|
|
4324
4399
|
const AccordionBlock = {
|
|
4325
4400
|
label: "Accordion",
|
|
@@ -4343,7 +4418,7 @@ function createSiteBlocks(kit) {
|
|
|
4343
4418
|
{ title: "How does billing work?", content: "Monthly or annually, cancel anytime." }
|
|
4344
4419
|
]
|
|
4345
4420
|
},
|
|
4346
|
-
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4421
|
+
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Accordion, { allowMultiple, items, testId: blockTestId(id) })
|
|
4347
4422
|
};
|
|
4348
4423
|
const GalleryBlock = {
|
|
4349
4424
|
label: "Gallery",
|
|
@@ -4379,7 +4454,7 @@ function createSiteBlocks(kit) {
|
|
|
4379
4454
|
{ src: "", alt: "Image three", caption: "" }
|
|
4380
4455
|
]
|
|
4381
4456
|
},
|
|
4382
|
-
render: ({ id, columns, aspect, images }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4457
|
+
render: ({ id, columns, aspect, images }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Gallery, { columns, aspect, images, testId: blockTestId(id) })
|
|
4383
4458
|
};
|
|
4384
4459
|
const VideoBlock = {
|
|
4385
4460
|
label: "Video",
|
|
@@ -4399,7 +4474,7 @@ function createSiteBlocks(kit) {
|
|
|
4399
4474
|
},
|
|
4400
4475
|
defaultProps: { url: "", title: "", aspect: "16:9", rounded: true },
|
|
4401
4476
|
render: ({ id, url, title, aspect, rounded }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4402
|
-
|
|
4477
|
+
chunkDBAUZD7A_cjs.VideoEmbed,
|
|
4403
4478
|
{
|
|
4404
4479
|
url,
|
|
4405
4480
|
title,
|
|
@@ -4448,7 +4523,7 @@ function createSiteBlocks(kit) {
|
|
|
4448
4523
|
]
|
|
4449
4524
|
},
|
|
4450
4525
|
render: ({ id, submitLabel, action, successMessage, fields }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4451
|
-
|
|
4526
|
+
chunkDBAUZD7A_cjs.ContactForm,
|
|
4452
4527
|
{
|
|
4453
4528
|
submitLabel,
|
|
4454
4529
|
action: action || void 0,
|
|
@@ -4478,7 +4553,7 @@ function createSiteBlocks(kit) {
|
|
|
4478
4553
|
cta: { label: "Read more", href: "#" },
|
|
4479
4554
|
tone: "primary"
|
|
4480
4555
|
},
|
|
4481
|
-
render: ({ id, text, cta, tone }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4556
|
+
render: ({ id, text, cta, tone }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Banner, { text, cta, tone, testId: blockTestId(id) })
|
|
4482
4557
|
};
|
|
4483
4558
|
const MediaTextBlock = {
|
|
4484
4559
|
label: "Media & text",
|
|
@@ -4506,7 +4581,7 @@ function createSiteBlocks(kit) {
|
|
|
4506
4581
|
cta: { label: "Learn more", href: "#" }
|
|
4507
4582
|
},
|
|
4508
4583
|
render: ({ id, eyebrow, title, body, imageUrl, mediaSide, cta }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4509
|
-
|
|
4584
|
+
chunkDBAUZD7A_cjs.MediaText,
|
|
4510
4585
|
{
|
|
4511
4586
|
eyebrow,
|
|
4512
4587
|
title,
|
|
@@ -4543,7 +4618,7 @@ function createSiteBlocks(kit) {
|
|
|
4543
4618
|
{ name: "Jordan Lee", role: "Lead Engineer", bio: "", avatarUrl: "" }
|
|
4544
4619
|
]
|
|
4545
4620
|
},
|
|
4546
|
-
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4621
|
+
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TeamGrid, { columns, members, testId: blockTestId(id) })
|
|
4547
4622
|
};
|
|
4548
4623
|
const StepsBlock = {
|
|
4549
4624
|
label: "Steps",
|
|
@@ -4575,7 +4650,7 @@ function createSiteBlocks(kit) {
|
|
|
4575
4650
|
{ title: "Launch", description: "Go live and start seeing results." }
|
|
4576
4651
|
]
|
|
4577
4652
|
},
|
|
4578
|
-
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4653
|
+
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Steps, { variant, steps, testId: blockTestId(id) })
|
|
4579
4654
|
};
|
|
4580
4655
|
const TestimonialGridBlock = {
|
|
4581
4656
|
label: "Testimonial grid",
|
|
@@ -4617,7 +4692,7 @@ function createSiteBlocks(kit) {
|
|
|
4617
4692
|
}
|
|
4618
4693
|
]
|
|
4619
4694
|
},
|
|
4620
|
-
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4695
|
+
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TestimonialGrid, { columns, items, testId: blockTestId(id) })
|
|
4621
4696
|
};
|
|
4622
4697
|
return {
|
|
4623
4698
|
Pricing: PricingBlock,
|
|
@@ -4661,7 +4736,7 @@ function createArbiBlocksConfig(opts = {}) {
|
|
|
4661
4736
|
},
|
|
4662
4737
|
defaultProps: { title: "Section title", align: "left", invert: false },
|
|
4663
4738
|
render: ({ id, title, eyebrow, lead, align, invert }) => /* @__PURE__ */ jsxRuntime.jsx("div", { "data-testid": blockTestId(id), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4664
|
-
|
|
4739
|
+
chunkDBAUZD7A_cjs.SectionHeading,
|
|
4665
4740
|
{
|
|
4666
4741
|
title,
|
|
4667
4742
|
eyebrow,
|
|
@@ -5255,7 +5330,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5255
5330
|
{
|
|
5256
5331
|
variant: "elevated",
|
|
5257
5332
|
className: "rounded-xl",
|
|
5258
|
-
"data-testid":
|
|
5333
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-modules-section`, group.section),
|
|
5259
5334
|
children: [
|
|
5260
5335
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardHeader, { children: /* @__PURE__ */ jsxRuntime.jsx(react.CardTitle, { className: "text-base", children: group.section }) }),
|
|
5261
5336
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardContent, { className: "space-y-1.5", children: group.modules.map((m, idx) => {
|
|
@@ -5264,7 +5339,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5264
5339
|
"div",
|
|
5265
5340
|
{
|
|
5266
5341
|
className: "flex items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5267
|
-
"data-testid":
|
|
5342
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module`, m.id),
|
|
5268
5343
|
children: [
|
|
5269
5344
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
5270
5345
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5276,7 +5351,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5276
5351
|
disabled: idx === 0,
|
|
5277
5352
|
onClick: () => move(m.id, "up"),
|
|
5278
5353
|
"aria-label": `Move ${m.label} up`,
|
|
5279
|
-
"data-testid":
|
|
5354
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-up`, m.id),
|
|
5280
5355
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { className: "size-3.5" })
|
|
5281
5356
|
}
|
|
5282
5357
|
),
|
|
@@ -5289,7 +5364,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5289
5364
|
disabled: idx === group.modules.length - 1,
|
|
5290
5365
|
onClick: () => move(m.id, "down"),
|
|
5291
5366
|
"aria-label": `Move ${m.label} down`,
|
|
5292
|
-
"data-testid":
|
|
5367
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-down`, m.id),
|
|
5293
5368
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "size-3.5" })
|
|
5294
5369
|
}
|
|
5295
5370
|
)
|
|
@@ -5309,7 +5384,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5309
5384
|
checked: m.enabled,
|
|
5310
5385
|
onCheckedChange: () => toggle2(m.id),
|
|
5311
5386
|
"aria-label": `Enable ${m.label}`,
|
|
5312
|
-
"data-testid":
|
|
5387
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-toggle`, m.id)
|
|
5313
5388
|
}
|
|
5314
5389
|
)
|
|
5315
5390
|
]
|
|
@@ -5341,7 +5416,7 @@ function ConfigModelBadge({ configId, testIdPrefix }) {
|
|
|
5341
5416
|
react.Badge,
|
|
5342
5417
|
{
|
|
5343
5418
|
variant: TIER_VARIANT[tier] ?? "secondary",
|
|
5344
|
-
"data-testid":
|
|
5419
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-tier`, configId),
|
|
5345
5420
|
children: [
|
|
5346
5421
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Cpu, { className: "size-3" }),
|
|
5347
5422
|
" ",
|
|
@@ -5378,14 +5453,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5378
5453
|
"label",
|
|
5379
5454
|
{
|
|
5380
5455
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5381
|
-
"data-testid":
|
|
5456
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config`, v.external_id),
|
|
5382
5457
|
children: [
|
|
5383
5458
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5384
5459
|
react.Checkbox,
|
|
5385
5460
|
{
|
|
5386
5461
|
checked: configIds.includes(v.external_id),
|
|
5387
5462
|
onCheckedChange: () => toggleConfig(v.external_id),
|
|
5388
|
-
"data-testid":
|
|
5463
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-toggle`, v.external_id)
|
|
5389
5464
|
}
|
|
5390
5465
|
),
|
|
5391
5466
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5414,14 +5489,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5414
5489
|
"label",
|
|
5415
5490
|
{
|
|
5416
5491
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5417
|
-
"data-testid":
|
|
5492
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent`, a.external_id),
|
|
5418
5493
|
children: [
|
|
5419
5494
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5420
5495
|
react.Checkbox,
|
|
5421
5496
|
{
|
|
5422
5497
|
checked: agentIds.includes(a.external_id),
|
|
5423
5498
|
onCheckedChange: () => toggleAgent(a.external_id),
|
|
5424
|
-
"data-testid":
|
|
5499
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent-toggle`, a.external_id)
|
|
5425
5500
|
}
|
|
5426
5501
|
),
|
|
5427
5502
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5508,7 +5583,7 @@ function VerticalBuilder({
|
|
|
5508
5583
|
] })
|
|
5509
5584
|
] }),
|
|
5510
5585
|
/* @__PURE__ */ jsxRuntime.jsx(react.TabsContent, { value: "theme", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5511
|
-
|
|
5586
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
5512
5587
|
{
|
|
5513
5588
|
bundle: themeBundle,
|
|
5514
5589
|
variant: "panel",
|
|
@@ -5534,275 +5609,283 @@ function VerticalBuilder({
|
|
|
5534
5609
|
|
|
5535
5610
|
Object.defineProperty(exports, "ASSET_REF_PREFIX", {
|
|
5536
5611
|
enumerable: true,
|
|
5537
|
-
get: function () { return
|
|
5612
|
+
get: function () { return chunkDBAUZD7A_cjs.ASSET_REF_PREFIX; }
|
|
5538
5613
|
});
|
|
5539
5614
|
Object.defineProperty(exports, "Accordion", {
|
|
5540
5615
|
enumerable: true,
|
|
5541
|
-
get: function () { return
|
|
5616
|
+
get: function () { return chunkDBAUZD7A_cjs.Accordion; }
|
|
5542
5617
|
});
|
|
5543
5618
|
Object.defineProperty(exports, "AssetResolverProvider", {
|
|
5544
5619
|
enumerable: true,
|
|
5545
|
-
get: function () { return
|
|
5620
|
+
get: function () { return chunkDBAUZD7A_cjs.AssetResolverProvider; }
|
|
5546
5621
|
});
|
|
5547
5622
|
Object.defineProperty(exports, "AvatarBlock", {
|
|
5548
5623
|
enumerable: true,
|
|
5549
|
-
get: function () { return
|
|
5624
|
+
get: function () { return chunkDBAUZD7A_cjs.AvatarBlock; }
|
|
5550
5625
|
});
|
|
5551
5626
|
Object.defineProperty(exports, "Banner", {
|
|
5552
5627
|
enumerable: true,
|
|
5553
|
-
get: function () { return
|
|
5628
|
+
get: function () { return chunkDBAUZD7A_cjs.Banner; }
|
|
5554
5629
|
});
|
|
5555
5630
|
Object.defineProperty(exports, "BlockImage", {
|
|
5556
5631
|
enumerable: true,
|
|
5557
|
-
get: function () { return
|
|
5632
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockImage; }
|
|
5558
5633
|
});
|
|
5559
5634
|
Object.defineProperty(exports, "BlockLink", {
|
|
5560
5635
|
enumerable: true,
|
|
5561
|
-
get: function () { return
|
|
5636
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockLink; }
|
|
5562
5637
|
});
|
|
5563
5638
|
Object.defineProperty(exports, "CTABanner", {
|
|
5564
5639
|
enumerable: true,
|
|
5565
|
-
get: function () { return
|
|
5640
|
+
get: function () { return chunkDBAUZD7A_cjs.CTABanner; }
|
|
5566
5641
|
});
|
|
5567
5642
|
Object.defineProperty(exports, "Callout", {
|
|
5568
5643
|
enumerable: true,
|
|
5569
|
-
get: function () { return
|
|
5644
|
+
get: function () { return chunkDBAUZD7A_cjs.Callout; }
|
|
5570
5645
|
});
|
|
5571
5646
|
Object.defineProperty(exports, "Columns", {
|
|
5572
5647
|
enumerable: true,
|
|
5573
|
-
get: function () { return
|
|
5648
|
+
get: function () { return chunkDBAUZD7A_cjs.Columns; }
|
|
5574
5649
|
});
|
|
5575
5650
|
Object.defineProperty(exports, "ContactForm", {
|
|
5576
5651
|
enumerable: true,
|
|
5577
|
-
get: function () { return
|
|
5652
|
+
get: function () { return chunkDBAUZD7A_cjs.ContactForm; }
|
|
5578
5653
|
});
|
|
5579
5654
|
Object.defineProperty(exports, "Container", {
|
|
5580
5655
|
enumerable: true,
|
|
5581
|
-
get: function () { return
|
|
5656
|
+
get: function () { return chunkDBAUZD7A_cjs.Container; }
|
|
5582
5657
|
});
|
|
5583
5658
|
Object.defineProperty(exports, "FAQ", {
|
|
5584
5659
|
enumerable: true,
|
|
5585
|
-
get: function () { return
|
|
5660
|
+
get: function () { return chunkDBAUZD7A_cjs.FAQ; }
|
|
5586
5661
|
});
|
|
5587
5662
|
Object.defineProperty(exports, "FONT_PAIRINGS", {
|
|
5588
5663
|
enumerable: true,
|
|
5589
|
-
get: function () { return
|
|
5664
|
+
get: function () { return chunkDBAUZD7A_cjs.FONT_PAIRINGS; }
|
|
5590
5665
|
});
|
|
5591
5666
|
Object.defineProperty(exports, "FeatureGrid", {
|
|
5592
5667
|
enumerable: true,
|
|
5593
|
-
get: function () { return
|
|
5668
|
+
get: function () { return chunkDBAUZD7A_cjs.FeatureGrid; }
|
|
5594
5669
|
});
|
|
5595
5670
|
Object.defineProperty(exports, "Footer", {
|
|
5596
5671
|
enumerable: true,
|
|
5597
|
-
get: function () { return
|
|
5672
|
+
get: function () { return chunkDBAUZD7A_cjs.Footer; }
|
|
5598
5673
|
});
|
|
5599
5674
|
Object.defineProperty(exports, "Gallery", {
|
|
5600
5675
|
enumerable: true,
|
|
5601
|
-
get: function () { return
|
|
5676
|
+
get: function () { return chunkDBAUZD7A_cjs.Gallery; }
|
|
5602
5677
|
});
|
|
5603
5678
|
Object.defineProperty(exports, "Hero", {
|
|
5604
5679
|
enumerable: true,
|
|
5605
|
-
get: function () { return
|
|
5680
|
+
get: function () { return chunkDBAUZD7A_cjs.Hero; }
|
|
5606
5681
|
});
|
|
5607
5682
|
Object.defineProperty(exports, "ListBlock", {
|
|
5608
5683
|
enumerable: true,
|
|
5609
|
-
get: function () { return
|
|
5684
|
+
get: function () { return chunkDBAUZD7A_cjs.ListBlock; }
|
|
5610
5685
|
});
|
|
5611
5686
|
Object.defineProperty(exports, "LogoCloud", {
|
|
5612
5687
|
enumerable: true,
|
|
5613
|
-
get: function () { return
|
|
5688
|
+
get: function () { return chunkDBAUZD7A_cjs.LogoCloud; }
|
|
5614
5689
|
});
|
|
5615
5690
|
Object.defineProperty(exports, "MediaText", {
|
|
5616
5691
|
enumerable: true,
|
|
5617
|
-
get: function () { return
|
|
5692
|
+
get: function () { return chunkDBAUZD7A_cjs.MediaText; }
|
|
5618
5693
|
});
|
|
5619
5694
|
Object.defineProperty(exports, "Navbar", {
|
|
5620
5695
|
enumerable: true,
|
|
5621
|
-
get: function () { return
|
|
5696
|
+
get: function () { return chunkDBAUZD7A_cjs.Navbar; }
|
|
5622
5697
|
});
|
|
5623
5698
|
Object.defineProperty(exports, "PricingTable", {
|
|
5624
5699
|
enumerable: true,
|
|
5625
|
-
get: function () { return
|
|
5700
|
+
get: function () { return chunkDBAUZD7A_cjs.PricingTable; }
|
|
5626
5701
|
});
|
|
5627
5702
|
Object.defineProperty(exports, "RichTextBlock", {
|
|
5628
5703
|
enumerable: true,
|
|
5629
|
-
get: function () { return
|
|
5704
|
+
get: function () { return chunkDBAUZD7A_cjs.RichTextBlock; }
|
|
5630
5705
|
});
|
|
5631
5706
|
Object.defineProperty(exports, "SectionHeading", {
|
|
5632
5707
|
enumerable: true,
|
|
5633
|
-
get: function () { return
|
|
5708
|
+
get: function () { return chunkDBAUZD7A_cjs.SectionHeading; }
|
|
5634
5709
|
});
|
|
5635
5710
|
Object.defineProperty(exports, "Spacer", {
|
|
5636
5711
|
enumerable: true,
|
|
5637
|
-
get: function () { return
|
|
5712
|
+
get: function () { return chunkDBAUZD7A_cjs.Spacer; }
|
|
5638
5713
|
});
|
|
5639
5714
|
Object.defineProperty(exports, "Steps", {
|
|
5640
5715
|
enumerable: true,
|
|
5641
|
-
get: function () { return
|
|
5716
|
+
get: function () { return chunkDBAUZD7A_cjs.Steps; }
|
|
5642
5717
|
});
|
|
5643
5718
|
Object.defineProperty(exports, "THEME_STYLE_ID", {
|
|
5644
5719
|
enumerable: true,
|
|
5645
|
-
get: function () { return
|
|
5720
|
+
get: function () { return chunkDBAUZD7A_cjs.THEME_STYLE_ID; }
|
|
5721
|
+
});
|
|
5722
|
+
Object.defineProperty(exports, "TIMELINE_ZOOM", {
|
|
5723
|
+
enumerable: true,
|
|
5724
|
+
get: function () { return chunkDBAUZD7A_cjs.TIMELINE_ZOOM; }
|
|
5646
5725
|
});
|
|
5647
5726
|
Object.defineProperty(exports, "Tabs", {
|
|
5648
5727
|
enumerable: true,
|
|
5649
|
-
get: function () { return
|
|
5728
|
+
get: function () { return chunkDBAUZD7A_cjs.Tabs; }
|
|
5650
5729
|
});
|
|
5651
5730
|
Object.defineProperty(exports, "TeamGrid", {
|
|
5652
5731
|
enumerable: true,
|
|
5653
|
-
get: function () { return
|
|
5732
|
+
get: function () { return chunkDBAUZD7A_cjs.TeamGrid; }
|
|
5654
5733
|
});
|
|
5655
5734
|
Object.defineProperty(exports, "Testimonial", {
|
|
5656
5735
|
enumerable: true,
|
|
5657
|
-
get: function () { return
|
|
5736
|
+
get: function () { return chunkDBAUZD7A_cjs.Testimonial; }
|
|
5658
5737
|
});
|
|
5659
5738
|
Object.defineProperty(exports, "TestimonialGrid", {
|
|
5660
5739
|
enumerable: true,
|
|
5661
|
-
get: function () { return
|
|
5740
|
+
get: function () { return chunkDBAUZD7A_cjs.TestimonialGrid; }
|
|
5662
5741
|
});
|
|
5663
5742
|
Object.defineProperty(exports, "ThemeEditor", {
|
|
5664
5743
|
enumerable: true,
|
|
5665
|
-
get: function () { return
|
|
5744
|
+
get: function () { return chunkDBAUZD7A_cjs.ThemeEditor; }
|
|
5666
5745
|
});
|
|
5667
5746
|
Object.defineProperty(exports, "Timeline", {
|
|
5668
5747
|
enumerable: true,
|
|
5669
|
-
get: function () { return
|
|
5748
|
+
get: function () { return chunkDBAUZD7A_cjs.Timeline; }
|
|
5670
5749
|
});
|
|
5671
5750
|
Object.defineProperty(exports, "TimelineCalendar", {
|
|
5672
5751
|
enumerable: true,
|
|
5673
|
-
get: function () { return
|
|
5752
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineCalendar; }
|
|
5674
5753
|
});
|
|
5675
5754
|
Object.defineProperty(exports, "TimelineGantt", {
|
|
5676
5755
|
enumerable: true,
|
|
5677
|
-
get: function () { return
|
|
5756
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineGantt; }
|
|
5757
|
+
});
|
|
5758
|
+
Object.defineProperty(exports, "TimelineZoomControl", {
|
|
5759
|
+
enumerable: true,
|
|
5760
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineZoomControl; }
|
|
5678
5761
|
});
|
|
5679
5762
|
Object.defineProperty(exports, "VideoEmbed", {
|
|
5680
5763
|
enumerable: true,
|
|
5681
|
-
get: function () { return
|
|
5764
|
+
get: function () { return chunkDBAUZD7A_cjs.VideoEmbed; }
|
|
5682
5765
|
});
|
|
5683
5766
|
Object.defineProperty(exports, "applyFontVars", {
|
|
5684
5767
|
enumerable: true,
|
|
5685
|
-
get: function () { return
|
|
5768
|
+
get: function () { return chunkDBAUZD7A_cjs.applyFontVars; }
|
|
5686
5769
|
});
|
|
5687
5770
|
Object.defineProperty(exports, "applyStoredTheme", {
|
|
5688
5771
|
enumerable: true,
|
|
5689
|
-
get: function () { return
|
|
5772
|
+
get: function () { return chunkDBAUZD7A_cjs.applyStoredTheme; }
|
|
5690
5773
|
});
|
|
5691
5774
|
Object.defineProperty(exports, "applyThemeVars", {
|
|
5692
5775
|
enumerable: true,
|
|
5693
|
-
get: function () { return
|
|
5776
|
+
get: function () { return chunkDBAUZD7A_cjs.applyThemeVars; }
|
|
5694
5777
|
});
|
|
5695
5778
|
Object.defineProperty(exports, "asAssetRef", {
|
|
5696
5779
|
enumerable: true,
|
|
5697
|
-
get: function () { return
|
|
5780
|
+
get: function () { return chunkDBAUZD7A_cjs.asAssetRef; }
|
|
5698
5781
|
});
|
|
5699
5782
|
Object.defineProperty(exports, "assetRefId", {
|
|
5700
5783
|
enumerable: true,
|
|
5701
|
-
get: function () { return
|
|
5784
|
+
get: function () { return chunkDBAUZD7A_cjs.assetRefId; }
|
|
5702
5785
|
});
|
|
5703
5786
|
Object.defineProperty(exports, "clearFontVars", {
|
|
5704
5787
|
enumerable: true,
|
|
5705
|
-
get: function () { return
|
|
5788
|
+
get: function () { return chunkDBAUZD7A_cjs.clearFontVars; }
|
|
5706
5789
|
});
|
|
5707
5790
|
Object.defineProperty(exports, "clearThemeVars", {
|
|
5708
5791
|
enumerable: true,
|
|
5709
|
-
get: function () { return
|
|
5792
|
+
get: function () { return chunkDBAUZD7A_cjs.clearThemeVars; }
|
|
5710
5793
|
});
|
|
5711
5794
|
Object.defineProperty(exports, "createThemeStore", {
|
|
5712
5795
|
enumerable: true,
|
|
5713
|
-
get: function () { return
|
|
5796
|
+
get: function () { return chunkDBAUZD7A_cjs.createThemeStore; }
|
|
5714
5797
|
});
|
|
5715
5798
|
Object.defineProperty(exports, "dayKey", {
|
|
5716
5799
|
enumerable: true,
|
|
5717
|
-
get: function () { return
|
|
5800
|
+
get: function () { return chunkDBAUZD7A_cjs.dayKey; }
|
|
5718
5801
|
});
|
|
5719
5802
|
Object.defineProperty(exports, "daysUntil", {
|
|
5720
5803
|
enumerable: true,
|
|
5721
|
-
get: function () { return
|
|
5804
|
+
get: function () { return chunkDBAUZD7A_cjs.daysUntil; }
|
|
5722
5805
|
});
|
|
5723
5806
|
Object.defineProperty(exports, "fmtDate", {
|
|
5724
5807
|
enumerable: true,
|
|
5725
|
-
get: function () { return
|
|
5808
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDate; }
|
|
5726
5809
|
});
|
|
5727
5810
|
Object.defineProperty(exports, "fmtDateTime", {
|
|
5728
5811
|
enumerable: true,
|
|
5729
|
-
get: function () { return
|
|
5812
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDateTime; }
|
|
5730
5813
|
});
|
|
5731
5814
|
Object.defineProperty(exports, "fontPackages", {
|
|
5732
5815
|
enumerable: true,
|
|
5733
|
-
get: function () { return
|
|
5816
|
+
get: function () { return chunkDBAUZD7A_cjs.fontPackages; }
|
|
5734
5817
|
});
|
|
5735
5818
|
Object.defineProperty(exports, "formatPageRefs", {
|
|
5736
5819
|
enumerable: true,
|
|
5737
|
-
get: function () { return
|
|
5820
|
+
get: function () { return chunkDBAUZD7A_cjs.formatPageRefs; }
|
|
5738
5821
|
});
|
|
5739
5822
|
Object.defineProperty(exports, "formatSpan", {
|
|
5740
5823
|
enumerable: true,
|
|
5741
|
-
get: function () { return
|
|
5824
|
+
get: function () { return chunkDBAUZD7A_cjs.formatSpan; }
|
|
5742
5825
|
});
|
|
5743
5826
|
Object.defineProperty(exports, "fromNow", {
|
|
5744
5827
|
enumerable: true,
|
|
5745
|
-
get: function () { return
|
|
5828
|
+
get: function () { return chunkDBAUZD7A_cjs.fromNow; }
|
|
5746
5829
|
});
|
|
5747
5830
|
Object.defineProperty(exports, "gbp", {
|
|
5748
5831
|
enumerable: true,
|
|
5749
|
-
get: function () { return
|
|
5832
|
+
get: function () { return chunkDBAUZD7A_cjs.gbp; }
|
|
5750
5833
|
});
|
|
5751
5834
|
Object.defineProperty(exports, "getFontPairing", {
|
|
5752
5835
|
enumerable: true,
|
|
5753
|
-
get: function () { return
|
|
5836
|
+
get: function () { return chunkDBAUZD7A_cjs.getFontPairing; }
|
|
5754
5837
|
});
|
|
5755
5838
|
Object.defineProperty(exports, "hrs", {
|
|
5756
5839
|
enumerable: true,
|
|
5757
|
-
get: function () { return
|
|
5840
|
+
get: function () { return chunkDBAUZD7A_cjs.hrs; }
|
|
5758
5841
|
});
|
|
5759
5842
|
Object.defineProperty(exports, "initials", {
|
|
5760
5843
|
enumerable: true,
|
|
5761
|
-
get: function () { return
|
|
5844
|
+
get: function () { return chunkDBAUZD7A_cjs.initials; }
|
|
5762
5845
|
});
|
|
5763
5846
|
Object.defineProperty(exports, "isAssetRef", {
|
|
5764
5847
|
enumerable: true,
|
|
5765
|
-
get: function () { return
|
|
5848
|
+
get: function () { return chunkDBAUZD7A_cjs.isAssetRef; }
|
|
5766
5849
|
});
|
|
5767
5850
|
Object.defineProperty(exports, "matchFontPairing", {
|
|
5768
5851
|
enumerable: true,
|
|
5769
|
-
get: function () { return
|
|
5852
|
+
get: function () { return chunkDBAUZD7A_cjs.matchFontPairing; }
|
|
5770
5853
|
});
|
|
5771
5854
|
Object.defineProperty(exports, "monthLabel", {
|
|
5772
5855
|
enumerable: true,
|
|
5773
|
-
get: function () { return
|
|
5856
|
+
get: function () { return chunkDBAUZD7A_cjs.monthLabel; }
|
|
5774
5857
|
});
|
|
5775
5858
|
Object.defineProperty(exports, "parseIso", {
|
|
5776
5859
|
enumerable: true,
|
|
5777
|
-
get: function () { return
|
|
5860
|
+
get: function () { return chunkDBAUZD7A_cjs.parseIso; }
|
|
5778
5861
|
});
|
|
5779
5862
|
Object.defineProperty(exports, "pct", {
|
|
5780
5863
|
enumerable: true,
|
|
5781
|
-
get: function () { return
|
|
5864
|
+
get: function () { return chunkDBAUZD7A_cjs.pct; }
|
|
5782
5865
|
});
|
|
5783
5866
|
Object.defineProperty(exports, "tid", {
|
|
5784
5867
|
enumerable: true,
|
|
5785
|
-
get: function () { return
|
|
5868
|
+
get: function () { return chunkDBAUZD7A_cjs.tid; }
|
|
5786
5869
|
});
|
|
5787
5870
|
Object.defineProperty(exports, "toEmbedUrl", {
|
|
5788
5871
|
enumerable: true,
|
|
5789
|
-
get: function () { return
|
|
5872
|
+
get: function () { return chunkDBAUZD7A_cjs.toEmbedUrl; }
|
|
5790
5873
|
});
|
|
5791
5874
|
Object.defineProperty(exports, "toHslTriplet", {
|
|
5792
5875
|
enumerable: true,
|
|
5793
|
-
get: function () { return
|
|
5876
|
+
get: function () { return chunkDBAUZD7A_cjs.toHslTriplet; }
|
|
5794
5877
|
});
|
|
5795
5878
|
Object.defineProperty(exports, "useAssetRenderer", {
|
|
5796
5879
|
enumerable: true,
|
|
5797
|
-
get: function () { return
|
|
5880
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetRenderer; }
|
|
5798
5881
|
});
|
|
5799
5882
|
Object.defineProperty(exports, "useAssetResolverActive", {
|
|
5800
5883
|
enumerable: true,
|
|
5801
|
-
get: function () { return
|
|
5884
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetResolverActive; }
|
|
5802
5885
|
});
|
|
5803
5886
|
Object.defineProperty(exports, "utcDay", {
|
|
5804
5887
|
enumerable: true,
|
|
5805
|
-
get: function () { return
|
|
5888
|
+
get: function () { return chunkDBAUZD7A_cjs.utcDay; }
|
|
5806
5889
|
});
|
|
5807
5890
|
Object.defineProperty(exports, "DocumentCard", {
|
|
5808
5891
|
enumerable: true,
|
|
@@ -5880,9 +5963,11 @@ exports.MetricCard = MetricCard;
|
|
|
5880
5963
|
exports.ModuleManager = ModuleManager;
|
|
5881
5964
|
exports.PageHeader = PageHeader;
|
|
5882
5965
|
exports.PageRenderer = PageRenderer;
|
|
5966
|
+
exports.QuickActionCards = QuickActionCards;
|
|
5883
5967
|
exports.RecentActivityCard = RecentActivityCard;
|
|
5884
5968
|
exports.ResumeStrip = ResumeStrip;
|
|
5885
5969
|
exports.Section = Section;
|
|
5970
|
+
exports.SectionCaption = SectionCaption;
|
|
5886
5971
|
exports.SectionStrip = SectionStrip;
|
|
5887
5972
|
exports.StartHero = StartHero;
|
|
5888
5973
|
exports.StatGroup = StatGroup;
|