@measured/puck 0.14.0-canary.55740c4 → 0.14.0-canary.712fb8e
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{Config-1444273f.d.ts → Config-487c2755.d.ts} +8 -1
- package/dist/index.css +791 -539
- package/dist/index.d.ts +34 -5
- package/dist/index.js +204 -122
- package/dist/rsc.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -8084,7 +8084,7 @@ var require_react_dom_development = __commonJS({
|
|
8084
8084
|
var HostPortal = 4;
|
8085
8085
|
var HostComponent = 5;
|
8086
8086
|
var HostText = 6;
|
8087
|
-
var
|
8087
|
+
var Fragment13 = 7;
|
8088
8088
|
var Mode = 8;
|
8089
8089
|
var ContextConsumer = 9;
|
8090
8090
|
var ContextProvider = 10;
|
@@ -9240,7 +9240,7 @@ var require_react_dom_development = __commonJS({
|
|
9240
9240
|
return "DehydratedFragment";
|
9241
9241
|
case ForwardRef:
|
9242
9242
|
return getWrappedName$1(type, type.render, "ForwardRef");
|
9243
|
-
case
|
9243
|
+
case Fragment13:
|
9244
9244
|
return "Fragment";
|
9245
9245
|
case HostComponent:
|
9246
9246
|
return type;
|
@@ -18911,7 +18911,7 @@ var require_react_dom_development = __commonJS({
|
|
18911
18911
|
}
|
18912
18912
|
}
|
18913
18913
|
function updateFragment2(returnFiber, current2, fragment, lanes, key) {
|
18914
|
-
if (current2 === null || current2.tag !==
|
18914
|
+
if (current2 === null || current2.tag !== Fragment13) {
|
18915
18915
|
var created = createFiberFromFragment(fragment, returnFiber.mode, lanes, key);
|
18916
18916
|
created.return = returnFiber;
|
18917
18917
|
return created;
|
@@ -19314,7 +19314,7 @@ var require_react_dom_development = __commonJS({
|
|
19314
19314
|
if (child.key === key) {
|
19315
19315
|
var elementType = element.type;
|
19316
19316
|
if (elementType === REACT_FRAGMENT_TYPE) {
|
19317
|
-
if (child.tag ===
|
19317
|
+
if (child.tag === Fragment13) {
|
19318
19318
|
deleteRemainingChildren(returnFiber, child.sibling);
|
19319
19319
|
var existing = useFiber(child, element.props.children);
|
19320
19320
|
existing.return = returnFiber;
|
@@ -23489,7 +23489,7 @@ var require_react_dom_development = __commonJS({
|
|
23489
23489
|
var _resolvedProps2 = workInProgress2.elementType === type ? _unresolvedProps2 : resolveDefaultProps(type, _unresolvedProps2);
|
23490
23490
|
return updateForwardRef(current2, workInProgress2, type, _resolvedProps2, renderLanes2);
|
23491
23491
|
}
|
23492
|
-
case
|
23492
|
+
case Fragment13:
|
23493
23493
|
return updateFragment(current2, workInProgress2, renderLanes2);
|
23494
23494
|
case Mode:
|
23495
23495
|
return updateMode(current2, workInProgress2, renderLanes2);
|
@@ -23762,7 +23762,7 @@ var require_react_dom_development = __commonJS({
|
|
23762
23762
|
case SimpleMemoComponent:
|
23763
23763
|
case FunctionComponent:
|
23764
23764
|
case ForwardRef:
|
23765
|
-
case
|
23765
|
+
case Fragment13:
|
23766
23766
|
case Mode:
|
23767
23767
|
case Profiler:
|
23768
23768
|
case ContextConsumer:
|
@@ -28021,7 +28021,7 @@ var require_react_dom_development = __commonJS({
|
|
28021
28021
|
return fiber;
|
28022
28022
|
}
|
28023
28023
|
function createFiberFromFragment(elements, mode, lanes, key) {
|
28024
|
-
var fiber = createFiber(
|
28024
|
+
var fiber = createFiber(Fragment13, elements, key, mode);
|
28025
28025
|
fiber.lanes = lanes;
|
28026
28026
|
return fiber;
|
28027
28027
|
}
|
@@ -29173,7 +29173,7 @@ var import_react2 = require("react");
|
|
29173
29173
|
|
29174
29174
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Button/Button.module.css#css-module
|
29175
29175
|
init_react_import();
|
29176
|
-
var Button_module_default = { "Button": "
|
29176
|
+
var Button_module_default = { "Button": "_Button_8fn3a_1", "Button--medium": "_Button--medium_8fn3a_29", "Button--large": "_Button--large_8fn3a_37", "Button-icon": "_Button-icon_8fn3a_44", "Button--primary": "_Button--primary_8fn3a_48", "Button--secondary": "_Button--secondary_8fn3a_67", "Button--flush": "_Button--flush_8fn3a_82", "Button--disabled": "_Button--disabled_8fn3a_86", "Button--fullWidth": "_Button--fullWidth_8fn3a_93", "Button-spinner": "_Button-spinner_8fn3a_98" };
|
29177
29177
|
|
29178
29178
|
// lib/get-class-name-factory.ts
|
29179
29179
|
init_react_import();
|
@@ -29227,7 +29227,7 @@ var Button = ({
|
|
29227
29227
|
}) => {
|
29228
29228
|
const [loading, setLoading] = (0, import_react2.useState)(loadingProp);
|
29229
29229
|
(0, import_react2.useEffect)(() => setLoading(loadingProp), [loadingProp]);
|
29230
|
-
const ElementType = href ? "a" :
|
29230
|
+
const ElementType = href ? "a" : type ? "button" : "span";
|
29231
29231
|
const el = /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
29232
29232
|
ElementType,
|
29233
29233
|
{
|
@@ -29255,10 +29255,7 @@ var Button = ({
|
|
29255
29255
|
children: [
|
29256
29256
|
icon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: getClassName("icon"), children: icon }),
|
29257
29257
|
children,
|
29258
|
-
loading && /* @__PURE__ */ (0, import_jsx_runtime.
|
29259
|
-
"\xA0\xA0",
|
29260
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_spinners.ClipLoader, { "aria-label": "loading", color: "inherit", size: "14px" })
|
29261
|
-
] })
|
29258
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: getClassName("spinner"), children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_spinners.ClipLoader, { "aria-label": "loading", color: "inherit", size: "14px" }) })
|
29262
29259
|
]
|
29263
29260
|
}
|
29264
29261
|
);
|
@@ -29271,7 +29268,7 @@ var import_dnd2 = require("@hello-pangea/dnd");
|
|
29271
29268
|
|
29272
29269
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Drawer/styles.module.css#css-module
|
29273
29270
|
init_react_import();
|
29274
|
-
var styles_module_default = { "
|
29271
|
+
var styles_module_default = { "Drawer": "_Drawer_6zh0b_1", "DrawerItem-default": "_DrawerItem-default_6zh0b_5", "DrawerItem-draggableWrapper": "_DrawerItem-draggableWrapper_6zh0b_5", "DrawerItem": "_DrawerItem_6zh0b_5", "DrawerItem-draggable": "_DrawerItem-draggable_6zh0b_5", "Drawer--isDraggingFrom": "_Drawer--isDraggingFrom_6zh0b_31", "DrawerItem-name": "_DrawerItem-name_6zh0b_47" };
|
29275
29272
|
|
29276
29273
|
// components/Draggable/index.tsx
|
29277
29274
|
init_react_import();
|
@@ -29350,7 +29347,7 @@ var replace = (list, index, newItem) => {
|
|
29350
29347
|
|
29351
29348
|
// css-module:/home/runner/work/puck/puck/packages/core/components/DragIcon/styles.module.css#css-module
|
29352
29349
|
init_react_import();
|
29353
|
-
var styles_module_default2 = { "DragIcon": "
|
29350
|
+
var styles_module_default2 = { "DragIcon": "_DragIcon_1p5wn_1" };
|
29354
29351
|
|
29355
29352
|
// components/DragIcon/index.tsx
|
29356
29353
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
@@ -29385,16 +29382,17 @@ var DrawerItem = ({
|
|
29385
29382
|
name,
|
29386
29383
|
children,
|
29387
29384
|
id,
|
29385
|
+
label,
|
29388
29386
|
index
|
29389
29387
|
}) => {
|
29390
29388
|
const ctx = (0, import_react3.useContext)(drawerContext);
|
29391
29389
|
const resolvedId = `${ctx.droppableId}::${id || name}`;
|
29392
29390
|
const CustomInner = (0, import_react3.useMemo)(
|
29393
|
-
() => children || (({ children: children2 }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("default"), children: children2 })),
|
29391
|
+
() => children || (({ children: children2, name: name2 }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("default"), children: children2 })),
|
29394
29392
|
[children]
|
29395
29393
|
);
|
29396
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(DrawerDraggable, { id: resolvedId, index, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(CustomInner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("draggableWrapper"), children: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: getClassNameItem("draggable"), children: [
|
29397
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("name"), children: name }),
|
29394
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(DrawerDraggable, { id: resolvedId, index, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(CustomInner, { name, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("draggableWrapper"), children: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: getClassNameItem("draggable"), children: [
|
29395
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("name"), children: label != null ? label : name }),
|
29398
29396
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: getClassNameItem("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(DragIcon, {}) })
|
29399
29397
|
] }) }) }) });
|
29400
29398
|
};
|
@@ -29430,7 +29428,7 @@ var import_dnd3 = require("@hello-pangea/dnd");
|
|
29430
29428
|
|
29431
29429
|
// css-module:/home/runner/work/puck/puck/packages/core/components/DraggableComponent/styles.module.css#css-module
|
29432
29430
|
init_react_import();
|
29433
|
-
var styles_module_default3 = { "DraggableComponent": "
|
29431
|
+
var styles_module_default3 = { "DraggableComponent": "_DraggableComponent_1vpvt_1", "DraggableComponent--isDragging": "_DraggableComponent--isDragging_1vpvt_10", "DraggableComponent-contents": "_DraggableComponent-contents_1vpvt_16", "DraggableComponent-overlay": "_DraggableComponent-overlay_1vpvt_29", "DraggableComponent-loadingOverlay": "_DraggableComponent-loadingOverlay_1vpvt_42", "DraggableComponent--isLocked": "_DraggableComponent--isLocked_1vpvt_58", "DraggableComponent--forceHover": "_DraggableComponent--forceHover_1vpvt_64", "DraggableComponent--isSelected": "_DraggableComponent--isSelected_1vpvt_69", "DraggableComponent--indicativeHover": "_DraggableComponent--indicativeHover_1vpvt_74", "DraggableComponent-actions": "_DraggableComponent-actions_1vpvt_100", "DraggableComponent-actionsLabel": "_DraggableComponent-actionsLabel_1vpvt_125", "DraggableComponent-action": "_DraggableComponent-action_1vpvt_100" };
|
29434
29432
|
|
29435
29433
|
// ../../node_modules/lucide-react/dist/esm/lucide-react.js
|
29436
29434
|
init_react_import();
|
@@ -29618,6 +29616,20 @@ var Search = createLucideIcon("Search", [
|
|
29618
29616
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
29619
29617
|
]);
|
29620
29618
|
|
29619
|
+
// ../../node_modules/lucide-react/dist/esm/icons/sliders-horizontal.js
|
29620
|
+
init_react_import();
|
29621
|
+
var SlidersHorizontal = createLucideIcon("SlidersHorizontal", [
|
29622
|
+
["line", { x1: "21", x2: "14", y1: "4", y2: "4", key: "obuewd" }],
|
29623
|
+
["line", { x1: "10", x2: "3", y1: "4", y2: "4", key: "1q6298" }],
|
29624
|
+
["line", { x1: "21", x2: "12", y1: "12", y2: "12", key: "1iu8h1" }],
|
29625
|
+
["line", { x1: "8", x2: "3", y1: "12", y2: "12", key: "ntss68" }],
|
29626
|
+
["line", { x1: "21", x2: "16", y1: "20", y2: "20", key: "14d8ph" }],
|
29627
|
+
["line", { x1: "12", x2: "3", y1: "20", y2: "20", key: "m0wm8r" }],
|
29628
|
+
["line", { x1: "14", x2: "14", y1: "2", y2: "6", key: "14e1ph" }],
|
29629
|
+
["line", { x1: "8", x2: "8", y1: "10", y2: "14", key: "1i6ji0" }],
|
29630
|
+
["line", { x1: "16", x2: "16", y1: "18", y2: "22", key: "1lctlv" }]
|
29631
|
+
]);
|
29632
|
+
|
29621
29633
|
// ../../node_modules/lucide-react/dist/esm/icons/trash.js
|
29622
29634
|
init_react_import();
|
29623
29635
|
var Trash = createLucideIcon("Trash", [
|
@@ -29773,7 +29785,7 @@ var getItem = (selector, data, dynamicProps = {}) => {
|
|
29773
29785
|
|
29774
29786
|
// css-module:/home/runner/work/puck/puck/packages/core/components/DropZone/styles.module.css#css-module
|
29775
29787
|
init_react_import();
|
29776
|
-
var styles_module_default4 = { "DropZone": "
|
29788
|
+
var styles_module_default4 = { "DropZone": "_DropZone_utidm_1", "DropZone--zoomEnabled": "_DropZone--zoomEnabled_utidm_10", "DropZone-renderWrapper": "_DropZone-renderWrapper_utidm_14", "DropZone-content": "_DropZone-content_utidm_18", "DropZone--userIsDragging": "_DropZone--userIsDragging_utidm_23", "DropZone--draggingOverArea": "_DropZone--draggingOverArea_utidm_27", "DropZone--draggingNewComponent": "_DropZone--draggingNewComponent_utidm_28", "DropZone--isAreaSelected": "_DropZone--isAreaSelected_utidm_34", "DropZone--hoveringOverArea": "_DropZone--hoveringOverArea_utidm_35", "DropZone--isDisabled": "_DropZone--isDisabled_utidm_36", "DropZone--isRootZone": "_DropZone--isRootZone_utidm_37", "DropZone--hasChildren": "_DropZone--hasChildren_utidm_43", "DropZone--isDestination": "_DropZone--isDestination_utidm_48", "DropZone-item": "_DropZone-item_utidm_56", "DropZone-hitbox": "_DropZone-hitbox_utidm_60" };
|
29777
29789
|
|
29778
29790
|
// components/DropZone/context.tsx
|
29779
29791
|
init_react_import();
|
@@ -30063,7 +30075,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
30063
30075
|
},
|
30064
30076
|
children: [
|
30065
30077
|
content.map((item, i) => {
|
30066
|
-
var _a2, _b;
|
30078
|
+
var _a2, _b, _c;
|
30067
30079
|
const componentId = item.props.id;
|
30068
30080
|
const defaultedProps = __spreadProps(__spreadValues(__spreadValues({}, (_a2 = config.components[item.type]) == null ? void 0 : _a2.defaultProps), item.props), {
|
30069
30081
|
puck: { renderDropZone: DropZone },
|
@@ -30093,14 +30105,14 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
30093
30105
|
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
30094
30106
|
DraggableComponent,
|
30095
30107
|
{
|
30096
|
-
label: item.type.toString(),
|
30108
|
+
label: (_b = config.components[item.type]["label"]) != null ? _b : item.type.toString(),
|
30097
30109
|
id: `draggable-${componentId}`,
|
30098
30110
|
index: i,
|
30099
30111
|
isSelected,
|
30100
30112
|
isLocked: userIsDragging,
|
30101
30113
|
forceHover: hoveringComponent === componentId && !userIsDragging,
|
30102
30114
|
indicativeHover: userIsDragging && containsZone && hoveringArea === componentId,
|
30103
|
-
isLoading: (
|
30115
|
+
isLoading: (_c = appContext2.componentState[componentId]) == null ? void 0 : _c.loading,
|
30104
30116
|
onMount: () => {
|
30105
30117
|
ctx.registerPath({
|
30106
30118
|
index: i,
|
@@ -30188,7 +30200,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
30188
30200
|
{
|
30189
30201
|
"data-puck-placeholder": true,
|
30190
30202
|
style: __spreadProps(__spreadValues({}, placeholderStyle), {
|
30191
|
-
background: "var(--puck-color-azure-
|
30203
|
+
background: "var(--puck-color-azure-06)",
|
30192
30204
|
opacity: 0.3,
|
30193
30205
|
zIndex: 0
|
30194
30206
|
})
|
@@ -30252,7 +30264,7 @@ var import_react10 = require("react");
|
|
30252
30264
|
|
30253
30265
|
// css-module:/home/runner/work/puck/puck/packages/core/components/IconButton/IconButton.module.css#css-module
|
30254
30266
|
init_react_import();
|
30255
|
-
var IconButton_module_default = { "IconButton": "
|
30267
|
+
var IconButton_module_default = { "IconButton": "_IconButton_1xqlg_1", "IconButton-title": "_IconButton-title_1xqlg_33" };
|
30256
30268
|
|
30257
30269
|
// components/IconButton/IconButton.tsx
|
30258
30270
|
var import_react_spinners3 = require("react-spinners");
|
@@ -30367,14 +30379,14 @@ init_react_import();
|
|
30367
30379
|
|
30368
30380
|
// css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css#css-module
|
30369
30381
|
init_react_import();
|
30370
|
-
var styles_module_default5 = { "SidebarSection": "
|
30382
|
+
var styles_module_default5 = { "SidebarSection": "_SidebarSection_125qe_1", "SidebarSection-title": "_SidebarSection-title_125qe_12", "SidebarSection--noBorderTop": "_SidebarSection--noBorderTop_125qe_20", "SidebarSection-content": "_SidebarSection-content_125qe_24", "SidebarSection--noPadding": "_SidebarSection--noPadding_125qe_28", "SidebarSection-breadcrumbLabel": "_SidebarSection-breadcrumbLabel_125qe_41", "SidebarSection-breadcrumbs": "_SidebarSection-breadcrumbs_125qe_70", "SidebarSection-breadcrumb": "_SidebarSection-breadcrumb_125qe_41", "SidebarSection-heading": "_SidebarSection-heading_125qe_82", "SidebarSection-loadingOverlay": "_SidebarSection-loadingOverlay_125qe_86" };
|
30371
30383
|
|
30372
30384
|
// components/Heading/index.tsx
|
30373
30385
|
init_react_import();
|
30374
30386
|
|
30375
30387
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Heading/styles.module.css#css-module
|
30376
30388
|
init_react_import();
|
30377
|
-
var styles_module_default6 = { "Heading": "
|
30389
|
+
var styles_module_default6 = { "Heading": "_Heading_qxrry_1", "Heading--xxxxl": "_Heading--xxxxl_qxrry_12", "Heading--xxxl": "_Heading--xxxl_qxrry_18", "Heading--xxl": "_Heading--xxl_qxrry_22", "Heading--xl": "_Heading--xl_qxrry_26", "Heading--l": "_Heading--l_qxrry_30", "Heading--m": "_Heading--m_qxrry_34", "Heading--s": "_Heading--s_qxrry_38", "Heading--xs": "_Heading--xs_qxrry_42" };
|
30378
30390
|
|
30379
30391
|
// components/Heading/index.tsx
|
30380
30392
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
@@ -30482,7 +30494,7 @@ var SidebarSection = ({
|
|
30482
30494
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: getClassName8("title"), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: getClassName8("breadcrumbs"), children: [
|
30483
30495
|
showBreadcrumbs ? breadcrumbs.map((breadcrumb, i) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: getClassName8("breadcrumb"), children: [
|
30484
30496
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
30485
|
-
"
|
30497
|
+
"button",
|
30486
30498
|
{
|
30487
30499
|
className: getClassName8("breadcrumbLabel"),
|
30488
30500
|
onClick: () => setUi({ itemSelector: breadcrumb.selector }),
|
@@ -31000,7 +31012,10 @@ var useResolvedData = (appState, config, dispatch) => {
|
|
31000
31012
|
);
|
31001
31013
|
const runResolvers = () => __async(void 0, null, function* () {
|
31002
31014
|
const newData = newAppState.data;
|
31003
|
-
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) =>
|
31015
|
+
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) => {
|
31016
|
+
var _a;
|
31017
|
+
return !!((_a = config.components[item.type]) == null ? void 0 : _a.resolveData);
|
31018
|
+
});
|
31004
31019
|
const applyIfChange = (dynamicDataMap, dynamicRoot) => {
|
31005
31020
|
const processed = applyDynamicProps(
|
31006
31021
|
appState.data,
|
@@ -31070,7 +31085,7 @@ init_react_import();
|
|
31070
31085
|
|
31071
31086
|
// css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css#css-module
|
31072
31087
|
init_react_import();
|
31073
|
-
var styles_module_default7 = { "MenuBar": "
|
31088
|
+
var styles_module_default7 = { "MenuBar": "_MenuBar_8pf8c_1", "MenuBar--menuOpen": "_MenuBar--menuOpen_8pf8c_14", "MenuBar-inner": "_MenuBar-inner_8pf8c_29", "MenuBar-history": "_MenuBar-history_8pf8c_45" };
|
31074
31089
|
|
31075
31090
|
// components/MenuBar/index.tsx
|
31076
31091
|
var import_jsx_runtime11 = require("react/jsx-runtime");
|
@@ -31108,14 +31123,14 @@ var MenuBar = ({
|
|
31108
31123
|
ChevronLeft,
|
31109
31124
|
{
|
31110
31125
|
size: 21,
|
31111
|
-
stroke: hasPast ? "var(--puck-color-black)" : "var(--puck-color-grey-
|
31126
|
+
stroke: hasPast ? "var(--puck-color-black)" : "var(--puck-color-grey-08)"
|
31112
31127
|
}
|
31113
31128
|
) }),
|
31114
31129
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(IconButton, { title: "redo", disabled: !hasFuture, onClick: forward, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
31115
31130
|
ChevronRight,
|
31116
31131
|
{
|
31117
31132
|
size: 21,
|
31118
|
-
stroke: hasFuture ? "var(--puck-color-black)" : "var(--puck-color-grey-
|
31133
|
+
stroke: hasFuture ? "var(--puck-color-black)" : "var(--puck-color-grey-08)"
|
31119
31134
|
}
|
31120
31135
|
) })
|
31121
31136
|
] }),
|
@@ -31140,7 +31155,7 @@ var MenuBar = ({
|
|
31140
31155
|
|
31141
31156
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css#css-module
|
31142
31157
|
init_react_import();
|
31143
|
-
var styles_module_default8 = { "Puck": "
|
31158
|
+
var styles_module_default8 = { "Puck": "_Puck_1mnww_19", "Puck--leftSideBarVisible": "_Puck--leftSideBarVisible_1mnww_36", "Puck--rightSideBarVisible": "_Puck--rightSideBarVisible_1mnww_42", "Puck-header": "_Puck-header_1mnww_96", "Puck-headerInner": "_Puck-headerInner_1mnww_105", "Puck-headerToggle": "_Puck-headerToggle_1mnww_115", "Puck-rightSideBarToggle": "_Puck-rightSideBarToggle_1mnww_122", "Puck-leftSideBarToggle": "_Puck-leftSideBarToggle_1mnww_123", "Puck-headerTitle": "_Puck-headerTitle_1mnww_127", "Puck-headerPath": "_Puck-headerPath_1mnww_131", "Puck-headerTools": "_Puck-headerTools_1mnww_138", "Puck-menuButton": "_Puck-menuButton_1mnww_144", "Puck--menuOpen": "_Puck--menuOpen_1mnww_149", "Puck-leftSideBar": "_Puck-leftSideBar_1mnww_123", "Puck-frame": "_Puck-frame_1mnww_168", "Puck-root": "_Puck-root_1mnww_176", "Puck-rightSideBar": "_Puck-rightSideBar_1mnww_122" };
|
31144
31159
|
|
31145
31160
|
// components/Puck/components/Fields/index.tsx
|
31146
31161
|
init_react_import();
|
@@ -31151,7 +31166,7 @@ init_react_import();
|
|
31151
31166
|
|
31152
31167
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/styles.module.css#css-module
|
31153
31168
|
init_react_import();
|
31154
|
-
var styles_module_default9 = { "Input": "
|
31169
|
+
var styles_module_default9 = { "Input": "_Input_1qi5b_1", "Input-label": "_Input-label_1qi5b_26", "Input-labelIcon": "_Input-labelIcon_1qi5b_34", "Input-disabledIcon": "_Input-disabledIcon_1qi5b_41", "Input-input": "_Input-input_1qi5b_46", "Input--readOnly": "_Input--readOnly_1qi5b_90", "Input-radioGroupItems": "_Input-radioGroupItems_1qi5b_101", "Input-radio": "_Input-radio_1qi5b_101", "Input-radioInner": "_Input-radioInner_1qi5b_118", "Input-radioInput": "_Input-radioInput_1qi5b_163" };
|
31155
31170
|
|
31156
31171
|
// components/InputOrGroup/index.tsx
|
31157
31172
|
var import_react18 = require("react");
|
@@ -31164,7 +31179,7 @@ init_react_import();
|
|
31164
31179
|
|
31165
31180
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ArrayField/styles.module.css#css-module
|
31166
31181
|
init_react_import();
|
31167
|
-
var styles_module_default10 = { "ArrayField": "
|
31182
|
+
var styles_module_default10 = { "ArrayField": "_ArrayField_1txra_5", "ArrayField--isDraggingFrom": "_ArrayField--isDraggingFrom_1txra_13", "ArrayField-addButton": "_ArrayField-addButton_1txra_17", "ArrayField--hasItems": "_ArrayField--hasItems_1txra_32", "ArrayFieldItem": "_ArrayFieldItem_1txra_61", "ArrayFieldItem--isDragging": "_ArrayFieldItem--isDragging_1txra_69", "ArrayFieldItem--isExpanded": "_ArrayFieldItem--isExpanded_1txra_74", "ArrayFieldItem-summary": "_ArrayFieldItem-summary_1txra_84", "ArrayFieldItem--readOnly": "_ArrayFieldItem--readOnly_1txra_108", "ArrayFieldItem-body": "_ArrayFieldItem-body_1txra_142", "ArrayFieldItem-fieldset": "_ArrayFieldItem-fieldset_1txra_150", "ArrayFieldItem-rhs": "_ArrayFieldItem-rhs_1txra_157", "ArrayFieldItem-actions": "_ArrayFieldItem-actions_1txra_163" };
|
31168
31183
|
|
31169
31184
|
// components/InputOrGroup/fields/ArrayField/index.tsx
|
31170
31185
|
var import_dnd5 = require("@hello-pangea/dnd");
|
@@ -31332,6 +31347,7 @@ var ArrayField = ({
|
|
31332
31347
|
!readOnly && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassNameItem2("actions"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassNameItem2("action"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
31333
31348
|
IconButton,
|
31334
31349
|
{
|
31350
|
+
disabled: field.min !== void 0 && field.min >= localState.arrayState.items.length,
|
31335
31351
|
onClick: (e) => {
|
31336
31352
|
e.stopPropagation();
|
31337
31353
|
const existingValue = [
|
@@ -31396,6 +31412,7 @@ var ArrayField = ({
|
|
31396
31412
|
"button",
|
31397
31413
|
{
|
31398
31414
|
className: getClassName10("addButton"),
|
31415
|
+
disabled: field.max !== void 0 && localState.arrayState.items.length >= field.max,
|
31399
31416
|
onClick: () => {
|
31400
31417
|
const existingValue = value || [];
|
31401
31418
|
const newValue = [
|
@@ -31405,7 +31422,7 @@ var ArrayField = ({
|
|
31405
31422
|
const newArrayState = regenerateArrayState(newValue);
|
31406
31423
|
onChange(newValue, mapArrayStateToUi(newArrayState));
|
31407
31424
|
},
|
31408
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Plus, { size:
|
31425
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Plus, { size: 21 })
|
31409
31426
|
}
|
31410
31427
|
)
|
31411
31428
|
]
|
@@ -31456,6 +31473,7 @@ var DefaultField = ({
|
|
31456
31473
|
}
|
31457
31474
|
},
|
31458
31475
|
readOnly,
|
31476
|
+
tabIndex: readOnly ? -1 : void 0,
|
31459
31477
|
id,
|
31460
31478
|
min: field.type === "number" ? field.min : void 0,
|
31461
31479
|
max: field.type === "number" ? field.max : void 0
|
@@ -31475,7 +31493,7 @@ var import_react16 = require("react");
|
|
31475
31493
|
|
31476
31494
|
// css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css#css-module
|
31477
31495
|
init_react_import();
|
31478
|
-
var styles_module_default11 = { "ExternalInput": "
|
31496
|
+
var styles_module_default11 = { "ExternalInput-actions": "_ExternalInput-actions_q3l5a_1", "ExternalInput-button": "_ExternalInput-button_q3l5a_5", "ExternalInput--dataSelected": "_ExternalInput--dataSelected_q3l5a_25", "ExternalInput-detachButton": "_ExternalInput-detachButton_q3l5a_32", "ExternalInputModal": "_ExternalInputModal_q3l5a_74", "ExternalInputModal-grid": "_ExternalInputModal-grid_q3l5a_84", "ExternalInputModal--filtersToggled": "_ExternalInputModal--filtersToggled_q3l5a_95", "ExternalInputModal-filters": "_ExternalInputModal-filters_q3l5a_100", "ExternalInputModal-masthead": "_ExternalInputModal-masthead_q3l5a_119", "ExternalInputModal-tableWrapper": "_ExternalInputModal-tableWrapper_q3l5a_128", "ExternalInputModal-table": "_ExternalInputModal-table_q3l5a_128", "ExternalInputModal-thead": "_ExternalInputModal-thead_q3l5a_144", "ExternalInputModal-th": "_ExternalInputModal-th_q3l5a_144", "ExternalInputModal-td": "_ExternalInputModal-td_q3l5a_159", "ExternalInputModal-tr": "_ExternalInputModal-tr_q3l5a_164", "ExternalInputModal-tbody": "_ExternalInputModal-tbody_q3l5a_171", "ExternalInputModal--hasData": "_ExternalInputModal--hasData_q3l5a_197", "ExternalInputModal-loadingBanner": "_ExternalInputModal-loadingBanner_q3l5a_201", "ExternalInputModal--isLoading": "_ExternalInputModal--isLoading_q3l5a_218", "ExternalInputModal-searchForm": "_ExternalInputModal-searchForm_q3l5a_222", "ExternalInputModal-search": "_ExternalInputModal-search_q3l5a_222", "ExternalInputModal-searchIcon": "_ExternalInputModal-searchIcon_q3l5a_259", "ExternalInputModal-searchIconText": "_ExternalInputModal-searchIconText_q3l5a_284", "ExternalInputModal-searchInput": "_ExternalInputModal-searchInput_q3l5a_294", "ExternalInputModal-searchActions": "_ExternalInputModal-searchActions_q3l5a_308", "ExternalInputModal-searchActionIcon": "_ExternalInputModal-searchActionIcon_q3l5a_321", "ExternalInputModal-footer": "_ExternalInputModal-footer_q3l5a_325" };
|
31479
31497
|
|
31480
31498
|
// components/Modal/index.tsx
|
31481
31499
|
init_react_import();
|
@@ -31483,7 +31501,7 @@ var import_react15 = require("react");
|
|
31483
31501
|
|
31484
31502
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Modal/styles.module.css#css-module
|
31485
31503
|
init_react_import();
|
31486
|
-
var styles_module_default12 = { "Modal": "
|
31504
|
+
var styles_module_default12 = { "Modal": "_Modal_zud0i_1", "Modal--isOpen": "_Modal--isOpen_zud0i_15", "Modal-inner": "_Modal-inner_zud0i_19" };
|
31487
31505
|
|
31488
31506
|
// components/Modal/index.tsx
|
31489
31507
|
var import_react_dom = __toESM(require_react_dom());
|
@@ -31527,13 +31545,23 @@ var ExternalInput = ({
|
|
31527
31545
|
name,
|
31528
31546
|
id
|
31529
31547
|
}) => {
|
31530
|
-
const {
|
31548
|
+
const {
|
31549
|
+
mapProp = (val) => val,
|
31550
|
+
mapRow = (val) => val,
|
31551
|
+
filterFields
|
31552
|
+
} = field || {};
|
31531
31553
|
const [data, setData] = (0, import_react16.useState)([]);
|
31532
31554
|
const [isOpen, setOpen] = (0, import_react16.useState)(false);
|
31533
31555
|
const [isLoading, setIsLoading] = (0, import_react16.useState)(true);
|
31556
|
+
const hasFilterFields = !!filterFields;
|
31557
|
+
const [filters, setFilters] = (0, import_react16.useState)(field.initialFilters || {});
|
31558
|
+
const [filtersToggled, setFiltersToggled] = (0, import_react16.useState)(hasFilterFields);
|
31559
|
+
const mappedData = (0, import_react16.useMemo)(() => {
|
31560
|
+
return data.map(mapRow);
|
31561
|
+
}, [data]);
|
31534
31562
|
const keys = (0, import_react16.useMemo)(() => {
|
31535
31563
|
const validKeys = /* @__PURE__ */ new Set();
|
31536
|
-
for (const item of
|
31564
|
+
for (const item of mappedData) {
|
31537
31565
|
for (const key of Object.keys(item)) {
|
31538
31566
|
if (typeof item[key] === "string" || typeof item[key] === "number") {
|
31539
31567
|
validKeys.add(key);
|
@@ -31541,13 +31569,13 @@ var ExternalInput = ({
|
|
31541
31569
|
}
|
31542
31570
|
}
|
31543
31571
|
return Array.from(validKeys);
|
31544
|
-
}, [
|
31572
|
+
}, [mappedData]);
|
31545
31573
|
const [searchQuery, setSearchQuery] = (0, import_react16.useState)(field.initialQuery || "");
|
31546
31574
|
const search = (0, import_react16.useCallback)(
|
31547
|
-
(query) => __async(void 0, null, function* () {
|
31575
|
+
(query, filters2) => __async(void 0, null, function* () {
|
31548
31576
|
setIsLoading(true);
|
31549
|
-
const cacheKey = `${id}-${name}-${query}`;
|
31550
|
-
const listData = dataCache[cacheKey] || (yield field.fetchList({ query }));
|
31577
|
+
const cacheKey = `${id}-${name}-${query}-${JSON.stringify(filters2)}`;
|
31578
|
+
const listData = dataCache[cacheKey] || (yield field.fetchList({ query, filters: filters2 }));
|
31551
31579
|
if (listData) {
|
31552
31580
|
setData(listData);
|
31553
31581
|
setIsLoading(false);
|
@@ -31557,7 +31585,7 @@ var ExternalInput = ({
|
|
31557
31585
|
[name, field]
|
31558
31586
|
);
|
31559
31587
|
(0, import_react16.useEffect)(() => {
|
31560
|
-
search(searchQuery);
|
31588
|
+
search(searchQuery, filters);
|
31561
31589
|
}, []);
|
31562
31590
|
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
31563
31591
|
"div",
|
@@ -31592,78 +31620,109 @@ var ExternalInput = ({
|
|
31592
31620
|
)
|
31593
31621
|
] }),
|
31594
31622
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Modal, { onClose: () => setOpen(false), isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
31595
|
-
"
|
31623
|
+
"form",
|
31596
31624
|
{
|
31597
31625
|
className: getClassNameModal({
|
31598
31626
|
isLoading,
|
31599
31627
|
loaded: !isLoading,
|
31600
|
-
hasData:
|
31628
|
+
hasData: mappedData.length > 0,
|
31629
|
+
filtersToggled
|
31601
31630
|
}),
|
31631
|
+
onSubmit: (e) => {
|
31632
|
+
e.preventDefault();
|
31633
|
+
search(searchQuery, filters);
|
31634
|
+
},
|
31602
31635
|
children: [
|
31603
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31604
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31605
|
-
|
31606
|
-
"
|
31607
|
-
|
31608
|
-
|
31609
|
-
|
31610
|
-
|
31611
|
-
|
31612
|
-
|
31613
|
-
|
31614
|
-
|
31615
|
-
|
31616
|
-
|
31617
|
-
|
31618
|
-
|
31619
|
-
|
31620
|
-
|
31621
|
-
|
31622
|
-
|
31623
|
-
|
31624
|
-
|
31625
|
-
|
31626
|
-
},
|
31627
|
-
autoComplete: "off",
|
31628
|
-
value: searchQuery
|
31629
|
-
}
|
31630
|
-
)
|
31631
|
-
] }),
|
31632
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { type: "submit", loading: isLoading, disabled: isLoading, children: "Search" })
|
31633
|
-
]
|
31634
|
-
}
|
31635
|
-
)
|
31636
|
-
] }),
|
31637
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("tableWrapper"), children: [
|
31638
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("table", { className: getClassNameModal("table"), children: [
|
31639
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("thead", { className: getClassNameModal("thead"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("tr", { className: getClassNameModal("tr"), children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31640
|
-
"th",
|
31636
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("masthead"), children: field.showSearch ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("searchForm"), children: [
|
31637
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: getClassNameModal("search"), children: [
|
31638
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: getClassNameModal("searchIconText"), children: "Search" }),
|
31639
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("searchIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Search, { size: "18" }) }),
|
31640
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31641
|
+
"input",
|
31642
|
+
{
|
31643
|
+
className: getClassNameModal("searchInput"),
|
31644
|
+
name: "q",
|
31645
|
+
type: "search",
|
31646
|
+
placeholder: field.placeholder,
|
31647
|
+
onChange: (e) => {
|
31648
|
+
setSearchQuery(e.currentTarget.value);
|
31649
|
+
},
|
31650
|
+
autoComplete: "off",
|
31651
|
+
value: searchQuery
|
31652
|
+
}
|
31653
|
+
)
|
31654
|
+
] }),
|
31655
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("searchActions"), children: [
|
31656
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { type: "submit", loading: isLoading, fullWidth: true, children: "Search" }),
|
31657
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("searchActionIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31658
|
+
IconButton,
|
31641
31659
|
{
|
31642
|
-
|
31643
|
-
|
31644
|
-
|
31660
|
+
title: "Toggle filters",
|
31661
|
+
onClick: (e) => {
|
31662
|
+
e.preventDefault();
|
31663
|
+
e.stopPropagation();
|
31664
|
+
setFiltersToggled(!filtersToggled);
|
31665
|
+
},
|
31666
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(SlidersHorizontal, { size: 20 })
|
31667
|
+
}
|
31668
|
+
) })
|
31669
|
+
] })
|
31670
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Heading, { rank: 2, size: "xs", children: field.placeholder || "Select data" }) }),
|
31671
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("grid"), children: [
|
31672
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("filters"), children: hasFilterFields && Object.keys(filterFields).map((fieldName) => {
|
31673
|
+
const filterField = filterFields[fieldName];
|
31674
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31675
|
+
InputOrGroup,
|
31676
|
+
{
|
31677
|
+
field: filterField,
|
31678
|
+
name: fieldName,
|
31679
|
+
id: `external_field_${fieldName}_filter`,
|
31680
|
+
label: filterField.label || fieldName,
|
31681
|
+
value: filters[fieldName],
|
31682
|
+
onChange: (value2) => {
|
31683
|
+
const newFilters = __spreadProps(__spreadValues({}, filters), { [fieldName]: value2 });
|
31684
|
+
setFilters(newFilters);
|
31685
|
+
search(searchQuery, newFilters);
|
31686
|
+
}
|
31645
31687
|
},
|
31646
|
-
|
31647
|
-
)
|
31648
|
-
|
31649
|
-
|
31650
|
-
|
31688
|
+
fieldName
|
31689
|
+
);
|
31690
|
+
}) }),
|
31691
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("tableWrapper"), children: [
|
31692
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("table", { className: getClassNameModal("table"), children: [
|
31693
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("thead", { className: getClassNameModal("thead"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("tr", { className: getClassNameModal("tr"), children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31694
|
+
"th",
|
31651
31695
|
{
|
31652
|
-
|
31653
|
-
|
31654
|
-
|
31655
|
-
onChange(mapProp(item));
|
31656
|
-
setOpen(false);
|
31657
|
-
},
|
31658
|
-
children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("td", { className: getClassNameModal("td"), children: item[key] }, key))
|
31696
|
+
className: getClassNameModal("th"),
|
31697
|
+
style: { textAlign: "left" },
|
31698
|
+
children: key
|
31659
31699
|
},
|
31660
|
-
|
31661
|
-
)
|
31662
|
-
|
31663
|
-
|
31664
|
-
|
31700
|
+
key
|
31701
|
+
)) }) }),
|
31702
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("tbody", { className: getClassNameModal("tbody"), children: mappedData.map((item, i) => {
|
31703
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31704
|
+
"tr",
|
31705
|
+
{
|
31706
|
+
style: { whiteSpace: "nowrap" },
|
31707
|
+
className: getClassNameModal("tr"),
|
31708
|
+
onClick: () => {
|
31709
|
+
onChange(mapProp(data[i]));
|
31710
|
+
setOpen(false);
|
31711
|
+
},
|
31712
|
+
children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("td", { className: getClassNameModal("td"), children: item[key] }, key))
|
31713
|
+
},
|
31714
|
+
i
|
31715
|
+
);
|
31716
|
+
}) })
|
31717
|
+
] }),
|
31718
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("loadingBanner"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_react_spinners5.ClipLoader, { size: 24, "aria-label": "Loading" }) })
|
31719
|
+
] })
|
31665
31720
|
] }),
|
31666
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31721
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("footer"), children: [
|
31722
|
+
mappedData.length,
|
31723
|
+
" result",
|
31724
|
+
mappedData.length === 1 ? "" : "s"
|
31725
|
+
] })
|
31667
31726
|
]
|
31668
31727
|
}
|
31669
31728
|
) })
|
@@ -31709,6 +31768,7 @@ var ExternalField = ({
|
|
31709
31768
|
// DEPRECATED
|
31710
31769
|
placeholder: ((_a = deprecatedField.adaptor) == null ? void 0 : _a.name) ? `Select from ${deprecatedField.adaptor.name}` : validField.placeholder || "Select data",
|
31711
31770
|
mapProp: ((_b = deprecatedField.adaptor) == null ? void 0 : _b.mapProp) || validField.mapProp,
|
31771
|
+
mapRow: validField.mapRow,
|
31712
31772
|
fetchList: ((_c = deprecatedField.adaptor) == null ? void 0 : _c.fetchList) ? () => __async(void 0, null, function* () {
|
31713
31773
|
return yield deprecatedField.adaptor.fetchList(
|
31714
31774
|
deprecatedField.adaptorParams
|
@@ -31857,6 +31917,7 @@ var TextareaField = ({
|
|
31857
31917
|
value: typeof value === "undefined" ? "" : value,
|
31858
31918
|
onChange: (e) => onChange(e.currentTarget.value),
|
31859
31919
|
readOnly,
|
31920
|
+
tabIndex: readOnly ? -1 : void 0,
|
31860
31921
|
rows: 5
|
31861
31922
|
}
|
31862
31923
|
)
|
@@ -31872,7 +31933,7 @@ init_react_import();
|
|
31872
31933
|
|
31873
31934
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ObjectField/styles.module.css#css-module
|
31874
31935
|
init_react_import();
|
31875
|
-
var styles_module_default13 = { "ObjectField": "
|
31936
|
+
var styles_module_default13 = { "ObjectField": "_ObjectField_15j63_5", "ObjectField-fieldset": "_ObjectField-fieldset_15j63_13" };
|
31876
31937
|
|
31877
31938
|
// components/InputOrGroup/fields/ObjectField/index.tsx
|
31878
31939
|
var import_jsx_runtime20 = require("react/jsx-runtime");
|
@@ -32036,7 +32097,7 @@ var InputOrGroup = (_a) => {
|
|
32036
32097
|
|
32037
32098
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Fields/styles.module.css#css-module
|
32038
32099
|
init_react_import();
|
32039
|
-
var styles_module_default14 = { "PuckFields": "
|
32100
|
+
var styles_module_default14 = { "PuckFields": "_PuckFields_17k3p_1", "PuckFields-loadingOverlay": "_PuckFields-loadingOverlay_17k3p_6" };
|
32040
32101
|
|
32041
32102
|
// components/Puck/components/Fields/index.tsx
|
32042
32103
|
var import_react19 = require("react");
|
@@ -32193,17 +32254,18 @@ init_react_import();
|
|
32193
32254
|
|
32194
32255
|
// css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css#css-module
|
32195
32256
|
init_react_import();
|
32196
|
-
var styles_module_default15 = { "ComponentList": "
|
32257
|
+
var styles_module_default15 = { "ComponentList": "_ComponentList_odh9d_1", "ComponentList--isExpanded": "_ComponentList--isExpanded_odh9d_5", "ComponentList-content": "_ComponentList-content_odh9d_9", "ComponentList-title": "_ComponentList-title_odh9d_17", "ComponentList-titleIcon": "_ComponentList-titleIcon_odh9d_53" };
|
32197
32258
|
|
32198
32259
|
// components/ComponentList/index.tsx
|
32199
32260
|
var import_jsx_runtime23 = require("react/jsx-runtime");
|
32200
32261
|
var getClassName20 = get_class_name_factory_default("ComponentList", styles_module_default15);
|
32201
32262
|
var ComponentListItem = ({
|
32202
32263
|
name,
|
32264
|
+
label,
|
32203
32265
|
index
|
32204
32266
|
}) => {
|
32205
32267
|
const { overrides } = useAppContext();
|
32206
|
-
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Drawer.Item, { name, index, children: overrides.componentItem });
|
32268
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Drawer.Item, { label, name, index, children: overrides.componentItem });
|
32207
32269
|
};
|
32208
32270
|
var ComponentList = ({
|
32209
32271
|
children,
|
@@ -32214,7 +32276,7 @@ var ComponentList = ({
|
|
32214
32276
|
const { expanded = true } = state.ui.componentList[id] || {};
|
32215
32277
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: getClassName20({ isExpanded: expanded }), children: [
|
32216
32278
|
title && /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
32217
|
-
"
|
32279
|
+
"button",
|
32218
32280
|
{
|
32219
32281
|
className: getClassName20("title"),
|
32220
32282
|
onClick: () => setUi({
|
@@ -32232,9 +32294,11 @@ var ComponentList = ({
|
|
32232
32294
|
}
|
32233
32295
|
),
|
32234
32296
|
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: getClassName20("content"), children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Drawer, { droppableId: `component-list${title ? `:${title}` : ""}`, children: children || Object.keys(config.components).map((componentKey, i) => {
|
32297
|
+
var _a;
|
32235
32298
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
32236
32299
|
ComponentListItem,
|
32237
32300
|
{
|
32301
|
+
label: (_a = config.components[componentKey]["label"]) != null ? _a : componentKey,
|
32238
32302
|
name: componentKey,
|
32239
32303
|
index: i
|
32240
32304
|
},
|
@@ -32265,10 +32329,12 @@ var useComponentList = (config, ui) => {
|
|
32265
32329
|
id: categoryKey,
|
32266
32330
|
title: category.title || categoryKey,
|
32267
32331
|
children: category.components.map((componentName, i) => {
|
32332
|
+
var _a2;
|
32268
32333
|
matchedComponents.push(componentName);
|
32269
32334
|
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
32270
32335
|
ComponentList.Item,
|
32271
32336
|
{
|
32337
|
+
label: (_a2 = config.components[componentName]["label"]) != null ? _a2 : componentName,
|
32272
32338
|
name: componentName,
|
32273
32339
|
index: i
|
32274
32340
|
},
|
@@ -32291,10 +32357,12 @@ var useComponentList = (config, ui) => {
|
|
32291
32357
|
id: "other",
|
32292
32358
|
title: ((_c = ui.componentList.other) == null ? void 0 : _c.title) || "Other",
|
32293
32359
|
children: remainingComponents.map((componentName, i) => {
|
32360
|
+
var _a2;
|
32294
32361
|
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
32295
32362
|
ComponentList.Item,
|
32296
32363
|
{
|
32297
32364
|
name: componentName,
|
32365
|
+
label: (_a2 = config.components[componentName]["label"]) != null ? _a2 : componentName,
|
32298
32366
|
index: i
|
32299
32367
|
},
|
32300
32368
|
componentName
|
@@ -32307,7 +32375,7 @@ var useComponentList = (config, ui) => {
|
|
32307
32375
|
}
|
32308
32376
|
setComponentList(_componentList);
|
32309
32377
|
}
|
32310
|
-
}, [config.categories, ui.componentList]);
|
32378
|
+
}, [config.categories, config.components, ui.componentList]);
|
32311
32379
|
return componentList;
|
32312
32380
|
};
|
32313
32381
|
|
@@ -32378,7 +32446,7 @@ init_react_import();
|
|
32378
32446
|
|
32379
32447
|
// css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css#css-module
|
32380
32448
|
init_react_import();
|
32381
|
-
var styles_module_default16 = { "LayerTree": "
|
32449
|
+
var styles_module_default16 = { "LayerTree": "_LayerTree_1pgw8_1", "LayerTree-zoneTitle": "_LayerTree-zoneTitle_1pgw8_11", "LayerTree-helper": "_LayerTree-helper_1pgw8_17", "Layer": "_Layer_1pgw8_1", "Layer-inner": "_Layer-inner_1pgw8_29", "Layer--containsZone": "_Layer--containsZone_1pgw8_35", "Layer-clickable": "_Layer-clickable_1pgw8_39", "Layer--isSelected": "_Layer--isSelected_1pgw8_61", "Layer-chevron": "_Layer-chevron_1pgw8_77", "Layer--childIsSelected": "_Layer--childIsSelected_1pgw8_78", "Layer-zones": "_Layer-zones_1pgw8_82", "Layer-title": "_Layer-title_1pgw8_96", "Layer-name": "_Layer-name_1pgw8_105", "Layer-icon": "_Layer-icon_1pgw8_111", "Layer-zoneIcon": "_Layer-zoneIcon_1pgw8_116" };
|
32382
32450
|
|
32383
32451
|
// lib/scroll-into-view.ts
|
32384
32452
|
init_react_import();
|
@@ -32411,6 +32479,7 @@ var getClassName21 = get_class_name_factory_default("LayerTree", styles_module_d
|
|
32411
32479
|
var getClassNameLayer = get_class_name_factory_default("Layer", styles_module_default16);
|
32412
32480
|
var LayerTree = ({
|
32413
32481
|
data,
|
32482
|
+
config,
|
32414
32483
|
zoneContent,
|
32415
32484
|
itemSelector,
|
32416
32485
|
setItemSelector,
|
@@ -32428,6 +32497,7 @@ var LayerTree = ({
|
|
32428
32497
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("ul", { className: getClassName21(), children: [
|
32429
32498
|
zoneContent.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassName21("helper"), children: "No items" }),
|
32430
32499
|
zoneContent.map((item, i) => {
|
32500
|
+
var _a;
|
32431
32501
|
const isSelected = (itemSelector == null ? void 0 : itemSelector.index) === i && (itemSelector.zone === zone || itemSelector.zone === rootDroppableId && !zone);
|
32432
32502
|
const zonesForItem = findZonesForArea(data, item.props.id);
|
32433
32503
|
const containsZone = Object.keys(zonesForItem).length > 0;
|
@@ -32452,7 +32522,7 @@ var LayerTree = ({
|
|
32452
32522
|
}),
|
32453
32523
|
children: [
|
32454
32524
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("inner"), children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
32455
|
-
"
|
32525
|
+
"button",
|
32456
32526
|
{
|
32457
32527
|
className: getClassNameLayer("clickable"),
|
32458
32528
|
onClick: () => {
|
@@ -32492,7 +32562,7 @@ var LayerTree = ({
|
|
32492
32562
|
),
|
32493
32563
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: getClassNameLayer("title"), children: [
|
32494
32564
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("icon"), children: item.type === "Text" || item.type === "Heading" ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Type, { size: "16" }) : /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(LayoutGrid, { size: "16" }) }),
|
32495
|
-
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("name"), children: item.type })
|
32565
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("name"), children: (_a = config.components[item.type]["label"]) != null ? _a : item.type })
|
32496
32566
|
] })
|
32497
32567
|
]
|
32498
32568
|
}
|
@@ -32500,6 +32570,7 @@ var LayerTree = ({
|
|
32500
32570
|
containsZone && Object.keys(zonesForItem).map((zoneKey, idx) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("zones"), children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
32501
32571
|
LayerTree,
|
32502
32572
|
{
|
32573
|
+
config,
|
32503
32574
|
data,
|
32504
32575
|
zoneContent: zones[zoneKey],
|
32505
32576
|
setItemSelector,
|
@@ -32521,7 +32592,7 @@ var LayerTree = ({
|
|
32521
32592
|
var import_react24 = require("react");
|
32522
32593
|
var import_jsx_runtime28 = require("react/jsx-runtime");
|
32523
32594
|
var Outline = () => {
|
32524
|
-
const { dispatch, state, overrides } = useAppContext();
|
32595
|
+
const { dispatch, state, overrides, config } = useAppContext();
|
32525
32596
|
const { data, ui } = state;
|
32526
32597
|
const { itemSelector } = ui;
|
32527
32598
|
const setItemSelector = (0, import_react24.useCallback)(
|
@@ -32538,6 +32609,7 @@ var Outline = () => {
|
|
32538
32609
|
(ctx == null ? void 0 : ctx.activeZones) && (ctx == null ? void 0 : ctx.activeZones[rootDroppableId]) && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
32539
32610
|
LayerTree,
|
32540
32611
|
{
|
32612
|
+
config,
|
32541
32613
|
data,
|
32542
32614
|
label: areaContainsZones(data, "root") ? rootDroppableId : "",
|
32543
32615
|
zoneContent: data.content,
|
@@ -32550,6 +32622,7 @@ var Outline = () => {
|
|
32550
32622
|
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
32551
32623
|
LayerTree,
|
32552
32624
|
{
|
32625
|
+
config,
|
32553
32626
|
data,
|
32554
32627
|
label: zoneKey,
|
32555
32628
|
zone: zoneKey,
|
@@ -32690,6 +32763,7 @@ function Puck({
|
|
32690
32763
|
headerTitle,
|
32691
32764
|
headerPath
|
32692
32765
|
}) {
|
32766
|
+
var _a;
|
32693
32767
|
const historyStore = useHistoryStore();
|
32694
32768
|
const [reducer] = (0, import_react26.useState)(
|
32695
32769
|
() => createReducer({ config, record: historyStore.record })
|
@@ -32799,8 +32873,8 @@ function Puck({
|
|
32799
32873
|
console.warn(
|
32800
32874
|
"`renderHeader` is deprecated. Please use `overrides.header` and the `usePuck` hook instead"
|
32801
32875
|
);
|
32802
|
-
const RenderHeader = (
|
32803
|
-
var _b =
|
32876
|
+
const RenderHeader = (_a2) => {
|
32877
|
+
var _b = _a2, { actions } = _b, props = __objRest(_b, ["actions"]);
|
32804
32878
|
const Comp = renderHeader;
|
32805
32879
|
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Comp, __spreadProps(__spreadValues({}, props), { dispatch, state: appState, children: actions }));
|
32806
32880
|
};
|
@@ -33023,7 +33097,7 @@ function Puck({
|
|
33023
33097
|
"div",
|
33024
33098
|
{
|
33025
33099
|
style: {
|
33026
|
-
background: "var(--puck-color-grey-
|
33100
|
+
background: "var(--puck-color-grey-11)",
|
33027
33101
|
height: "100%",
|
33028
33102
|
flexGrow: 1
|
33029
33103
|
}
|
@@ -33038,7 +33112,7 @@ function Puck({
|
|
33038
33112
|
noPadding: true,
|
33039
33113
|
noBorderTop: true,
|
33040
33114
|
showBreadcrumbs: true,
|
33041
|
-
title: selectedItem ? selectedItem.type : "Page",
|
33115
|
+
title: selectedItem ? (_a = config.components[selectedItem.type]["label"]) != null ? _a : selectedItem.type : "Page",
|
33042
33116
|
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Fields, {})
|
33043
33117
|
}
|
33044
33118
|
) })
|
@@ -33170,8 +33244,8 @@ var resolveAllData = (data, config, onResolveStart, onResolveEnd) => __async(voi
|
|
33170
33244
|
// lib/use-puck.ts
|
33171
33245
|
init_react_import();
|
33172
33246
|
var usePuck = () => {
|
33173
|
-
const { state: appState, config, dispatch } = useAppContext();
|
33174
|
-
return { appState, config, dispatch };
|
33247
|
+
const { state: appState, config, history, dispatch } = useAppContext();
|
33248
|
+
return { appState, config, dispatch, history };
|
33175
33249
|
};
|
33176
33250
|
// Annotate the CommonJS export names for ESM import in node:
|
33177
33251
|
0 && (module.exports = {
|
@@ -33415,6 +33489,14 @@ lucide-react/dist/esm/icons/search.js:
|
|
33415
33489
|
* See the LICENSE file in the root directory of this source tree.
|
33416
33490
|
*)
|
33417
33491
|
|
33492
|
+
lucide-react/dist/esm/icons/sliders-horizontal.js:
|
33493
|
+
(**
|
33494
|
+
* @license lucide-react v0.298.0 - ISC
|
33495
|
+
*
|
33496
|
+
* This source code is licensed under the ISC license.
|
33497
|
+
* See the LICENSE file in the root directory of this source tree.
|
33498
|
+
*)
|
33499
|
+
|
33418
33500
|
lucide-react/dist/esm/icons/trash.js:
|
33419
33501
|
(**
|
33420
33502
|
* @license lucide-react v0.298.0 - ISC
|