@measured/puck 0.14.0-canary.adac562 → 0.14.0-canary.b365418
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/{Config-1b86f0dc.d.ts → Config-ab049d49.d.ts} +11 -8
- package/dist/index.css +791 -539
- package/dist/index.d.ts +2 -2
- package/dist/index.js +168 -105
- 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");
|
@@ -29430,7 +29427,7 @@ var import_dnd3 = require("@hello-pangea/dnd");
|
|
29430
29427
|
|
29431
29428
|
// css-module:/home/runner/work/puck/puck/packages/core/components/DraggableComponent/styles.module.css#css-module
|
29432
29429
|
init_react_import();
|
29433
|
-
var styles_module_default3 = { "DraggableComponent": "
|
29430
|
+
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
29431
|
|
29435
29432
|
// ../../node_modules/lucide-react/dist/esm/lucide-react.js
|
29436
29433
|
init_react_import();
|
@@ -29618,6 +29615,20 @@ var Search = createLucideIcon("Search", [
|
|
29618
29615
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
29619
29616
|
]);
|
29620
29617
|
|
29618
|
+
// ../../node_modules/lucide-react/dist/esm/icons/sliders-horizontal.js
|
29619
|
+
init_react_import();
|
29620
|
+
var SlidersHorizontal = createLucideIcon("SlidersHorizontal", [
|
29621
|
+
["line", { x1: "21", x2: "14", y1: "4", y2: "4", key: "obuewd" }],
|
29622
|
+
["line", { x1: "10", x2: "3", y1: "4", y2: "4", key: "1q6298" }],
|
29623
|
+
["line", { x1: "21", x2: "12", y1: "12", y2: "12", key: "1iu8h1" }],
|
29624
|
+
["line", { x1: "8", x2: "3", y1: "12", y2: "12", key: "ntss68" }],
|
29625
|
+
["line", { x1: "21", x2: "16", y1: "20", y2: "20", key: "14d8ph" }],
|
29626
|
+
["line", { x1: "12", x2: "3", y1: "20", y2: "20", key: "m0wm8r" }],
|
29627
|
+
["line", { x1: "14", x2: "14", y1: "2", y2: "6", key: "14e1ph" }],
|
29628
|
+
["line", { x1: "8", x2: "8", y1: "10", y2: "14", key: "1i6ji0" }],
|
29629
|
+
["line", { x1: "16", x2: "16", y1: "18", y2: "22", key: "1lctlv" }]
|
29630
|
+
]);
|
29631
|
+
|
29621
29632
|
// ../../node_modules/lucide-react/dist/esm/icons/trash.js
|
29622
29633
|
init_react_import();
|
29623
29634
|
var Trash = createLucideIcon("Trash", [
|
@@ -29773,7 +29784,7 @@ var getItem = (selector, data, dynamicProps = {}) => {
|
|
29773
29784
|
|
29774
29785
|
// css-module:/home/runner/work/puck/puck/packages/core/components/DropZone/styles.module.css#css-module
|
29775
29786
|
init_react_import();
|
29776
|
-
var styles_module_default4 = { "DropZone": "
|
29787
|
+
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
29788
|
|
29778
29789
|
// components/DropZone/context.tsx
|
29779
29790
|
init_react_import();
|
@@ -30188,7 +30199,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
30188
30199
|
{
|
30189
30200
|
"data-puck-placeholder": true,
|
30190
30201
|
style: __spreadProps(__spreadValues({}, placeholderStyle), {
|
30191
|
-
background: "var(--puck-color-azure-
|
30202
|
+
background: "var(--puck-color-azure-06)",
|
30192
30203
|
opacity: 0.3,
|
30193
30204
|
zIndex: 0
|
30194
30205
|
})
|
@@ -30252,7 +30263,7 @@ var import_react10 = require("react");
|
|
30252
30263
|
|
30253
30264
|
// css-module:/home/runner/work/puck/puck/packages/core/components/IconButton/IconButton.module.css#css-module
|
30254
30265
|
init_react_import();
|
30255
|
-
var IconButton_module_default = { "IconButton": "
|
30266
|
+
var IconButton_module_default = { "IconButton": "_IconButton_1xqlg_1", "IconButton-title": "_IconButton-title_1xqlg_33" };
|
30256
30267
|
|
30257
30268
|
// components/IconButton/IconButton.tsx
|
30258
30269
|
var import_react_spinners3 = require("react-spinners");
|
@@ -30367,14 +30378,14 @@ init_react_import();
|
|
30367
30378
|
|
30368
30379
|
// css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css#css-module
|
30369
30380
|
init_react_import();
|
30370
|
-
var styles_module_default5 = { "SidebarSection": "
|
30381
|
+
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
30382
|
|
30372
30383
|
// components/Heading/index.tsx
|
30373
30384
|
init_react_import();
|
30374
30385
|
|
30375
30386
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Heading/styles.module.css#css-module
|
30376
30387
|
init_react_import();
|
30377
|
-
var styles_module_default6 = { "Heading": "
|
30388
|
+
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
30389
|
|
30379
30390
|
// components/Heading/index.tsx
|
30380
30391
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
@@ -30482,7 +30493,7 @@ var SidebarSection = ({
|
|
30482
30493
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: getClassName8("title"), children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: getClassName8("breadcrumbs"), children: [
|
30483
30494
|
showBreadcrumbs ? breadcrumbs.map((breadcrumb, i) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: getClassName8("breadcrumb"), children: [
|
30484
30495
|
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
30485
|
-
"
|
30496
|
+
"button",
|
30486
30497
|
{
|
30487
30498
|
className: getClassName8("breadcrumbLabel"),
|
30488
30499
|
onClick: () => setUi({ itemSelector: breadcrumb.selector }),
|
@@ -31070,7 +31081,7 @@ init_react_import();
|
|
31070
31081
|
|
31071
31082
|
// css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css#css-module
|
31072
31083
|
init_react_import();
|
31073
|
-
var styles_module_default7 = { "MenuBar": "
|
31084
|
+
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
31085
|
|
31075
31086
|
// components/MenuBar/index.tsx
|
31076
31087
|
var import_jsx_runtime11 = require("react/jsx-runtime");
|
@@ -31108,14 +31119,14 @@ var MenuBar = ({
|
|
31108
31119
|
ChevronLeft,
|
31109
31120
|
{
|
31110
31121
|
size: 21,
|
31111
|
-
stroke: hasPast ? "var(--puck-color-black)" : "var(--puck-color-grey-
|
31122
|
+
stroke: hasPast ? "var(--puck-color-black)" : "var(--puck-color-grey-08)"
|
31112
31123
|
}
|
31113
31124
|
) }),
|
31114
31125
|
/* @__PURE__ */ (0, import_jsx_runtime11.jsx)(IconButton, { title: "redo", disabled: !hasFuture, onClick: forward, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
31115
31126
|
ChevronRight,
|
31116
31127
|
{
|
31117
31128
|
size: 21,
|
31118
|
-
stroke: hasFuture ? "var(--puck-color-black)" : "var(--puck-color-grey-
|
31129
|
+
stroke: hasFuture ? "var(--puck-color-black)" : "var(--puck-color-grey-08)"
|
31119
31130
|
}
|
31120
31131
|
) })
|
31121
31132
|
] }),
|
@@ -31140,7 +31151,7 @@ var MenuBar = ({
|
|
31140
31151
|
|
31141
31152
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css#css-module
|
31142
31153
|
init_react_import();
|
31143
|
-
var styles_module_default8 = { "Puck": "
|
31154
|
+
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
31155
|
|
31145
31156
|
// components/Puck/components/Fields/index.tsx
|
31146
31157
|
init_react_import();
|
@@ -31151,7 +31162,7 @@ init_react_import();
|
|
31151
31162
|
|
31152
31163
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/styles.module.css#css-module
|
31153
31164
|
init_react_import();
|
31154
|
-
var styles_module_default9 = { "Input": "
|
31165
|
+
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
31166
|
|
31156
31167
|
// components/InputOrGroup/index.tsx
|
31157
31168
|
var import_react18 = require("react");
|
@@ -31164,7 +31175,7 @@ init_react_import();
|
|
31164
31175
|
|
31165
31176
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ArrayField/styles.module.css#css-module
|
31166
31177
|
init_react_import();
|
31167
|
-
var styles_module_default10 = { "ArrayField": "
|
31178
|
+
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
31179
|
|
31169
31180
|
// components/InputOrGroup/fields/ArrayField/index.tsx
|
31170
31181
|
var import_dnd5 = require("@hello-pangea/dnd");
|
@@ -31456,6 +31467,7 @@ var DefaultField = ({
|
|
31456
31467
|
}
|
31457
31468
|
},
|
31458
31469
|
readOnly,
|
31470
|
+
tabIndex: readOnly ? -1 : void 0,
|
31459
31471
|
id,
|
31460
31472
|
min: field.type === "number" ? field.min : void 0,
|
31461
31473
|
max: field.type === "number" ? field.max : void 0
|
@@ -31475,7 +31487,7 @@ var import_react16 = require("react");
|
|
31475
31487
|
|
31476
31488
|
// css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css#css-module
|
31477
31489
|
init_react_import();
|
31478
|
-
var styles_module_default11 = { "ExternalInput": "
|
31490
|
+
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
31491
|
|
31480
31492
|
// components/Modal/index.tsx
|
31481
31493
|
init_react_import();
|
@@ -31483,7 +31495,7 @@ var import_react15 = require("react");
|
|
31483
31495
|
|
31484
31496
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Modal/styles.module.css#css-module
|
31485
31497
|
init_react_import();
|
31486
|
-
var styles_module_default12 = { "Modal": "
|
31498
|
+
var styles_module_default12 = { "Modal": "_Modal_zud0i_1", "Modal--isOpen": "_Modal--isOpen_zud0i_15", "Modal-inner": "_Modal-inner_zud0i_19" };
|
31487
31499
|
|
31488
31500
|
// components/Modal/index.tsx
|
31489
31501
|
var import_react_dom = __toESM(require_react_dom());
|
@@ -31527,13 +31539,23 @@ var ExternalInput = ({
|
|
31527
31539
|
name,
|
31528
31540
|
id
|
31529
31541
|
}) => {
|
31530
|
-
const {
|
31542
|
+
const {
|
31543
|
+
mapProp = (val) => val,
|
31544
|
+
mapRow = (val) => val,
|
31545
|
+
filterFields
|
31546
|
+
} = field || {};
|
31531
31547
|
const [data, setData] = (0, import_react16.useState)([]);
|
31532
31548
|
const [isOpen, setOpen] = (0, import_react16.useState)(false);
|
31533
31549
|
const [isLoading, setIsLoading] = (0, import_react16.useState)(true);
|
31550
|
+
const hasFilterFields = !!filterFields;
|
31551
|
+
const [filters, setFilters] = (0, import_react16.useState)(field.initialFilters || {});
|
31552
|
+
const [filtersToggled, setFiltersToggled] = (0, import_react16.useState)(hasFilterFields);
|
31553
|
+
const mappedData = (0, import_react16.useMemo)(() => {
|
31554
|
+
return data.map(mapRow);
|
31555
|
+
}, [data]);
|
31534
31556
|
const keys = (0, import_react16.useMemo)(() => {
|
31535
31557
|
const validKeys = /* @__PURE__ */ new Set();
|
31536
|
-
for (const item of
|
31558
|
+
for (const item of mappedData) {
|
31537
31559
|
for (const key of Object.keys(item)) {
|
31538
31560
|
if (typeof item[key] === "string" || typeof item[key] === "number") {
|
31539
31561
|
validKeys.add(key);
|
@@ -31541,13 +31563,13 @@ var ExternalInput = ({
|
|
31541
31563
|
}
|
31542
31564
|
}
|
31543
31565
|
return Array.from(validKeys);
|
31544
|
-
}, [
|
31566
|
+
}, [mappedData]);
|
31545
31567
|
const [searchQuery, setSearchQuery] = (0, import_react16.useState)(field.initialQuery || "");
|
31546
31568
|
const search = (0, import_react16.useCallback)(
|
31547
|
-
(query) => __async(void 0, null, function* () {
|
31569
|
+
(query, filters2) => __async(void 0, null, function* () {
|
31548
31570
|
setIsLoading(true);
|
31549
|
-
const cacheKey = `${id}-${name}-${query}`;
|
31550
|
-
const listData = dataCache[cacheKey] || (yield field.fetchList({ query }));
|
31571
|
+
const cacheKey = `${id}-${name}-${query}-${JSON.stringify(filters2)}`;
|
31572
|
+
const listData = dataCache[cacheKey] || (yield field.fetchList({ query, filters: filters2 }));
|
31551
31573
|
if (listData) {
|
31552
31574
|
setData(listData);
|
31553
31575
|
setIsLoading(false);
|
@@ -31557,7 +31579,7 @@ var ExternalInput = ({
|
|
31557
31579
|
[name, field]
|
31558
31580
|
);
|
31559
31581
|
(0, import_react16.useEffect)(() => {
|
31560
|
-
search(searchQuery);
|
31582
|
+
search(searchQuery, filters);
|
31561
31583
|
}, []);
|
31562
31584
|
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
31563
31585
|
"div",
|
@@ -31592,78 +31614,109 @@ var ExternalInput = ({
|
|
31592
31614
|
)
|
31593
31615
|
] }),
|
31594
31616
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Modal, { onClose: () => setOpen(false), isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
31595
|
-
"
|
31617
|
+
"form",
|
31596
31618
|
{
|
31597
31619
|
className: getClassNameModal({
|
31598
31620
|
isLoading,
|
31599
31621
|
loaded: !isLoading,
|
31600
|
-
hasData:
|
31622
|
+
hasData: mappedData.length > 0,
|
31623
|
+
filtersToggled
|
31601
31624
|
}),
|
31625
|
+
onSubmit: (e) => {
|
31626
|
+
e.preventDefault();
|
31627
|
+
search(searchQuery, filters);
|
31628
|
+
},
|
31602
31629
|
children: [
|
31603
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31604
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31605
|
-
|
31606
|
-
"
|
31607
|
-
|
31608
|
-
|
31609
|
-
onSubmit: (e) => {
|
31610
|
-
e.preventDefault();
|
31611
|
-
search(searchQuery);
|
31612
|
-
},
|
31613
|
-
children: [
|
31614
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: getClassNameModal("search"), children: [
|
31615
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: getClassNameModal("searchIconText"), children: "Search" }),
|
31616
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("searchIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Search, { size: "18" }) }),
|
31617
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31618
|
-
"input",
|
31619
|
-
{
|
31620
|
-
className: getClassNameModal("searchInput"),
|
31621
|
-
name: "q",
|
31622
|
-
type: "search",
|
31623
|
-
placeholder: "Search",
|
31624
|
-
onChange: (e) => {
|
31625
|
-
setSearchQuery(e.currentTarget.value);
|
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",
|
31630
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("masthead"), children: field.showSearch ? /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("searchForm"), children: [
|
31631
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: getClassNameModal("search"), children: [
|
31632
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: getClassNameModal("searchIconText"), children: "Search" }),
|
31633
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("searchIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Search, { size: "18" }) }),
|
31634
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31635
|
+
"input",
|
31641
31636
|
{
|
31642
|
-
className: getClassNameModal("
|
31643
|
-
|
31644
|
-
|
31637
|
+
className: getClassNameModal("searchInput"),
|
31638
|
+
name: "q",
|
31639
|
+
type: "search",
|
31640
|
+
placeholder: field.placeholder,
|
31641
|
+
onChange: (e) => {
|
31642
|
+
setSearchQuery(e.currentTarget.value);
|
31643
|
+
},
|
31644
|
+
autoComplete: "off",
|
31645
|
+
value: searchQuery
|
31646
|
+
}
|
31647
|
+
)
|
31648
|
+
] }),
|
31649
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("searchActions"), children: [
|
31650
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Button, { type: "submit", loading: isLoading, fullWidth: true, children: "Search" }),
|
31651
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("searchActionIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31652
|
+
IconButton,
|
31653
|
+
{
|
31654
|
+
title: "Toggle filters",
|
31655
|
+
onClick: (e) => {
|
31656
|
+
e.preventDefault();
|
31657
|
+
e.stopPropagation();
|
31658
|
+
setFiltersToggled(!filtersToggled);
|
31659
|
+
},
|
31660
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(SlidersHorizontal, { size: 20 })
|
31661
|
+
}
|
31662
|
+
) })
|
31663
|
+
] })
|
31664
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Heading, { rank: 2, size: "xs", children: field.placeholder || "Select data" }) }),
|
31665
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("grid"), children: [
|
31666
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameModal("filters"), children: hasFilterFields && Object.keys(filterFields).map((fieldName) => {
|
31667
|
+
const filterField = filterFields[fieldName];
|
31668
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31669
|
+
InputOrGroup,
|
31670
|
+
{
|
31671
|
+
field: filterField,
|
31672
|
+
name: fieldName,
|
31673
|
+
id: `external_field_${fieldName}_filter`,
|
31674
|
+
label: filterField.label || fieldName,
|
31675
|
+
value: filters[fieldName],
|
31676
|
+
onChange: (value2) => {
|
31677
|
+
const newFilters = __spreadProps(__spreadValues({}, filters), { [fieldName]: value2 });
|
31678
|
+
setFilters(newFilters);
|
31679
|
+
search(searchQuery, newFilters);
|
31680
|
+
}
|
31645
31681
|
},
|
31646
|
-
|
31647
|
-
)
|
31648
|
-
|
31649
|
-
|
31650
|
-
|
31682
|
+
fieldName
|
31683
|
+
);
|
31684
|
+
}) }),
|
31685
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("tableWrapper"), children: [
|
31686
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("table", { className: getClassNameModal("table"), children: [
|
31687
|
+
/* @__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)(
|
31688
|
+
"th",
|
31651
31689
|
{
|
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))
|
31690
|
+
className: getClassNameModal("th"),
|
31691
|
+
style: { textAlign: "left" },
|
31692
|
+
children: key
|
31659
31693
|
},
|
31660
|
-
|
31661
|
-
)
|
31662
|
-
|
31663
|
-
|
31664
|
-
|
31694
|
+
key
|
31695
|
+
)) }) }),
|
31696
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("tbody", { className: getClassNameModal("tbody"), children: mappedData.map((item, i) => {
|
31697
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
31698
|
+
"tr",
|
31699
|
+
{
|
31700
|
+
style: { whiteSpace: "nowrap" },
|
31701
|
+
className: getClassNameModal("tr"),
|
31702
|
+
onClick: () => {
|
31703
|
+
onChange(mapProp(data[i]));
|
31704
|
+
setOpen(false);
|
31705
|
+
},
|
31706
|
+
children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("td", { className: getClassNameModal("td"), children: item[key] }, key))
|
31707
|
+
},
|
31708
|
+
i
|
31709
|
+
);
|
31710
|
+
}) })
|
31711
|
+
] }),
|
31712
|
+
/* @__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" }) })
|
31713
|
+
] })
|
31665
31714
|
] }),
|
31666
|
-
/* @__PURE__ */ (0, import_jsx_runtime15.
|
31715
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameModal("footer"), children: [
|
31716
|
+
mappedData.length,
|
31717
|
+
" result",
|
31718
|
+
mappedData.length === 1 ? "" : "s"
|
31719
|
+
] })
|
31667
31720
|
]
|
31668
31721
|
}
|
31669
31722
|
) })
|
@@ -31709,6 +31762,7 @@ var ExternalField = ({
|
|
31709
31762
|
// DEPRECATED
|
31710
31763
|
placeholder: ((_a = deprecatedField.adaptor) == null ? void 0 : _a.name) ? `Select from ${deprecatedField.adaptor.name}` : validField.placeholder || "Select data",
|
31711
31764
|
mapProp: ((_b = deprecatedField.adaptor) == null ? void 0 : _b.mapProp) || validField.mapProp,
|
31765
|
+
mapRow: validField.mapRow,
|
31712
31766
|
fetchList: ((_c = deprecatedField.adaptor) == null ? void 0 : _c.fetchList) ? () => __async(void 0, null, function* () {
|
31713
31767
|
return yield deprecatedField.adaptor.fetchList(
|
31714
31768
|
deprecatedField.adaptorParams
|
@@ -31857,6 +31911,7 @@ var TextareaField = ({
|
|
31857
31911
|
value: typeof value === "undefined" ? "" : value,
|
31858
31912
|
onChange: (e) => onChange(e.currentTarget.value),
|
31859
31913
|
readOnly,
|
31914
|
+
tabIndex: readOnly ? -1 : void 0,
|
31860
31915
|
rows: 5
|
31861
31916
|
}
|
31862
31917
|
)
|
@@ -31872,7 +31927,7 @@ init_react_import();
|
|
31872
31927
|
|
31873
31928
|
// css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ObjectField/styles.module.css#css-module
|
31874
31929
|
init_react_import();
|
31875
|
-
var styles_module_default13 = { "ObjectField": "
|
31930
|
+
var styles_module_default13 = { "ObjectField": "_ObjectField_15j63_5", "ObjectField-fieldset": "_ObjectField-fieldset_15j63_13" };
|
31876
31931
|
|
31877
31932
|
// components/InputOrGroup/fields/ObjectField/index.tsx
|
31878
31933
|
var import_jsx_runtime20 = require("react/jsx-runtime");
|
@@ -32036,7 +32091,7 @@ var InputOrGroup = (_a) => {
|
|
32036
32091
|
|
32037
32092
|
// css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Fields/styles.module.css#css-module
|
32038
32093
|
init_react_import();
|
32039
|
-
var styles_module_default14 = { "PuckFields": "
|
32094
|
+
var styles_module_default14 = { "PuckFields": "_PuckFields_17k3p_1", "PuckFields-loadingOverlay": "_PuckFields-loadingOverlay_17k3p_6" };
|
32040
32095
|
|
32041
32096
|
// components/Puck/components/Fields/index.tsx
|
32042
32097
|
var import_react19 = require("react");
|
@@ -32193,7 +32248,7 @@ init_react_import();
|
|
32193
32248
|
|
32194
32249
|
// css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css#css-module
|
32195
32250
|
init_react_import();
|
32196
|
-
var styles_module_default15 = { "ComponentList": "
|
32251
|
+
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
32252
|
|
32198
32253
|
// components/ComponentList/index.tsx
|
32199
32254
|
var import_jsx_runtime23 = require("react/jsx-runtime");
|
@@ -32214,7 +32269,7 @@ var ComponentList = ({
|
|
32214
32269
|
const { expanded = true } = state.ui.componentList[id] || {};
|
32215
32270
|
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: getClassName20({ isExpanded: expanded }), children: [
|
32216
32271
|
title && /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
32217
|
-
"
|
32272
|
+
"button",
|
32218
32273
|
{
|
32219
32274
|
className: getClassName20("title"),
|
32220
32275
|
onClick: () => setUi({
|
@@ -32378,7 +32433,7 @@ init_react_import();
|
|
32378
32433
|
|
32379
32434
|
// css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css#css-module
|
32380
32435
|
init_react_import();
|
32381
|
-
var styles_module_default16 = { "LayerTree": "
|
32436
|
+
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
32437
|
|
32383
32438
|
// lib/scroll-into-view.ts
|
32384
32439
|
init_react_import();
|
@@ -32452,7 +32507,7 @@ var LayerTree = ({
|
|
32452
32507
|
}),
|
32453
32508
|
children: [
|
32454
32509
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: getClassNameLayer("inner"), children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
32455
|
-
"
|
32510
|
+
"button",
|
32456
32511
|
{
|
32457
32512
|
className: getClassNameLayer("clickable"),
|
32458
32513
|
onClick: () => {
|
@@ -33023,7 +33078,7 @@ function Puck({
|
|
33023
33078
|
"div",
|
33024
33079
|
{
|
33025
33080
|
style: {
|
33026
|
-
background: "var(--puck-color-grey-
|
33081
|
+
background: "var(--puck-color-grey-11)",
|
33027
33082
|
height: "100%",
|
33028
33083
|
flexGrow: 1
|
33029
33084
|
}
|
@@ -33415,6 +33470,14 @@ lucide-react/dist/esm/icons/search.js:
|
|
33415
33470
|
* See the LICENSE file in the root directory of this source tree.
|
33416
33471
|
*)
|
33417
33472
|
|
33473
|
+
lucide-react/dist/esm/icons/sliders-horizontal.js:
|
33474
|
+
(**
|
33475
|
+
* @license lucide-react v0.298.0 - ISC
|
33476
|
+
*
|
33477
|
+
* This source code is licensed under the ISC license.
|
33478
|
+
* See the LICENSE file in the root directory of this source tree.
|
33479
|
+
*)
|
33480
|
+
|
33418
33481
|
lucide-react/dist/esm/icons/trash.js:
|
33419
33482
|
(**
|
33420
33483
|
* @license lucide-react v0.298.0 - ISC
|
package/dist/rsc.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import { C as Config, D as Data } from './Config-
|
2
|
+
import { C as Config, D as Data } from './Config-ab049d49.js';
|
3
3
|
import 'react';
|
4
4
|
|
5
5
|
declare function Render<UserConfig extends Config<any, any, any> = Config<any, any, any>>({ config, data }: {
|