@measured/puck 0.21.0-canary.e9d5c0ea → 0.21.0-canary.ec77dd9f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-J6I4S2BQ.mjs → chunk-NW2GGRCZ.mjs} +1902 -2728
- package/dist/{chunk-6SIKCDJJ.mjs → chunk-TC25DCTQ.mjs} +10 -12
- package/dist/index.css +268 -646
- package/dist/index.d.mts +5 -17
- package/dist/index.d.ts +5 -17
- package/dist/index.js +1883 -2704
- package/dist/index.mjs +2 -8
- package/dist/no-external.css +268 -646
- package/dist/no-external.d.mts +2 -2
- package/dist/no-external.d.ts +2 -2
- package/dist/no-external.js +1880 -2701
- package/dist/no-external.mjs +2 -8
- package/dist/rsc.d.mts +2 -2
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +10 -12
- package/dist/rsc.mjs +1 -1
- package/dist/{walk-tree-CD9WQheJ.d.mts → walk-tree-CkSoNBF7.d.mts} +9 -21
- package/dist/{walk-tree-CD9WQheJ.d.ts → walk-tree-CkSoNBF7.d.ts} +9 -21
- package/package.json +1 -1
|
@@ -295,8 +295,7 @@ init_react_import();
|
|
|
295
295
|
var defaultViewports = [
|
|
296
296
|
{ width: 360, height: "auto", icon: "Smartphone", label: "Small" },
|
|
297
297
|
{ width: 768, height: "auto", icon: "Tablet", label: "Medium" },
|
|
298
|
-
{ width: 1280, height: "auto", icon: "Monitor", label: "Large" }
|
|
299
|
-
{ width: "100%", height: "auto", icon: "FullWidth", label: "Full-width" }
|
|
298
|
+
{ width: 1280, height: "auto", icon: "Monitor", label: "Large" }
|
|
300
299
|
];
|
|
301
300
|
|
|
302
301
|
// store/default-app-state.ts
|
|
@@ -318,8 +317,7 @@ var defaultAppState = {
|
|
|
318
317
|
options: [],
|
|
319
318
|
controlsVisible: true
|
|
320
319
|
},
|
|
321
|
-
field: { focus: null }
|
|
322
|
-
plugin: { current: null }
|
|
320
|
+
field: { focus: null }
|
|
323
321
|
},
|
|
324
322
|
indexes: {
|
|
325
323
|
nodes: {},
|
|
@@ -697,7 +695,7 @@ var getChanged = (newItem, oldItem) => {
|
|
|
697
695
|
// lib/resolve-component-data.ts
|
|
698
696
|
import { deepEqual as deepEqual2 } from "fast-equals";
|
|
699
697
|
var cache = { lastChange: {} };
|
|
700
|
-
var resolveComponentData = (_0, _1, ..._2) => __async(
|
|
698
|
+
var resolveComponentData = (_0, _1, ..._2) => __async(null, [_0, _1, ..._2], function* (item, config, metadata = {}, onResolveStart, onResolveEnd, trigger = "replace") {
|
|
701
699
|
const configForItem = "type" in item && item.type !== "root" ? config.components[item.type] : config.root;
|
|
702
700
|
const resolvedItem = __spreadValues({}, item);
|
|
703
701
|
const shouldRunResolver = (configForItem == null ? void 0 : configForItem.resolveData) && item.props;
|
|
@@ -725,11 +723,11 @@ var resolveComponentData = (_0, _1, ..._2) => __async(void 0, [_0, _1, ..._2], f
|
|
|
725
723
|
let itemWithResolvedChildren = yield mapFields(
|
|
726
724
|
resolvedItem,
|
|
727
725
|
{
|
|
728
|
-
slot: (_02) => __async(
|
|
726
|
+
slot: (_02) => __async(null, [_02], function* ({ value }) {
|
|
729
727
|
const content = value;
|
|
730
728
|
return yield Promise.all(
|
|
731
729
|
content.map(
|
|
732
|
-
(childItem) => __async(
|
|
730
|
+
(childItem) => __async(null, null, function* () {
|
|
733
731
|
return (yield resolveComponentData(
|
|
734
732
|
childItem,
|
|
735
733
|
config,
|
|
@@ -772,7 +770,7 @@ function resolveAllData(_0, _1) {
|
|
|
772
770
|
return __async(this, arguments, function* (data, config, metadata = {}, onResolveStart, onResolveEnd) {
|
|
773
771
|
var _a;
|
|
774
772
|
const defaultedData = defaultData(data);
|
|
775
|
-
const resolveNode = (_node) => __async(
|
|
773
|
+
const resolveNode = (_node) => __async(null, null, function* () {
|
|
776
774
|
const node = toComponent(_node);
|
|
777
775
|
onResolveStart == null ? void 0 : onResolveStart(node);
|
|
778
776
|
const resolved = (yield resolveComponentData(
|
|
@@ -793,13 +791,13 @@ function resolveAllData(_0, _1) {
|
|
|
793
791
|
onResolveEnd == null ? void 0 : onResolveEnd(toComponent(resolvedDeep));
|
|
794
792
|
return resolvedDeep;
|
|
795
793
|
});
|
|
796
|
-
const processContent = (content) => __async(
|
|
794
|
+
const processContent = (content) => __async(null, null, function* () {
|
|
797
795
|
return Promise.all(content.map(resolveNode));
|
|
798
796
|
});
|
|
799
|
-
const processZones = () => __async(
|
|
797
|
+
const processZones = () => __async(null, null, function* () {
|
|
800
798
|
var _a2;
|
|
801
799
|
const zones = (_a2 = data.zones) != null ? _a2 : {};
|
|
802
|
-
Object.entries(zones).forEach((_02) => __async(
|
|
800
|
+
Object.entries(zones).forEach((_02) => __async(null, [_02], function* ([zoneKey, content]) {
|
|
803
801
|
zones[zoneKey] = yield Promise.all(content.map(resolveNode));
|
|
804
802
|
}));
|
|
805
803
|
return zones;
|
|
@@ -809,7 +807,7 @@ function resolveAllData(_0, _1) {
|
|
|
809
807
|
content: yield processContent(defaultedData.content),
|
|
810
808
|
zones: yield processZones()
|
|
811
809
|
};
|
|
812
|
-
Object.keys((_a = defaultedData.zones) != null ? _a : {}).forEach((zoneKey) => __async(
|
|
810
|
+
Object.keys((_a = defaultedData.zones) != null ? _a : {}).forEach((zoneKey) => __async(null, null, function* () {
|
|
813
811
|
const content = defaultedData.zones[zoneKey];
|
|
814
812
|
dynamic.zones[zoneKey] = yield processContent(content);
|
|
815
813
|
}), {});
|