@arbidocs/blocks 0.3.176 → 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 +293 -180
- 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 +145 -42
- 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(
|
|
@@ -760,6 +754,12 @@ function GridView({
|
|
|
760
754
|
},
|
|
761
755
|
[onRowClick]
|
|
762
756
|
);
|
|
757
|
+
const desiredHiddenRef = react$1.useRef(null);
|
|
758
|
+
const snapshotDesiredHidden = react$1.useCallback(() => {
|
|
759
|
+
const api = gridApiRef.current;
|
|
760
|
+
if (!api) return;
|
|
761
|
+
desiredHiddenRef.current = new Map(api.getColumnState().map((c) => [c.colId, !!c.hide]));
|
|
762
|
+
}, []);
|
|
763
763
|
const handleGridReady = react$1.useCallback(
|
|
764
764
|
(event) => {
|
|
765
765
|
gridApiRef.current = event.api;
|
|
@@ -800,6 +800,7 @@ function GridView({
|
|
|
800
800
|
}
|
|
801
801
|
}
|
|
802
802
|
ensureSelectionColumnVisible();
|
|
803
|
+
snapshotDesiredHidden();
|
|
803
804
|
if (onGridReady) {
|
|
804
805
|
onGridReady({ api: event.api });
|
|
805
806
|
}
|
|
@@ -813,11 +814,36 @@ function GridView({
|
|
|
813
814
|
});
|
|
814
815
|
}
|
|
815
816
|
},
|
|
816
|
-
[
|
|
817
|
+
[
|
|
818
|
+
onGridReady,
|
|
819
|
+
getItemId,
|
|
820
|
+
ensureSelectionColumnVisible,
|
|
821
|
+
snapshotDesiredHidden,
|
|
822
|
+
initialState,
|
|
823
|
+
initialVisibleColumns
|
|
824
|
+
]
|
|
825
|
+
);
|
|
826
|
+
const handleColumnVisible = react$1.useCallback(
|
|
827
|
+
(event) => {
|
|
828
|
+
const api = gridApiRef.current;
|
|
829
|
+
if (!api) return;
|
|
830
|
+
if (event.source === "gridOptionsChanged") {
|
|
831
|
+
const desired = desiredHiddenRef.current;
|
|
832
|
+
if (!desired) return;
|
|
833
|
+
const fixes = api.getColumnState().filter(
|
|
834
|
+
(c) => c.colId !== "ag-Grid-SelectionColumn" && desired.has(c.colId) && desired.get(c.colId) !== !!c.hide
|
|
835
|
+
).map((c) => ({ colId: c.colId, hide: desired.get(c.colId) }));
|
|
836
|
+
if (fixes.length) api.applyColumnState({ state: fixes });
|
|
837
|
+
} else {
|
|
838
|
+
snapshotDesiredHidden();
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
[snapshotDesiredHidden]
|
|
817
842
|
);
|
|
818
843
|
const handleFirstDataRendered = react$1.useCallback(() => {
|
|
819
844
|
ensureSelectionColumnVisible();
|
|
820
|
-
|
|
845
|
+
snapshotDesiredHidden();
|
|
846
|
+
}, [ensureSelectionColumnVisible, snapshotDesiredHidden]);
|
|
821
847
|
const handleModelUpdated = react$1.useCallback(() => {
|
|
822
848
|
}, []);
|
|
823
849
|
const prevItemsRef = react$1.useRef([]);
|
|
@@ -1036,6 +1062,7 @@ function GridView({
|
|
|
1036
1062
|
onCellValueChanged,
|
|
1037
1063
|
onRowClicked: handleRowClicked,
|
|
1038
1064
|
onStateUpdated: handleStateUpdated,
|
|
1065
|
+
onColumnVisible: handleColumnVisible,
|
|
1039
1066
|
...combinedOptions
|
|
1040
1067
|
}
|
|
1041
1068
|
) });
|
|
@@ -1236,16 +1263,24 @@ function EntityIdentityBar({
|
|
|
1236
1263
|
children: [
|
|
1237
1264
|
/* @__PURE__ */ jsxRuntime.jsxs("dl", { className: "min-w-0 flex-1 space-y-1.5", children: [
|
|
1238
1265
|
fields.map((field) => /* @__PURE__ */ jsxRuntime.jsx(IdentityFieldRow, { field, canEdit }, field.label)),
|
|
1239
|
-
extraRows.map((row) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
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
|
+
)),
|
|
1249
1284
|
footer ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center pt-0.5", children: footer }) : null
|
|
1250
1285
|
] }),
|
|
1251
1286
|
actions ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex shrink-0 items-center gap-2", children: actions }) : null
|
|
@@ -1300,7 +1335,7 @@ function IdentityFieldRow({ field, canEdit }) {
|
|
|
1300
1335
|
}
|
|
1301
1336
|
}
|
|
1302
1337
|
};
|
|
1303
|
-
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: [
|
|
1304
1339
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1305
1340
|
"dt",
|
|
1306
1341
|
{
|
|
@@ -1377,7 +1412,7 @@ function MemberAvatarStack({
|
|
|
1377
1412
|
const faces = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
1378
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: [
|
|
1379
1414
|
m.picture && /* @__PURE__ */ jsxRuntime.jsx(react.AvatarImage, { src: m.picture, alt: m.name }),
|
|
1380
|
-
/* @__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 || "?") })
|
|
1381
1416
|
] }, i)),
|
|
1382
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: [
|
|
1383
1418
|
"+",
|
|
@@ -1570,18 +1605,18 @@ function RecentActivityCard({
|
|
|
1570
1605
|
onClick: row.onClick,
|
|
1571
1606
|
title: row.title,
|
|
1572
1607
|
className: react.cn(
|
|
1573
|
-
"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",
|
|
1574
1609
|
row.onClick && "cursor-pointer"
|
|
1575
1610
|
),
|
|
1576
1611
|
"data-testid": testId && `${testId}-row`,
|
|
1577
1612
|
children: [
|
|
1578
1613
|
row.leading,
|
|
1579
1614
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
1580
|
-
/* @__PURE__ */ jsxRuntime.
|
|
1581
|
-
|
|
1582
|
-
/* @__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 }),
|
|
1583
1617
|
!row.trailing && row.meta && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "shrink-0 text-[11px] text-muted-foreground", children: row.meta })
|
|
1584
|
-
] })
|
|
1618
|
+
] }),
|
|
1619
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-0.5 truncate text-xs text-muted-foreground", children: row.subtitle })
|
|
1585
1620
|
] })
|
|
1586
1621
|
]
|
|
1587
1622
|
}
|
|
@@ -1725,6 +1760,74 @@ function ResumeStrip({
|
|
|
1725
1760
|
)) })
|
|
1726
1761
|
] });
|
|
1727
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
|
+
}
|
|
1728
1831
|
function SectionStrip({
|
|
1729
1832
|
icon: Icon,
|
|
1730
1833
|
title,
|
|
@@ -2016,18 +2119,18 @@ function WorkspaceCard({
|
|
|
2016
2119
|
)
|
|
2017
2120
|
] }),
|
|
2018
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: [
|
|
2019
|
-
/* @__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: [
|
|
2020
2123
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-x-3", children: [
|
|
2021
2124
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Documents", children: [
|
|
2022
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-
|
|
2125
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.FileText, { className: "size-4 text-muted-foreground" }),
|
|
2023
2126
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: docCount.toLocaleString() })
|
|
2024
2127
|
] }),
|
|
2025
2128
|
chatCount !== void 0 && /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Chats", children: [
|
|
2026
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.MessagesSquare, { className: "size-
|
|
2129
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.MessagesSquare, { className: "size-4 text-muted-foreground" }),
|
|
2027
2130
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-medium tabular-nums", children: chatCount.toLocaleString() })
|
|
2028
2131
|
] }),
|
|
2029
2132
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: "inline-flex items-center gap-1 text-foreground", title: "Members", children: [
|
|
2030
|
-
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-
|
|
2133
|
+
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Users, { className: "size-4 text-muted-foreground" }),
|
|
2031
2134
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2032
2135
|
"span",
|
|
2033
2136
|
{
|
|
@@ -2054,10 +2157,10 @@ function WorkspaceCard({
|
|
|
2054
2157
|
"span",
|
|
2055
2158
|
{
|
|
2056
2159
|
className: "min-w-0 max-w-full self-start truncate text-left text-xs text-muted-foreground",
|
|
2057
|
-
title:
|
|
2160
|
+
title: chunkDBAUZD7A_cjs.fmtDate(updatedAt),
|
|
2058
2161
|
children: [
|
|
2059
2162
|
"Updated ",
|
|
2060
|
-
|
|
2163
|
+
chunkDBAUZD7A_cjs.fromNow(updatedAt)
|
|
2061
2164
|
]
|
|
2062
2165
|
}
|
|
2063
2166
|
)
|
|
@@ -2089,7 +2192,7 @@ function NavItemLink({ item, onNavigate }) {
|
|
|
2089
2192
|
to: item.to,
|
|
2090
2193
|
end: item.end,
|
|
2091
2194
|
onClick: onNavigate,
|
|
2092
|
-
"data-testid":
|
|
2195
|
+
"data-testid": chunkDBAUZD7A_cjs.tid("sidebar-nav", item.id),
|
|
2093
2196
|
className: ({ isActive }) => react.cn(
|
|
2094
2197
|
"group flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors",
|
|
2095
2198
|
isActive ? "bg-sidebar-accent text-sidebar-accent-foreground" : "text-sidebar-foreground hover:bg-sidebar-accent/60 hover:text-sidebar-accent-foreground"
|
|
@@ -2262,7 +2365,7 @@ function AppHeader({
|
|
|
2262
2365
|
type: "button",
|
|
2263
2366
|
onClick: onSearch,
|
|
2264
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",
|
|
2265
|
-
"data-testid":
|
|
2368
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "global-search"),
|
|
2266
2369
|
children: [
|
|
2267
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" }),
|
|
2268
2371
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-1", children: searchPlaceholder }),
|
|
@@ -2278,7 +2381,7 @@ function AppHeader({
|
|
|
2278
2381
|
size: "sm",
|
|
2279
2382
|
onClick: onAsk ?? onSearch,
|
|
2280
2383
|
className: classNames?.askButton,
|
|
2281
|
-
"data-testid":
|
|
2384
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(testIdPrefix, "ask-ai"),
|
|
2282
2385
|
children: [
|
|
2283
2386
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-4" }),
|
|
2284
2387
|
askLabel
|
|
@@ -2289,7 +2392,7 @@ function AppHeader({
|
|
|
2289
2392
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2290
2393
|
react.NotificationBell,
|
|
2291
2394
|
{
|
|
2292
|
-
testId:
|
|
2395
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "notifications"),
|
|
2293
2396
|
onNavigate: onNotificationNavigate,
|
|
2294
2397
|
toneClassNames: notificationTones
|
|
2295
2398
|
}
|
|
@@ -2300,8 +2403,8 @@ function AppHeader({
|
|
|
2300
2403
|
user,
|
|
2301
2404
|
items: userItems,
|
|
2302
2405
|
onLogout,
|
|
2303
|
-
testId:
|
|
2304
|
-
logoutTestId:
|
|
2406
|
+
testId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "user-menu"),
|
|
2407
|
+
logoutTestId: chunkDBAUZD7A_cjs.tid(testIdPrefix, "logout")
|
|
2305
2408
|
}
|
|
2306
2409
|
)
|
|
2307
2410
|
] })
|
|
@@ -2521,7 +2624,7 @@ function createArbiMaterializer(arbi, opts = {}) {
|
|
|
2521
2624
|
}
|
|
2522
2625
|
function collectAssetRefs(node, acc) {
|
|
2523
2626
|
if (typeof node === "string") {
|
|
2524
|
-
if (
|
|
2627
|
+
if (chunkDBAUZD7A_cjs.isAssetRef(node)) acc.add(node);
|
|
2525
2628
|
return;
|
|
2526
2629
|
}
|
|
2527
2630
|
if (Array.isArray(node)) {
|
|
@@ -2555,7 +2658,7 @@ async function materializePageData(data, materialize) {
|
|
|
2555
2658
|
const replacements = /* @__PURE__ */ new Map();
|
|
2556
2659
|
await Promise.all(
|
|
2557
2660
|
[...refs].map(async (ref) => {
|
|
2558
|
-
const src = await materialize(
|
|
2661
|
+
const src = await materialize(chunkDBAUZD7A_cjs.assetRefId(ref));
|
|
2559
2662
|
if (src) replacements.set(ref, src);
|
|
2560
2663
|
})
|
|
2561
2664
|
);
|
|
@@ -2640,7 +2743,7 @@ function StudioEditor({
|
|
|
2640
2743
|
radius: stored.radius ?? defaultTheme.radius,
|
|
2641
2744
|
activePresetId: null
|
|
2642
2745
|
});
|
|
2643
|
-
|
|
2746
|
+
chunkDBAUZD7A_cjs.applyStoredTheme(themeBundle);
|
|
2644
2747
|
})();
|
|
2645
2748
|
return () => {
|
|
2646
2749
|
cancelled = true;
|
|
@@ -2733,7 +2836,7 @@ function StudioEditor({
|
|
|
2733
2836
|
"\u201D\u2026"
|
|
2734
2837
|
]
|
|
2735
2838
|
}
|
|
2736
|
-
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
2839
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.AssetResolverProvider, { render: AssetThumb, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2737
2840
|
puck.Puck,
|
|
2738
2841
|
{
|
|
2739
2842
|
config,
|
|
@@ -2751,7 +2854,7 @@ function StudioEditor({
|
|
|
2751
2854
|
className: "w-80 shrink-0 border-l border-border",
|
|
2752
2855
|
"data-testid": `${testIdPrefix}-theme-drawer`,
|
|
2753
2856
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2754
|
-
|
|
2857
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
2755
2858
|
{
|
|
2756
2859
|
bundle: themeBundle,
|
|
2757
2860
|
variant: "drawer",
|
|
@@ -2790,7 +2893,7 @@ function PageRenderer({
|
|
|
2790
2893
|
const page = initialData ?? (await persistence.loadPublished(arbi, live, slug)).data ?? (await persistence.loadPage(arbi, live, slug)).data;
|
|
2791
2894
|
if (cancelled) return;
|
|
2792
2895
|
if (applyTheme) {
|
|
2793
|
-
|
|
2896
|
+
chunkDBAUZD7A_cjs.applyThemeVars(
|
|
2794
2897
|
theme ? { ...defaultTheme, ...theme, colors: { ...defaultTheme.colors, ...theme.colors } } : defaultTheme
|
|
2795
2898
|
);
|
|
2796
2899
|
}
|
|
@@ -2992,7 +3095,7 @@ function AiTextField({
|
|
|
2992
3095
|
setActive(true);
|
|
2993
3096
|
await task.run(buildPrompt({ kind, label, current: value ?? "" }), docIds);
|
|
2994
3097
|
};
|
|
2995
|
-
const inputTid =
|
|
3098
|
+
const inputTid = chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-field`, name);
|
|
2996
3099
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "al-ai-field", children: [
|
|
2997
3100
|
multiline ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
2998
3101
|
"textarea",
|
|
@@ -3021,7 +3124,7 @@ function AiTextField({
|
|
|
3021
3124
|
className: "al-ai-field__btn",
|
|
3022
3125
|
onClick: () => void write(),
|
|
3023
3126
|
disabled: task.isRunning,
|
|
3024
|
-
"data-testid":
|
|
3127
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-ai-write`, name),
|
|
3025
3128
|
title: "Draft this field with AI, grounded in the marketing workspace",
|
|
3026
3129
|
children: [
|
|
3027
3130
|
task.isRunning ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Loader2, { className: "size-3 animate-spin" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Sparkles, { className: "size-3" }),
|
|
@@ -3124,8 +3227,8 @@ function ImageFieldControl({
|
|
|
3124
3227
|
const arbi = react.useArbi();
|
|
3125
3228
|
const gen = useImageGen();
|
|
3126
3229
|
const queryClient = reactQuery.useQueryClient();
|
|
3127
|
-
const currentAssetImage = useAssetImage(
|
|
3128
|
-
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);
|
|
3129
3232
|
const refreshAssets = () => queryClient.invalidateQueries({ queryKey: ["arbi", "documents", workspaceId] });
|
|
3130
3233
|
const { data: docs } = react.useDocuments(workspaceId);
|
|
3131
3234
|
const imageDocs = react$1.useMemo(
|
|
@@ -3159,7 +3262,7 @@ function ImageFieldControl({
|
|
|
3159
3262
|
const res = await arbi.documents.uploadFile(file, name2, { folder });
|
|
3160
3263
|
const id = res.doc_ext_ids?.[0];
|
|
3161
3264
|
if (id) {
|
|
3162
|
-
onChange(
|
|
3265
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3163
3266
|
void refreshAssets();
|
|
3164
3267
|
}
|
|
3165
3268
|
} finally {
|
|
@@ -3177,7 +3280,7 @@ function ImageFieldControl({
|
|
|
3177
3280
|
if (!prompt.trim() || gen.isGenerating) return;
|
|
3178
3281
|
const id = await gen.generate(prompt, refIds);
|
|
3179
3282
|
if (id) {
|
|
3180
|
-
onChange(
|
|
3283
|
+
onChange(chunkDBAUZD7A_cjs.asAssetRef(id));
|
|
3181
3284
|
setRefIds([]);
|
|
3182
3285
|
void refreshAssets();
|
|
3183
3286
|
}
|
|
@@ -3192,7 +3295,7 @@ function ImageFieldControl({
|
|
|
3192
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"}`;
|
|
3193
3296
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-2", "data-testid": tp(), children: [
|
|
3194
3297
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
|
|
3195
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3298
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.BlockImage, { src: value, aspect: "16:9", rounded: "md", testId: tp("preview") }),
|
|
3196
3299
|
currentAssetImage ? /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3197
3300
|
"button",
|
|
3198
3301
|
{
|
|
@@ -3226,12 +3329,12 @@ function ImageFieldControl({
|
|
|
3226
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." }),
|
|
3227
3330
|
imageDocs.map((d) => {
|
|
3228
3331
|
const thumb = thumbs?.[d.external_id];
|
|
3229
|
-
const selected = value ===
|
|
3332
|
+
const selected = value === chunkDBAUZD7A_cjs.asAssetRef(d.external_id);
|
|
3230
3333
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3231
3334
|
"button",
|
|
3232
3335
|
{
|
|
3233
3336
|
type: "button",
|
|
3234
|
-
onClick: () => onChange(
|
|
3337
|
+
onClick: () => onChange(chunkDBAUZD7A_cjs.asAssetRef(d.external_id)),
|
|
3235
3338
|
className: `overflow-hidden rounded border ${selected ? "border-primary ring-1 ring-primary" : "border-border"}`,
|
|
3236
3339
|
title: d.file_name ?? "",
|
|
3237
3340
|
"data-testid": tp("asset", d.external_id),
|
|
@@ -3293,14 +3396,14 @@ function ImageFieldControl({
|
|
|
3293
3396
|
"Reference images",
|
|
3294
3397
|
refIds.length > 0 ? ` (${refIds.length})` : " (optional)"
|
|
3295
3398
|
] }),
|
|
3296
|
-
|
|
3399
|
+
chunkDBAUZD7A_cjs.isAssetRef(value) && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3297
3400
|
"button",
|
|
3298
3401
|
{
|
|
3299
3402
|
type: "button",
|
|
3300
3403
|
className: "text-xs font-medium text-primary hover:underline",
|
|
3301
|
-
onClick: () => toggleRef(
|
|
3404
|
+
onClick: () => toggleRef(chunkDBAUZD7A_cjs.assetRefId(value)),
|
|
3302
3405
|
"data-testid": tp("vary-current"),
|
|
3303
|
-
children: refIds.includes(
|
|
3406
|
+
children: refIds.includes(chunkDBAUZD7A_cjs.assetRefId(value)) ? "Varying current" : "Vary current image"
|
|
3304
3407
|
}
|
|
3305
3408
|
)
|
|
3306
3409
|
] }),
|
|
@@ -3514,7 +3617,7 @@ function createBlockKit(ai, image, eyebrowClassName) {
|
|
|
3514
3617
|
}),
|
|
3515
3618
|
iconField: (label = "Icon") => ({ type: "select", label, options: ICON_OPTIONS }),
|
|
3516
3619
|
resolveIcon: (name) => name ? iconMap[name] : void 0,
|
|
3517
|
-
blockTestId: (id) =>
|
|
3620
|
+
blockTestId: (id) => chunkDBAUZD7A_cjs.tid("arbi-block", id)
|
|
3518
3621
|
};
|
|
3519
3622
|
}
|
|
3520
3623
|
var emptySlot = [];
|
|
@@ -3579,7 +3682,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3579
3682
|
render: ({ id, count, gap, col1, col2, col3, col4 }) => {
|
|
3580
3683
|
const n = Number(count) || 3;
|
|
3581
3684
|
const columns = [col1, col2, col3, col4].slice(0, n).map(renderSlot);
|
|
3582
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3685
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Columns, { count: n, gap, columns, testId: blockTestId(id) });
|
|
3583
3686
|
}
|
|
3584
3687
|
};
|
|
3585
3688
|
const SpacerBlock = {
|
|
@@ -3597,7 +3700,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3597
3700
|
}
|
|
3598
3701
|
},
|
|
3599
3702
|
defaultProps: { size: "md" },
|
|
3600
|
-
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3703
|
+
render: ({ id, size }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Spacer, { size, testId: blockTestId(id) })
|
|
3601
3704
|
};
|
|
3602
3705
|
const ContainerBlock = {
|
|
3603
3706
|
label: "Container",
|
|
@@ -3625,7 +3728,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3625
3728
|
children: { type: "slot" }
|
|
3626
3729
|
},
|
|
3627
3730
|
defaultProps: { width: "default", padding: "md", children: emptySlot },
|
|
3628
|
-
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) })
|
|
3629
3732
|
};
|
|
3630
3733
|
const HeroBlock = {
|
|
3631
3734
|
label: "Hero",
|
|
@@ -3676,7 +3779,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3676
3779
|
backgroundImage,
|
|
3677
3780
|
overlay
|
|
3678
3781
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3679
|
-
|
|
3782
|
+
chunkDBAUZD7A_cjs.Hero,
|
|
3680
3783
|
{
|
|
3681
3784
|
eyebrow,
|
|
3682
3785
|
title,
|
|
@@ -3748,7 +3851,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3748
3851
|
icon: resolveIcon(it.icon)
|
|
3749
3852
|
})
|
|
3750
3853
|
);
|
|
3751
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3854
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FeatureGrid, { columns, items: list, testId: blockTestId(id) });
|
|
3752
3855
|
}
|
|
3753
3856
|
};
|
|
3754
3857
|
const StatGroupBlock = {
|
|
@@ -3790,7 +3893,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3790
3893
|
avatarUrl: ""
|
|
3791
3894
|
},
|
|
3792
3895
|
render: ({ id, quote, author, role, avatarUrl }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3793
|
-
|
|
3896
|
+
chunkDBAUZD7A_cjs.Testimonial,
|
|
3794
3897
|
{
|
|
3795
3898
|
quote,
|
|
3796
3899
|
author,
|
|
@@ -3819,7 +3922,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3819
3922
|
overlay: true
|
|
3820
3923
|
},
|
|
3821
3924
|
render: ({ id, title, subtitle, cta, tone, backgroundImage, overlay }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3822
|
-
|
|
3925
|
+
chunkDBAUZD7A_cjs.CTABanner,
|
|
3823
3926
|
{
|
|
3824
3927
|
title,
|
|
3825
3928
|
subtitle,
|
|
@@ -3851,7 +3954,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3851
3954
|
{ label: "Umbrella" }
|
|
3852
3955
|
]
|
|
3853
3956
|
},
|
|
3854
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3957
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.LogoCloud, { items, testId: blockTestId(id) })
|
|
3855
3958
|
};
|
|
3856
3959
|
const FAQBlock = {
|
|
3857
3960
|
label: "FAQ",
|
|
@@ -3883,7 +3986,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3883
3986
|
}
|
|
3884
3987
|
]
|
|
3885
3988
|
},
|
|
3886
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3989
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.FAQ, { items, testId: blockTestId(id) })
|
|
3887
3990
|
};
|
|
3888
3991
|
const TimelineBlockConfig = {
|
|
3889
3992
|
label: "Timeline",
|
|
@@ -3936,7 +4039,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3936
4039
|
]
|
|
3937
4040
|
},
|
|
3938
4041
|
render: ({ id, view, height, items }) => /* @__PURE__ */ jsxRuntime.jsx("div", { style: { height: height ?? 520 }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3939
|
-
|
|
4042
|
+
chunkDBAUZD7A_cjs.Timeline,
|
|
3940
4043
|
{
|
|
3941
4044
|
items: (items ?? []).filter((item) => !!item?.start).map((item, index) => ({
|
|
3942
4045
|
id: `${id}-${index}`,
|
|
@@ -3958,7 +4061,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3958
4061
|
defaultProps: {
|
|
3959
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"
|
|
3960
4063
|
},
|
|
3961
|
-
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4064
|
+
render: ({ id, content }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.RichTextBlock, { content, testId: blockTestId(id) })
|
|
3962
4065
|
};
|
|
3963
4066
|
const CalloutBlock = {
|
|
3964
4067
|
label: "Callout",
|
|
@@ -3981,7 +4084,7 @@ function createWebsiteBlocks(kit) {
|
|
|
3981
4084
|
title: "Good to know",
|
|
3982
4085
|
body: "This is a helpful note that draws attention to important information."
|
|
3983
4086
|
},
|
|
3984
|
-
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) })
|
|
3985
4088
|
};
|
|
3986
4089
|
const ImageBlock = {
|
|
3987
4090
|
label: "Image",
|
|
@@ -4012,7 +4115,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4012
4115
|
},
|
|
4013
4116
|
defaultProps: { src: "", alt: "Image", aspect: "16:9", rounded: "lg", framed: false },
|
|
4014
4117
|
render: ({ id, src, alt, aspect, rounded, framed }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4015
|
-
|
|
4118
|
+
chunkDBAUZD7A_cjs.BlockImage,
|
|
4016
4119
|
{
|
|
4017
4120
|
src,
|
|
4018
4121
|
alt,
|
|
@@ -4040,7 +4143,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4040
4143
|
}
|
|
4041
4144
|
},
|
|
4042
4145
|
defaultProps: { src: "", name: "Jane Doe", size: "md" },
|
|
4043
|
-
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) })
|
|
4044
4147
|
};
|
|
4045
4148
|
const NavbarBlock = {
|
|
4046
4149
|
label: "Navbar",
|
|
@@ -4068,7 +4171,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4068
4171
|
],
|
|
4069
4172
|
cta: { label: "Sign up", href: "#" }
|
|
4070
4173
|
},
|
|
4071
|
-
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) })
|
|
4072
4175
|
};
|
|
4073
4176
|
const FooterBlock = {
|
|
4074
4177
|
label: "Footer",
|
|
@@ -4127,7 +4230,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4127
4230
|
],
|
|
4128
4231
|
copyright: "\xA9 2026 Acme, Inc. All rights reserved."
|
|
4129
4232
|
},
|
|
4130
|
-
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4233
|
+
render: ({ id, columns, copyright }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Footer, { columns, copyright, testId: blockTestId(id) })
|
|
4131
4234
|
};
|
|
4132
4235
|
const ListBlockConfig = {
|
|
4133
4236
|
label: "List",
|
|
@@ -4145,7 +4248,7 @@ function createWebsiteBlocks(kit) {
|
|
|
4145
4248
|
ordered: false,
|
|
4146
4249
|
items: [{ text: "First item" }, { text: "Second item" }, { text: "Third item" }]
|
|
4147
4250
|
},
|
|
4148
|
-
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4251
|
+
render: ({ id, ordered, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.ListBlock, { ordered, items, testId: blockTestId(id) })
|
|
4149
4252
|
};
|
|
4150
4253
|
return {
|
|
4151
4254
|
Columns: ColumnsBlock,
|
|
@@ -4248,7 +4351,7 @@ function createSiteBlocks(kit) {
|
|
|
4248
4351
|
]
|
|
4249
4352
|
},
|
|
4250
4353
|
render: ({ id, plans }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4251
|
-
|
|
4354
|
+
chunkDBAUZD7A_cjs.PricingTable,
|
|
4252
4355
|
{
|
|
4253
4356
|
plans: (plans ?? []).map(
|
|
4254
4357
|
(p) => ({
|
|
@@ -4286,7 +4389,7 @@ function createSiteBlocks(kit) {
|
|
|
4286
4389
|
{ label: "FAQ", content: "Answers to common questions." }
|
|
4287
4390
|
]
|
|
4288
4391
|
},
|
|
4289
|
-
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4392
|
+
render: ({ id, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Tabs, { items, testId: blockTestId(id) })
|
|
4290
4393
|
};
|
|
4291
4394
|
const AccordionBlock = {
|
|
4292
4395
|
label: "Accordion",
|
|
@@ -4310,7 +4413,7 @@ function createSiteBlocks(kit) {
|
|
|
4310
4413
|
{ title: "How does billing work?", content: "Monthly or annually, cancel anytime." }
|
|
4311
4414
|
]
|
|
4312
4415
|
},
|
|
4313
|
-
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4416
|
+
render: ({ id, allowMultiple, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Accordion, { allowMultiple, items, testId: blockTestId(id) })
|
|
4314
4417
|
};
|
|
4315
4418
|
const GalleryBlock = {
|
|
4316
4419
|
label: "Gallery",
|
|
@@ -4346,7 +4449,7 @@ function createSiteBlocks(kit) {
|
|
|
4346
4449
|
{ src: "", alt: "Image three", caption: "" }
|
|
4347
4450
|
]
|
|
4348
4451
|
},
|
|
4349
|
-
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) })
|
|
4350
4453
|
};
|
|
4351
4454
|
const VideoBlock = {
|
|
4352
4455
|
label: "Video",
|
|
@@ -4366,7 +4469,7 @@ function createSiteBlocks(kit) {
|
|
|
4366
4469
|
},
|
|
4367
4470
|
defaultProps: { url: "", title: "", aspect: "16:9", rounded: true },
|
|
4368
4471
|
render: ({ id, url, title, aspect, rounded }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4369
|
-
|
|
4472
|
+
chunkDBAUZD7A_cjs.VideoEmbed,
|
|
4370
4473
|
{
|
|
4371
4474
|
url,
|
|
4372
4475
|
title,
|
|
@@ -4415,7 +4518,7 @@ function createSiteBlocks(kit) {
|
|
|
4415
4518
|
]
|
|
4416
4519
|
},
|
|
4417
4520
|
render: ({ id, submitLabel, action, successMessage, fields }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4418
|
-
|
|
4521
|
+
chunkDBAUZD7A_cjs.ContactForm,
|
|
4419
4522
|
{
|
|
4420
4523
|
submitLabel,
|
|
4421
4524
|
action: action || void 0,
|
|
@@ -4445,7 +4548,7 @@ function createSiteBlocks(kit) {
|
|
|
4445
4548
|
cta: { label: "Read more", href: "#" },
|
|
4446
4549
|
tone: "primary"
|
|
4447
4550
|
},
|
|
4448
|
-
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) })
|
|
4449
4552
|
};
|
|
4450
4553
|
const MediaTextBlock = {
|
|
4451
4554
|
label: "Media & text",
|
|
@@ -4473,7 +4576,7 @@ function createSiteBlocks(kit) {
|
|
|
4473
4576
|
cta: { label: "Learn more", href: "#" }
|
|
4474
4577
|
},
|
|
4475
4578
|
render: ({ id, eyebrow, title, body, imageUrl, mediaSide, cta }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4476
|
-
|
|
4579
|
+
chunkDBAUZD7A_cjs.MediaText,
|
|
4477
4580
|
{
|
|
4478
4581
|
eyebrow,
|
|
4479
4582
|
title,
|
|
@@ -4510,7 +4613,7 @@ function createSiteBlocks(kit) {
|
|
|
4510
4613
|
{ name: "Jordan Lee", role: "Lead Engineer", bio: "", avatarUrl: "" }
|
|
4511
4614
|
]
|
|
4512
4615
|
},
|
|
4513
|
-
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4616
|
+
render: ({ id, columns, members }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TeamGrid, { columns, members, testId: blockTestId(id) })
|
|
4514
4617
|
};
|
|
4515
4618
|
const StepsBlock = {
|
|
4516
4619
|
label: "Steps",
|
|
@@ -4542,7 +4645,7 @@ function createSiteBlocks(kit) {
|
|
|
4542
4645
|
{ title: "Launch", description: "Go live and start seeing results." }
|
|
4543
4646
|
]
|
|
4544
4647
|
},
|
|
4545
|
-
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4648
|
+
render: ({ id, variant, steps }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.Steps, { variant, steps, testId: blockTestId(id) })
|
|
4546
4649
|
};
|
|
4547
4650
|
const TestimonialGridBlock = {
|
|
4548
4651
|
label: "Testimonial grid",
|
|
@@ -4584,7 +4687,7 @@ function createSiteBlocks(kit) {
|
|
|
4584
4687
|
}
|
|
4585
4688
|
]
|
|
4586
4689
|
},
|
|
4587
|
-
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4690
|
+
render: ({ id, columns, items }) => /* @__PURE__ */ jsxRuntime.jsx(chunkDBAUZD7A_cjs.TestimonialGrid, { columns, items, testId: blockTestId(id) })
|
|
4588
4691
|
};
|
|
4589
4692
|
return {
|
|
4590
4693
|
Pricing: PricingBlock,
|
|
@@ -4628,7 +4731,7 @@ function createArbiBlocksConfig(opts = {}) {
|
|
|
4628
4731
|
},
|
|
4629
4732
|
defaultProps: { title: "Section title", align: "left", invert: false },
|
|
4630
4733
|
render: ({ id, title, eyebrow, lead, align, invert }) => /* @__PURE__ */ jsxRuntime.jsx("div", { "data-testid": blockTestId(id), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4631
|
-
|
|
4734
|
+
chunkDBAUZD7A_cjs.SectionHeading,
|
|
4632
4735
|
{
|
|
4633
4736
|
title,
|
|
4634
4737
|
eyebrow,
|
|
@@ -5222,7 +5325,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5222
5325
|
{
|
|
5223
5326
|
variant: "elevated",
|
|
5224
5327
|
className: "rounded-xl",
|
|
5225
|
-
"data-testid":
|
|
5328
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-modules-section`, group.section),
|
|
5226
5329
|
children: [
|
|
5227
5330
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardHeader, { children: /* @__PURE__ */ jsxRuntime.jsx(react.CardTitle, { className: "text-base", children: group.section }) }),
|
|
5228
5331
|
/* @__PURE__ */ jsxRuntime.jsx(react.CardContent, { className: "space-y-1.5", children: group.modules.map((m, idx) => {
|
|
@@ -5231,7 +5334,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5231
5334
|
"div",
|
|
5232
5335
|
{
|
|
5233
5336
|
className: "flex items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5234
|
-
"data-testid":
|
|
5337
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module`, m.id),
|
|
5235
5338
|
children: [
|
|
5236
5339
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", children: [
|
|
5237
5340
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -5243,7 +5346,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5243
5346
|
disabled: idx === 0,
|
|
5244
5347
|
onClick: () => move(m.id, "up"),
|
|
5245
5348
|
"aria-label": `Move ${m.label} up`,
|
|
5246
|
-
"data-testid":
|
|
5349
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-up`, m.id),
|
|
5247
5350
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronUp, { className: "size-3.5" })
|
|
5248
5351
|
}
|
|
5249
5352
|
),
|
|
@@ -5256,7 +5359,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5256
5359
|
disabled: idx === group.modules.length - 1,
|
|
5257
5360
|
onClick: () => move(m.id, "down"),
|
|
5258
5361
|
"aria-label": `Move ${m.label} down`,
|
|
5259
|
-
"data-testid":
|
|
5362
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-down`, m.id),
|
|
5260
5363
|
children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { className: "size-3.5" })
|
|
5261
5364
|
}
|
|
5262
5365
|
)
|
|
@@ -5276,7 +5379,7 @@ function ModuleManager({ store, testIdPrefix = "builder" }) {
|
|
|
5276
5379
|
checked: m.enabled,
|
|
5277
5380
|
onCheckedChange: () => toggle2(m.id),
|
|
5278
5381
|
"aria-label": `Enable ${m.label}`,
|
|
5279
|
-
"data-testid":
|
|
5382
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-module-toggle`, m.id)
|
|
5280
5383
|
}
|
|
5281
5384
|
)
|
|
5282
5385
|
]
|
|
@@ -5308,7 +5411,7 @@ function ConfigModelBadge({ configId, testIdPrefix }) {
|
|
|
5308
5411
|
react.Badge,
|
|
5309
5412
|
{
|
|
5310
5413
|
variant: TIER_VARIANT[tier] ?? "secondary",
|
|
5311
|
-
"data-testid":
|
|
5414
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-tier`, configId),
|
|
5312
5415
|
children: [
|
|
5313
5416
|
/* @__PURE__ */ jsxRuntime.jsx(lucideReact.Cpu, { className: "size-3" }),
|
|
5314
5417
|
" ",
|
|
@@ -5345,14 +5448,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5345
5448
|
"label",
|
|
5346
5449
|
{
|
|
5347
5450
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5348
|
-
"data-testid":
|
|
5451
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config`, v.external_id),
|
|
5349
5452
|
children: [
|
|
5350
5453
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5351
5454
|
react.Checkbox,
|
|
5352
5455
|
{
|
|
5353
5456
|
checked: configIds.includes(v.external_id),
|
|
5354
5457
|
onCheckedChange: () => toggleConfig(v.external_id),
|
|
5355
|
-
"data-testid":
|
|
5458
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-config-toggle`, v.external_id)
|
|
5356
5459
|
}
|
|
5357
5460
|
),
|
|
5358
5461
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5381,14 +5484,14 @@ function AgentsPanel({ store, testIdPrefix = "builder" }) {
|
|
|
5381
5484
|
"label",
|
|
5382
5485
|
{
|
|
5383
5486
|
className: "flex cursor-pointer items-center gap-3 rounded-md border border-border/60 bg-card px-3 py-2",
|
|
5384
|
-
"data-testid":
|
|
5487
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent`, a.external_id),
|
|
5385
5488
|
children: [
|
|
5386
5489
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5387
5490
|
react.Checkbox,
|
|
5388
5491
|
{
|
|
5389
5492
|
checked: agentIds.includes(a.external_id),
|
|
5390
5493
|
onCheckedChange: () => toggleAgent(a.external_id),
|
|
5391
|
-
"data-testid":
|
|
5494
|
+
"data-testid": chunkDBAUZD7A_cjs.tid(`${testIdPrefix}-agents-agent-toggle`, a.external_id)
|
|
5392
5495
|
}
|
|
5393
5496
|
),
|
|
5394
5497
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
@@ -5475,7 +5578,7 @@ function VerticalBuilder({
|
|
|
5475
5578
|
] })
|
|
5476
5579
|
] }),
|
|
5477
5580
|
/* @__PURE__ */ jsxRuntime.jsx(react.TabsContent, { value: "theme", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5478
|
-
|
|
5581
|
+
chunkDBAUZD7A_cjs.ThemeEditor,
|
|
5479
5582
|
{
|
|
5480
5583
|
bundle: themeBundle,
|
|
5481
5584
|
variant: "panel",
|
|
@@ -5501,275 +5604,283 @@ function VerticalBuilder({
|
|
|
5501
5604
|
|
|
5502
5605
|
Object.defineProperty(exports, "ASSET_REF_PREFIX", {
|
|
5503
5606
|
enumerable: true,
|
|
5504
|
-
get: function () { return
|
|
5607
|
+
get: function () { return chunkDBAUZD7A_cjs.ASSET_REF_PREFIX; }
|
|
5505
5608
|
});
|
|
5506
5609
|
Object.defineProperty(exports, "Accordion", {
|
|
5507
5610
|
enumerable: true,
|
|
5508
|
-
get: function () { return
|
|
5611
|
+
get: function () { return chunkDBAUZD7A_cjs.Accordion; }
|
|
5509
5612
|
});
|
|
5510
5613
|
Object.defineProperty(exports, "AssetResolverProvider", {
|
|
5511
5614
|
enumerable: true,
|
|
5512
|
-
get: function () { return
|
|
5615
|
+
get: function () { return chunkDBAUZD7A_cjs.AssetResolverProvider; }
|
|
5513
5616
|
});
|
|
5514
5617
|
Object.defineProperty(exports, "AvatarBlock", {
|
|
5515
5618
|
enumerable: true,
|
|
5516
|
-
get: function () { return
|
|
5619
|
+
get: function () { return chunkDBAUZD7A_cjs.AvatarBlock; }
|
|
5517
5620
|
});
|
|
5518
5621
|
Object.defineProperty(exports, "Banner", {
|
|
5519
5622
|
enumerable: true,
|
|
5520
|
-
get: function () { return
|
|
5623
|
+
get: function () { return chunkDBAUZD7A_cjs.Banner; }
|
|
5521
5624
|
});
|
|
5522
5625
|
Object.defineProperty(exports, "BlockImage", {
|
|
5523
5626
|
enumerable: true,
|
|
5524
|
-
get: function () { return
|
|
5627
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockImage; }
|
|
5525
5628
|
});
|
|
5526
5629
|
Object.defineProperty(exports, "BlockLink", {
|
|
5527
5630
|
enumerable: true,
|
|
5528
|
-
get: function () { return
|
|
5631
|
+
get: function () { return chunkDBAUZD7A_cjs.BlockLink; }
|
|
5529
5632
|
});
|
|
5530
5633
|
Object.defineProperty(exports, "CTABanner", {
|
|
5531
5634
|
enumerable: true,
|
|
5532
|
-
get: function () { return
|
|
5635
|
+
get: function () { return chunkDBAUZD7A_cjs.CTABanner; }
|
|
5533
5636
|
});
|
|
5534
5637
|
Object.defineProperty(exports, "Callout", {
|
|
5535
5638
|
enumerable: true,
|
|
5536
|
-
get: function () { return
|
|
5639
|
+
get: function () { return chunkDBAUZD7A_cjs.Callout; }
|
|
5537
5640
|
});
|
|
5538
5641
|
Object.defineProperty(exports, "Columns", {
|
|
5539
5642
|
enumerable: true,
|
|
5540
|
-
get: function () { return
|
|
5643
|
+
get: function () { return chunkDBAUZD7A_cjs.Columns; }
|
|
5541
5644
|
});
|
|
5542
5645
|
Object.defineProperty(exports, "ContactForm", {
|
|
5543
5646
|
enumerable: true,
|
|
5544
|
-
get: function () { return
|
|
5647
|
+
get: function () { return chunkDBAUZD7A_cjs.ContactForm; }
|
|
5545
5648
|
});
|
|
5546
5649
|
Object.defineProperty(exports, "Container", {
|
|
5547
5650
|
enumerable: true,
|
|
5548
|
-
get: function () { return
|
|
5651
|
+
get: function () { return chunkDBAUZD7A_cjs.Container; }
|
|
5549
5652
|
});
|
|
5550
5653
|
Object.defineProperty(exports, "FAQ", {
|
|
5551
5654
|
enumerable: true,
|
|
5552
|
-
get: function () { return
|
|
5655
|
+
get: function () { return chunkDBAUZD7A_cjs.FAQ; }
|
|
5553
5656
|
});
|
|
5554
5657
|
Object.defineProperty(exports, "FONT_PAIRINGS", {
|
|
5555
5658
|
enumerable: true,
|
|
5556
|
-
get: function () { return
|
|
5659
|
+
get: function () { return chunkDBAUZD7A_cjs.FONT_PAIRINGS; }
|
|
5557
5660
|
});
|
|
5558
5661
|
Object.defineProperty(exports, "FeatureGrid", {
|
|
5559
5662
|
enumerable: true,
|
|
5560
|
-
get: function () { return
|
|
5663
|
+
get: function () { return chunkDBAUZD7A_cjs.FeatureGrid; }
|
|
5561
5664
|
});
|
|
5562
5665
|
Object.defineProperty(exports, "Footer", {
|
|
5563
5666
|
enumerable: true,
|
|
5564
|
-
get: function () { return
|
|
5667
|
+
get: function () { return chunkDBAUZD7A_cjs.Footer; }
|
|
5565
5668
|
});
|
|
5566
5669
|
Object.defineProperty(exports, "Gallery", {
|
|
5567
5670
|
enumerable: true,
|
|
5568
|
-
get: function () { return
|
|
5671
|
+
get: function () { return chunkDBAUZD7A_cjs.Gallery; }
|
|
5569
5672
|
});
|
|
5570
5673
|
Object.defineProperty(exports, "Hero", {
|
|
5571
5674
|
enumerable: true,
|
|
5572
|
-
get: function () { return
|
|
5675
|
+
get: function () { return chunkDBAUZD7A_cjs.Hero; }
|
|
5573
5676
|
});
|
|
5574
5677
|
Object.defineProperty(exports, "ListBlock", {
|
|
5575
5678
|
enumerable: true,
|
|
5576
|
-
get: function () { return
|
|
5679
|
+
get: function () { return chunkDBAUZD7A_cjs.ListBlock; }
|
|
5577
5680
|
});
|
|
5578
5681
|
Object.defineProperty(exports, "LogoCloud", {
|
|
5579
5682
|
enumerable: true,
|
|
5580
|
-
get: function () { return
|
|
5683
|
+
get: function () { return chunkDBAUZD7A_cjs.LogoCloud; }
|
|
5581
5684
|
});
|
|
5582
5685
|
Object.defineProperty(exports, "MediaText", {
|
|
5583
5686
|
enumerable: true,
|
|
5584
|
-
get: function () { return
|
|
5687
|
+
get: function () { return chunkDBAUZD7A_cjs.MediaText; }
|
|
5585
5688
|
});
|
|
5586
5689
|
Object.defineProperty(exports, "Navbar", {
|
|
5587
5690
|
enumerable: true,
|
|
5588
|
-
get: function () { return
|
|
5691
|
+
get: function () { return chunkDBAUZD7A_cjs.Navbar; }
|
|
5589
5692
|
});
|
|
5590
5693
|
Object.defineProperty(exports, "PricingTable", {
|
|
5591
5694
|
enumerable: true,
|
|
5592
|
-
get: function () { return
|
|
5695
|
+
get: function () { return chunkDBAUZD7A_cjs.PricingTable; }
|
|
5593
5696
|
});
|
|
5594
5697
|
Object.defineProperty(exports, "RichTextBlock", {
|
|
5595
5698
|
enumerable: true,
|
|
5596
|
-
get: function () { return
|
|
5699
|
+
get: function () { return chunkDBAUZD7A_cjs.RichTextBlock; }
|
|
5597
5700
|
});
|
|
5598
5701
|
Object.defineProperty(exports, "SectionHeading", {
|
|
5599
5702
|
enumerable: true,
|
|
5600
|
-
get: function () { return
|
|
5703
|
+
get: function () { return chunkDBAUZD7A_cjs.SectionHeading; }
|
|
5601
5704
|
});
|
|
5602
5705
|
Object.defineProperty(exports, "Spacer", {
|
|
5603
5706
|
enumerable: true,
|
|
5604
|
-
get: function () { return
|
|
5707
|
+
get: function () { return chunkDBAUZD7A_cjs.Spacer; }
|
|
5605
5708
|
});
|
|
5606
5709
|
Object.defineProperty(exports, "Steps", {
|
|
5607
5710
|
enumerable: true,
|
|
5608
|
-
get: function () { return
|
|
5711
|
+
get: function () { return chunkDBAUZD7A_cjs.Steps; }
|
|
5609
5712
|
});
|
|
5610
5713
|
Object.defineProperty(exports, "THEME_STYLE_ID", {
|
|
5611
5714
|
enumerable: true,
|
|
5612
|
-
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; }
|
|
5613
5720
|
});
|
|
5614
5721
|
Object.defineProperty(exports, "Tabs", {
|
|
5615
5722
|
enumerable: true,
|
|
5616
|
-
get: function () { return
|
|
5723
|
+
get: function () { return chunkDBAUZD7A_cjs.Tabs; }
|
|
5617
5724
|
});
|
|
5618
5725
|
Object.defineProperty(exports, "TeamGrid", {
|
|
5619
5726
|
enumerable: true,
|
|
5620
|
-
get: function () { return
|
|
5727
|
+
get: function () { return chunkDBAUZD7A_cjs.TeamGrid; }
|
|
5621
5728
|
});
|
|
5622
5729
|
Object.defineProperty(exports, "Testimonial", {
|
|
5623
5730
|
enumerable: true,
|
|
5624
|
-
get: function () { return
|
|
5731
|
+
get: function () { return chunkDBAUZD7A_cjs.Testimonial; }
|
|
5625
5732
|
});
|
|
5626
5733
|
Object.defineProperty(exports, "TestimonialGrid", {
|
|
5627
5734
|
enumerable: true,
|
|
5628
|
-
get: function () { return
|
|
5735
|
+
get: function () { return chunkDBAUZD7A_cjs.TestimonialGrid; }
|
|
5629
5736
|
});
|
|
5630
5737
|
Object.defineProperty(exports, "ThemeEditor", {
|
|
5631
5738
|
enumerable: true,
|
|
5632
|
-
get: function () { return
|
|
5739
|
+
get: function () { return chunkDBAUZD7A_cjs.ThemeEditor; }
|
|
5633
5740
|
});
|
|
5634
5741
|
Object.defineProperty(exports, "Timeline", {
|
|
5635
5742
|
enumerable: true,
|
|
5636
|
-
get: function () { return
|
|
5743
|
+
get: function () { return chunkDBAUZD7A_cjs.Timeline; }
|
|
5637
5744
|
});
|
|
5638
5745
|
Object.defineProperty(exports, "TimelineCalendar", {
|
|
5639
5746
|
enumerable: true,
|
|
5640
|
-
get: function () { return
|
|
5747
|
+
get: function () { return chunkDBAUZD7A_cjs.TimelineCalendar; }
|
|
5641
5748
|
});
|
|
5642
5749
|
Object.defineProperty(exports, "TimelineGantt", {
|
|
5643
5750
|
enumerable: true,
|
|
5644
|
-
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; }
|
|
5645
5756
|
});
|
|
5646
5757
|
Object.defineProperty(exports, "VideoEmbed", {
|
|
5647
5758
|
enumerable: true,
|
|
5648
|
-
get: function () { return
|
|
5759
|
+
get: function () { return chunkDBAUZD7A_cjs.VideoEmbed; }
|
|
5649
5760
|
});
|
|
5650
5761
|
Object.defineProperty(exports, "applyFontVars", {
|
|
5651
5762
|
enumerable: true,
|
|
5652
|
-
get: function () { return
|
|
5763
|
+
get: function () { return chunkDBAUZD7A_cjs.applyFontVars; }
|
|
5653
5764
|
});
|
|
5654
5765
|
Object.defineProperty(exports, "applyStoredTheme", {
|
|
5655
5766
|
enumerable: true,
|
|
5656
|
-
get: function () { return
|
|
5767
|
+
get: function () { return chunkDBAUZD7A_cjs.applyStoredTheme; }
|
|
5657
5768
|
});
|
|
5658
5769
|
Object.defineProperty(exports, "applyThemeVars", {
|
|
5659
5770
|
enumerable: true,
|
|
5660
|
-
get: function () { return
|
|
5771
|
+
get: function () { return chunkDBAUZD7A_cjs.applyThemeVars; }
|
|
5661
5772
|
});
|
|
5662
5773
|
Object.defineProperty(exports, "asAssetRef", {
|
|
5663
5774
|
enumerable: true,
|
|
5664
|
-
get: function () { return
|
|
5775
|
+
get: function () { return chunkDBAUZD7A_cjs.asAssetRef; }
|
|
5665
5776
|
});
|
|
5666
5777
|
Object.defineProperty(exports, "assetRefId", {
|
|
5667
5778
|
enumerable: true,
|
|
5668
|
-
get: function () { return
|
|
5779
|
+
get: function () { return chunkDBAUZD7A_cjs.assetRefId; }
|
|
5669
5780
|
});
|
|
5670
5781
|
Object.defineProperty(exports, "clearFontVars", {
|
|
5671
5782
|
enumerable: true,
|
|
5672
|
-
get: function () { return
|
|
5783
|
+
get: function () { return chunkDBAUZD7A_cjs.clearFontVars; }
|
|
5673
5784
|
});
|
|
5674
5785
|
Object.defineProperty(exports, "clearThemeVars", {
|
|
5675
5786
|
enumerable: true,
|
|
5676
|
-
get: function () { return
|
|
5787
|
+
get: function () { return chunkDBAUZD7A_cjs.clearThemeVars; }
|
|
5677
5788
|
});
|
|
5678
5789
|
Object.defineProperty(exports, "createThemeStore", {
|
|
5679
5790
|
enumerable: true,
|
|
5680
|
-
get: function () { return
|
|
5791
|
+
get: function () { return chunkDBAUZD7A_cjs.createThemeStore; }
|
|
5681
5792
|
});
|
|
5682
5793
|
Object.defineProperty(exports, "dayKey", {
|
|
5683
5794
|
enumerable: true,
|
|
5684
|
-
get: function () { return
|
|
5795
|
+
get: function () { return chunkDBAUZD7A_cjs.dayKey; }
|
|
5685
5796
|
});
|
|
5686
5797
|
Object.defineProperty(exports, "daysUntil", {
|
|
5687
5798
|
enumerable: true,
|
|
5688
|
-
get: function () { return
|
|
5799
|
+
get: function () { return chunkDBAUZD7A_cjs.daysUntil; }
|
|
5689
5800
|
});
|
|
5690
5801
|
Object.defineProperty(exports, "fmtDate", {
|
|
5691
5802
|
enumerable: true,
|
|
5692
|
-
get: function () { return
|
|
5803
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDate; }
|
|
5693
5804
|
});
|
|
5694
5805
|
Object.defineProperty(exports, "fmtDateTime", {
|
|
5695
5806
|
enumerable: true,
|
|
5696
|
-
get: function () { return
|
|
5807
|
+
get: function () { return chunkDBAUZD7A_cjs.fmtDateTime; }
|
|
5697
5808
|
});
|
|
5698
5809
|
Object.defineProperty(exports, "fontPackages", {
|
|
5699
5810
|
enumerable: true,
|
|
5700
|
-
get: function () { return
|
|
5811
|
+
get: function () { return chunkDBAUZD7A_cjs.fontPackages; }
|
|
5701
5812
|
});
|
|
5702
5813
|
Object.defineProperty(exports, "formatPageRefs", {
|
|
5703
5814
|
enumerable: true,
|
|
5704
|
-
get: function () { return
|
|
5815
|
+
get: function () { return chunkDBAUZD7A_cjs.formatPageRefs; }
|
|
5705
5816
|
});
|
|
5706
5817
|
Object.defineProperty(exports, "formatSpan", {
|
|
5707
5818
|
enumerable: true,
|
|
5708
|
-
get: function () { return
|
|
5819
|
+
get: function () { return chunkDBAUZD7A_cjs.formatSpan; }
|
|
5709
5820
|
});
|
|
5710
5821
|
Object.defineProperty(exports, "fromNow", {
|
|
5711
5822
|
enumerable: true,
|
|
5712
|
-
get: function () { return
|
|
5823
|
+
get: function () { return chunkDBAUZD7A_cjs.fromNow; }
|
|
5713
5824
|
});
|
|
5714
5825
|
Object.defineProperty(exports, "gbp", {
|
|
5715
5826
|
enumerable: true,
|
|
5716
|
-
get: function () { return
|
|
5827
|
+
get: function () { return chunkDBAUZD7A_cjs.gbp; }
|
|
5717
5828
|
});
|
|
5718
5829
|
Object.defineProperty(exports, "getFontPairing", {
|
|
5719
5830
|
enumerable: true,
|
|
5720
|
-
get: function () { return
|
|
5831
|
+
get: function () { return chunkDBAUZD7A_cjs.getFontPairing; }
|
|
5721
5832
|
});
|
|
5722
5833
|
Object.defineProperty(exports, "hrs", {
|
|
5723
5834
|
enumerable: true,
|
|
5724
|
-
get: function () { return
|
|
5835
|
+
get: function () { return chunkDBAUZD7A_cjs.hrs; }
|
|
5725
5836
|
});
|
|
5726
5837
|
Object.defineProperty(exports, "initials", {
|
|
5727
5838
|
enumerable: true,
|
|
5728
|
-
get: function () { return
|
|
5839
|
+
get: function () { return chunkDBAUZD7A_cjs.initials; }
|
|
5729
5840
|
});
|
|
5730
5841
|
Object.defineProperty(exports, "isAssetRef", {
|
|
5731
5842
|
enumerable: true,
|
|
5732
|
-
get: function () { return
|
|
5843
|
+
get: function () { return chunkDBAUZD7A_cjs.isAssetRef; }
|
|
5733
5844
|
});
|
|
5734
5845
|
Object.defineProperty(exports, "matchFontPairing", {
|
|
5735
5846
|
enumerable: true,
|
|
5736
|
-
get: function () { return
|
|
5847
|
+
get: function () { return chunkDBAUZD7A_cjs.matchFontPairing; }
|
|
5737
5848
|
});
|
|
5738
5849
|
Object.defineProperty(exports, "monthLabel", {
|
|
5739
5850
|
enumerable: true,
|
|
5740
|
-
get: function () { return
|
|
5851
|
+
get: function () { return chunkDBAUZD7A_cjs.monthLabel; }
|
|
5741
5852
|
});
|
|
5742
5853
|
Object.defineProperty(exports, "parseIso", {
|
|
5743
5854
|
enumerable: true,
|
|
5744
|
-
get: function () { return
|
|
5855
|
+
get: function () { return chunkDBAUZD7A_cjs.parseIso; }
|
|
5745
5856
|
});
|
|
5746
5857
|
Object.defineProperty(exports, "pct", {
|
|
5747
5858
|
enumerable: true,
|
|
5748
|
-
get: function () { return
|
|
5859
|
+
get: function () { return chunkDBAUZD7A_cjs.pct; }
|
|
5749
5860
|
});
|
|
5750
5861
|
Object.defineProperty(exports, "tid", {
|
|
5751
5862
|
enumerable: true,
|
|
5752
|
-
get: function () { return
|
|
5863
|
+
get: function () { return chunkDBAUZD7A_cjs.tid; }
|
|
5753
5864
|
});
|
|
5754
5865
|
Object.defineProperty(exports, "toEmbedUrl", {
|
|
5755
5866
|
enumerable: true,
|
|
5756
|
-
get: function () { return
|
|
5867
|
+
get: function () { return chunkDBAUZD7A_cjs.toEmbedUrl; }
|
|
5757
5868
|
});
|
|
5758
5869
|
Object.defineProperty(exports, "toHslTriplet", {
|
|
5759
5870
|
enumerable: true,
|
|
5760
|
-
get: function () { return
|
|
5871
|
+
get: function () { return chunkDBAUZD7A_cjs.toHslTriplet; }
|
|
5761
5872
|
});
|
|
5762
5873
|
Object.defineProperty(exports, "useAssetRenderer", {
|
|
5763
5874
|
enumerable: true,
|
|
5764
|
-
get: function () { return
|
|
5875
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetRenderer; }
|
|
5765
5876
|
});
|
|
5766
5877
|
Object.defineProperty(exports, "useAssetResolverActive", {
|
|
5767
5878
|
enumerable: true,
|
|
5768
|
-
get: function () { return
|
|
5879
|
+
get: function () { return chunkDBAUZD7A_cjs.useAssetResolverActive; }
|
|
5769
5880
|
});
|
|
5770
5881
|
Object.defineProperty(exports, "utcDay", {
|
|
5771
5882
|
enumerable: true,
|
|
5772
|
-
get: function () { return
|
|
5883
|
+
get: function () { return chunkDBAUZD7A_cjs.utcDay; }
|
|
5773
5884
|
});
|
|
5774
5885
|
Object.defineProperty(exports, "DocumentCard", {
|
|
5775
5886
|
enumerable: true,
|
|
@@ -5847,9 +5958,11 @@ exports.MetricCard = MetricCard;
|
|
|
5847
5958
|
exports.ModuleManager = ModuleManager;
|
|
5848
5959
|
exports.PageHeader = PageHeader;
|
|
5849
5960
|
exports.PageRenderer = PageRenderer;
|
|
5961
|
+
exports.QuickActionCards = QuickActionCards;
|
|
5850
5962
|
exports.RecentActivityCard = RecentActivityCard;
|
|
5851
5963
|
exports.ResumeStrip = ResumeStrip;
|
|
5852
5964
|
exports.Section = Section;
|
|
5965
|
+
exports.SectionCaption = SectionCaption;
|
|
5853
5966
|
exports.SectionStrip = SectionStrip;
|
|
5854
5967
|
exports.StartHero = StartHero;
|
|
5855
5968
|
exports.StatGroup = StatGroup;
|