@measured/puck 0.14.0-canary.35090d4 → 0.14.0-canary.3d595db
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-ab049d49.d.ts → Config-shqT_YTp.d.ts} +38 -25
- package/dist/index.css +437 -346
- package/dist/index.d.ts +92 -51
- package/dist/index.js +1588 -712
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +4 -1
- package/package.json +5 -3
package/dist/index.js
CHANGED
|
@@ -93,7 +93,8 @@ var init_react_import = __esm({
|
|
|
93
93
|
|
|
94
94
|
// ../../node_modules/classnames/index.js
|
|
95
95
|
var require_classnames = __commonJS({
|
|
96
|
-
"../../node_modules/classnames/index.js"(
|
|
96
|
+
"../../node_modules/classnames/index.js"(exports2, module2) {
|
|
97
|
+
"use strict";
|
|
97
98
|
init_react_import();
|
|
98
99
|
(function() {
|
|
99
100
|
"use strict";
|
|
@@ -145,7 +146,7 @@ var require_classnames = __commonJS({
|
|
|
145
146
|
|
|
146
147
|
// ../../node_modules/scheduler/cjs/scheduler.production.min.js
|
|
147
148
|
var require_scheduler_production_min = __commonJS({
|
|
148
|
-
"../../node_modules/scheduler/cjs/scheduler.production.min.js"(
|
|
149
|
+
"../../node_modules/scheduler/cjs/scheduler.production.min.js"(exports2) {
|
|
149
150
|
"use strict";
|
|
150
151
|
init_react_import();
|
|
151
152
|
function f(a, b) {
|
|
@@ -188,12 +189,12 @@ var require_scheduler_production_min = __commonJS({
|
|
|
188
189
|
}
|
|
189
190
|
if ("object" === typeof performance && "function" === typeof performance.now) {
|
|
190
191
|
l = performance;
|
|
191
|
-
|
|
192
|
+
exports2.unstable_now = function() {
|
|
192
193
|
return l.now();
|
|
193
194
|
};
|
|
194
195
|
} else {
|
|
195
196
|
p = Date, q = p.now();
|
|
196
|
-
|
|
197
|
+
exports2.unstable_now = function() {
|
|
197
198
|
return p.now() - q;
|
|
198
199
|
};
|
|
199
200
|
}
|
|
@@ -247,7 +248,7 @@ var require_scheduler_production_min = __commonJS({
|
|
|
247
248
|
v.callback = null;
|
|
248
249
|
y = v.priorityLevel;
|
|
249
250
|
var e = d(v.expirationTime <= b);
|
|
250
|
-
b =
|
|
251
|
+
b = exports2.unstable_now();
|
|
251
252
|
"function" === typeof e ? v.callback = e : v === h(r) && k(r);
|
|
252
253
|
G(b);
|
|
253
254
|
} else
|
|
@@ -272,11 +273,11 @@ var require_scheduler_production_min = __commonJS({
|
|
|
272
273
|
var P = 5;
|
|
273
274
|
var Q = -1;
|
|
274
275
|
function M() {
|
|
275
|
-
return
|
|
276
|
+
return exports2.unstable_now() - Q < P ? false : true;
|
|
276
277
|
}
|
|
277
278
|
function R() {
|
|
278
279
|
if (null !== O) {
|
|
279
|
-
var a =
|
|
280
|
+
var a = exports2.unstable_now();
|
|
280
281
|
Q = a;
|
|
281
282
|
var b = true;
|
|
282
283
|
try {
|
|
@@ -310,31 +311,31 @@ var require_scheduler_production_min = __commonJS({
|
|
|
310
311
|
}
|
|
311
312
|
function K(a, b) {
|
|
312
313
|
L = D(function() {
|
|
313
|
-
a(
|
|
314
|
+
a(exports2.unstable_now());
|
|
314
315
|
}, b);
|
|
315
316
|
}
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
317
|
+
exports2.unstable_IdlePriority = 5;
|
|
318
|
+
exports2.unstable_ImmediatePriority = 1;
|
|
319
|
+
exports2.unstable_LowPriority = 4;
|
|
320
|
+
exports2.unstable_NormalPriority = 3;
|
|
321
|
+
exports2.unstable_Profiling = null;
|
|
322
|
+
exports2.unstable_UserBlockingPriority = 2;
|
|
323
|
+
exports2.unstable_cancelCallback = function(a) {
|
|
323
324
|
a.callback = null;
|
|
324
325
|
};
|
|
325
|
-
|
|
326
|
+
exports2.unstable_continueExecution = function() {
|
|
326
327
|
A || z || (A = true, I(J));
|
|
327
328
|
};
|
|
328
|
-
|
|
329
|
+
exports2.unstable_forceFrameRate = function(a) {
|
|
329
330
|
0 > a || 125 < a ? console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported") : P = 0 < a ? Math.floor(1e3 / a) : 5;
|
|
330
331
|
};
|
|
331
|
-
|
|
332
|
+
exports2.unstable_getCurrentPriorityLevel = function() {
|
|
332
333
|
return y;
|
|
333
334
|
};
|
|
334
|
-
|
|
335
|
+
exports2.unstable_getFirstCallbackNode = function() {
|
|
335
336
|
return h(r);
|
|
336
337
|
};
|
|
337
|
-
|
|
338
|
+
exports2.unstable_next = function(a) {
|
|
338
339
|
switch (y) {
|
|
339
340
|
case 1:
|
|
340
341
|
case 2:
|
|
@@ -352,11 +353,11 @@ var require_scheduler_production_min = __commonJS({
|
|
|
352
353
|
y = c;
|
|
353
354
|
}
|
|
354
355
|
};
|
|
355
|
-
|
|
356
|
+
exports2.unstable_pauseExecution = function() {
|
|
356
357
|
};
|
|
357
|
-
|
|
358
|
+
exports2.unstable_requestPaint = function() {
|
|
358
359
|
};
|
|
359
|
-
|
|
360
|
+
exports2.unstable_runWithPriority = function(a, b) {
|
|
360
361
|
switch (a) {
|
|
361
362
|
case 1:
|
|
362
363
|
case 2:
|
|
@@ -375,8 +376,8 @@ var require_scheduler_production_min = __commonJS({
|
|
|
375
376
|
y = c;
|
|
376
377
|
}
|
|
377
378
|
};
|
|
378
|
-
|
|
379
|
-
var d =
|
|
379
|
+
exports2.unstable_scheduleCallback = function(a, b, c) {
|
|
380
|
+
var d = exports2.unstable_now();
|
|
380
381
|
"object" === typeof c && null !== c ? (c = c.delay, c = "number" === typeof c && 0 < c ? d + c : d) : c = d;
|
|
381
382
|
switch (a) {
|
|
382
383
|
case 1:
|
|
@@ -399,8 +400,8 @@ var require_scheduler_production_min = __commonJS({
|
|
|
399
400
|
c > d ? (a.sortIndex = c, f(t, a), null === h(r) && a === h(t) && (B ? (E(L), L = -1) : B = true, K(H, c - d))) : (a.sortIndex = e, f(r, a), A || z || (A = true, I(J)));
|
|
400
401
|
return a;
|
|
401
402
|
};
|
|
402
|
-
|
|
403
|
-
|
|
403
|
+
exports2.unstable_shouldYield = M;
|
|
404
|
+
exports2.unstable_wrapCallback = function(a) {
|
|
404
405
|
var b = y;
|
|
405
406
|
return function() {
|
|
406
407
|
var c = y;
|
|
@@ -417,7 +418,7 @@ var require_scheduler_production_min = __commonJS({
|
|
|
417
418
|
|
|
418
419
|
// ../../node_modules/scheduler/cjs/scheduler.development.js
|
|
419
420
|
var require_scheduler_development = __commonJS({
|
|
420
|
-
"../../node_modules/scheduler/cjs/scheduler.development.js"(
|
|
421
|
+
"../../node_modules/scheduler/cjs/scheduler.development.js"(exports2) {
|
|
421
422
|
"use strict";
|
|
422
423
|
init_react_import();
|
|
423
424
|
if (process.env.NODE_ENV !== "production") {
|
|
@@ -505,13 +506,13 @@ var require_scheduler_development = __commonJS({
|
|
|
505
506
|
var hasPerformanceNow = typeof performance === "object" && typeof performance.now === "function";
|
|
506
507
|
if (hasPerformanceNow) {
|
|
507
508
|
var localPerformance = performance;
|
|
508
|
-
|
|
509
|
+
exports2.unstable_now = function() {
|
|
509
510
|
return localPerformance.now();
|
|
510
511
|
};
|
|
511
512
|
} else {
|
|
512
513
|
var localDate = Date;
|
|
513
514
|
var initialTime = localDate.now();
|
|
514
|
-
|
|
515
|
+
exports2.unstable_now = function() {
|
|
515
516
|
return localDate.now() - initialTime;
|
|
516
517
|
};
|
|
517
518
|
}
|
|
@@ -577,7 +578,7 @@ var require_scheduler_development = __commonJS({
|
|
|
577
578
|
return workLoop(hasTimeRemaining, initialTime2);
|
|
578
579
|
} catch (error) {
|
|
579
580
|
if (currentTask !== null) {
|
|
580
|
-
var currentTime =
|
|
581
|
+
var currentTime = exports2.unstable_now();
|
|
581
582
|
markTaskErrored(currentTask, currentTime);
|
|
582
583
|
currentTask.isQueued = false;
|
|
583
584
|
}
|
|
@@ -606,7 +607,7 @@ var require_scheduler_development = __commonJS({
|
|
|
606
607
|
currentPriorityLevel = currentTask.priorityLevel;
|
|
607
608
|
var didUserCallbackTimeout = currentTask.expirationTime <= currentTime;
|
|
608
609
|
var continuationCallback = callback(didUserCallbackTimeout);
|
|
609
|
-
currentTime =
|
|
610
|
+
currentTime = exports2.unstable_now();
|
|
610
611
|
if (typeof continuationCallback === "function") {
|
|
611
612
|
currentTask.callback = continuationCallback;
|
|
612
613
|
} else {
|
|
@@ -682,7 +683,7 @@ var require_scheduler_development = __commonJS({
|
|
|
682
683
|
};
|
|
683
684
|
}
|
|
684
685
|
function unstable_scheduleCallback(priorityLevel, callback, options) {
|
|
685
|
-
var currentTime =
|
|
686
|
+
var currentTime = exports2.unstable_now();
|
|
686
687
|
var startTime2;
|
|
687
688
|
if (typeof options === "object" && options !== null) {
|
|
688
689
|
var delay = options.delay;
|
|
@@ -766,7 +767,7 @@ var require_scheduler_development = __commonJS({
|
|
|
766
767
|
var frameInterval = frameYieldMs;
|
|
767
768
|
var startTime = -1;
|
|
768
769
|
function shouldYieldToHost() {
|
|
769
|
-
var timeElapsed =
|
|
770
|
+
var timeElapsed = exports2.unstable_now() - startTime;
|
|
770
771
|
if (timeElapsed < frameInterval) {
|
|
771
772
|
return false;
|
|
772
773
|
}
|
|
@@ -787,7 +788,7 @@ var require_scheduler_development = __commonJS({
|
|
|
787
788
|
}
|
|
788
789
|
var performWorkUntilDeadline = function() {
|
|
789
790
|
if (scheduledHostCallback !== null) {
|
|
790
|
-
var currentTime =
|
|
791
|
+
var currentTime = exports2.unstable_now();
|
|
791
792
|
startTime = currentTime;
|
|
792
793
|
var hasTimeRemaining = true;
|
|
793
794
|
var hasMoreWork = true;
|
|
@@ -831,7 +832,7 @@ var require_scheduler_development = __commonJS({
|
|
|
831
832
|
}
|
|
832
833
|
function requestHostTimeout(callback, ms) {
|
|
833
834
|
taskTimeoutID = localSetTimeout(function() {
|
|
834
|
-
callback(
|
|
835
|
+
callback(exports2.unstable_now());
|
|
835
836
|
}, ms);
|
|
836
837
|
}
|
|
837
838
|
function cancelHostTimeout() {
|
|
@@ -840,24 +841,24 @@ var require_scheduler_development = __commonJS({
|
|
|
840
841
|
}
|
|
841
842
|
var unstable_requestPaint = requestPaint;
|
|
842
843
|
var unstable_Profiling = null;
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
844
|
+
exports2.unstable_IdlePriority = IdlePriority;
|
|
845
|
+
exports2.unstable_ImmediatePriority = ImmediatePriority;
|
|
846
|
+
exports2.unstable_LowPriority = LowPriority;
|
|
847
|
+
exports2.unstable_NormalPriority = NormalPriority;
|
|
848
|
+
exports2.unstable_Profiling = unstable_Profiling;
|
|
849
|
+
exports2.unstable_UserBlockingPriority = UserBlockingPriority;
|
|
850
|
+
exports2.unstable_cancelCallback = unstable_cancelCallback;
|
|
851
|
+
exports2.unstable_continueExecution = unstable_continueExecution;
|
|
852
|
+
exports2.unstable_forceFrameRate = forceFrameRate;
|
|
853
|
+
exports2.unstable_getCurrentPriorityLevel = unstable_getCurrentPriorityLevel;
|
|
854
|
+
exports2.unstable_getFirstCallbackNode = unstable_getFirstCallbackNode;
|
|
855
|
+
exports2.unstable_next = unstable_next;
|
|
856
|
+
exports2.unstable_pauseExecution = unstable_pauseExecution;
|
|
857
|
+
exports2.unstable_requestPaint = unstable_requestPaint;
|
|
858
|
+
exports2.unstable_runWithPriority = unstable_runWithPriority;
|
|
859
|
+
exports2.unstable_scheduleCallback = unstable_scheduleCallback;
|
|
860
|
+
exports2.unstable_shouldYield = shouldYieldToHost;
|
|
861
|
+
exports2.unstable_wrapCallback = unstable_wrapCallback;
|
|
861
862
|
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
|
862
863
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
|
863
864
|
}
|
|
@@ -868,7 +869,7 @@ var require_scheduler_development = __commonJS({
|
|
|
868
869
|
|
|
869
870
|
// ../../node_modules/scheduler/index.js
|
|
870
871
|
var require_scheduler = __commonJS({
|
|
871
|
-
"../../node_modules/scheduler/index.js"(
|
|
872
|
+
"../../node_modules/scheduler/index.js"(exports2, module2) {
|
|
872
873
|
"use strict";
|
|
873
874
|
init_react_import();
|
|
874
875
|
if (process.env.NODE_ENV === "production") {
|
|
@@ -881,7 +882,7 @@ var require_scheduler = __commonJS({
|
|
|
881
882
|
|
|
882
883
|
// ../../node_modules/react-dom/cjs/react-dom.production.min.js
|
|
883
884
|
var require_react_dom_production_min = __commonJS({
|
|
884
|
-
"../../node_modules/react-dom/cjs/react-dom.production.min.js"(
|
|
885
|
+
"../../node_modules/react-dom/cjs/react-dom.production.min.js"(exports2) {
|
|
885
886
|
"use strict";
|
|
886
887
|
init_react_import();
|
|
887
888
|
var aa = require("react");
|
|
@@ -7938,14 +7939,14 @@ var require_react_dom_production_min = __commonJS({
|
|
|
7938
7939
|
}
|
|
7939
7940
|
}
|
|
7940
7941
|
var wl;
|
|
7941
|
-
|
|
7942
|
-
|
|
7942
|
+
exports2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = tl;
|
|
7943
|
+
exports2.createPortal = function(a, b) {
|
|
7943
7944
|
var c = 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
|
|
7944
7945
|
if (!ol(b))
|
|
7945
7946
|
throw Error(p(200));
|
|
7946
7947
|
return dl(a, b, null, c);
|
|
7947
7948
|
};
|
|
7948
|
-
|
|
7949
|
+
exports2.createRoot = function(a, b) {
|
|
7949
7950
|
if (!ol(a))
|
|
7950
7951
|
throw Error(p(299));
|
|
7951
7952
|
var c = false, d = "", e = ll;
|
|
@@ -7955,7 +7956,7 @@ var require_react_dom_production_min = __commonJS({
|
|
|
7955
7956
|
sf(8 === a.nodeType ? a.parentNode : a);
|
|
7956
7957
|
return new ml(b);
|
|
7957
7958
|
};
|
|
7958
|
-
|
|
7959
|
+
exports2.findDOMNode = function(a) {
|
|
7959
7960
|
if (null == a)
|
|
7960
7961
|
return null;
|
|
7961
7962
|
if (1 === a.nodeType)
|
|
@@ -7971,15 +7972,15 @@ var require_react_dom_production_min = __commonJS({
|
|
|
7971
7972
|
a = null === a ? null : a.stateNode;
|
|
7972
7973
|
return a;
|
|
7973
7974
|
};
|
|
7974
|
-
|
|
7975
|
+
exports2.flushSync = function(a) {
|
|
7975
7976
|
return Sk(a);
|
|
7976
7977
|
};
|
|
7977
|
-
|
|
7978
|
+
exports2.hydrate = function(a, b, c) {
|
|
7978
7979
|
if (!pl(b))
|
|
7979
7980
|
throw Error(p(200));
|
|
7980
7981
|
return sl(null, a, b, true, c);
|
|
7981
7982
|
};
|
|
7982
|
-
|
|
7983
|
+
exports2.hydrateRoot = function(a, b, c) {
|
|
7983
7984
|
if (!ol(a))
|
|
7984
7985
|
throw Error(p(405));
|
|
7985
7986
|
var d = null != c && c.hydratedSources || null, e = false, f = "", g = ll;
|
|
@@ -7995,12 +7996,12 @@ var require_react_dom_production_min = __commonJS({
|
|
|
7995
7996
|
);
|
|
7996
7997
|
return new nl(b);
|
|
7997
7998
|
};
|
|
7998
|
-
|
|
7999
|
+
exports2.render = function(a, b, c) {
|
|
7999
8000
|
if (!pl(b))
|
|
8000
8001
|
throw Error(p(200));
|
|
8001
8002
|
return sl(null, a, b, false, c);
|
|
8002
8003
|
};
|
|
8003
|
-
|
|
8004
|
+
exports2.unmountComponentAtNode = function(a) {
|
|
8004
8005
|
if (!pl(a))
|
|
8005
8006
|
throw Error(p(40));
|
|
8006
8007
|
return a._reactRootContainer ? (Sk(function() {
|
|
@@ -8010,21 +8011,21 @@ var require_react_dom_production_min = __commonJS({
|
|
|
8010
8011
|
});
|
|
8011
8012
|
}), true) : false;
|
|
8012
8013
|
};
|
|
8013
|
-
|
|
8014
|
-
|
|
8014
|
+
exports2.unstable_batchedUpdates = Rk;
|
|
8015
|
+
exports2.unstable_renderSubtreeIntoContainer = function(a, b, c, d) {
|
|
8015
8016
|
if (!pl(c))
|
|
8016
8017
|
throw Error(p(200));
|
|
8017
8018
|
if (null == a || void 0 === a._reactInternals)
|
|
8018
8019
|
throw Error(p(38));
|
|
8019
8020
|
return sl(a, b, c, false, d);
|
|
8020
8021
|
};
|
|
8021
|
-
|
|
8022
|
+
exports2.version = "18.2.0-next-9e3b772b8-20220608";
|
|
8022
8023
|
}
|
|
8023
8024
|
});
|
|
8024
8025
|
|
|
8025
8026
|
// ../../node_modules/react-dom/cjs/react-dom.development.js
|
|
8026
8027
|
var require_react_dom_development = __commonJS({
|
|
8027
|
-
"../../node_modules/react-dom/cjs/react-dom.development.js"(
|
|
8028
|
+
"../../node_modules/react-dom/cjs/react-dom.development.js"(exports2) {
|
|
8028
8029
|
"use strict";
|
|
8029
8030
|
init_react_import();
|
|
8030
8031
|
if (process.env.NODE_ENV !== "production") {
|
|
@@ -8084,7 +8085,7 @@ var require_react_dom_development = __commonJS({
|
|
|
8084
8085
|
var HostPortal = 4;
|
|
8085
8086
|
var HostComponent = 5;
|
|
8086
8087
|
var HostText = 6;
|
|
8087
|
-
var
|
|
8088
|
+
var Fragment17 = 7;
|
|
8088
8089
|
var Mode = 8;
|
|
8089
8090
|
var ContextConsumer = 9;
|
|
8090
8091
|
var ContextProvider = 10;
|
|
@@ -8264,8 +8265,8 @@ var require_react_dom_development = __commonJS({
|
|
|
8264
8265
|
if (propertyInfo !== null) {
|
|
8265
8266
|
return !propertyInfo.acceptsBooleans;
|
|
8266
8267
|
} else {
|
|
8267
|
-
var
|
|
8268
|
-
return
|
|
8268
|
+
var prefix3 = name.toLowerCase().slice(0, 5);
|
|
8269
|
+
return prefix3 !== "data-" && prefix3 !== "aria-";
|
|
8269
8270
|
}
|
|
8270
8271
|
}
|
|
8271
8272
|
default:
|
|
@@ -8937,18 +8938,18 @@ var require_react_dom_development = __commonJS({
|
|
|
8937
8938
|
}
|
|
8938
8939
|
}
|
|
8939
8940
|
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
|
|
8940
|
-
var
|
|
8941
|
+
var prefix2;
|
|
8941
8942
|
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
8942
8943
|
{
|
|
8943
|
-
if (
|
|
8944
|
+
if (prefix2 === void 0) {
|
|
8944
8945
|
try {
|
|
8945
8946
|
throw Error();
|
|
8946
8947
|
} catch (x) {
|
|
8947
8948
|
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
8948
|
-
|
|
8949
|
+
prefix2 = match && match[1] || "";
|
|
8949
8950
|
}
|
|
8950
8951
|
}
|
|
8951
|
-
return "\n" +
|
|
8952
|
+
return "\n" + prefix2 + name;
|
|
8952
8953
|
}
|
|
8953
8954
|
}
|
|
8954
8955
|
var reentry = false;
|
|
@@ -9240,7 +9241,7 @@ var require_react_dom_development = __commonJS({
|
|
|
9240
9241
|
return "DehydratedFragment";
|
|
9241
9242
|
case ForwardRef:
|
|
9242
9243
|
return getWrappedName$1(type, type.render, "ForwardRef");
|
|
9243
|
-
case
|
|
9244
|
+
case Fragment17:
|
|
9244
9245
|
return "Fragment";
|
|
9245
9246
|
case HostComponent:
|
|
9246
9247
|
return type;
|
|
@@ -10033,13 +10034,13 @@ var require_react_dom_development = __commonJS({
|
|
|
10033
10034
|
strokeOpacity: true,
|
|
10034
10035
|
strokeWidth: true
|
|
10035
10036
|
};
|
|
10036
|
-
function prefixKey(
|
|
10037
|
-
return
|
|
10037
|
+
function prefixKey(prefix3, key) {
|
|
10038
|
+
return prefix3 + key.charAt(0).toUpperCase() + key.substring(1);
|
|
10038
10039
|
}
|
|
10039
10040
|
var prefixes = ["Webkit", "ms", "Moz", "O"];
|
|
10040
10041
|
Object.keys(isUnitlessNumber).forEach(function(prop) {
|
|
10041
|
-
prefixes.forEach(function(
|
|
10042
|
-
isUnitlessNumber[prefixKey(
|
|
10042
|
+
prefixes.forEach(function(prefix3) {
|
|
10043
|
+
isUnitlessNumber[prefixKey(prefix3, prop)] = isUnitlessNumber[prop];
|
|
10043
10044
|
});
|
|
10044
10045
|
});
|
|
10045
10046
|
function dangerousStyleValue(name, value, isCustomProperty) {
|
|
@@ -18911,7 +18912,7 @@ var require_react_dom_development = __commonJS({
|
|
|
18911
18912
|
}
|
|
18912
18913
|
}
|
|
18913
18914
|
function updateFragment2(returnFiber, current2, fragment, lanes, key) {
|
|
18914
|
-
if (current2 === null || current2.tag !==
|
|
18915
|
+
if (current2 === null || current2.tag !== Fragment17) {
|
|
18915
18916
|
var created = createFiberFromFragment(fragment, returnFiber.mode, lanes, key);
|
|
18916
18917
|
created.return = returnFiber;
|
|
18917
18918
|
return created;
|
|
@@ -19314,7 +19315,7 @@ var require_react_dom_development = __commonJS({
|
|
|
19314
19315
|
if (child.key === key) {
|
|
19315
19316
|
var elementType = element.type;
|
|
19316
19317
|
if (elementType === REACT_FRAGMENT_TYPE) {
|
|
19317
|
-
if (child.tag ===
|
|
19318
|
+
if (child.tag === Fragment17) {
|
|
19318
19319
|
deleteRemainingChildren(returnFiber, child.sibling);
|
|
19319
19320
|
var existing = useFiber(child, element.props.children);
|
|
19320
19321
|
existing.return = returnFiber;
|
|
@@ -23489,7 +23490,7 @@ var require_react_dom_development = __commonJS({
|
|
|
23489
23490
|
var _resolvedProps2 = workInProgress2.elementType === type ? _unresolvedProps2 : resolveDefaultProps(type, _unresolvedProps2);
|
|
23490
23491
|
return updateForwardRef(current2, workInProgress2, type, _resolvedProps2, renderLanes2);
|
|
23491
23492
|
}
|
|
23492
|
-
case
|
|
23493
|
+
case Fragment17:
|
|
23493
23494
|
return updateFragment(current2, workInProgress2, renderLanes2);
|
|
23494
23495
|
case Mode:
|
|
23495
23496
|
return updateMode(current2, workInProgress2, renderLanes2);
|
|
@@ -23762,7 +23763,7 @@ var require_react_dom_development = __commonJS({
|
|
|
23762
23763
|
case SimpleMemoComponent:
|
|
23763
23764
|
case FunctionComponent:
|
|
23764
23765
|
case ForwardRef:
|
|
23765
|
-
case
|
|
23766
|
+
case Fragment17:
|
|
23766
23767
|
case Mode:
|
|
23767
23768
|
case Profiler:
|
|
23768
23769
|
case ContextConsumer:
|
|
@@ -28021,7 +28022,7 @@ var require_react_dom_development = __commonJS({
|
|
|
28021
28022
|
return fiber;
|
|
28022
28023
|
}
|
|
28023
28024
|
function createFiberFromFragment(elements, mode, lanes, key) {
|
|
28024
|
-
var fiber = createFiber(
|
|
28025
|
+
var fiber = createFiber(Fragment17, elements, key, mode);
|
|
28025
28026
|
fiber.lanes = lanes;
|
|
28026
28027
|
return fiber;
|
|
28027
28028
|
}
|
|
@@ -29094,18 +29095,18 @@ var require_react_dom_development = __commonJS({
|
|
|
29094
29095
|
}
|
|
29095
29096
|
}
|
|
29096
29097
|
}
|
|
29097
|
-
|
|
29098
|
-
|
|
29099
|
-
|
|
29100
|
-
|
|
29101
|
-
|
|
29102
|
-
|
|
29103
|
-
|
|
29104
|
-
|
|
29105
|
-
|
|
29106
|
-
|
|
29107
|
-
|
|
29108
|
-
|
|
29098
|
+
exports2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = Internals;
|
|
29099
|
+
exports2.createPortal = createPortal$1;
|
|
29100
|
+
exports2.createRoot = createRoot$1;
|
|
29101
|
+
exports2.findDOMNode = findDOMNode;
|
|
29102
|
+
exports2.flushSync = flushSync$1;
|
|
29103
|
+
exports2.hydrate = hydrate;
|
|
29104
|
+
exports2.hydrateRoot = hydrateRoot$1;
|
|
29105
|
+
exports2.render = render;
|
|
29106
|
+
exports2.unmountComponentAtNode = unmountComponentAtNode;
|
|
29107
|
+
exports2.unstable_batchedUpdates = batchedUpdates$1;
|
|
29108
|
+
exports2.unstable_renderSubtreeIntoContainer = renderSubtreeIntoContainer;
|
|
29109
|
+
exports2.version = ReactVersion;
|
|
29109
29110
|
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
|
29110
29111
|
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
|
|
29111
29112
|
}
|
|
@@ -29116,7 +29117,7 @@ var require_react_dom_development = __commonJS({
|
|
|
29116
29117
|
|
|
29117
29118
|
// ../../node_modules/react-dom/index.js
|
|
29118
29119
|
var require_react_dom = __commonJS({
|
|
29119
|
-
"../../node_modules/react-dom/index.js"(
|
|
29120
|
+
"../../node_modules/react-dom/index.js"(exports2, module2) {
|
|
29120
29121
|
"use strict";
|
|
29121
29122
|
init_react_import();
|
|
29122
29123
|
function checkDCE() {
|
|
@@ -29171,9 +29172,19 @@ init_react_import();
|
|
|
29171
29172
|
init_react_import();
|
|
29172
29173
|
var import_react2 = require("react");
|
|
29173
29174
|
|
|
29174
|
-
//
|
|
29175
|
-
|
|
29176
|
-
|
|
29175
|
+
// components/Button/Button.module.css
|
|
29176
|
+
var Button_default = {
|
|
29177
|
+
Button: "Button_Button",
|
|
29178
|
+
"Button--medium": "Button_Button--medium",
|
|
29179
|
+
"Button--large": "Button_Button--large",
|
|
29180
|
+
"Button-icon": "Button_Button-icon",
|
|
29181
|
+
"Button--primary": "Button_Button--primary",
|
|
29182
|
+
"Button--secondary": "Button_Button--secondary",
|
|
29183
|
+
"Button--flush": "Button_Button--flush",
|
|
29184
|
+
"Button--disabled": "Button_Button--disabled",
|
|
29185
|
+
"Button--fullWidth": "Button_Button--fullWidth",
|
|
29186
|
+
"Button-spinner": "Button_Button-spinner"
|
|
29187
|
+
};
|
|
29177
29188
|
|
|
29178
29189
|
// lib/get-class-name-factory.ts
|
|
29179
29190
|
init_react_import();
|
|
@@ -29210,7 +29221,7 @@ var get_class_name_factory_default = getClassNameFactory;
|
|
|
29210
29221
|
// components/Button/Button.tsx
|
|
29211
29222
|
var import_react_spinners = require("react-spinners");
|
|
29212
29223
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
29213
|
-
var getClassName = get_class_name_factory_default("Button",
|
|
29224
|
+
var getClassName = get_class_name_factory_default("Button", Button_default);
|
|
29214
29225
|
var Button = ({
|
|
29215
29226
|
children,
|
|
29216
29227
|
href,
|
|
@@ -29264,16 +29275,190 @@ var Button = ({
|
|
|
29264
29275
|
|
|
29265
29276
|
// components/Drawer/index.tsx
|
|
29266
29277
|
init_react_import();
|
|
29267
|
-
var import_dnd2 = require("@hello-pangea/dnd");
|
|
29268
29278
|
|
|
29269
|
-
//
|
|
29279
|
+
// components/Droppable/index.tsx
|
|
29270
29280
|
init_react_import();
|
|
29271
|
-
var
|
|
29281
|
+
var import_dnd = require("@measured/dnd");
|
|
29272
29282
|
|
|
29273
|
-
// components/
|
|
29283
|
+
// components/Puck/context.tsx
|
|
29284
|
+
init_react_import();
|
|
29285
|
+
var import_react3 = require("react");
|
|
29286
|
+
|
|
29287
|
+
// lib/get-item.ts
|
|
29288
|
+
init_react_import();
|
|
29289
|
+
|
|
29290
|
+
// lib/root-droppable-id.ts
|
|
29291
|
+
init_react_import();
|
|
29292
|
+
var rootDroppableId = "default-zone";
|
|
29293
|
+
|
|
29294
|
+
// lib/setup-zone.ts
|
|
29274
29295
|
init_react_import();
|
|
29275
|
-
var
|
|
29296
|
+
var setupZone = (data, zoneKey) => {
|
|
29297
|
+
if (zoneKey === rootDroppableId) {
|
|
29298
|
+
return data;
|
|
29299
|
+
}
|
|
29300
|
+
const newData = __spreadValues({}, data);
|
|
29301
|
+
newData.zones = data.zones || {};
|
|
29302
|
+
newData.zones[zoneKey] = newData.zones[zoneKey] || [];
|
|
29303
|
+
return newData;
|
|
29304
|
+
};
|
|
29305
|
+
|
|
29306
|
+
// lib/get-item.ts
|
|
29307
|
+
var getItem = (selector, data, dynamicProps = {}) => {
|
|
29308
|
+
if (!selector.zone || selector.zone === rootDroppableId) {
|
|
29309
|
+
const item2 = data.content[selector.index];
|
|
29310
|
+
return __spreadProps(__spreadValues({}, item2), { props: dynamicProps[item2.props.id] || item2.props });
|
|
29311
|
+
}
|
|
29312
|
+
const item = setupZone(data, selector.zone).zones[selector.zone][selector.index];
|
|
29313
|
+
return __spreadProps(__spreadValues({}, item), { props: dynamicProps[item.props.id] || item.props });
|
|
29314
|
+
};
|
|
29315
|
+
|
|
29316
|
+
// components/ViewportControls/default-viewports.ts
|
|
29317
|
+
init_react_import();
|
|
29318
|
+
var defaultViewports = [
|
|
29319
|
+
{ width: 360, height: "auto", icon: "Smartphone", label: "Small" },
|
|
29320
|
+
{ width: 768, height: "auto", icon: "Tablet", label: "Medium" },
|
|
29321
|
+
{ width: 1280, height: "auto", icon: "Monitor", label: "Large" }
|
|
29322
|
+
];
|
|
29323
|
+
|
|
29324
|
+
// components/Puck/context.tsx
|
|
29276
29325
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
29326
|
+
var defaultAppState = {
|
|
29327
|
+
data: { content: [], root: { props: { title: "" } } },
|
|
29328
|
+
ui: {
|
|
29329
|
+
leftSideBarVisible: true,
|
|
29330
|
+
rightSideBarVisible: true,
|
|
29331
|
+
arrayState: {},
|
|
29332
|
+
itemSelector: null,
|
|
29333
|
+
componentList: {},
|
|
29334
|
+
isDragging: false,
|
|
29335
|
+
viewports: {
|
|
29336
|
+
current: {
|
|
29337
|
+
width: defaultViewports[0].width,
|
|
29338
|
+
height: defaultViewports[0].height || "auto"
|
|
29339
|
+
},
|
|
29340
|
+
options: [],
|
|
29341
|
+
controlsVisible: true
|
|
29342
|
+
}
|
|
29343
|
+
}
|
|
29344
|
+
};
|
|
29345
|
+
var defaultContext = {
|
|
29346
|
+
state: defaultAppState,
|
|
29347
|
+
dispatch: () => null,
|
|
29348
|
+
config: { components: {} },
|
|
29349
|
+
componentState: {},
|
|
29350
|
+
resolveData: () => {
|
|
29351
|
+
},
|
|
29352
|
+
plugins: [],
|
|
29353
|
+
overrides: {},
|
|
29354
|
+
history: {},
|
|
29355
|
+
viewports: defaultViewports,
|
|
29356
|
+
zoomConfig: {
|
|
29357
|
+
autoZoom: 1,
|
|
29358
|
+
rootHeight: 0,
|
|
29359
|
+
zoom: 1
|
|
29360
|
+
},
|
|
29361
|
+
setZoomConfig: () => null,
|
|
29362
|
+
status: "LOADING",
|
|
29363
|
+
setStatus: () => null,
|
|
29364
|
+
iframe: {}
|
|
29365
|
+
};
|
|
29366
|
+
var appContext = (0, import_react3.createContext)(defaultContext);
|
|
29367
|
+
var AppProvider = ({
|
|
29368
|
+
children,
|
|
29369
|
+
value
|
|
29370
|
+
}) => {
|
|
29371
|
+
const [zoomConfig, setZoomConfig] = (0, import_react3.useState)(defaultContext.zoomConfig);
|
|
29372
|
+
const [status, setStatus] = (0, import_react3.useState)("LOADING");
|
|
29373
|
+
(0, import_react3.useEffect)(() => {
|
|
29374
|
+
setStatus("MOUNTED");
|
|
29375
|
+
}, []);
|
|
29376
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
29377
|
+
appContext.Provider,
|
|
29378
|
+
{
|
|
29379
|
+
value: __spreadProps(__spreadValues({}, value), { zoomConfig, setZoomConfig, status, setStatus }),
|
|
29380
|
+
children
|
|
29381
|
+
}
|
|
29382
|
+
);
|
|
29383
|
+
};
|
|
29384
|
+
function useAppContext() {
|
|
29385
|
+
const mainContext = (0, import_react3.useContext)(appContext);
|
|
29386
|
+
const selectedItem = mainContext.state.ui.itemSelector ? getItem(mainContext.state.ui.itemSelector, mainContext.state.data) : void 0;
|
|
29387
|
+
return __spreadProps(__spreadValues({}, mainContext), {
|
|
29388
|
+
// Helpers
|
|
29389
|
+
selectedItem,
|
|
29390
|
+
setUi: (ui, recordHistory) => {
|
|
29391
|
+
return mainContext.dispatch({
|
|
29392
|
+
type: "setUi",
|
|
29393
|
+
ui,
|
|
29394
|
+
recordHistory
|
|
29395
|
+
});
|
|
29396
|
+
}
|
|
29397
|
+
});
|
|
29398
|
+
}
|
|
29399
|
+
|
|
29400
|
+
// components/Droppable/index.tsx
|
|
29401
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
29402
|
+
var defaultProvided = {
|
|
29403
|
+
droppableProps: {
|
|
29404
|
+
"data-rfd-droppable-context-id": "",
|
|
29405
|
+
"data-rfd-droppable-id": ""
|
|
29406
|
+
},
|
|
29407
|
+
placeholder: null,
|
|
29408
|
+
innerRef: () => null
|
|
29409
|
+
};
|
|
29410
|
+
var defaultSnapshot = {
|
|
29411
|
+
isDraggingOver: false,
|
|
29412
|
+
draggingOverWith: null,
|
|
29413
|
+
draggingFromThisWith: null,
|
|
29414
|
+
isUsingPlaceholder: false
|
|
29415
|
+
};
|
|
29416
|
+
var DefaultDroppable = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_jsx_runtime3.Fragment, { children: children(defaultProvided, defaultSnapshot) });
|
|
29417
|
+
var Droppable = (props) => {
|
|
29418
|
+
const { status } = useAppContext();
|
|
29419
|
+
const El = status !== "LOADING" ? import_dnd.Droppable : DefaultDroppable;
|
|
29420
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(El, __spreadValues({}, props));
|
|
29421
|
+
};
|
|
29422
|
+
|
|
29423
|
+
// components/Drawer/styles.module.css
|
|
29424
|
+
var styles_default = {
|
|
29425
|
+
Drawer: "styles_Drawer",
|
|
29426
|
+
"DrawerItem-default": "styles_DrawerItem-default",
|
|
29427
|
+
"DrawerItem-draggableWrapper": "styles_DrawerItem-draggableWrapper",
|
|
29428
|
+
DrawerItem: "styles_DrawerItem",
|
|
29429
|
+
"DrawerItem-draggable": "styles_DrawerItem-draggable",
|
|
29430
|
+
"Drawer--isDraggingFrom": "styles_Drawer--isDraggingFrom",
|
|
29431
|
+
"DrawerItem-name": "styles_DrawerItem-name"
|
|
29432
|
+
};
|
|
29433
|
+
|
|
29434
|
+
// components/Draggable/index.tsx
|
|
29435
|
+
init_react_import();
|
|
29436
|
+
var import_dnd2 = require("@measured/dnd");
|
|
29437
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
29438
|
+
var defaultProvided2 = {
|
|
29439
|
+
draggableProps: {
|
|
29440
|
+
"data-rfd-draggable-context-id": "",
|
|
29441
|
+
"data-rfd-draggable-id": ""
|
|
29442
|
+
},
|
|
29443
|
+
dragHandleProps: null,
|
|
29444
|
+
innerRef: () => null
|
|
29445
|
+
};
|
|
29446
|
+
var defaultSnapshot2 = {
|
|
29447
|
+
isDragging: false,
|
|
29448
|
+
isDropAnimating: false,
|
|
29449
|
+
isClone: false,
|
|
29450
|
+
dropAnimation: null,
|
|
29451
|
+
draggingOver: null,
|
|
29452
|
+
combineWith: null,
|
|
29453
|
+
combineTargetFor: null,
|
|
29454
|
+
mode: null
|
|
29455
|
+
};
|
|
29456
|
+
var defaultRubric = {
|
|
29457
|
+
draggableId: "",
|
|
29458
|
+
type: "",
|
|
29459
|
+
source: { droppableId: "", index: 0 }
|
|
29460
|
+
};
|
|
29461
|
+
var DefaultDraggable = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_jsx_runtime4.Fragment, { children: children(defaultProvided2, defaultSnapshot2, defaultRubric) });
|
|
29277
29462
|
var Draggable = ({
|
|
29278
29463
|
className,
|
|
29279
29464
|
children,
|
|
@@ -29283,39 +29468,33 @@ var Draggable = ({
|
|
|
29283
29468
|
disableAnimations = false,
|
|
29284
29469
|
isDragDisabled = false
|
|
29285
29470
|
}) => {
|
|
29286
|
-
|
|
29287
|
-
|
|
29288
|
-
|
|
29289
|
-
|
|
29290
|
-
|
|
29291
|
-
|
|
29292
|
-
|
|
29293
|
-
|
|
29294
|
-
|
|
29295
|
-
|
|
29296
|
-
|
|
29297
|
-
|
|
29298
|
-
|
|
29299
|
-
|
|
29300
|
-
|
|
29301
|
-
|
|
29302
|
-
|
|
29303
|
-
|
|
29304
|
-
|
|
29305
|
-
|
|
29306
|
-
),
|
|
29307
|
-
|
|
29308
|
-
|
|
29309
|
-
|
|
29310
|
-
|
|
29311
|
-
|
|
29312
|
-
|
|
29313
|
-
}
|
|
29314
|
-
)
|
|
29315
|
-
] });
|
|
29316
|
-
}
|
|
29317
|
-
}
|
|
29318
|
-
);
|
|
29471
|
+
const { status } = useAppContext();
|
|
29472
|
+
const El = status !== "LOADING" ? import_dnd2.Draggable : DefaultDraggable;
|
|
29473
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(El, { draggableId: id, index, isDragDisabled, children: (provided, snapshot) => {
|
|
29474
|
+
var _a;
|
|
29475
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
29476
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
29477
|
+
"div",
|
|
29478
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
29479
|
+
className: className && className(provided, snapshot),
|
|
29480
|
+
ref: provided.innerRef
|
|
29481
|
+
}, provided.draggableProps), provided.dragHandleProps), {
|
|
29482
|
+
style: __spreadProps(__spreadValues({}, provided.draggableProps.style), {
|
|
29483
|
+
transform: snapshot.isDragging || !disableAnimations ? (_a = provided.draggableProps.style) == null ? void 0 : _a.transform : "translate(0px, 0px)"
|
|
29484
|
+
}),
|
|
29485
|
+
children: children(provided, snapshot)
|
|
29486
|
+
})
|
|
29487
|
+
),
|
|
29488
|
+
showShadow && snapshot.isDragging && /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
29489
|
+
"div",
|
|
29490
|
+
{
|
|
29491
|
+
className: className && className(provided, snapshot),
|
|
29492
|
+
style: { transform: "none !important" },
|
|
29493
|
+
children: children(provided, snapshot)
|
|
29494
|
+
}
|
|
29495
|
+
)
|
|
29496
|
+
] });
|
|
29497
|
+
} });
|
|
29319
29498
|
};
|
|
29320
29499
|
|
|
29321
29500
|
// components/DragIcon/index.tsx
|
|
@@ -29345,28 +29524,29 @@ var replace = (list, index, newItem) => {
|
|
|
29345
29524
|
return result;
|
|
29346
29525
|
};
|
|
29347
29526
|
|
|
29348
|
-
//
|
|
29349
|
-
|
|
29350
|
-
|
|
29527
|
+
// components/DragIcon/styles.module.css
|
|
29528
|
+
var styles_default2 = {
|
|
29529
|
+
DragIcon: "styles_DragIcon"
|
|
29530
|
+
};
|
|
29351
29531
|
|
|
29352
29532
|
// components/DragIcon/index.tsx
|
|
29353
|
-
var
|
|
29354
|
-
var getClassName2 = get_class_name_factory_default("DragIcon",
|
|
29355
|
-
var DragIcon = () => /* @__PURE__ */ (0,
|
|
29533
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
29534
|
+
var getClassName2 = get_class_name_factory_default("DragIcon", styles_default2);
|
|
29535
|
+
var DragIcon = () => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: getClassName2(), children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("svg", { viewBox: "0 0 20 20", width: "12", fill: "currentColor", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M7 2a2 2 0 1 0 .001 4.001A2 2 0 0 0 7 2zm0 6a2 2 0 1 0 .001 4.001A2 2 0 0 0 7 8zm0 6a2 2 0 1 0 .001 4.001A2 2 0 0 0 7 14zm6-8a2 2 0 1 0-.001-4.001A2 2 0 0 0 13 6zm0 2a2 2 0 1 0 .001 4.001A2 2 0 0 0 13 8zm0 6a2 2 0 1 0 .001 4.001A2 2 0 0 0 13 14z" }) }) });
|
|
29356
29536
|
|
|
29357
29537
|
// components/Drawer/index.tsx
|
|
29358
|
-
var
|
|
29359
|
-
var
|
|
29360
|
-
var getClassName3 = get_class_name_factory_default("Drawer",
|
|
29361
|
-
var getClassNameItem = get_class_name_factory_default("DrawerItem",
|
|
29362
|
-
var drawerContext = (0,
|
|
29538
|
+
var import_react4 = require("react");
|
|
29539
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
29540
|
+
var getClassName3 = get_class_name_factory_default("Drawer", styles_default);
|
|
29541
|
+
var getClassNameItem = get_class_name_factory_default("DrawerItem", styles_default);
|
|
29542
|
+
var drawerContext = (0, import_react4.createContext)({
|
|
29363
29543
|
droppableId: ""
|
|
29364
29544
|
});
|
|
29365
29545
|
var DrawerDraggable = ({
|
|
29366
29546
|
children,
|
|
29367
29547
|
id,
|
|
29368
29548
|
index
|
|
29369
|
-
}) => /* @__PURE__ */ (0,
|
|
29549
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
29370
29550
|
Draggable,
|
|
29371
29551
|
{
|
|
29372
29552
|
id,
|
|
@@ -29382,17 +29562,18 @@ var DrawerItem = ({
|
|
|
29382
29562
|
name,
|
|
29383
29563
|
children,
|
|
29384
29564
|
id,
|
|
29565
|
+
label,
|
|
29385
29566
|
index
|
|
29386
29567
|
}) => {
|
|
29387
|
-
const ctx = (0,
|
|
29568
|
+
const ctx = (0, import_react4.useContext)(drawerContext);
|
|
29388
29569
|
const resolvedId = `${ctx.droppableId}::${id || name}`;
|
|
29389
|
-
const CustomInner = (0,
|
|
29390
|
-
() => children || (({ children: children2 }) => /* @__PURE__ */ (0,
|
|
29570
|
+
const CustomInner = (0, import_react4.useMemo)(
|
|
29571
|
+
() => children || (({ children: children2, name: name2 }) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: getClassNameItem("default"), children: children2 })),
|
|
29391
29572
|
[children]
|
|
29392
29573
|
);
|
|
29393
|
-
return /* @__PURE__ */ (0,
|
|
29394
|
-
/* @__PURE__ */ (0,
|
|
29395
|
-
/* @__PURE__ */ (0,
|
|
29574
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(DrawerDraggable, { id: resolvedId, index, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(CustomInner, { name, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: getClassNameItem("draggableWrapper"), children: /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)("div", { className: getClassNameItem("draggable"), children: [
|
|
29575
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: getClassNameItem("name"), children: label != null ? label : name }),
|
|
29576
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: getClassNameItem("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(DragIcon, {}) })
|
|
29396
29577
|
] }) }) }) });
|
|
29397
29578
|
};
|
|
29398
29579
|
var Drawer = ({
|
|
@@ -29400,7 +29581,7 @@ var Drawer = ({
|
|
|
29400
29581
|
droppableId = "component-list",
|
|
29401
29582
|
direction = "vertical"
|
|
29402
29583
|
}) => {
|
|
29403
|
-
return /* @__PURE__ */ (0,
|
|
29584
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(drawerContext.Provider, { value: { droppableId }, children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Droppable, { droppableId, isDropDisabled: true, direction, children: (provided, snapshot) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
29404
29585
|
"div",
|
|
29405
29586
|
__spreadProps(__spreadValues({}, provided.droppableProps), {
|
|
29406
29587
|
ref: provided.innerRef,
|
|
@@ -29409,7 +29590,7 @@ var Drawer = ({
|
|
|
29409
29590
|
}),
|
|
29410
29591
|
children: [
|
|
29411
29592
|
children,
|
|
29412
|
-
/* @__PURE__ */ (0,
|
|
29593
|
+
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", { style: { display: "none" }, children: provided.placeholder })
|
|
29413
29594
|
]
|
|
29414
29595
|
})
|
|
29415
29596
|
) }) });
|
|
@@ -29422,19 +29603,32 @@ var import_react9 = require("react");
|
|
|
29422
29603
|
|
|
29423
29604
|
// components/DraggableComponent/index.tsx
|
|
29424
29605
|
init_react_import();
|
|
29425
|
-
var
|
|
29426
|
-
var import_dnd3 = require("@
|
|
29606
|
+
var import_react7 = require("react");
|
|
29607
|
+
var import_dnd3 = require("@measured/dnd");
|
|
29427
29608
|
|
|
29428
|
-
//
|
|
29429
|
-
|
|
29430
|
-
|
|
29609
|
+
// components/DraggableComponent/styles.module.css
|
|
29610
|
+
var styles_default3 = {
|
|
29611
|
+
DraggableComponent: "styles_DraggableComponent",
|
|
29612
|
+
"DraggableComponent--isDragging": "styles_DraggableComponent--isDragging",
|
|
29613
|
+
"DraggableComponent-contents": "styles_DraggableComponent-contents",
|
|
29614
|
+
"DraggableComponent-overlay": "styles_DraggableComponent-overlay",
|
|
29615
|
+
"DraggableComponent-loadingOverlay": "styles_DraggableComponent-loadingOverlay",
|
|
29616
|
+
"DraggableComponent--isLocked": "styles_DraggableComponent--isLocked",
|
|
29617
|
+
"DraggableComponent--forceHover": "styles_DraggableComponent--forceHover",
|
|
29618
|
+
"DraggableComponent--isSelected": "styles_DraggableComponent--isSelected",
|
|
29619
|
+
"DraggableComponent--indicativeHover": "styles_DraggableComponent--indicativeHover",
|
|
29620
|
+
"DraggableComponent-actionsOverlay": "styles_DraggableComponent-actionsOverlay",
|
|
29621
|
+
"DraggableComponent-actions": "styles_DraggableComponent-actions",
|
|
29622
|
+
"DraggableComponent-actionsLabel": "styles_DraggableComponent-actionsLabel",
|
|
29623
|
+
"DraggableComponent-action": "styles_DraggableComponent-action"
|
|
29624
|
+
};
|
|
29431
29625
|
|
|
29432
29626
|
// ../../node_modules/lucide-react/dist/esm/lucide-react.js
|
|
29433
29627
|
init_react_import();
|
|
29434
29628
|
|
|
29435
29629
|
// ../../node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
29436
29630
|
init_react_import();
|
|
29437
|
-
var
|
|
29631
|
+
var import_react5 = require("react");
|
|
29438
29632
|
|
|
29439
29633
|
// ../../node_modules/lucide-react/dist/esm/defaultAttributes.js
|
|
29440
29634
|
init_react_import();
|
|
@@ -29453,10 +29647,10 @@ var defaultAttributes = {
|
|
|
29453
29647
|
// ../../node_modules/lucide-react/dist/esm/createLucideIcon.js
|
|
29454
29648
|
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().trim();
|
|
29455
29649
|
var createLucideIcon = (iconName, iconNode) => {
|
|
29456
|
-
const Component = (0,
|
|
29650
|
+
const Component = (0, import_react5.forwardRef)(
|
|
29457
29651
|
(_a, ref) => {
|
|
29458
29652
|
var _b = _a, { color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children } = _b, rest = __objRest(_b, ["color", "size", "strokeWidth", "absoluteStrokeWidth", "className", "children"]);
|
|
29459
|
-
return (0,
|
|
29653
|
+
return (0, import_react5.createElement)(
|
|
29460
29654
|
"svg",
|
|
29461
29655
|
__spreadValues(__spreadProps(__spreadValues({
|
|
29462
29656
|
ref
|
|
@@ -29468,7 +29662,7 @@ var createLucideIcon = (iconName, iconNode) => {
|
|
|
29468
29662
|
className: ["lucide", `lucide-${toKebabCase(iconName)}`, className].join(" ")
|
|
29469
29663
|
}), rest),
|
|
29470
29664
|
[
|
|
29471
|
-
...iconNode.map(([tag, attrs]) => (0,
|
|
29665
|
+
...iconNode.map(([tag, attrs]) => (0, import_react5.createElement)(tag, attrs)),
|
|
29472
29666
|
...Array.isArray(children) ? children : [children]
|
|
29473
29667
|
]
|
|
29474
29668
|
);
|
|
@@ -29579,6 +29773,14 @@ var Lock = createLucideIcon("Lock", [
|
|
|
29579
29773
|
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4", key: "fwvmzm" }]
|
|
29580
29774
|
]);
|
|
29581
29775
|
|
|
29776
|
+
// ../../node_modules/lucide-react/dist/esm/icons/monitor.js
|
|
29777
|
+
init_react_import();
|
|
29778
|
+
var Monitor = createLucideIcon("Monitor", [
|
|
29779
|
+
["rect", { width: "20", height: "14", x: "2", y: "3", rx: "2", key: "48i651" }],
|
|
29780
|
+
["line", { x1: "8", x2: "16", y1: "21", y2: "21", key: "1svkeh" }],
|
|
29781
|
+
["line", { x1: "12", x2: "12", y1: "17", y2: "21", key: "vw1qmm" }]
|
|
29782
|
+
]);
|
|
29783
|
+
|
|
29582
29784
|
// ../../node_modules/lucide-react/dist/esm/icons/more-vertical.js
|
|
29583
29785
|
init_react_import();
|
|
29584
29786
|
var MoreVertical = createLucideIcon("MoreVertical", [
|
|
@@ -29629,6 +29831,20 @@ var SlidersHorizontal = createLucideIcon("SlidersHorizontal", [
|
|
|
29629
29831
|
["line", { x1: "16", x2: "16", y1: "18", y2: "22", key: "1lctlv" }]
|
|
29630
29832
|
]);
|
|
29631
29833
|
|
|
29834
|
+
// ../../node_modules/lucide-react/dist/esm/icons/smartphone.js
|
|
29835
|
+
init_react_import();
|
|
29836
|
+
var Smartphone = createLucideIcon("Smartphone", [
|
|
29837
|
+
["rect", { width: "14", height: "20", x: "5", y: "2", rx: "2", ry: "2", key: "1yt0o3" }],
|
|
29838
|
+
["path", { d: "M12 18h.01", key: "mhygvu" }]
|
|
29839
|
+
]);
|
|
29840
|
+
|
|
29841
|
+
// ../../node_modules/lucide-react/dist/esm/icons/tablet.js
|
|
29842
|
+
init_react_import();
|
|
29843
|
+
var Tablet = createLucideIcon("Tablet", [
|
|
29844
|
+
["rect", { width: "16", height: "20", x: "4", y: "2", rx: "2", ry: "2", key: "76otgf" }],
|
|
29845
|
+
["line", { x1: "12", x2: "12.01", y1: "18", y2: "18", key: "1dp563" }]
|
|
29846
|
+
]);
|
|
29847
|
+
|
|
29632
29848
|
// ../../node_modules/lucide-react/dist/esm/icons/trash.js
|
|
29633
29849
|
init_react_import();
|
|
29634
29850
|
var Trash = createLucideIcon("Trash", [
|
|
@@ -29652,12 +29868,29 @@ var Unlock = createLucideIcon("Unlock", [
|
|
|
29652
29868
|
["path", { d: "M7 11V7a5 5 0 0 1 9.9-1", key: "1mm8w8" }]
|
|
29653
29869
|
]);
|
|
29654
29870
|
|
|
29871
|
+
// ../../node_modules/lucide-react/dist/esm/icons/zoom-in.js
|
|
29872
|
+
init_react_import();
|
|
29873
|
+
var ZoomIn = createLucideIcon("ZoomIn", [
|
|
29874
|
+
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
29875
|
+
["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65", key: "13gj7c" }],
|
|
29876
|
+
["line", { x1: "11", x2: "11", y1: "8", y2: "14", key: "1vmskp" }],
|
|
29877
|
+
["line", { x1: "8", x2: "14", y1: "11", y2: "11", key: "durymu" }]
|
|
29878
|
+
]);
|
|
29879
|
+
|
|
29880
|
+
// ../../node_modules/lucide-react/dist/esm/icons/zoom-out.js
|
|
29881
|
+
init_react_import();
|
|
29882
|
+
var ZoomOut = createLucideIcon("ZoomOut", [
|
|
29883
|
+
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
29884
|
+
["line", { x1: "21", x2: "16.65", y1: "21", y2: "16.65", key: "13gj7c" }],
|
|
29885
|
+
["line", { x1: "8", x2: "14", y1: "11", y2: "11", key: "durymu" }]
|
|
29886
|
+
]);
|
|
29887
|
+
|
|
29655
29888
|
// lib/use-modifier-held.ts
|
|
29656
29889
|
init_react_import();
|
|
29657
|
-
var
|
|
29890
|
+
var import_react6 = require("react");
|
|
29658
29891
|
var useModifierHeld = (modifier) => {
|
|
29659
|
-
const [modifierHeld, setModifierHeld] = (0,
|
|
29660
|
-
(0,
|
|
29892
|
+
const [modifierHeld, setModifierHeld] = (0, import_react6.useState)(false);
|
|
29893
|
+
(0, import_react6.useEffect)(() => {
|
|
29661
29894
|
function downHandler({ key }) {
|
|
29662
29895
|
if (key === modifier) {
|
|
29663
29896
|
setModifierHeld(true);
|
|
@@ -29680,8 +29913,12 @@ var useModifierHeld = (modifier) => {
|
|
|
29680
29913
|
|
|
29681
29914
|
// components/DraggableComponent/index.tsx
|
|
29682
29915
|
var import_react_spinners2 = require("react-spinners");
|
|
29683
|
-
var
|
|
29684
|
-
var getClassName4 = get_class_name_factory_default("DraggableComponent",
|
|
29916
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
29917
|
+
var getClassName4 = get_class_name_factory_default("DraggableComponent", styles_default3);
|
|
29918
|
+
var space = 8;
|
|
29919
|
+
var actionsOverlayTop = space * 6.5;
|
|
29920
|
+
var actionsTop = -(actionsOverlayTop - 8);
|
|
29921
|
+
var actionsRight = space;
|
|
29685
29922
|
var DraggableComponent = ({
|
|
29686
29923
|
children,
|
|
29687
29924
|
id,
|
|
@@ -29704,91 +29941,87 @@ var DraggableComponent = ({
|
|
|
29704
29941
|
indicativeHover = false,
|
|
29705
29942
|
style
|
|
29706
29943
|
}) => {
|
|
29944
|
+
const { zoomConfig } = useAppContext();
|
|
29707
29945
|
const isModifierHeld = useModifierHeld("Alt");
|
|
29708
|
-
|
|
29709
|
-
|
|
29710
|
-
|
|
29711
|
-
|
|
29712
|
-
|
|
29713
|
-
|
|
29714
|
-
|
|
29715
|
-
|
|
29716
|
-
|
|
29717
|
-
|
|
29718
|
-
|
|
29719
|
-
|
|
29720
|
-
|
|
29721
|
-
|
|
29722
|
-
|
|
29723
|
-
|
|
29724
|
-
|
|
29725
|
-
|
|
29726
|
-
|
|
29727
|
-
|
|
29728
|
-
|
|
29729
|
-
|
|
29730
|
-
|
|
29731
|
-
|
|
29732
|
-
|
|
29733
|
-
|
|
29734
|
-
|
|
29735
|
-
|
|
29736
|
-
|
|
29737
|
-
|
|
29738
|
-
|
|
29739
|
-
|
|
29740
|
-
|
|
29741
|
-
|
|
29742
|
-
|
|
29743
|
-
|
|
29744
|
-
|
|
29745
|
-
|
|
29746
|
-
|
|
29747
|
-
|
|
29748
|
-
|
|
29749
|
-
|
|
29750
|
-
|
|
29946
|
+
const { status } = useAppContext();
|
|
29947
|
+
const El = status !== "LOADING" ? import_dnd3.Draggable : DefaultDraggable;
|
|
29948
|
+
(0, import_react7.useEffect)(onMount, []);
|
|
29949
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(El, { draggableId: id, index, isDragDisabled, children: (provided, snapshot) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
29950
|
+
"div",
|
|
29951
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
29952
|
+
ref: provided.innerRef
|
|
29953
|
+
}, provided.draggableProps), provided.dragHandleProps), {
|
|
29954
|
+
className: getClassName4({
|
|
29955
|
+
isSelected,
|
|
29956
|
+
isModifierHeld,
|
|
29957
|
+
isDragging: snapshot.isDragging,
|
|
29958
|
+
isLocked,
|
|
29959
|
+
forceHover,
|
|
29960
|
+
indicativeHover
|
|
29961
|
+
}),
|
|
29962
|
+
style: __spreadProps(__spreadValues(__spreadValues({}, style), provided.draggableProps.style), {
|
|
29963
|
+
cursor: isModifierHeld ? "initial" : "grab"
|
|
29964
|
+
}),
|
|
29965
|
+
onMouseOver,
|
|
29966
|
+
onMouseOut,
|
|
29967
|
+
onMouseDown,
|
|
29968
|
+
onMouseUp,
|
|
29969
|
+
onClick,
|
|
29970
|
+
children: [
|
|
29971
|
+
debug,
|
|
29972
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: getClassName4("loadingOverlay"), children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_react_spinners2.ClipLoader, { "aria-label": "loading", size: 16, color: "inherit" }) }),
|
|
29973
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
29974
|
+
"div",
|
|
29975
|
+
{
|
|
29976
|
+
className: getClassName4("actionsOverlay"),
|
|
29977
|
+
style: {
|
|
29978
|
+
top: actionsOverlayTop / zoomConfig.zoom
|
|
29979
|
+
},
|
|
29980
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
29981
|
+
"div",
|
|
29982
|
+
{
|
|
29983
|
+
className: getClassName4("actions"),
|
|
29984
|
+
style: {
|
|
29985
|
+
transform: `scale(${1 / zoomConfig.zoom}`,
|
|
29986
|
+
top: actionsTop / zoomConfig.zoom,
|
|
29987
|
+
right: actionsRight / zoomConfig.zoom
|
|
29988
|
+
},
|
|
29989
|
+
children: [
|
|
29990
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: getClassName4("actionsLabel"), children: label }),
|
|
29991
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: getClassName4("action"), onClick: onDuplicate, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Copy, { size: 16 }) }),
|
|
29992
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("button", { className: getClassName4("action"), onClick: onDelete, children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Trash, { size: 16 }) })
|
|
29993
|
+
]
|
|
29994
|
+
}
|
|
29995
|
+
)
|
|
29996
|
+
}
|
|
29997
|
+
),
|
|
29998
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: getClassName4("overlay") }),
|
|
29999
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: getClassName4("contents"), children })
|
|
30000
|
+
]
|
|
30001
|
+
})
|
|
30002
|
+
) }, id);
|
|
29751
30003
|
};
|
|
29752
30004
|
|
|
29753
|
-
// components/DropZone/
|
|
29754
|
-
var
|
|
29755
|
-
|
|
29756
|
-
|
|
29757
|
-
|
|
29758
|
-
|
|
29759
|
-
|
|
29760
|
-
|
|
29761
|
-
|
|
29762
|
-
|
|
29763
|
-
|
|
29764
|
-
|
|
29765
|
-
|
|
29766
|
-
|
|
29767
|
-
|
|
29768
|
-
}
|
|
29769
|
-
const newData = __spreadValues({}, data);
|
|
29770
|
-
newData.zones = data.zones || {};
|
|
29771
|
-
newData.zones[zoneKey] = newData.zones[zoneKey] || [];
|
|
29772
|
-
return newData;
|
|
30005
|
+
// components/DropZone/styles.module.css
|
|
30006
|
+
var styles_default4 = {
|
|
30007
|
+
DropZone: "styles_DropZone",
|
|
30008
|
+
"DropZone-content": "styles_DropZone-content",
|
|
30009
|
+
"DropZone--userIsDragging": "styles_DropZone--userIsDragging",
|
|
30010
|
+
"DropZone--draggingOverArea": "styles_DropZone--draggingOverArea",
|
|
30011
|
+
"DropZone--draggingNewComponent": "styles_DropZone--draggingNewComponent",
|
|
30012
|
+
"DropZone--isAreaSelected": "styles_DropZone--isAreaSelected",
|
|
30013
|
+
"DropZone--hoveringOverArea": "styles_DropZone--hoveringOverArea",
|
|
30014
|
+
"DropZone--isDisabled": "styles_DropZone--isDisabled",
|
|
30015
|
+
"DropZone--isRootZone": "styles_DropZone--isRootZone",
|
|
30016
|
+
"DropZone--hasChildren": "styles_DropZone--hasChildren",
|
|
30017
|
+
"DropZone--isDestination": "styles_DropZone--isDestination",
|
|
30018
|
+
"DropZone-item": "styles_DropZone-item",
|
|
30019
|
+
"DropZone-hitbox": "styles_DropZone-hitbox"
|
|
29773
30020
|
};
|
|
29774
30021
|
|
|
29775
|
-
// lib/get-item.ts
|
|
29776
|
-
var getItem = (selector, data, dynamicProps = {}) => {
|
|
29777
|
-
if (!selector.zone || selector.zone === rootDroppableId) {
|
|
29778
|
-
const item2 = data.content[selector.index];
|
|
29779
|
-
return __spreadProps(__spreadValues({}, item2), { props: dynamicProps[item2.props.id] || item2.props });
|
|
29780
|
-
}
|
|
29781
|
-
const item = setupZone(data, selector.zone).zones[selector.zone][selector.index];
|
|
29782
|
-
return __spreadProps(__spreadValues({}, item), { props: dynamicProps[item.props.id] || item.props });
|
|
29783
|
-
};
|
|
29784
|
-
|
|
29785
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/DropZone/styles.module.css#css-module
|
|
29786
|
-
init_react_import();
|
|
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" };
|
|
29788
|
-
|
|
29789
30022
|
// components/DropZone/context.tsx
|
|
29790
30023
|
init_react_import();
|
|
29791
|
-
var
|
|
30024
|
+
var import_react8 = require("react");
|
|
29792
30025
|
var import_use_debounce = require("use-debounce");
|
|
29793
30026
|
|
|
29794
30027
|
// lib/get-zone-id.ts
|
|
@@ -29804,30 +30037,30 @@ var getZoneId = (zoneCompound) => {
|
|
|
29804
30037
|
};
|
|
29805
30038
|
|
|
29806
30039
|
// components/DropZone/context.tsx
|
|
29807
|
-
var
|
|
29808
|
-
var dropZoneContext = (0,
|
|
30040
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
30041
|
+
var dropZoneContext = (0, import_react8.createContext)(null);
|
|
29809
30042
|
var DropZoneProvider = ({
|
|
29810
30043
|
children,
|
|
29811
30044
|
value
|
|
29812
30045
|
}) => {
|
|
29813
|
-
const [hoveringArea, setHoveringArea] = (0,
|
|
29814
|
-
const [hoveringZone, setHoveringZone] = (0,
|
|
30046
|
+
const [hoveringArea, setHoveringArea] = (0, import_react8.useState)(null);
|
|
30047
|
+
const [hoveringZone, setHoveringZone] = (0, import_react8.useState)(
|
|
29815
30048
|
rootDroppableId
|
|
29816
30049
|
);
|
|
29817
|
-
const [hoveringComponent, setHoveringComponent] = (0,
|
|
30050
|
+
const [hoveringComponent, setHoveringComponent] = (0, import_react8.useState)();
|
|
29818
30051
|
const [hoveringAreaDb] = (0, import_use_debounce.useDebounce)(hoveringArea, 75, { leading: false });
|
|
29819
|
-
const [areasWithZones, setAreasWithZones] = (0,
|
|
30052
|
+
const [areasWithZones, setAreasWithZones] = (0, import_react8.useState)(
|
|
29820
30053
|
{}
|
|
29821
30054
|
);
|
|
29822
|
-
const [activeZones, setActiveZones] = (0,
|
|
30055
|
+
const [activeZones, setActiveZones] = (0, import_react8.useState)({});
|
|
29823
30056
|
const { dispatch = null } = value ? value : {};
|
|
29824
|
-
const registerZoneArea = (0,
|
|
30057
|
+
const registerZoneArea = (0, import_react8.useCallback)(
|
|
29825
30058
|
(area) => {
|
|
29826
30059
|
setAreasWithZones((latest) => __spreadProps(__spreadValues({}, latest), { [area]: true }));
|
|
29827
30060
|
},
|
|
29828
30061
|
[setAreasWithZones]
|
|
29829
30062
|
);
|
|
29830
|
-
const registerZone = (0,
|
|
30063
|
+
const registerZone = (0, import_react8.useCallback)(
|
|
29831
30064
|
(zoneCompound) => {
|
|
29832
30065
|
if (!dispatch) {
|
|
29833
30066
|
return;
|
|
@@ -29840,7 +30073,7 @@ var DropZoneProvider = ({
|
|
|
29840
30073
|
},
|
|
29841
30074
|
[setActiveZones, dispatch]
|
|
29842
30075
|
);
|
|
29843
|
-
const unregisterZone = (0,
|
|
30076
|
+
const unregisterZone = (0, import_react8.useCallback)(
|
|
29844
30077
|
(zoneCompound) => {
|
|
29845
30078
|
if (!dispatch) {
|
|
29846
30079
|
return;
|
|
@@ -29855,8 +30088,8 @@ var DropZoneProvider = ({
|
|
|
29855
30088
|
},
|
|
29856
30089
|
[setActiveZones, dispatch]
|
|
29857
30090
|
);
|
|
29858
|
-
const [pathData, setPathData] = (0,
|
|
29859
|
-
const registerPath = (0,
|
|
30091
|
+
const [pathData, setPathData] = (0, import_react8.useState)();
|
|
30092
|
+
const registerPath = (0, import_react8.useCallback)(
|
|
29860
30093
|
(selector) => {
|
|
29861
30094
|
if (!(value == null ? void 0 : value.data)) {
|
|
29862
30095
|
return;
|
|
@@ -29881,7 +30114,8 @@ var DropZoneProvider = ({
|
|
|
29881
30114
|
},
|
|
29882
30115
|
[value, setPathData]
|
|
29883
30116
|
);
|
|
29884
|
-
|
|
30117
|
+
const [zoneWillDrag, setZoneWillDrag] = (0, import_react8.useState)("");
|
|
30118
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_jsx_runtime8.Fragment, { children: value && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
29885
30119
|
dropZoneContext.Provider,
|
|
29886
30120
|
{
|
|
29887
30121
|
value: __spreadValues({
|
|
@@ -29897,58 +30131,18 @@ var DropZoneProvider = ({
|
|
|
29897
30131
|
unregisterZone,
|
|
29898
30132
|
activeZones,
|
|
29899
30133
|
registerPath,
|
|
29900
|
-
pathData
|
|
30134
|
+
pathData,
|
|
30135
|
+
zoneWillDrag,
|
|
30136
|
+
setZoneWillDrag
|
|
29901
30137
|
}, value),
|
|
29902
30138
|
children
|
|
29903
30139
|
}
|
|
29904
30140
|
) });
|
|
29905
30141
|
};
|
|
29906
30142
|
|
|
29907
|
-
// components/Puck/context.tsx
|
|
29908
|
-
init_react_import();
|
|
29909
|
-
var import_react8 = require("react");
|
|
29910
|
-
var defaultAppState = {
|
|
29911
|
-
data: { content: [], root: { props: { title: "" } } },
|
|
29912
|
-
ui: {
|
|
29913
|
-
leftSideBarVisible: true,
|
|
29914
|
-
rightSideBarVisible: true,
|
|
29915
|
-
arrayState: {},
|
|
29916
|
-
itemSelector: null,
|
|
29917
|
-
componentList: {},
|
|
29918
|
-
isDragging: false
|
|
29919
|
-
}
|
|
29920
|
-
};
|
|
29921
|
-
var appContext = (0, import_react8.createContext)({
|
|
29922
|
-
state: defaultAppState,
|
|
29923
|
-
dispatch: () => null,
|
|
29924
|
-
config: { components: {} },
|
|
29925
|
-
componentState: {},
|
|
29926
|
-
resolveData: () => {
|
|
29927
|
-
},
|
|
29928
|
-
plugins: [],
|
|
29929
|
-
overrides: {},
|
|
29930
|
-
history: {}
|
|
29931
|
-
});
|
|
29932
|
-
var AppProvider = appContext.Provider;
|
|
29933
|
-
function useAppContext() {
|
|
29934
|
-
const mainContext = (0, import_react8.useContext)(appContext);
|
|
29935
|
-
const selectedItem = mainContext.state.ui.itemSelector ? getItem(mainContext.state.ui.itemSelector, mainContext.state.data) : void 0;
|
|
29936
|
-
return __spreadProps(__spreadValues({}, mainContext), {
|
|
29937
|
-
// Helpers
|
|
29938
|
-
selectedItem,
|
|
29939
|
-
setUi: (ui, recordHistory) => {
|
|
29940
|
-
return mainContext.dispatch({
|
|
29941
|
-
type: "setUi",
|
|
29942
|
-
ui,
|
|
29943
|
-
recordHistory
|
|
29944
|
-
});
|
|
29945
|
-
}
|
|
29946
|
-
});
|
|
29947
|
-
}
|
|
29948
|
-
|
|
29949
30143
|
// components/DropZone/index.tsx
|
|
29950
|
-
var
|
|
29951
|
-
var getClassName5 = get_class_name_factory_default("DropZone",
|
|
30144
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
30145
|
+
var getClassName5 = get_class_name_factory_default("DropZone", styles_default4);
|
|
29952
30146
|
function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
29953
30147
|
var _a;
|
|
29954
30148
|
const appContext2 = useAppContext();
|
|
@@ -29966,7 +30160,8 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
29966
30160
|
registerZoneArea,
|
|
29967
30161
|
areasWithZones,
|
|
29968
30162
|
hoveringComponent,
|
|
29969
|
-
|
|
30163
|
+
zoneWillDrag,
|
|
30164
|
+
setZoneWillDrag = () => null
|
|
29970
30165
|
} = ctx || {};
|
|
29971
30166
|
let content = data.content || [];
|
|
29972
30167
|
let zoneCompound = rootDroppableId;
|
|
@@ -29996,12 +30191,12 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
29996
30191
|
const draggedDestinationId = draggedItem && ((_a = draggedItem.destination) == null ? void 0 : _a.droppableId);
|
|
29997
30192
|
const [zoneArea] = getZoneId(zoneCompound);
|
|
29998
30193
|
const [draggedSourceArea] = getZoneId(draggedSourceId);
|
|
29999
|
-
const
|
|
30194
|
+
const userWillDrag = zoneWillDrag === zone;
|
|
30000
30195
|
const userIsDragging = !!draggedItem;
|
|
30001
30196
|
const draggingOverArea = userIsDragging && zoneArea === draggedSourceArea;
|
|
30002
30197
|
const draggingNewComponent = draggedSourceId == null ? void 0 : draggedSourceId.startsWith("component-list");
|
|
30003
30198
|
if (!(ctx == null ? void 0 : ctx.config) || !ctx.setHoveringArea || !ctx.setHoveringZone || !ctx.setHoveringComponent || !ctx.setItemSelector || !ctx.registerPath || !ctx.dispatch) {
|
|
30004
|
-
return /* @__PURE__ */ (0,
|
|
30199
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { children: "DropZone requires context to work." });
|
|
30005
30200
|
}
|
|
30006
30201
|
const {
|
|
30007
30202
|
hoveringArea = "root",
|
|
@@ -30038,7 +30233,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30038
30233
|
}
|
|
30039
30234
|
const selectedItem = itemSelector ? getItem(itemSelector, data) : null;
|
|
30040
30235
|
const isAreaSelected = selectedItem && zoneArea === selectedItem.props.id;
|
|
30041
|
-
return /* @__PURE__ */ (0,
|
|
30236
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30042
30237
|
"div",
|
|
30043
30238
|
{
|
|
30044
30239
|
className: getClassName5({
|
|
@@ -30050,17 +30245,19 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30050
30245
|
isDestination: draggedDestinationId === zoneCompound,
|
|
30051
30246
|
isDisabled: !isEnabled,
|
|
30052
30247
|
isAreaSelected,
|
|
30053
|
-
hasChildren: content.length > 0
|
|
30054
|
-
zoomEnabled: !disableZoom
|
|
30248
|
+
hasChildren: content.length > 0
|
|
30055
30249
|
}),
|
|
30056
|
-
|
|
30057
|
-
|
|
30250
|
+
onMouseUp: () => {
|
|
30251
|
+
setZoneWillDrag("");
|
|
30252
|
+
},
|
|
30253
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30254
|
+
Droppable,
|
|
30058
30255
|
{
|
|
30059
30256
|
droppableId: zoneCompound,
|
|
30060
30257
|
direction: "vertical",
|
|
30061
30258
|
isDropDisabled: !isEnabled,
|
|
30062
30259
|
children: (provided, snapshot) => {
|
|
30063
|
-
return /* @__PURE__ */ (0,
|
|
30260
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
30064
30261
|
"div",
|
|
30065
30262
|
__spreadProps(__spreadValues({}, (provided || { droppableProps: {} }).droppableProps), {
|
|
30066
30263
|
className: getClassName5("content"),
|
|
@@ -30074,7 +30271,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30074
30271
|
},
|
|
30075
30272
|
children: [
|
|
30076
30273
|
content.map((item, i) => {
|
|
30077
|
-
var _a2, _b;
|
|
30274
|
+
var _a2, _b, _c;
|
|
30078
30275
|
const componentId = item.props.id;
|
|
30079
30276
|
const defaultedProps = __spreadProps(__spreadValues(__spreadValues({}, (_a2 = config.components[item.type]) == null ? void 0 : _a2.defaultProps), item.props), {
|
|
30080
30277
|
puck: { renderDropZone: DropZone },
|
|
@@ -30085,33 +30282,33 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30085
30282
|
"draggable-"
|
|
30086
30283
|
)[1] === componentId;
|
|
30087
30284
|
const containsZone = areasWithZones ? areasWithZones[componentId] : false;
|
|
30088
|
-
const Render2 = config.components[item.type] ? config.components[item.type].render : () => /* @__PURE__ */ (0,
|
|
30285
|
+
const Render2 = config.components[item.type] ? config.components[item.type].render : () => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { style: { padding: 48, textAlign: "center" }, children: [
|
|
30089
30286
|
"No configuration for ",
|
|
30090
30287
|
item.type
|
|
30091
30288
|
] });
|
|
30092
|
-
return /* @__PURE__ */ (0,
|
|
30289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
|
|
30093
30290
|
"div",
|
|
30094
30291
|
{
|
|
30095
30292
|
className: getClassName5("item"),
|
|
30096
30293
|
style: { zIndex: isDragging ? 1 : void 0 },
|
|
30097
30294
|
children: [
|
|
30098
|
-
/* @__PURE__ */ (0,
|
|
30295
|
+
/* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30099
30296
|
DropZoneProvider,
|
|
30100
30297
|
{
|
|
30101
30298
|
value: __spreadProps(__spreadValues({}, ctx), {
|
|
30102
30299
|
areaId: componentId
|
|
30103
30300
|
}),
|
|
30104
|
-
children: /* @__PURE__ */ (0,
|
|
30301
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30105
30302
|
DraggableComponent,
|
|
30106
30303
|
{
|
|
30107
|
-
label: item.type.toString(),
|
|
30304
|
+
label: (_b = config.components[item.type]["label"]) != null ? _b : item.type.toString(),
|
|
30108
30305
|
id: `draggable-${componentId}`,
|
|
30109
30306
|
index: i,
|
|
30110
30307
|
isSelected,
|
|
30111
30308
|
isLocked: userIsDragging,
|
|
30112
30309
|
forceHover: hoveringComponent === componentId && !userIsDragging,
|
|
30113
30310
|
indicativeHover: userIsDragging && containsZone && hoveringArea === componentId,
|
|
30114
|
-
isLoading: (
|
|
30311
|
+
isLoading: (_c = appContext2.componentState[componentId]) == null ? void 0 : _c.loading,
|
|
30115
30312
|
onMount: () => {
|
|
30116
30313
|
ctx.registerPath({
|
|
30117
30314
|
index: i,
|
|
@@ -30127,11 +30324,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30127
30324
|
},
|
|
30128
30325
|
onMouseDown: (e) => {
|
|
30129
30326
|
e.stopPropagation();
|
|
30130
|
-
|
|
30131
|
-
},
|
|
30132
|
-
onMouseUp: (e) => {
|
|
30133
|
-
e.stopPropagation();
|
|
30134
|
-
setUserWillDrag(false);
|
|
30327
|
+
setZoneWillDrag(zone);
|
|
30135
30328
|
},
|
|
30136
30329
|
onMouseOver: (e) => {
|
|
30137
30330
|
e.stopPropagation();
|
|
@@ -30172,12 +30365,12 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30172
30365
|
style: {
|
|
30173
30366
|
pointerEvents: userIsDragging && draggingNewComponent ? "all" : void 0
|
|
30174
30367
|
},
|
|
30175
|
-
children: /* @__PURE__ */ (0,
|
|
30368
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: getClassName5("renderWrapper"), children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Render2, __spreadValues({}, defaultedProps)) })
|
|
30176
30369
|
}
|
|
30177
30370
|
)
|
|
30178
30371
|
}
|
|
30179
30372
|
),
|
|
30180
|
-
userIsDragging && /* @__PURE__ */ (0,
|
|
30373
|
+
userIsDragging && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30181
30374
|
"div",
|
|
30182
30375
|
{
|
|
30183
30376
|
className: getClassName5("hitbox"),
|
|
@@ -30194,7 +30387,7 @@ function DropZoneEdit({ zone, allow, disallow, style }) {
|
|
|
30194
30387
|
);
|
|
30195
30388
|
}),
|
|
30196
30389
|
provided == null ? void 0 : provided.placeholder,
|
|
30197
|
-
(snapshot == null ? void 0 : snapshot.isDraggingOver) && /* @__PURE__ */ (0,
|
|
30390
|
+
(snapshot == null ? void 0 : snapshot.isDraggingOver) && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30198
30391
|
"div",
|
|
30199
30392
|
{
|
|
30200
30393
|
"data-puck-placeholder": true,
|
|
@@ -30226,14 +30419,14 @@ function DropZoneRender({ zone }) {
|
|
|
30226
30419
|
zoneCompound = `${areaId}:${zone}`;
|
|
30227
30420
|
content = setupZone(data, zoneCompound).zones[zoneCompound];
|
|
30228
30421
|
}
|
|
30229
|
-
return /* @__PURE__ */ (0,
|
|
30422
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(import_jsx_runtime9.Fragment, { children: content.map((item) => {
|
|
30230
30423
|
const Component = config.components[item.type];
|
|
30231
30424
|
if (Component) {
|
|
30232
|
-
return /* @__PURE__ */ (0,
|
|
30425
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30233
30426
|
DropZoneProvider,
|
|
30234
30427
|
{
|
|
30235
30428
|
value: { data, config, areaId: item.props.id },
|
|
30236
|
-
children: /* @__PURE__ */ (0,
|
|
30429
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
30237
30430
|
Component.render,
|
|
30238
30431
|
__spreadProps(__spreadValues({}, item.props), {
|
|
30239
30432
|
puck: { renderDropZone: DropZone }
|
|
@@ -30249,9 +30442,9 @@ function DropZoneRender({ zone }) {
|
|
|
30249
30442
|
function DropZone(props) {
|
|
30250
30443
|
const ctx = (0, import_react9.useContext)(dropZoneContext);
|
|
30251
30444
|
if ((ctx == null ? void 0 : ctx.mode) === "edit") {
|
|
30252
|
-
return /* @__PURE__ */ (0,
|
|
30445
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(DropZoneEdit, __spreadValues({}, props));
|
|
30253
30446
|
}
|
|
30254
|
-
return /* @__PURE__ */ (0,
|
|
30447
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(DropZoneRender, __spreadValues({}, props));
|
|
30255
30448
|
}
|
|
30256
30449
|
|
|
30257
30450
|
// components/IconButton/index.ts
|
|
@@ -30261,14 +30454,17 @@ init_react_import();
|
|
|
30261
30454
|
init_react_import();
|
|
30262
30455
|
var import_react10 = require("react");
|
|
30263
30456
|
|
|
30264
|
-
//
|
|
30265
|
-
|
|
30266
|
-
|
|
30457
|
+
// components/IconButton/IconButton.module.css
|
|
30458
|
+
var IconButton_default = {
|
|
30459
|
+
IconButton: "IconButton_IconButton",
|
|
30460
|
+
"IconButton--disabled": "IconButton_IconButton--disabled",
|
|
30461
|
+
"IconButton-title": "IconButton_IconButton-title"
|
|
30462
|
+
};
|
|
30267
30463
|
|
|
30268
30464
|
// components/IconButton/IconButton.tsx
|
|
30269
30465
|
var import_react_spinners3 = require("react-spinners");
|
|
30270
|
-
var
|
|
30271
|
-
var getClassName6 = get_class_name_factory_default("IconButton",
|
|
30466
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
30467
|
+
var getClassName6 = get_class_name_factory_default("IconButton", IconButton_default);
|
|
30272
30468
|
var IconButton = ({
|
|
30273
30469
|
children,
|
|
30274
30470
|
href,
|
|
@@ -30283,7 +30479,7 @@ var IconButton = ({
|
|
|
30283
30479
|
}) => {
|
|
30284
30480
|
const [loading, setLoading] = (0, import_react10.useState)(false);
|
|
30285
30481
|
const ElementType = href ? "a" : "button";
|
|
30286
|
-
const el = /* @__PURE__ */ (0,
|
|
30482
|
+
const el = /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
|
|
30287
30483
|
ElementType,
|
|
30288
30484
|
{
|
|
30289
30485
|
className: getClassName6({
|
|
@@ -30308,11 +30504,11 @@ var IconButton = ({
|
|
|
30308
30504
|
href,
|
|
30309
30505
|
title,
|
|
30310
30506
|
children: [
|
|
30311
|
-
/* @__PURE__ */ (0,
|
|
30507
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { className: getClassName6("title"), children: title }),
|
|
30312
30508
|
children,
|
|
30313
|
-
loading && /* @__PURE__ */ (0,
|
|
30509
|
+
loading && /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
|
|
30314
30510
|
"\xA0\xA0",
|
|
30315
|
-
/* @__PURE__ */ (0,
|
|
30511
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)(import_react_spinners3.ClipLoader, { "aria-label": "Loading", color: "inherit", size: "14px" })
|
|
30316
30512
|
] })
|
|
30317
30513
|
]
|
|
30318
30514
|
}
|
|
@@ -30322,12 +30518,23 @@ var IconButton = ({
|
|
|
30322
30518
|
|
|
30323
30519
|
// components/Puck/index.tsx
|
|
30324
30520
|
init_react_import();
|
|
30325
|
-
var
|
|
30326
|
-
var import_dnd7 = require("@hello-pangea/dnd");
|
|
30521
|
+
var import_react28 = require("react");
|
|
30327
30522
|
|
|
30328
30523
|
// lib/use-placeholder-style.ts
|
|
30329
30524
|
init_react_import();
|
|
30330
30525
|
var import_react11 = require("react");
|
|
30526
|
+
|
|
30527
|
+
// lib/get-frame.ts
|
|
30528
|
+
init_react_import();
|
|
30529
|
+
var getFrame = () => {
|
|
30530
|
+
let frame = document.querySelector("#preview-frame");
|
|
30531
|
+
if ((frame == null ? void 0 : frame.tagName) === "IFRAME") {
|
|
30532
|
+
frame = frame.contentDocument;
|
|
30533
|
+
}
|
|
30534
|
+
return frame;
|
|
30535
|
+
};
|
|
30536
|
+
|
|
30537
|
+
// lib/use-placeholder-style.ts
|
|
30331
30538
|
var usePlaceholderStyle = () => {
|
|
30332
30539
|
const queryAttr = "data-rfd-drag-handle-draggable-id";
|
|
30333
30540
|
const [placeholderStyle, setPlaceholderStyle] = (0, import_react11.useState)();
|
|
@@ -30337,11 +30544,12 @@ var usePlaceholderStyle = () => {
|
|
|
30337
30544
|
const destinationIndex = (draggedItem.destination || draggedItem.source).index;
|
|
30338
30545
|
const droppableId = (draggedItem.destination || draggedItem.source).droppableId;
|
|
30339
30546
|
const domQuery = `[${queryAttr}='${draggableId}']`;
|
|
30340
|
-
const
|
|
30547
|
+
const frame = getFrame();
|
|
30548
|
+
const draggedDOM = document.querySelector(domQuery) || (frame == null ? void 0 : frame.querySelector(domQuery));
|
|
30341
30549
|
if (!draggedDOM) {
|
|
30342
30550
|
return;
|
|
30343
30551
|
}
|
|
30344
|
-
const targetListElement =
|
|
30552
|
+
const targetListElement = frame == null ? void 0 : frame.querySelector(
|
|
30345
30553
|
`[data-rfd-droppable-id='${droppableId}']`
|
|
30346
30554
|
);
|
|
30347
30555
|
const { clientHeight } = draggedDOM;
|
|
@@ -30376,23 +30584,42 @@ var usePlaceholderStyle = () => {
|
|
|
30376
30584
|
// components/SidebarSection/index.tsx
|
|
30377
30585
|
init_react_import();
|
|
30378
30586
|
|
|
30379
|
-
//
|
|
30380
|
-
|
|
30381
|
-
|
|
30587
|
+
// components/SidebarSection/styles.module.css
|
|
30588
|
+
var styles_default5 = {
|
|
30589
|
+
SidebarSection: "styles_SidebarSection",
|
|
30590
|
+
"SidebarSection-title": "styles_SidebarSection-title",
|
|
30591
|
+
"SidebarSection--noBorderTop": "styles_SidebarSection--noBorderTop",
|
|
30592
|
+
"SidebarSection-content": "styles_SidebarSection-content",
|
|
30593
|
+
"SidebarSection--noPadding": "styles_SidebarSection--noPadding",
|
|
30594
|
+
"SidebarSection-breadcrumbLabel": "styles_SidebarSection-breadcrumbLabel",
|
|
30595
|
+
"SidebarSection-breadcrumbs": "styles_SidebarSection-breadcrumbs",
|
|
30596
|
+
"SidebarSection-breadcrumb": "styles_SidebarSection-breadcrumb",
|
|
30597
|
+
"SidebarSection-heading": "styles_SidebarSection-heading",
|
|
30598
|
+
"SidebarSection-loadingOverlay": "styles_SidebarSection-loadingOverlay"
|
|
30599
|
+
};
|
|
30382
30600
|
|
|
30383
30601
|
// components/Heading/index.tsx
|
|
30384
30602
|
init_react_import();
|
|
30385
30603
|
|
|
30386
|
-
//
|
|
30387
|
-
|
|
30388
|
-
|
|
30604
|
+
// components/Heading/styles.module.css
|
|
30605
|
+
var styles_default6 = {
|
|
30606
|
+
Heading: "styles_Heading",
|
|
30607
|
+
"Heading--xxxxl": "styles_Heading--xxxxl",
|
|
30608
|
+
"Heading--xxxl": "styles_Heading--xxxl",
|
|
30609
|
+
"Heading--xxl": "styles_Heading--xxl",
|
|
30610
|
+
"Heading--xl": "styles_Heading--xl",
|
|
30611
|
+
"Heading--l": "styles_Heading--l",
|
|
30612
|
+
"Heading--m": "styles_Heading--m",
|
|
30613
|
+
"Heading--s": "styles_Heading--s",
|
|
30614
|
+
"Heading--xs": "styles_Heading--xs"
|
|
30615
|
+
};
|
|
30389
30616
|
|
|
30390
30617
|
// components/Heading/index.tsx
|
|
30391
|
-
var
|
|
30392
|
-
var getClassName7 = get_class_name_factory_default("Heading",
|
|
30618
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
30619
|
+
var getClassName7 = get_class_name_factory_default("Heading", styles_default6);
|
|
30393
30620
|
var Heading = ({ children, rank, size = "m" }) => {
|
|
30394
30621
|
const Tag = rank ? `h${rank}` : "span";
|
|
30395
|
-
return /* @__PURE__ */ (0,
|
|
30622
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
30396
30623
|
Tag,
|
|
30397
30624
|
{
|
|
30398
30625
|
className: getClassName7({
|
|
@@ -30471,8 +30698,8 @@ var useBreadcrumbs = (renderCount) => {
|
|
|
30471
30698
|
|
|
30472
30699
|
// components/SidebarSection/index.tsx
|
|
30473
30700
|
var import_react_spinners4 = require("react-spinners");
|
|
30474
|
-
var
|
|
30475
|
-
var getClassName8 = get_class_name_factory_default("SidebarSection",
|
|
30701
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
30702
|
+
var getClassName8 = get_class_name_factory_default("SidebarSection", styles_default5);
|
|
30476
30703
|
var SidebarSection = ({
|
|
30477
30704
|
children,
|
|
30478
30705
|
title,
|
|
@@ -30484,15 +30711,15 @@ var SidebarSection = ({
|
|
|
30484
30711
|
}) => {
|
|
30485
30712
|
const { setUi } = useAppContext();
|
|
30486
30713
|
const breadcrumbs = useBreadcrumbs(1);
|
|
30487
|
-
return /* @__PURE__ */ (0,
|
|
30714
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
30488
30715
|
"div",
|
|
30489
30716
|
{
|
|
30490
30717
|
className: getClassName8({ noBorderTop, noPadding }),
|
|
30491
30718
|
style: { background },
|
|
30492
30719
|
children: [
|
|
30493
|
-
/* @__PURE__ */ (0,
|
|
30494
|
-
showBreadcrumbs ? breadcrumbs.map((breadcrumb, i) => /* @__PURE__ */ (0,
|
|
30495
|
-
/* @__PURE__ */ (0,
|
|
30720
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassName8("title"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: getClassName8("breadcrumbs"), children: [
|
|
30721
|
+
showBreadcrumbs ? breadcrumbs.map((breadcrumb, i) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: getClassName8("breadcrumb"), children: [
|
|
30722
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
30496
30723
|
"button",
|
|
30497
30724
|
{
|
|
30498
30725
|
className: getClassName8("breadcrumbLabel"),
|
|
@@ -30500,12 +30727,12 @@ var SidebarSection = ({
|
|
|
30500
30727
|
children: breadcrumb.label
|
|
30501
30728
|
}
|
|
30502
30729
|
),
|
|
30503
|
-
/* @__PURE__ */ (0,
|
|
30730
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(ChevronRight, { size: 16 })
|
|
30504
30731
|
] }, i)) : null,
|
|
30505
|
-
/* @__PURE__ */ (0,
|
|
30732
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassName8("heading"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(Heading, { rank: 2, size: "xs", children: title }) })
|
|
30506
30733
|
] }) }),
|
|
30507
|
-
/* @__PURE__ */ (0,
|
|
30508
|
-
isLoading && /* @__PURE__ */ (0,
|
|
30734
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassName8("content"), children }),
|
|
30735
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: getClassName8("loadingOverlay"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_react_spinners4.ClipLoader, { "aria-label": "loading" }) })
|
|
30509
30736
|
]
|
|
30510
30737
|
}
|
|
30511
30738
|
);
|
|
@@ -31011,7 +31238,10 @@ var useResolvedData = (appState, config, dispatch) => {
|
|
|
31011
31238
|
);
|
|
31012
31239
|
const runResolvers = () => __async(void 0, null, function* () {
|
|
31013
31240
|
const newData = newAppState.data;
|
|
31014
|
-
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) =>
|
|
31241
|
+
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) => {
|
|
31242
|
+
var _a;
|
|
31243
|
+
return !!((_a = config.components[item.type]) == null ? void 0 : _a.resolveData);
|
|
31244
|
+
});
|
|
31015
31245
|
const applyIfChange = (dynamicDataMap, dynamicRoot) => {
|
|
31016
31246
|
const processed = applyDynamicProps(
|
|
31017
31247
|
appState.data,
|
|
@@ -31079,13 +31309,17 @@ var useResolvedData = (appState, config, dispatch) => {
|
|
|
31079
31309
|
// components/MenuBar/index.tsx
|
|
31080
31310
|
init_react_import();
|
|
31081
31311
|
|
|
31082
|
-
//
|
|
31083
|
-
|
|
31084
|
-
|
|
31312
|
+
// components/MenuBar/styles.module.css
|
|
31313
|
+
var styles_default7 = {
|
|
31314
|
+
MenuBar: "styles_MenuBar",
|
|
31315
|
+
"MenuBar--menuOpen": "styles_MenuBar--menuOpen",
|
|
31316
|
+
"MenuBar-inner": "styles_MenuBar-inner",
|
|
31317
|
+
"MenuBar-history": "styles_MenuBar-history"
|
|
31318
|
+
};
|
|
31085
31319
|
|
|
31086
31320
|
// components/MenuBar/index.tsx
|
|
31087
|
-
var
|
|
31088
|
-
var getClassName9 = get_class_name_factory_default("MenuBar",
|
|
31321
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
31322
|
+
var getClassName9 = get_class_name_factory_default("MenuBar", styles_default7);
|
|
31089
31323
|
var MenuBar = ({
|
|
31090
31324
|
appState,
|
|
31091
31325
|
data = { content: [], root: { props: { title: "" } } },
|
|
@@ -31099,7 +31333,7 @@ var MenuBar = ({
|
|
|
31099
31333
|
history: { back, forward, historyStore }
|
|
31100
31334
|
} = useAppContext();
|
|
31101
31335
|
const { hasFuture = false, hasPast = false } = historyStore || {};
|
|
31102
|
-
return /* @__PURE__ */ (0,
|
|
31336
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
31103
31337
|
"div",
|
|
31104
31338
|
{
|
|
31105
31339
|
className: getClassName9({ menuOpen }),
|
|
@@ -31113,16 +31347,16 @@ var MenuBar = ({
|
|
|
31113
31347
|
setMenuOpen(false);
|
|
31114
31348
|
}
|
|
31115
31349
|
},
|
|
31116
|
-
children: /* @__PURE__ */ (0,
|
|
31117
|
-
/* @__PURE__ */ (0,
|
|
31118
|
-
/* @__PURE__ */ (0,
|
|
31350
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: getClassName9("inner"), children: [
|
|
31351
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: getClassName9("history"), children: [
|
|
31352
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(IconButton, { title: "undo", disabled: !hasPast, onClick: back, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
31119
31353
|
ChevronLeft,
|
|
31120
31354
|
{
|
|
31121
31355
|
size: 21,
|
|
31122
31356
|
stroke: hasPast ? "var(--puck-color-black)" : "var(--puck-color-grey-08)"
|
|
31123
31357
|
}
|
|
31124
31358
|
) }),
|
|
31125
|
-
/* @__PURE__ */ (0,
|
|
31359
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(IconButton, { title: "redo", disabled: !hasFuture, onClick: forward, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
31126
31360
|
ChevronRight,
|
|
31127
31361
|
{
|
|
31128
31362
|
size: 21,
|
|
@@ -31130,17 +31364,17 @@ var MenuBar = ({
|
|
|
31130
31364
|
}
|
|
31131
31365
|
) })
|
|
31132
31366
|
] }),
|
|
31133
|
-
/* @__PURE__ */ (0,
|
|
31367
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_jsx_runtime13.Fragment, { children: renderHeaderActions && renderHeaderActions({
|
|
31134
31368
|
state: appState,
|
|
31135
31369
|
dispatch
|
|
31136
31370
|
}) }),
|
|
31137
|
-
/* @__PURE__ */ (0,
|
|
31371
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
31138
31372
|
Button,
|
|
31139
31373
|
{
|
|
31140
31374
|
onClick: () => {
|
|
31141
31375
|
onPublish && onPublish(data);
|
|
31142
31376
|
},
|
|
31143
|
-
icon: /* @__PURE__ */ (0,
|
|
31377
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(Globe, { size: "14px" }),
|
|
31144
31378
|
children: "Publish"
|
|
31145
31379
|
}
|
|
31146
31380
|
) })
|
|
@@ -31149,9 +31383,24 @@ var MenuBar = ({
|
|
|
31149
31383
|
);
|
|
31150
31384
|
};
|
|
31151
31385
|
|
|
31152
|
-
//
|
|
31153
|
-
|
|
31154
|
-
|
|
31386
|
+
// components/Puck/styles.module.css
|
|
31387
|
+
var styles_default8 = {
|
|
31388
|
+
Puck: "styles_Puck",
|
|
31389
|
+
"Puck--leftSideBarVisible": "styles_Puck--leftSideBarVisible",
|
|
31390
|
+
"Puck--rightSideBarVisible": "styles_Puck--rightSideBarVisible",
|
|
31391
|
+
"Puck-header": "styles_Puck-header",
|
|
31392
|
+
"Puck-headerInner": "styles_Puck-headerInner",
|
|
31393
|
+
"Puck-headerToggle": "styles_Puck-headerToggle",
|
|
31394
|
+
"Puck-rightSideBarToggle": "styles_Puck-rightSideBarToggle",
|
|
31395
|
+
"Puck-leftSideBarToggle": "styles_Puck-leftSideBarToggle",
|
|
31396
|
+
"Puck-headerTitle": "styles_Puck-headerTitle",
|
|
31397
|
+
"Puck-headerPath": "styles_Puck-headerPath",
|
|
31398
|
+
"Puck-headerTools": "styles_Puck-headerTools",
|
|
31399
|
+
"Puck-menuButton": "styles_Puck-menuButton",
|
|
31400
|
+
"Puck--menuOpen": "styles_Puck--menuOpen",
|
|
31401
|
+
"Puck-leftSideBar": "styles_Puck-leftSideBar",
|
|
31402
|
+
"Puck-rightSideBar": "styles_Puck-rightSideBar"
|
|
31403
|
+
};
|
|
31155
31404
|
|
|
31156
31405
|
// components/Puck/components/Fields/index.tsx
|
|
31157
31406
|
init_react_import();
|
|
@@ -31160,9 +31409,19 @@ var import_react_spinners6 = require("react-spinners");
|
|
|
31160
31409
|
// components/InputOrGroup/index.tsx
|
|
31161
31410
|
init_react_import();
|
|
31162
31411
|
|
|
31163
|
-
//
|
|
31164
|
-
|
|
31165
|
-
|
|
31412
|
+
// components/InputOrGroup/styles.module.css
|
|
31413
|
+
var styles_default9 = {
|
|
31414
|
+
Input: "styles_Input",
|
|
31415
|
+
"Input-label": "styles_Input-label",
|
|
31416
|
+
"Input-labelIcon": "styles_Input-labelIcon",
|
|
31417
|
+
"Input-disabledIcon": "styles_Input-disabledIcon",
|
|
31418
|
+
"Input-input": "styles_Input-input",
|
|
31419
|
+
"Input--readOnly": "styles_Input--readOnly",
|
|
31420
|
+
"Input-radioGroupItems": "styles_Input-radioGroupItems",
|
|
31421
|
+
"Input-radio": "styles_Input-radio",
|
|
31422
|
+
"Input-radioInner": "styles_Input-radioInner",
|
|
31423
|
+
"Input-radioInput": "styles_Input-radioInput"
|
|
31424
|
+
};
|
|
31166
31425
|
|
|
31167
31426
|
// components/InputOrGroup/index.tsx
|
|
31168
31427
|
var import_react18 = require("react");
|
|
@@ -31173,17 +31432,41 @@ init_react_import();
|
|
|
31173
31432
|
// components/InputOrGroup/fields/ArrayField/index.tsx
|
|
31174
31433
|
init_react_import();
|
|
31175
31434
|
|
|
31176
|
-
//
|
|
31177
|
-
|
|
31178
|
-
|
|
31435
|
+
// components/InputOrGroup/fields/ArrayField/styles.module.css
|
|
31436
|
+
var styles_default10 = {
|
|
31437
|
+
ArrayField: "styles_ArrayField",
|
|
31438
|
+
"ArrayField--isDraggingFrom": "styles_ArrayField--isDraggingFrom",
|
|
31439
|
+
"ArrayField-addButton": "styles_ArrayField-addButton",
|
|
31440
|
+
"ArrayField--hasItems": "styles_ArrayField--hasItems",
|
|
31441
|
+
ArrayFieldItem: "styles_ArrayFieldItem",
|
|
31442
|
+
"ArrayFieldItem--isDragging": "styles_ArrayFieldItem--isDragging",
|
|
31443
|
+
"ArrayFieldItem--isExpanded": "styles_ArrayFieldItem--isExpanded",
|
|
31444
|
+
"ArrayFieldItem-summary": "styles_ArrayFieldItem-summary",
|
|
31445
|
+
"ArrayField--addDisabled": "styles_ArrayField--addDisabled",
|
|
31446
|
+
"ArrayFieldItem-body": "styles_ArrayFieldItem-body",
|
|
31447
|
+
"ArrayFieldItem-fieldset": "styles_ArrayFieldItem-fieldset",
|
|
31448
|
+
"ArrayFieldItem-rhs": "styles_ArrayFieldItem-rhs",
|
|
31449
|
+
"ArrayFieldItem-actions": "styles_ArrayFieldItem-actions"
|
|
31450
|
+
};
|
|
31179
31451
|
|
|
31180
31452
|
// components/InputOrGroup/fields/ArrayField/index.tsx
|
|
31181
|
-
var import_dnd5 = require("@hello-pangea/dnd");
|
|
31182
|
-
var import_dnd6 = require("@hello-pangea/dnd");
|
|
31183
31453
|
var import_react14 = require("react");
|
|
31184
|
-
|
|
31185
|
-
|
|
31186
|
-
|
|
31454
|
+
|
|
31455
|
+
// components/DragDropContext/index.tsx
|
|
31456
|
+
init_react_import();
|
|
31457
|
+
var import_dnd4 = require("@measured/dnd");
|
|
31458
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
31459
|
+
var DefaultDragDropContext = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_jsx_runtime14.Fragment, { children });
|
|
31460
|
+
var DragDropContext = (props) => {
|
|
31461
|
+
const { status } = useAppContext();
|
|
31462
|
+
const El = status !== "LOADING" ? import_dnd4.DragDropContext : DefaultDragDropContext;
|
|
31463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(El, __spreadValues({}, props));
|
|
31464
|
+
};
|
|
31465
|
+
|
|
31466
|
+
// components/InputOrGroup/fields/ArrayField/index.tsx
|
|
31467
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
31468
|
+
var getClassName10 = get_class_name_factory_default("ArrayField", styles_default10);
|
|
31469
|
+
var getClassNameItem2 = get_class_name_factory_default("ArrayFieldItem", styles_default10);
|
|
31187
31470
|
var ArrayField = ({
|
|
31188
31471
|
field,
|
|
31189
31472
|
onChange,
|
|
@@ -31245,21 +31528,24 @@ var ArrayField = ({
|
|
|
31245
31528
|
[arrayState]
|
|
31246
31529
|
);
|
|
31247
31530
|
(0, import_react14.useEffect)(() => {
|
|
31248
|
-
|
|
31531
|
+
if (arrayState.items.length > 0) {
|
|
31532
|
+
setUi(mapArrayStateToUi(arrayState));
|
|
31533
|
+
}
|
|
31249
31534
|
}, []);
|
|
31250
31535
|
const [hovering, setHovering] = (0, import_react14.useState)(false);
|
|
31251
31536
|
if (field.type !== "array" || !field.arrayFields) {
|
|
31252
31537
|
return null;
|
|
31253
31538
|
}
|
|
31254
|
-
|
|
31539
|
+
const addDisabled = field.max !== void 0 && localState.arrayState.items.length >= field.max || readOnly;
|
|
31540
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31255
31541
|
FieldLabelInternal,
|
|
31256
31542
|
{
|
|
31257
31543
|
label: label || name,
|
|
31258
|
-
icon: /* @__PURE__ */ (0,
|
|
31544
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(List, { size: 16 }),
|
|
31259
31545
|
el: "div",
|
|
31260
31546
|
readOnly,
|
|
31261
|
-
children: /* @__PURE__ */ (0,
|
|
31262
|
-
|
|
31547
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31548
|
+
DragDropContext,
|
|
31263
31549
|
{
|
|
31264
31550
|
onDragEnd: (event) => {
|
|
31265
31551
|
var _a, _b;
|
|
@@ -31285,14 +31571,15 @@ var ArrayField = ({
|
|
|
31285
31571
|
});
|
|
31286
31572
|
}
|
|
31287
31573
|
},
|
|
31288
|
-
children: /* @__PURE__ */ (0,
|
|
31289
|
-
return /* @__PURE__ */ (0,
|
|
31574
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Droppable, { droppableId: "array", isDropDisabled: readOnly, children: (provided, snapshot) => {
|
|
31575
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
31290
31576
|
"div",
|
|
31291
31577
|
__spreadProps(__spreadValues({}, provided.droppableProps), {
|
|
31292
31578
|
ref: provided.innerRef,
|
|
31293
31579
|
className: getClassName10({
|
|
31294
31580
|
isDraggingFrom: !!snapshot.draggingFromThisWith,
|
|
31295
|
-
hasItems: Array.isArray(value) && value.length > 0
|
|
31581
|
+
hasItems: Array.isArray(value) && value.length > 0,
|
|
31582
|
+
addDisabled
|
|
31296
31583
|
}),
|
|
31297
31584
|
onMouseOver: (e) => {
|
|
31298
31585
|
e.stopPropagation();
|
|
@@ -31306,7 +31593,7 @@ var ArrayField = ({
|
|
|
31306
31593
|
localState.arrayState.items.map((item, i) => {
|
|
31307
31594
|
const { _arrayId = `${id}-${i}`, _originalIndex = i } = item;
|
|
31308
31595
|
const data = Array.from(localState.value || [])[i] || {};
|
|
31309
|
-
return /* @__PURE__ */ (0,
|
|
31596
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31310
31597
|
Draggable,
|
|
31311
31598
|
{
|
|
31312
31599
|
id: _arrayId,
|
|
@@ -31317,8 +31604,8 @@ var ArrayField = ({
|
|
|
31317
31604
|
readOnly
|
|
31318
31605
|
}),
|
|
31319
31606
|
isDragDisabled: readOnly || !hovering,
|
|
31320
|
-
children: () => /* @__PURE__ */ (0,
|
|
31321
|
-
/* @__PURE__ */ (0,
|
|
31607
|
+
children: () => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_jsx_runtime15.Fragment, { children: [
|
|
31608
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
|
|
31322
31609
|
"div",
|
|
31323
31610
|
{
|
|
31324
31611
|
onClick: () => {
|
|
@@ -31339,10 +31626,12 @@ var ArrayField = ({
|
|
|
31339
31626
|
className: getClassNameItem2("summary"),
|
|
31340
31627
|
children: [
|
|
31341
31628
|
field.getItemSummary ? field.getItemSummary(data, i) : `Item #${_originalIndex}`,
|
|
31342
|
-
/* @__PURE__ */ (0,
|
|
31343
|
-
!readOnly && /* @__PURE__ */ (0,
|
|
31629
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { className: getClassNameItem2("rhs"), children: [
|
|
31630
|
+
!readOnly && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameItem2("actions"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameItem2("action"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31344
31631
|
IconButton,
|
|
31345
31632
|
{
|
|
31633
|
+
type: "button",
|
|
31634
|
+
disabled: field.min !== void 0 && field.min >= localState.arrayState.items.length,
|
|
31346
31635
|
onClick: (e) => {
|
|
31347
31636
|
e.stopPropagation();
|
|
31348
31637
|
const existingValue = [
|
|
@@ -31361,20 +31650,20 @@ var ArrayField = ({
|
|
|
31361
31650
|
);
|
|
31362
31651
|
},
|
|
31363
31652
|
title: "Delete",
|
|
31364
|
-
children: /* @__PURE__ */ (0,
|
|
31653
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Trash, { size: 16 })
|
|
31365
31654
|
}
|
|
31366
31655
|
) }) }),
|
|
31367
|
-
/* @__PURE__ */ (0,
|
|
31656
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(DragIcon, {}) })
|
|
31368
31657
|
] })
|
|
31369
31658
|
]
|
|
31370
31659
|
}
|
|
31371
31660
|
),
|
|
31372
|
-
/* @__PURE__ */ (0,
|
|
31661
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: getClassNameItem2("body"), children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("fieldset", { className: getClassNameItem2("fieldset"), children: Object.keys(field.arrayFields).map(
|
|
31373
31662
|
(fieldName) => {
|
|
31374
31663
|
const subField = field.arrayFields[fieldName];
|
|
31375
31664
|
const subFieldName = `${name}[${i}].${fieldName}`;
|
|
31376
31665
|
const wildcardFieldName = `${name}[*].${fieldName}`;
|
|
31377
|
-
return /* @__PURE__ */ (0,
|
|
31666
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31378
31667
|
InputOrGroup,
|
|
31379
31668
|
{
|
|
31380
31669
|
name: subFieldName,
|
|
@@ -31403,9 +31692,10 @@ var ArrayField = ({
|
|
|
31403
31692
|
);
|
|
31404
31693
|
}),
|
|
31405
31694
|
provided.placeholder,
|
|
31406
|
-
/* @__PURE__ */ (0,
|
|
31695
|
+
!addDisabled && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
31407
31696
|
"button",
|
|
31408
31697
|
{
|
|
31698
|
+
type: "button",
|
|
31409
31699
|
className: getClassName10("addButton"),
|
|
31410
31700
|
onClick: () => {
|
|
31411
31701
|
const existingValue = value || [];
|
|
@@ -31416,7 +31706,7 @@ var ArrayField = ({
|
|
|
31416
31706
|
const newArrayState = regenerateArrayState(newValue);
|
|
31417
31707
|
onChange(newValue, mapArrayStateToUi(newArrayState));
|
|
31418
31708
|
},
|
|
31419
|
-
children: /* @__PURE__ */ (0,
|
|
31709
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Plus, { size: 21 })
|
|
31420
31710
|
}
|
|
31421
31711
|
)
|
|
31422
31712
|
]
|
|
@@ -31431,8 +31721,8 @@ var ArrayField = ({
|
|
|
31431
31721
|
|
|
31432
31722
|
// components/InputOrGroup/fields/DefaultField/index.tsx
|
|
31433
31723
|
init_react_import();
|
|
31434
|
-
var
|
|
31435
|
-
var getClassName11 = get_class_name_factory_default("Input",
|
|
31724
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
31725
|
+
var getClassName11 = get_class_name_factory_default("Input", styles_default9);
|
|
31436
31726
|
var DefaultField = ({
|
|
31437
31727
|
field,
|
|
31438
31728
|
onChange,
|
|
@@ -31442,16 +31732,16 @@ var DefaultField = ({
|
|
|
31442
31732
|
label,
|
|
31443
31733
|
id
|
|
31444
31734
|
}) => {
|
|
31445
|
-
return /* @__PURE__ */ (0,
|
|
31735
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
31446
31736
|
FieldLabelInternal,
|
|
31447
31737
|
{
|
|
31448
31738
|
label: label || name,
|
|
31449
|
-
icon: /* @__PURE__ */ (0,
|
|
31450
|
-
field.type === "text" && /* @__PURE__ */ (0,
|
|
31451
|
-
field.type === "number" && /* @__PURE__ */ (0,
|
|
31739
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
|
|
31740
|
+
field.type === "text" && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Type, { size: 16 }),
|
|
31741
|
+
field.type === "number" && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Hash, { size: 16 })
|
|
31452
31742
|
] }),
|
|
31453
31743
|
readOnly,
|
|
31454
|
-
children: /* @__PURE__ */ (0,
|
|
31744
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
31455
31745
|
"input",
|
|
31456
31746
|
{
|
|
31457
31747
|
className: getClassName11("input"),
|
|
@@ -31485,22 +31775,52 @@ var import_react17 = require("react");
|
|
|
31485
31775
|
init_react_import();
|
|
31486
31776
|
var import_react16 = require("react");
|
|
31487
31777
|
|
|
31488
|
-
//
|
|
31489
|
-
|
|
31490
|
-
|
|
31778
|
+
// components/ExternalInput/styles.module.css
|
|
31779
|
+
var styles_default11 = {
|
|
31780
|
+
"ExternalInput-actions": "styles_ExternalInput-actions",
|
|
31781
|
+
"ExternalInput-button": "styles_ExternalInput-button",
|
|
31782
|
+
"ExternalInput--dataSelected": "styles_ExternalInput--dataSelected",
|
|
31783
|
+
"ExternalInput-detachButton": "styles_ExternalInput-detachButton",
|
|
31784
|
+
ExternalInputModal: "styles_ExternalInputModal",
|
|
31785
|
+
"ExternalInputModal-grid": "styles_ExternalInputModal-grid",
|
|
31786
|
+
"ExternalInputModal--filtersToggled": "styles_ExternalInputModal--filtersToggled",
|
|
31787
|
+
"ExternalInputModal-filters": "styles_ExternalInputModal-filters",
|
|
31788
|
+
"ExternalInputModal-masthead": "styles_ExternalInputModal-masthead",
|
|
31789
|
+
"ExternalInputModal-tableWrapper": "styles_ExternalInputModal-tableWrapper",
|
|
31790
|
+
"ExternalInputModal-table": "styles_ExternalInputModal-table",
|
|
31791
|
+
"ExternalInputModal-thead": "styles_ExternalInputModal-thead",
|
|
31792
|
+
"ExternalInputModal-th": "styles_ExternalInputModal-th",
|
|
31793
|
+
"ExternalInputModal-td": "styles_ExternalInputModal-td",
|
|
31794
|
+
"ExternalInputModal-tr": "styles_ExternalInputModal-tr",
|
|
31795
|
+
"ExternalInputModal-tbody": "styles_ExternalInputModal-tbody",
|
|
31796
|
+
"ExternalInputModal--hasData": "styles_ExternalInputModal--hasData",
|
|
31797
|
+
"ExternalInputModal-loadingBanner": "styles_ExternalInputModal-loadingBanner",
|
|
31798
|
+
"ExternalInputModal--isLoading": "styles_ExternalInputModal--isLoading",
|
|
31799
|
+
"ExternalInputModal-searchForm": "styles_ExternalInputModal-searchForm",
|
|
31800
|
+
"ExternalInputModal-search": "styles_ExternalInputModal-search",
|
|
31801
|
+
"ExternalInputModal-searchIcon": "styles_ExternalInputModal-searchIcon",
|
|
31802
|
+
"ExternalInputModal-searchIconText": "styles_ExternalInputModal-searchIconText",
|
|
31803
|
+
"ExternalInputModal-searchInput": "styles_ExternalInputModal-searchInput",
|
|
31804
|
+
"ExternalInputModal-searchActions": "styles_ExternalInputModal-searchActions",
|
|
31805
|
+
"ExternalInputModal-searchActionIcon": "styles_ExternalInputModal-searchActionIcon",
|
|
31806
|
+
"ExternalInputModal-footer": "styles_ExternalInputModal-footer"
|
|
31807
|
+
};
|
|
31491
31808
|
|
|
31492
31809
|
// components/Modal/index.tsx
|
|
31493
31810
|
init_react_import();
|
|
31494
31811
|
var import_react15 = require("react");
|
|
31495
31812
|
|
|
31496
|
-
//
|
|
31497
|
-
|
|
31498
|
-
|
|
31813
|
+
// components/Modal/styles.module.css
|
|
31814
|
+
var styles_default12 = {
|
|
31815
|
+
Modal: "styles_Modal",
|
|
31816
|
+
"Modal--isOpen": "styles_Modal--isOpen",
|
|
31817
|
+
"Modal-inner": "styles_Modal-inner"
|
|
31818
|
+
};
|
|
31499
31819
|
|
|
31500
31820
|
// components/Modal/index.tsx
|
|
31501
31821
|
var import_react_dom = __toESM(require_react_dom());
|
|
31502
|
-
var
|
|
31503
|
-
var getClassName12 = get_class_name_factory_default("Modal",
|
|
31822
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
31823
|
+
var getClassName12 = get_class_name_factory_default("Modal", styles_default12);
|
|
31504
31824
|
var Modal = ({
|
|
31505
31825
|
children,
|
|
31506
31826
|
onClose,
|
|
@@ -31511,10 +31831,10 @@ var Modal = ({
|
|
|
31511
31831
|
setRootEl(document.getElementById("puck-portal-root"));
|
|
31512
31832
|
}, []);
|
|
31513
31833
|
if (!rootEl) {
|
|
31514
|
-
return /* @__PURE__ */ (0,
|
|
31834
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", {});
|
|
31515
31835
|
}
|
|
31516
31836
|
return (0, import_react_dom.createPortal)(
|
|
31517
|
-
/* @__PURE__ */ (0,
|
|
31837
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: getClassName12({ isOpen }), onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
31518
31838
|
"div",
|
|
31519
31839
|
{
|
|
31520
31840
|
className: getClassName12("inner"),
|
|
@@ -31528,9 +31848,9 @@ var Modal = ({
|
|
|
31528
31848
|
|
|
31529
31849
|
// components/ExternalInput/index.tsx
|
|
31530
31850
|
var import_react_spinners5 = require("react-spinners");
|
|
31531
|
-
var
|
|
31532
|
-
var getClassName13 = get_class_name_factory_default("ExternalInput",
|
|
31533
|
-
var getClassNameModal = get_class_name_factory_default("ExternalInputModal",
|
|
31851
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
31852
|
+
var getClassName13 = get_class_name_factory_default("ExternalInput", styles_default11);
|
|
31853
|
+
var getClassNameModal = get_class_name_factory_default("ExternalInputModal", styles_default11);
|
|
31534
31854
|
var dataCache = {};
|
|
31535
31855
|
var ExternalInput = ({
|
|
31536
31856
|
field,
|
|
@@ -31568,7 +31888,7 @@ var ExternalInput = ({
|
|
|
31568
31888
|
const search = (0, import_react16.useCallback)(
|
|
31569
31889
|
(query, filters2) => __async(void 0, null, function* () {
|
|
31570
31890
|
setIsLoading(true);
|
|
31571
|
-
const cacheKey = `${id}-${
|
|
31891
|
+
const cacheKey = `${id}-${query}-${JSON.stringify(filters2)}`;
|
|
31572
31892
|
const listData = dataCache[cacheKey] || (yield field.fetchList({ query, filters: filters2 }));
|
|
31573
31893
|
if (listData) {
|
|
31574
31894
|
setData(listData);
|
|
@@ -31581,7 +31901,7 @@ var ExternalInput = ({
|
|
|
31581
31901
|
(0, import_react16.useEffect)(() => {
|
|
31582
31902
|
search(searchQuery, filters);
|
|
31583
31903
|
}, []);
|
|
31584
|
-
return /* @__PURE__ */ (0,
|
|
31904
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
31585
31905
|
"div",
|
|
31586
31906
|
{
|
|
31587
31907
|
className: getClassName13({
|
|
@@ -31590,30 +31910,31 @@ var ExternalInput = ({
|
|
|
31590
31910
|
}),
|
|
31591
31911
|
id,
|
|
31592
31912
|
children: [
|
|
31593
|
-
/* @__PURE__ */ (0,
|
|
31594
|
-
/* @__PURE__ */ (0,
|
|
31913
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassName13("actions"), children: [
|
|
31914
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31595
31915
|
"button",
|
|
31596
31916
|
{
|
|
31917
|
+
type: "button",
|
|
31597
31918
|
onClick: () => setOpen(true),
|
|
31598
31919
|
className: getClassName13("button"),
|
|
31599
|
-
children: value ? field.getItemSummary ? field.getItemSummary(value) : "External item" : /* @__PURE__ */ (0,
|
|
31600
|
-
/* @__PURE__ */ (0,
|
|
31601
|
-
/* @__PURE__ */ (0,
|
|
31920
|
+
children: value ? field.getItemSummary ? field.getItemSummary(value) : "External item" : /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
|
|
31921
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Link, { size: "16" }),
|
|
31922
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { children: field.placeholder })
|
|
31602
31923
|
] })
|
|
31603
31924
|
}
|
|
31604
31925
|
),
|
|
31605
|
-
value && /* @__PURE__ */ (0,
|
|
31926
|
+
value && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31606
31927
|
"button",
|
|
31607
31928
|
{
|
|
31608
31929
|
className: getClassName13("detachButton"),
|
|
31609
31930
|
onClick: () => {
|
|
31610
31931
|
onChange(null);
|
|
31611
31932
|
},
|
|
31612
|
-
children: /* @__PURE__ */ (0,
|
|
31933
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Unlock, { size: 16 })
|
|
31613
31934
|
}
|
|
31614
31935
|
)
|
|
31615
31936
|
] }),
|
|
31616
|
-
/* @__PURE__ */ (0,
|
|
31937
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Modal, { onClose: () => setOpen(false), isOpen, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
31617
31938
|
"form",
|
|
31618
31939
|
{
|
|
31619
31940
|
className: getClassNameModal({
|
|
@@ -31627,11 +31948,11 @@ var ExternalInput = ({
|
|
|
31627
31948
|
search(searchQuery, filters);
|
|
31628
31949
|
},
|
|
31629
31950
|
children: [
|
|
31630
|
-
/* @__PURE__ */ (0,
|
|
31631
|
-
/* @__PURE__ */ (0,
|
|
31632
|
-
/* @__PURE__ */ (0,
|
|
31633
|
-
/* @__PURE__ */ (0,
|
|
31634
|
-
/* @__PURE__ */ (0,
|
|
31951
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: getClassNameModal("masthead"), children: field.showSearch ? /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassNameModal("searchForm"), children: [
|
|
31952
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("label", { className: getClassNameModal("search"), children: [
|
|
31953
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: getClassNameModal("searchIconText"), children: "Search" }),
|
|
31954
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: getClassNameModal("searchIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Search, { size: "18" }) }),
|
|
31955
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31635
31956
|
"input",
|
|
31636
31957
|
{
|
|
31637
31958
|
className: getClassNameModal("searchInput"),
|
|
@@ -31646,9 +31967,9 @@ var ExternalInput = ({
|
|
|
31646
31967
|
}
|
|
31647
31968
|
)
|
|
31648
31969
|
] }),
|
|
31649
|
-
/* @__PURE__ */ (0,
|
|
31650
|
-
/* @__PURE__ */ (0,
|
|
31651
|
-
hasFilterFields && /* @__PURE__ */ (0,
|
|
31970
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassNameModal("searchActions"), children: [
|
|
31971
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Button, { type: "submit", loading: isLoading, fullWidth: true, children: "Search" }),
|
|
31972
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: getClassNameModal("searchActionIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31652
31973
|
IconButton,
|
|
31653
31974
|
{
|
|
31654
31975
|
title: "Toggle filters",
|
|
@@ -31657,15 +31978,15 @@ var ExternalInput = ({
|
|
|
31657
31978
|
e.stopPropagation();
|
|
31658
31979
|
setFiltersToggled(!filtersToggled);
|
|
31659
31980
|
},
|
|
31660
|
-
children: /* @__PURE__ */ (0,
|
|
31981
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(SlidersHorizontal, { size: 20 })
|
|
31661
31982
|
}
|
|
31662
31983
|
) })
|
|
31663
31984
|
] })
|
|
31664
|
-
] }) : /* @__PURE__ */ (0,
|
|
31665
|
-
/* @__PURE__ */ (0,
|
|
31666
|
-
hasFilterFields && /* @__PURE__ */ (0,
|
|
31985
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(Heading, { rank: 2, size: "xs", children: field.placeholder || "Select data" }) }),
|
|
31986
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassNameModal("grid"), children: [
|
|
31987
|
+
hasFilterFields && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: getClassNameModal("filters"), children: hasFilterFields && Object.keys(filterFields).map((fieldName) => {
|
|
31667
31988
|
const filterField = filterFields[fieldName];
|
|
31668
|
-
return /* @__PURE__ */ (0,
|
|
31989
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31669
31990
|
InputOrGroup,
|
|
31670
31991
|
{
|
|
31671
31992
|
field: filterField,
|
|
@@ -31682,9 +32003,9 @@ var ExternalInput = ({
|
|
|
31682
32003
|
fieldName
|
|
31683
32004
|
);
|
|
31684
32005
|
}) }),
|
|
31685
|
-
/* @__PURE__ */ (0,
|
|
31686
|
-
/* @__PURE__ */ (0,
|
|
31687
|
-
/* @__PURE__ */ (0,
|
|
32006
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassNameModal("tableWrapper"), children: [
|
|
32007
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("table", { className: getClassNameModal("table"), children: [
|
|
32008
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("thead", { className: getClassNameModal("thead"), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tr", { className: getClassNameModal("tr"), children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31688
32009
|
"th",
|
|
31689
32010
|
{
|
|
31690
32011
|
className: getClassNameModal("th"),
|
|
@@ -31693,8 +32014,8 @@ var ExternalInput = ({
|
|
|
31693
32014
|
},
|
|
31694
32015
|
key
|
|
31695
32016
|
)) }) }),
|
|
31696
|
-
/* @__PURE__ */ (0,
|
|
31697
|
-
return /* @__PURE__ */ (0,
|
|
32017
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("tbody", { className: getClassNameModal("tbody"), children: mappedData.map((item, i) => {
|
|
32018
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
31698
32019
|
"tr",
|
|
31699
32020
|
{
|
|
31700
32021
|
style: { whiteSpace: "nowrap" },
|
|
@@ -31703,16 +32024,16 @@ var ExternalInput = ({
|
|
|
31703
32024
|
onChange(mapProp(data[i]));
|
|
31704
32025
|
setOpen(false);
|
|
31705
32026
|
},
|
|
31706
|
-
children: keys.map((key) => /* @__PURE__ */ (0,
|
|
32027
|
+
children: keys.map((key) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("td", { className: getClassNameModal("td"), children: item[key] }, key))
|
|
31707
32028
|
},
|
|
31708
32029
|
i
|
|
31709
32030
|
);
|
|
31710
32031
|
}) })
|
|
31711
32032
|
] }),
|
|
31712
|
-
/* @__PURE__ */ (0,
|
|
32033
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: getClassNameModal("loadingBanner"), children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_react_spinners5.ClipLoader, { size: 24, "aria-label": "Loading" }) })
|
|
31713
32034
|
] })
|
|
31714
32035
|
] }),
|
|
31715
|
-
/* @__PURE__ */ (0,
|
|
32036
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: getClassNameModal("footer"), children: [
|
|
31716
32037
|
mappedData.length,
|
|
31717
32038
|
" result",
|
|
31718
32039
|
mappedData.length === 1 ? "" : "s"
|
|
@@ -31726,7 +32047,7 @@ var ExternalInput = ({
|
|
|
31726
32047
|
};
|
|
31727
32048
|
|
|
31728
32049
|
// components/InputOrGroup/fields/ExternalField/index.tsx
|
|
31729
|
-
var
|
|
32050
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
31730
32051
|
var ExternalField = ({
|
|
31731
32052
|
field,
|
|
31732
32053
|
onChange,
|
|
@@ -31748,13 +32069,13 @@ var ExternalField = ({
|
|
|
31748
32069
|
if (field.type !== "external") {
|
|
31749
32070
|
return null;
|
|
31750
32071
|
}
|
|
31751
|
-
return /* @__PURE__ */ (0,
|
|
32072
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
31752
32073
|
FieldLabelInternal,
|
|
31753
32074
|
{
|
|
31754
32075
|
label: label || name,
|
|
31755
|
-
icon: /* @__PURE__ */ (0,
|
|
32076
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Link, { size: 16 }),
|
|
31756
32077
|
el: "div",
|
|
31757
|
-
children: /* @__PURE__ */ (0,
|
|
32078
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
31758
32079
|
ExternalInput,
|
|
31759
32080
|
{
|
|
31760
32081
|
name,
|
|
@@ -31780,8 +32101,8 @@ var ExternalField = ({
|
|
|
31780
32101
|
|
|
31781
32102
|
// components/InputOrGroup/fields/RadioField/index.tsx
|
|
31782
32103
|
init_react_import();
|
|
31783
|
-
var
|
|
31784
|
-
var getClassName14 = get_class_name_factory_default("Input",
|
|
32104
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
32105
|
+
var getClassName14 = get_class_name_factory_default("Input", styles_default9);
|
|
31785
32106
|
var RadioField = ({
|
|
31786
32107
|
field,
|
|
31787
32108
|
onChange,
|
|
@@ -31794,19 +32115,19 @@ var RadioField = ({
|
|
|
31794
32115
|
if (field.type !== "radio" || !field.options) {
|
|
31795
32116
|
return null;
|
|
31796
32117
|
}
|
|
31797
|
-
return /* @__PURE__ */ (0,
|
|
32118
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
31798
32119
|
FieldLabelInternal,
|
|
31799
32120
|
{
|
|
31800
|
-
icon: /* @__PURE__ */ (0,
|
|
32121
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(CheckCircle, { size: 16 }),
|
|
31801
32122
|
label: label || name,
|
|
31802
32123
|
readOnly,
|
|
31803
32124
|
el: "div",
|
|
31804
|
-
children: /* @__PURE__ */ (0,
|
|
32125
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: getClassName14("radioGroupItems"), id, children: field.options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
31805
32126
|
"label",
|
|
31806
32127
|
{
|
|
31807
32128
|
className: getClassName14("radio"),
|
|
31808
32129
|
children: [
|
|
31809
|
-
/* @__PURE__ */ (0,
|
|
32130
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
31810
32131
|
"input",
|
|
31811
32132
|
{
|
|
31812
32133
|
type: "radio",
|
|
@@ -31824,7 +32145,7 @@ var RadioField = ({
|
|
|
31824
32145
|
defaultChecked: value === option.value
|
|
31825
32146
|
}
|
|
31826
32147
|
),
|
|
31827
|
-
/* @__PURE__ */ (0,
|
|
32148
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: getClassName14("radioInner"), children: option.label || option.value })
|
|
31828
32149
|
]
|
|
31829
32150
|
},
|
|
31830
32151
|
option.label + option.value
|
|
@@ -31835,8 +32156,8 @@ var RadioField = ({
|
|
|
31835
32156
|
|
|
31836
32157
|
// components/InputOrGroup/fields/SelectField/index.tsx
|
|
31837
32158
|
init_react_import();
|
|
31838
|
-
var
|
|
31839
|
-
var getClassName15 = get_class_name_factory_default("Input",
|
|
32159
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
32160
|
+
var getClassName15 = get_class_name_factory_default("Input", styles_default9);
|
|
31840
32161
|
var SelectField = ({
|
|
31841
32162
|
field,
|
|
31842
32163
|
onChange,
|
|
@@ -31849,13 +32170,13 @@ var SelectField = ({
|
|
|
31849
32170
|
if (field.type !== "select" || !field.options) {
|
|
31850
32171
|
return null;
|
|
31851
32172
|
}
|
|
31852
|
-
return /* @__PURE__ */ (0,
|
|
32173
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
31853
32174
|
FieldLabelInternal,
|
|
31854
32175
|
{
|
|
31855
32176
|
label: label || name,
|
|
31856
|
-
icon: /* @__PURE__ */ (0,
|
|
32177
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(ChevronDown, { size: 16 }),
|
|
31857
32178
|
readOnly,
|
|
31858
|
-
children: /* @__PURE__ */ (0,
|
|
32179
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
31859
32180
|
"select",
|
|
31860
32181
|
{
|
|
31861
32182
|
id,
|
|
@@ -31869,7 +32190,7 @@ var SelectField = ({
|
|
|
31869
32190
|
onChange(e.currentTarget.value);
|
|
31870
32191
|
},
|
|
31871
32192
|
value,
|
|
31872
|
-
children: field.options.map((option) => /* @__PURE__ */ (0,
|
|
32193
|
+
children: field.options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
31873
32194
|
"option",
|
|
31874
32195
|
{
|
|
31875
32196
|
label: option.label,
|
|
@@ -31885,8 +32206,8 @@ var SelectField = ({
|
|
|
31885
32206
|
|
|
31886
32207
|
// components/InputOrGroup/fields/TextareaField/index.tsx
|
|
31887
32208
|
init_react_import();
|
|
31888
|
-
var
|
|
31889
|
-
var getClassName16 = get_class_name_factory_default("Input",
|
|
32209
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
32210
|
+
var getClassName16 = get_class_name_factory_default("Input", styles_default9);
|
|
31890
32211
|
var TextareaField = ({
|
|
31891
32212
|
onChange,
|
|
31892
32213
|
readOnly,
|
|
@@ -31895,13 +32216,13 @@ var TextareaField = ({
|
|
|
31895
32216
|
label,
|
|
31896
32217
|
id
|
|
31897
32218
|
}) => {
|
|
31898
|
-
return /* @__PURE__ */ (0,
|
|
32219
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
31899
32220
|
FieldLabelInternal,
|
|
31900
32221
|
{
|
|
31901
32222
|
label: label || name,
|
|
31902
|
-
icon: /* @__PURE__ */ (0,
|
|
32223
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Type, { size: 16 }),
|
|
31903
32224
|
readOnly,
|
|
31904
|
-
children: /* @__PURE__ */ (0,
|
|
32225
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
31905
32226
|
"textarea",
|
|
31906
32227
|
{
|
|
31907
32228
|
id,
|
|
@@ -31925,14 +32246,16 @@ var import_use_debounce2 = require("use-debounce");
|
|
|
31925
32246
|
// components/InputOrGroup/fields/ObjectField/index.tsx
|
|
31926
32247
|
init_react_import();
|
|
31927
32248
|
|
|
31928
|
-
//
|
|
31929
|
-
|
|
31930
|
-
|
|
32249
|
+
// components/InputOrGroup/fields/ObjectField/styles.module.css
|
|
32250
|
+
var styles_default13 = {
|
|
32251
|
+
ObjectField: "styles_ObjectField",
|
|
32252
|
+
"ObjectField-fieldset": "styles_ObjectField-fieldset"
|
|
32253
|
+
};
|
|
31931
32254
|
|
|
31932
32255
|
// components/InputOrGroup/fields/ObjectField/index.tsx
|
|
31933
|
-
var
|
|
31934
|
-
var getClassName17 = get_class_name_factory_default("ObjectField",
|
|
31935
|
-
var getClassNameItem3 = get_class_name_factory_default("ObjectFieldItem",
|
|
32256
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
32257
|
+
var getClassName17 = get_class_name_factory_default("ObjectField", styles_default13);
|
|
32258
|
+
var getClassNameItem3 = get_class_name_factory_default("ObjectFieldItem", styles_default13);
|
|
31936
32259
|
var ObjectField = ({
|
|
31937
32260
|
field,
|
|
31938
32261
|
onChange,
|
|
@@ -31947,18 +32270,18 @@ var ObjectField = ({
|
|
|
31947
32270
|
return null;
|
|
31948
32271
|
}
|
|
31949
32272
|
const data = value || {};
|
|
31950
|
-
return /* @__PURE__ */ (0,
|
|
32273
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
31951
32274
|
FieldLabelInternal,
|
|
31952
32275
|
{
|
|
31953
32276
|
label: label || name,
|
|
31954
|
-
icon: /* @__PURE__ */ (0,
|
|
32277
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(MoreVertical, { size: 16 }),
|
|
31955
32278
|
el: "div",
|
|
31956
32279
|
readOnly,
|
|
31957
|
-
children: /* @__PURE__ */ (0,
|
|
32280
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: getClassName17(), children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("fieldset", { className: getClassName17("fieldset"), children: Object.keys(field.objectFields).map((fieldName) => {
|
|
31958
32281
|
const subField = field.objectFields[fieldName];
|
|
31959
32282
|
const subFieldName = `${name}.${fieldName}`;
|
|
31960
32283
|
const wildcardFieldName = `${name}.${fieldName}`;
|
|
31961
|
-
return /* @__PURE__ */ (0,
|
|
32284
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
31962
32285
|
InputOrGroup,
|
|
31963
32286
|
{
|
|
31964
32287
|
name: subFieldName,
|
|
@@ -31985,8 +32308,8 @@ var ObjectField = ({
|
|
|
31985
32308
|
};
|
|
31986
32309
|
|
|
31987
32310
|
// components/InputOrGroup/index.tsx
|
|
31988
|
-
var
|
|
31989
|
-
var getClassName18 = get_class_name_factory_default("Input",
|
|
32311
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
32312
|
+
var getClassName18 = get_class_name_factory_default("Input", styles_default9);
|
|
31990
32313
|
var FieldLabel = ({
|
|
31991
32314
|
children,
|
|
31992
32315
|
icon,
|
|
@@ -31996,11 +32319,11 @@ var FieldLabel = ({
|
|
|
31996
32319
|
className
|
|
31997
32320
|
}) => {
|
|
31998
32321
|
const El = el;
|
|
31999
|
-
return /* @__PURE__ */ (0,
|
|
32000
|
-
/* @__PURE__ */ (0,
|
|
32001
|
-
icon ? /* @__PURE__ */ (0,
|
|
32322
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(El, { className, children: [
|
|
32323
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: getClassName18("label"), children: [
|
|
32324
|
+
icon ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: getClassName18("labelIcon"), children: icon }) : /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_jsx_runtime24.Fragment, {}),
|
|
32002
32325
|
label,
|
|
32003
|
-
readOnly && /* @__PURE__ */ (0,
|
|
32326
|
+
readOnly && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: getClassName18("disabledIcon"), title: "Read-only", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Lock, { size: "12" }) })
|
|
32004
32327
|
] }),
|
|
32005
32328
|
children
|
|
32006
32329
|
] });
|
|
@@ -32017,7 +32340,7 @@ var FieldLabelInternal = ({
|
|
|
32017
32340
|
() => overrides.fieldLabel || FieldLabel,
|
|
32018
32341
|
[overrides]
|
|
32019
32342
|
);
|
|
32020
|
-
return /* @__PURE__ */ (0,
|
|
32343
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
32021
32344
|
Wrapper,
|
|
32022
32345
|
{
|
|
32023
32346
|
label,
|
|
@@ -32057,7 +32380,7 @@ var InputOrGroup = (_a) => {
|
|
|
32057
32380
|
if (!field.render) {
|
|
32058
32381
|
return null;
|
|
32059
32382
|
}
|
|
32060
|
-
return /* @__PURE__ */ (0,
|
|
32383
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: getClassName18(), children: field.render(__spreadValues({
|
|
32061
32384
|
field,
|
|
32062
32385
|
name,
|
|
32063
32386
|
readOnly
|
|
@@ -32086,17 +32409,19 @@ var InputOrGroup = (_a) => {
|
|
|
32086
32409
|
const mergedProps = __spreadProps(__spreadValues(__spreadValues({}, props), localProps), { field });
|
|
32087
32410
|
const children = defaultFields[field.type](mergedProps);
|
|
32088
32411
|
const Render2 = render[field.type];
|
|
32089
|
-
return /* @__PURE__ */ (0,
|
|
32412
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Render2, __spreadProps(__spreadValues({}, mergedProps), { children }));
|
|
32090
32413
|
};
|
|
32091
32414
|
|
|
32092
|
-
//
|
|
32093
|
-
|
|
32094
|
-
|
|
32415
|
+
// components/Puck/components/Fields/styles.module.css
|
|
32416
|
+
var styles_default14 = {
|
|
32417
|
+
PuckFields: "styles_PuckFields",
|
|
32418
|
+
"PuckFields-loadingOverlay": "styles_PuckFields-loadingOverlay"
|
|
32419
|
+
};
|
|
32095
32420
|
|
|
32096
32421
|
// components/Puck/components/Fields/index.tsx
|
|
32097
32422
|
var import_react19 = require("react");
|
|
32098
|
-
var
|
|
32099
|
-
var getClassName19 = get_class_name_factory_default("PuckFields",
|
|
32423
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
32424
|
+
var getClassName19 = get_class_name_factory_default("PuckFields", styles_default14);
|
|
32100
32425
|
var defaultPageFields = {
|
|
32101
32426
|
title: { type: "text" }
|
|
32102
32427
|
};
|
|
@@ -32104,9 +32429,9 @@ var DefaultFields = ({
|
|
|
32104
32429
|
children,
|
|
32105
32430
|
isLoading
|
|
32106
32431
|
}) => {
|
|
32107
|
-
return /* @__PURE__ */ (0,
|
|
32432
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: getClassName19(), children: [
|
|
32108
32433
|
children,
|
|
32109
|
-
isLoading && /* @__PURE__ */ (0,
|
|
32434
|
+
isLoading && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: getClassName19("loadingOverlay"), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_react_spinners6.ClipLoader, { "aria-label": "loading" }) })
|
|
32110
32435
|
] });
|
|
32111
32436
|
};
|
|
32112
32437
|
var Fields = () => {
|
|
@@ -32127,14 +32452,14 @@ var Fields = () => {
|
|
|
32127
32452
|
const isLoading = selectedItem ? (_c = componentState[selectedItem == null ? void 0 : selectedItem.props.id]) == null ? void 0 : _c.loading : (_d = componentState["puck-root"]) == null ? void 0 : _d.loading;
|
|
32128
32453
|
const rootProps = data.root.props || data.root;
|
|
32129
32454
|
const Wrapper = (0, import_react19.useMemo)(() => overrides.fields || DefaultFields, [overrides]);
|
|
32130
|
-
return /* @__PURE__ */ (0,
|
|
32455
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
32131
32456
|
"form",
|
|
32132
32457
|
{
|
|
32133
32458
|
className: getClassName19(),
|
|
32134
32459
|
onSubmit: (e) => {
|
|
32135
32460
|
e.preventDefault();
|
|
32136
32461
|
},
|
|
32137
|
-
children: /* @__PURE__ */ (0,
|
|
32462
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Wrapper, { isLoading, itemSelector, children: Object.keys(fields).map((fieldName) => {
|
|
32138
32463
|
const field = fields[fieldName];
|
|
32139
32464
|
const onChange = (value, updatedUi) => {
|
|
32140
32465
|
var _a2, _b2;
|
|
@@ -32200,7 +32525,7 @@ var Fields = () => {
|
|
|
32200
32525
|
};
|
|
32201
32526
|
if (selectedItem && itemSelector) {
|
|
32202
32527
|
const { readOnly = {} } = selectedItem;
|
|
32203
|
-
return /* @__PURE__ */ (0,
|
|
32528
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
32204
32529
|
InputOrGroup,
|
|
32205
32530
|
{
|
|
32206
32531
|
field,
|
|
@@ -32216,7 +32541,7 @@ var Fields = () => {
|
|
|
32216
32541
|
);
|
|
32217
32542
|
} else {
|
|
32218
32543
|
const { readOnly = {} } = data.root;
|
|
32219
|
-
return /* @__PURE__ */ (0,
|
|
32544
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
32220
32545
|
InputOrGroup,
|
|
32221
32546
|
{
|
|
32222
32547
|
field,
|
|
@@ -32246,19 +32571,25 @@ var import_react20 = require("react");
|
|
|
32246
32571
|
// components/ComponentList/index.tsx
|
|
32247
32572
|
init_react_import();
|
|
32248
32573
|
|
|
32249
|
-
//
|
|
32250
|
-
|
|
32251
|
-
|
|
32574
|
+
// components/ComponentList/styles.module.css
|
|
32575
|
+
var styles_default15 = {
|
|
32576
|
+
ComponentList: "styles_ComponentList",
|
|
32577
|
+
"ComponentList--isExpanded": "styles_ComponentList--isExpanded",
|
|
32578
|
+
"ComponentList-content": "styles_ComponentList-content",
|
|
32579
|
+
"ComponentList-title": "styles_ComponentList-title",
|
|
32580
|
+
"ComponentList-titleIcon": "styles_ComponentList-titleIcon"
|
|
32581
|
+
};
|
|
32252
32582
|
|
|
32253
32583
|
// components/ComponentList/index.tsx
|
|
32254
|
-
var
|
|
32255
|
-
var getClassName20 = get_class_name_factory_default("ComponentList",
|
|
32584
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
32585
|
+
var getClassName20 = get_class_name_factory_default("ComponentList", styles_default15);
|
|
32256
32586
|
var ComponentListItem = ({
|
|
32257
32587
|
name,
|
|
32588
|
+
label,
|
|
32258
32589
|
index
|
|
32259
32590
|
}) => {
|
|
32260
32591
|
const { overrides } = useAppContext();
|
|
32261
|
-
return /* @__PURE__ */ (0,
|
|
32592
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(Drawer.Item, { label, name, index, children: overrides.componentItem });
|
|
32262
32593
|
};
|
|
32263
32594
|
var ComponentList = ({
|
|
32264
32595
|
children,
|
|
@@ -32267,8 +32598,8 @@ var ComponentList = ({
|
|
|
32267
32598
|
}) => {
|
|
32268
32599
|
const { config, state, setUi } = useAppContext();
|
|
32269
32600
|
const { expanded = true } = state.ui.componentList[id] || {};
|
|
32270
|
-
return /* @__PURE__ */ (0,
|
|
32271
|
-
title && /* @__PURE__ */ (0,
|
|
32601
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("div", { className: getClassName20({ isExpanded: expanded }), children: [
|
|
32602
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
32272
32603
|
"button",
|
|
32273
32604
|
{
|
|
32274
32605
|
className: getClassName20("title"),
|
|
@@ -32281,15 +32612,17 @@ var ComponentList = ({
|
|
|
32281
32612
|
}),
|
|
32282
32613
|
title: expanded ? `Collapse${title ? ` ${title}` : ""}` : `Expand${title ? ` ${title}` : ""}`,
|
|
32283
32614
|
children: [
|
|
32284
|
-
/* @__PURE__ */ (0,
|
|
32285
|
-
/* @__PURE__ */ (0,
|
|
32615
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { children: title }),
|
|
32616
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: getClassName20("titleIcon"), children: expanded ? /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(ChevronUp, { size: 12 }) : /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(ChevronDown, { size: 12 }) })
|
|
32286
32617
|
]
|
|
32287
32618
|
}
|
|
32288
32619
|
),
|
|
32289
|
-
/* @__PURE__ */ (0,
|
|
32290
|
-
|
|
32620
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { className: getClassName20("content"), children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(Drawer, { droppableId: `component-list${title ? `:${title}` : ""}`, children: children || Object.keys(config.components).map((componentKey, i) => {
|
|
32621
|
+
var _a;
|
|
32622
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
32291
32623
|
ComponentListItem,
|
|
32292
32624
|
{
|
|
32625
|
+
label: (_a = config.components[componentKey]["label"]) != null ? _a : componentKey,
|
|
32293
32626
|
name: componentKey,
|
|
32294
32627
|
index: i
|
|
32295
32628
|
},
|
|
@@ -32301,7 +32634,7 @@ var ComponentList = ({
|
|
|
32301
32634
|
ComponentList.Item = ComponentListItem;
|
|
32302
32635
|
|
|
32303
32636
|
// lib/use-component-list.tsx
|
|
32304
|
-
var
|
|
32637
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
32305
32638
|
var useComponentList = (config, ui) => {
|
|
32306
32639
|
const [componentList, setComponentList] = (0, import_react20.useState)();
|
|
32307
32640
|
(0, import_react20.useEffect)(() => {
|
|
@@ -32314,16 +32647,18 @@ var useComponentList = (config, ui) => {
|
|
|
32314
32647
|
if (category.visible === false || !category.components) {
|
|
32315
32648
|
return null;
|
|
32316
32649
|
}
|
|
32317
|
-
return /* @__PURE__ */ (0,
|
|
32650
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
32318
32651
|
ComponentList,
|
|
32319
32652
|
{
|
|
32320
32653
|
id: categoryKey,
|
|
32321
32654
|
title: category.title || categoryKey,
|
|
32322
32655
|
children: category.components.map((componentName, i) => {
|
|
32656
|
+
var _a2;
|
|
32323
32657
|
matchedComponents.push(componentName);
|
|
32324
|
-
return /* @__PURE__ */ (0,
|
|
32658
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
32325
32659
|
ComponentList.Item,
|
|
32326
32660
|
{
|
|
32661
|
+
label: (_a2 = config.components[componentName]["label"]) != null ? _a2 : componentName,
|
|
32327
32662
|
name: componentName,
|
|
32328
32663
|
index: i
|
|
32329
32664
|
},
|
|
@@ -32340,16 +32675,18 @@ var useComponentList = (config, ui) => {
|
|
|
32340
32675
|
);
|
|
32341
32676
|
if (remainingComponents.length > 0 && !((_a = ui.componentList.other) == null ? void 0 : _a.components) && ((_b = ui.componentList.other) == null ? void 0 : _b.visible) !== false) {
|
|
32342
32677
|
_componentList.push(
|
|
32343
|
-
/* @__PURE__ */ (0,
|
|
32678
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
32344
32679
|
ComponentList,
|
|
32345
32680
|
{
|
|
32346
32681
|
id: "other",
|
|
32347
32682
|
title: ((_c = ui.componentList.other) == null ? void 0 : _c.title) || "Other",
|
|
32348
32683
|
children: remainingComponents.map((componentName, i) => {
|
|
32349
|
-
|
|
32684
|
+
var _a2;
|
|
32685
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
32350
32686
|
ComponentList.Item,
|
|
32351
32687
|
{
|
|
32352
32688
|
name: componentName,
|
|
32689
|
+
label: (_a2 = config.components[componentName]["label"]) != null ? _a2 : componentName,
|
|
32353
32690
|
index: i
|
|
32354
32691
|
},
|
|
32355
32692
|
componentName
|
|
@@ -32362,44 +32699,71 @@ var useComponentList = (config, ui) => {
|
|
|
32362
32699
|
}
|
|
32363
32700
|
setComponentList(_componentList);
|
|
32364
32701
|
}
|
|
32365
|
-
}, [config.categories, ui.componentList]);
|
|
32702
|
+
}, [config.categories, config.components, ui.componentList]);
|
|
32366
32703
|
return componentList;
|
|
32367
32704
|
};
|
|
32368
32705
|
|
|
32369
32706
|
// components/Puck/components/Components/index.tsx
|
|
32370
32707
|
var import_react21 = require("react");
|
|
32371
|
-
var
|
|
32708
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
32372
32709
|
var Components = () => {
|
|
32373
32710
|
const { config, state, overrides } = useAppContext();
|
|
32374
32711
|
const componentList = useComponentList(config, state.ui);
|
|
32375
32712
|
const Wrapper = (0, import_react21.useMemo)(() => overrides.components || "div", [overrides]);
|
|
32376
|
-
return /* @__PURE__ */ (0,
|
|
32713
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(Wrapper, { children: componentList ? componentList : /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(ComponentList, { id: "all" }) });
|
|
32377
32714
|
};
|
|
32378
32715
|
|
|
32379
32716
|
// components/Puck/components/Preview/index.tsx
|
|
32380
32717
|
init_react_import();
|
|
32381
32718
|
var import_react22 = require("react");
|
|
32382
|
-
var
|
|
32719
|
+
var import_auto_frame_component = __toESM(require("@measured/auto-frame-component"));
|
|
32720
|
+
|
|
32721
|
+
// components/Puck/components/Preview/styles.module.css
|
|
32722
|
+
var styles_default16 = {
|
|
32723
|
+
PuckPreview: "styles_PuckPreview",
|
|
32724
|
+
"PuckPreview-frame": "styles_PuckPreview-frame"
|
|
32725
|
+
};
|
|
32726
|
+
|
|
32727
|
+
// components/Puck/components/Preview/index.tsx
|
|
32728
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
32729
|
+
var getClassName21 = get_class_name_factory_default("PuckPreview", styles_default16);
|
|
32383
32730
|
var Preview = ({ id = "puck-preview" }) => {
|
|
32384
|
-
const { config, dispatch, state } = useAppContext();
|
|
32731
|
+
const { config, dispatch, state, setStatus, iframe } = useAppContext();
|
|
32385
32732
|
const Page = (0, import_react22.useCallback)(
|
|
32386
32733
|
(pageProps) => {
|
|
32387
32734
|
var _a, _b;
|
|
32388
|
-
return ((_a = config.root) == null ? void 0 : _a.render) ? (_b = config.root) == null ? void 0 : _b.render(__spreadProps(__spreadValues({
|
|
32735
|
+
return ((_a = config.root) == null ? void 0 : _a.render) ? (_b = config.root) == null ? void 0 : _b.render(__spreadProps(__spreadValues({
|
|
32736
|
+
id: "puck-root"
|
|
32737
|
+
}, pageProps), {
|
|
32738
|
+
editMode: true,
|
|
32739
|
+
puck: { renderDropZone: DropZone }
|
|
32740
|
+
})) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_jsx_runtime29.Fragment, { children: pageProps.children });
|
|
32389
32741
|
},
|
|
32390
32742
|
[config.root]
|
|
32391
32743
|
);
|
|
32392
32744
|
const rootProps = state.data.root.props || state.data.root;
|
|
32393
|
-
const
|
|
32394
|
-
return /* @__PURE__ */ (0,
|
|
32745
|
+
const ref = (0, import_react22.useRef)(null);
|
|
32746
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
32395
32747
|
"div",
|
|
32396
32748
|
{
|
|
32749
|
+
className: getClassName21(),
|
|
32397
32750
|
id,
|
|
32398
32751
|
onClick: () => {
|
|
32399
32752
|
dispatch({ type: "setUi", ui: __spreadProps(__spreadValues({}, state.ui), { itemSelector: null }) });
|
|
32400
32753
|
},
|
|
32401
|
-
|
|
32402
|
-
|
|
32754
|
+
children: iframe.enabled ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
32755
|
+
import_auto_frame_component.default,
|
|
32756
|
+
{
|
|
32757
|
+
id: "preview-frame",
|
|
32758
|
+
className: getClassName21("frame"),
|
|
32759
|
+
"data-rfd-iframe": true,
|
|
32760
|
+
ref,
|
|
32761
|
+
onStylesLoaded: () => {
|
|
32762
|
+
setStatus("READY");
|
|
32763
|
+
},
|
|
32764
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Page, __spreadProps(__spreadValues({ dispatch, state }, rootProps), { children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(DropZone, { zone: rootDroppableId }) }))
|
|
32765
|
+
}
|
|
32766
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { id: "preview-frame", className: getClassName21("frame"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Page, __spreadProps(__spreadValues({ dispatch, state }, rootProps), { children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(DropZone, { zone: rootDroppableId }) })) })
|
|
32403
32767
|
}
|
|
32404
32768
|
);
|
|
32405
32769
|
};
|
|
@@ -32431,9 +32795,24 @@ var areaContainsZones = (data, area) => {
|
|
|
32431
32795
|
// components/LayerTree/index.tsx
|
|
32432
32796
|
init_react_import();
|
|
32433
32797
|
|
|
32434
|
-
//
|
|
32435
|
-
|
|
32436
|
-
|
|
32798
|
+
// components/LayerTree/styles.module.css
|
|
32799
|
+
var styles_default17 = {
|
|
32800
|
+
LayerTree: "styles_LayerTree",
|
|
32801
|
+
"LayerTree-zoneTitle": "styles_LayerTree-zoneTitle",
|
|
32802
|
+
"LayerTree-helper": "styles_LayerTree-helper",
|
|
32803
|
+
Layer: "styles_Layer",
|
|
32804
|
+
"Layer-inner": "styles_Layer-inner",
|
|
32805
|
+
"Layer--containsZone": "styles_Layer--containsZone",
|
|
32806
|
+
"Layer-clickable": "styles_Layer-clickable",
|
|
32807
|
+
"Layer--isSelected": "styles_Layer--isSelected",
|
|
32808
|
+
"Layer-chevron": "styles_Layer-chevron",
|
|
32809
|
+
"Layer--childIsSelected": "styles_Layer--childIsSelected",
|
|
32810
|
+
"Layer-zones": "styles_Layer-zones",
|
|
32811
|
+
"Layer-title": "styles_Layer-title",
|
|
32812
|
+
"Layer-name": "styles_Layer-name",
|
|
32813
|
+
"Layer-icon": "styles_Layer-icon",
|
|
32814
|
+
"Layer-zoneIcon": "styles_Layer-zoneIcon"
|
|
32815
|
+
};
|
|
32437
32816
|
|
|
32438
32817
|
// lib/scroll-into-view.ts
|
|
32439
32818
|
init_react_import();
|
|
@@ -32461,11 +32840,12 @@ var isChildOfZone = (item, maybeChild, ctx) => {
|
|
|
32461
32840
|
};
|
|
32462
32841
|
|
|
32463
32842
|
// components/LayerTree/index.tsx
|
|
32464
|
-
var
|
|
32465
|
-
var
|
|
32466
|
-
var getClassNameLayer = get_class_name_factory_default("Layer",
|
|
32843
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
32844
|
+
var getClassName22 = get_class_name_factory_default("LayerTree", styles_default17);
|
|
32845
|
+
var getClassNameLayer = get_class_name_factory_default("Layer", styles_default17);
|
|
32467
32846
|
var LayerTree = ({
|
|
32468
32847
|
data,
|
|
32848
|
+
config,
|
|
32469
32849
|
zoneContent,
|
|
32470
32850
|
itemSelector,
|
|
32471
32851
|
setItemSelector,
|
|
@@ -32474,15 +32854,16 @@ var LayerTree = ({
|
|
|
32474
32854
|
}) => {
|
|
32475
32855
|
const zones = data.zones || {};
|
|
32476
32856
|
const ctx = (0, import_react23.useContext)(dropZoneContext);
|
|
32477
|
-
return /* @__PURE__ */ (0,
|
|
32478
|
-
label && /* @__PURE__ */ (0,
|
|
32479
|
-
/* @__PURE__ */ (0,
|
|
32857
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(import_jsx_runtime30.Fragment, { children: [
|
|
32858
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: getClassName22("zoneTitle"), children: [
|
|
32859
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassName22("zoneIcon"), children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Layers, { size: "16" }) }),
|
|
32480
32860
|
" ",
|
|
32481
32861
|
label
|
|
32482
32862
|
] }),
|
|
32483
|
-
/* @__PURE__ */ (0,
|
|
32484
|
-
zoneContent.length === 0 && /* @__PURE__ */ (0,
|
|
32863
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("ul", { className: getClassName22(), children: [
|
|
32864
|
+
zoneContent.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassName22("helper"), children: "No items" }),
|
|
32485
32865
|
zoneContent.map((item, i) => {
|
|
32866
|
+
var _a;
|
|
32486
32867
|
const isSelected = (itemSelector == null ? void 0 : itemSelector.index) === i && (itemSelector.zone === zone || itemSelector.zone === rootDroppableId && !zone);
|
|
32487
32868
|
const zonesForItem = findZonesForArea(data, item.props.id);
|
|
32488
32869
|
const containsZone = Object.keys(zonesForItem).length > 0;
|
|
@@ -32496,7 +32877,7 @@ var LayerTree = ({
|
|
|
32496
32877
|
const selectedItem = itemSelector && data ? getItem(itemSelector, data) : null;
|
|
32497
32878
|
const isHovering = hoveringComponent === item.props.id;
|
|
32498
32879
|
const childIsSelected = isChildOfZone(item, selectedItem, ctx);
|
|
32499
|
-
return /* @__PURE__ */ (0,
|
|
32880
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
32500
32881
|
"li",
|
|
32501
32882
|
{
|
|
32502
32883
|
className: getClassNameLayer({
|
|
@@ -32506,7 +32887,7 @@ var LayerTree = ({
|
|
|
32506
32887
|
childIsSelected
|
|
32507
32888
|
}),
|
|
32508
32889
|
children: [
|
|
32509
|
-
/* @__PURE__ */ (0,
|
|
32890
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("inner"), children: /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
32510
32891
|
"button",
|
|
32511
32892
|
{
|
|
32512
32893
|
className: getClassNameLayer("clickable"),
|
|
@@ -32520,8 +32901,9 @@ var LayerTree = ({
|
|
|
32520
32901
|
zone
|
|
32521
32902
|
});
|
|
32522
32903
|
const id = zoneContent[i].props.id;
|
|
32904
|
+
const frame = getFrame();
|
|
32523
32905
|
scrollIntoView(
|
|
32524
|
-
|
|
32906
|
+
frame == null ? void 0 : frame.querySelector(
|
|
32525
32907
|
`[data-rfd-drag-handle-draggable-id="draggable-${id}"]`
|
|
32526
32908
|
)
|
|
32527
32909
|
);
|
|
@@ -32537,24 +32919,25 @@ var LayerTree = ({
|
|
|
32537
32919
|
setHoveringComponent(null);
|
|
32538
32920
|
},
|
|
32539
32921
|
children: [
|
|
32540
|
-
containsZone && /* @__PURE__ */ (0,
|
|
32922
|
+
containsZone && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
32541
32923
|
"div",
|
|
32542
32924
|
{
|
|
32543
32925
|
className: getClassNameLayer("chevron"),
|
|
32544
32926
|
title: isSelected ? "Collapse" : "Expand",
|
|
32545
|
-
children: /* @__PURE__ */ (0,
|
|
32927
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(ChevronDown, { size: "12" })
|
|
32546
32928
|
}
|
|
32547
32929
|
),
|
|
32548
|
-
/* @__PURE__ */ (0,
|
|
32549
|
-
/* @__PURE__ */ (0,
|
|
32550
|
-
/* @__PURE__ */ (0,
|
|
32930
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: getClassNameLayer("title"), children: [
|
|
32931
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("icon"), children: item.type === "Text" || item.type === "Heading" ? /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Type, { size: "16" }) : /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(LayoutGrid, { size: "16" }) }),
|
|
32932
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("name"), children: (_a = config.components[item.type]["label"]) != null ? _a : item.type })
|
|
32551
32933
|
] })
|
|
32552
32934
|
]
|
|
32553
32935
|
}
|
|
32554
32936
|
) }),
|
|
32555
|
-
containsZone && Object.keys(zonesForItem).map((zoneKey, idx) => /* @__PURE__ */ (0,
|
|
32937
|
+
containsZone && Object.keys(zonesForItem).map((zoneKey, idx) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("zones"), children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
32556
32938
|
LayerTree,
|
|
32557
32939
|
{
|
|
32940
|
+
config,
|
|
32558
32941
|
data,
|
|
32559
32942
|
zoneContent: zones[zoneKey],
|
|
32560
32943
|
setItemSelector,
|
|
@@ -32574,9 +32957,9 @@ var LayerTree = ({
|
|
|
32574
32957
|
|
|
32575
32958
|
// components/Puck/components/Outline/index.tsx
|
|
32576
32959
|
var import_react24 = require("react");
|
|
32577
|
-
var
|
|
32960
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
32578
32961
|
var Outline = () => {
|
|
32579
|
-
const { dispatch, state, overrides } = useAppContext();
|
|
32962
|
+
const { dispatch, state, overrides, config } = useAppContext();
|
|
32580
32963
|
const { data, ui } = state;
|
|
32581
32964
|
const { itemSelector } = ui;
|
|
32582
32965
|
const setItemSelector = (0, import_react24.useCallback)(
|
|
@@ -32589,10 +32972,11 @@ var Outline = () => {
|
|
|
32589
32972
|
[]
|
|
32590
32973
|
);
|
|
32591
32974
|
const Wrapper = (0, import_react24.useMemo)(() => overrides.outline || "div", [overrides]);
|
|
32592
|
-
return /* @__PURE__ */ (0,
|
|
32593
|
-
(ctx == null ? void 0 : ctx.activeZones) && (ctx == null ? void 0 : ctx.activeZones[rootDroppableId]) && /* @__PURE__ */ (0,
|
|
32975
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Wrapper, { children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(dropZoneContext.Consumer, { children: (ctx) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(import_jsx_runtime31.Fragment, { children: [
|
|
32976
|
+
(ctx == null ? void 0 : ctx.activeZones) && (ctx == null ? void 0 : ctx.activeZones[rootDroppableId]) && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
32594
32977
|
LayerTree,
|
|
32595
32978
|
{
|
|
32979
|
+
config,
|
|
32596
32980
|
data,
|
|
32597
32981
|
label: areaContainsZones(data, "root") ? rootDroppableId : "",
|
|
32598
32982
|
zoneContent: data.content,
|
|
@@ -32602,9 +32986,10 @@ var Outline = () => {
|
|
|
32602
32986
|
),
|
|
32603
32987
|
Object.entries(findZonesForArea(data, "root")).map(
|
|
32604
32988
|
([zoneKey, zone]) => {
|
|
32605
|
-
return /* @__PURE__ */ (0,
|
|
32989
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
32606
32990
|
LayerTree,
|
|
32607
32991
|
{
|
|
32992
|
+
config,
|
|
32608
32993
|
data,
|
|
32609
32994
|
label: zoneKey,
|
|
32610
32995
|
zone: zoneKey,
|
|
@@ -32728,14 +33113,441 @@ function useHistoryStore() {
|
|
|
32728
33113
|
};
|
|
32729
33114
|
}
|
|
32730
33115
|
|
|
33116
|
+
// components/Puck/components/Canvas/index.tsx
|
|
33117
|
+
init_react_import();
|
|
33118
|
+
|
|
33119
|
+
// ../../node_modules/css-box-model/dist/css-box-model.esm.js
|
|
33120
|
+
init_react_import();
|
|
33121
|
+
|
|
33122
|
+
// ../../node_modules/tiny-invariant/dist/esm/tiny-invariant.js
|
|
33123
|
+
init_react_import();
|
|
33124
|
+
var isProduction = process.env.NODE_ENV === "production";
|
|
33125
|
+
var prefix = "Invariant failed";
|
|
33126
|
+
function invariant(condition, message) {
|
|
33127
|
+
if (condition) {
|
|
33128
|
+
return;
|
|
33129
|
+
}
|
|
33130
|
+
if (isProduction) {
|
|
33131
|
+
throw new Error(prefix);
|
|
33132
|
+
}
|
|
33133
|
+
var provided = typeof message === "function" ? message() : message;
|
|
33134
|
+
var value = provided ? "".concat(prefix, ": ").concat(provided) : prefix;
|
|
33135
|
+
throw new Error(value);
|
|
33136
|
+
}
|
|
33137
|
+
|
|
33138
|
+
// ../../node_modules/css-box-model/dist/css-box-model.esm.js
|
|
33139
|
+
var getRect = function getRect2(_ref) {
|
|
33140
|
+
var top = _ref.top, right = _ref.right, bottom = _ref.bottom, left = _ref.left;
|
|
33141
|
+
var width = right - left;
|
|
33142
|
+
var height = bottom - top;
|
|
33143
|
+
var rect = {
|
|
33144
|
+
top,
|
|
33145
|
+
right,
|
|
33146
|
+
bottom,
|
|
33147
|
+
left,
|
|
33148
|
+
width,
|
|
33149
|
+
height,
|
|
33150
|
+
x: left,
|
|
33151
|
+
y: top,
|
|
33152
|
+
center: {
|
|
33153
|
+
x: (right + left) / 2,
|
|
33154
|
+
y: (bottom + top) / 2
|
|
33155
|
+
}
|
|
33156
|
+
};
|
|
33157
|
+
return rect;
|
|
33158
|
+
};
|
|
33159
|
+
var expand = function expand2(target, expandBy) {
|
|
33160
|
+
return {
|
|
33161
|
+
top: target.top - expandBy.top,
|
|
33162
|
+
left: target.left - expandBy.left,
|
|
33163
|
+
bottom: target.bottom + expandBy.bottom,
|
|
33164
|
+
right: target.right + expandBy.right
|
|
33165
|
+
};
|
|
33166
|
+
};
|
|
33167
|
+
var shrink = function shrink2(target, shrinkBy) {
|
|
33168
|
+
return {
|
|
33169
|
+
top: target.top + shrinkBy.top,
|
|
33170
|
+
left: target.left + shrinkBy.left,
|
|
33171
|
+
bottom: target.bottom - shrinkBy.bottom,
|
|
33172
|
+
right: target.right - shrinkBy.right
|
|
33173
|
+
};
|
|
33174
|
+
};
|
|
33175
|
+
var noSpacing = {
|
|
33176
|
+
top: 0,
|
|
33177
|
+
right: 0,
|
|
33178
|
+
bottom: 0,
|
|
33179
|
+
left: 0
|
|
33180
|
+
};
|
|
33181
|
+
var createBox = function createBox2(_ref2) {
|
|
33182
|
+
var borderBox = _ref2.borderBox, _ref2$margin = _ref2.margin, margin = _ref2$margin === void 0 ? noSpacing : _ref2$margin, _ref2$border = _ref2.border, border = _ref2$border === void 0 ? noSpacing : _ref2$border, _ref2$padding = _ref2.padding, padding = _ref2$padding === void 0 ? noSpacing : _ref2$padding;
|
|
33183
|
+
var marginBox = getRect(expand(borderBox, margin));
|
|
33184
|
+
var paddingBox = getRect(shrink(borderBox, border));
|
|
33185
|
+
var contentBox = getRect(shrink(paddingBox, padding));
|
|
33186
|
+
return {
|
|
33187
|
+
marginBox,
|
|
33188
|
+
borderBox: getRect(borderBox),
|
|
33189
|
+
paddingBox,
|
|
33190
|
+
contentBox,
|
|
33191
|
+
margin,
|
|
33192
|
+
border,
|
|
33193
|
+
padding
|
|
33194
|
+
};
|
|
33195
|
+
};
|
|
33196
|
+
var parse = function parse2(raw) {
|
|
33197
|
+
var value = raw.slice(0, -2);
|
|
33198
|
+
var suffix = raw.slice(-2);
|
|
33199
|
+
if (suffix !== "px") {
|
|
33200
|
+
return 0;
|
|
33201
|
+
}
|
|
33202
|
+
var result = Number(value);
|
|
33203
|
+
!!isNaN(result) ? process.env.NODE_ENV !== "production" ? invariant(false, "Could not parse value [raw: " + raw + ", without suffix: " + value + "]") : invariant(false) : void 0;
|
|
33204
|
+
return result;
|
|
33205
|
+
};
|
|
33206
|
+
var calculateBox = function calculateBox2(borderBox, styles) {
|
|
33207
|
+
var margin = {
|
|
33208
|
+
top: parse(styles.marginTop),
|
|
33209
|
+
right: parse(styles.marginRight),
|
|
33210
|
+
bottom: parse(styles.marginBottom),
|
|
33211
|
+
left: parse(styles.marginLeft)
|
|
33212
|
+
};
|
|
33213
|
+
var padding = {
|
|
33214
|
+
top: parse(styles.paddingTop),
|
|
33215
|
+
right: parse(styles.paddingRight),
|
|
33216
|
+
bottom: parse(styles.paddingBottom),
|
|
33217
|
+
left: parse(styles.paddingLeft)
|
|
33218
|
+
};
|
|
33219
|
+
var border = {
|
|
33220
|
+
top: parse(styles.borderTopWidth),
|
|
33221
|
+
right: parse(styles.borderRightWidth),
|
|
33222
|
+
bottom: parse(styles.borderBottomWidth),
|
|
33223
|
+
left: parse(styles.borderLeftWidth)
|
|
33224
|
+
};
|
|
33225
|
+
return createBox({
|
|
33226
|
+
borderBox,
|
|
33227
|
+
margin,
|
|
33228
|
+
padding,
|
|
33229
|
+
border
|
|
33230
|
+
});
|
|
33231
|
+
};
|
|
33232
|
+
var getBox = function getBox2(el) {
|
|
33233
|
+
var borderBox = el.getBoundingClientRect();
|
|
33234
|
+
var styles = window.getComputedStyle(el);
|
|
33235
|
+
return calculateBox(borderBox, styles);
|
|
33236
|
+
};
|
|
33237
|
+
|
|
33238
|
+
// components/Puck/components/Canvas/index.tsx
|
|
33239
|
+
var import_react27 = require("react");
|
|
33240
|
+
|
|
33241
|
+
// components/ViewportControls/index.tsx
|
|
33242
|
+
init_react_import();
|
|
33243
|
+
var import_react26 = require("react");
|
|
33244
|
+
|
|
33245
|
+
// components/ViewportControls/styles.module.css
|
|
33246
|
+
var styles_default18 = {
|
|
33247
|
+
ViewportControls: "styles_ViewportControls",
|
|
33248
|
+
"ViewportControls-divider": "styles_ViewportControls-divider",
|
|
33249
|
+
"ViewportControls-zoomSelect": "styles_ViewportControls-zoomSelect",
|
|
33250
|
+
"ViewportButton--isActive": "styles_ViewportButton--isActive",
|
|
33251
|
+
"ViewportButton-inner": "styles_ViewportButton-inner"
|
|
33252
|
+
};
|
|
33253
|
+
|
|
33254
|
+
// components/ViewportControls/index.tsx
|
|
33255
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
33256
|
+
var icons = {
|
|
33257
|
+
Smartphone: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Smartphone, { size: 16 }),
|
|
33258
|
+
Tablet: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Tablet, { size: 16 }),
|
|
33259
|
+
Monitor: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Monitor, { size: 16 })
|
|
33260
|
+
};
|
|
33261
|
+
var getClassName23 = get_class_name_factory_default("ViewportControls", styles_default18);
|
|
33262
|
+
var getClassNameButton = get_class_name_factory_default("ViewportButton", styles_default18);
|
|
33263
|
+
var ViewportButton = ({
|
|
33264
|
+
children,
|
|
33265
|
+
height = "auto",
|
|
33266
|
+
title,
|
|
33267
|
+
width,
|
|
33268
|
+
onClick
|
|
33269
|
+
}) => {
|
|
33270
|
+
const { state } = useAppContext();
|
|
33271
|
+
const [isActive, setIsActive] = (0, import_react26.useState)(false);
|
|
33272
|
+
(0, import_react26.useEffect)(() => {
|
|
33273
|
+
setIsActive(width === state.ui.viewports.current.width);
|
|
33274
|
+
}, [width, state.ui.viewports.current.width]);
|
|
33275
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: getClassNameButton({ isActive }), children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33276
|
+
IconButton,
|
|
33277
|
+
{
|
|
33278
|
+
title,
|
|
33279
|
+
disabled: isActive,
|
|
33280
|
+
onClick: (e) => {
|
|
33281
|
+
e.stopPropagation();
|
|
33282
|
+
onClick({ width, height });
|
|
33283
|
+
},
|
|
33284
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: getClassNameButton("inner"), children })
|
|
33285
|
+
}
|
|
33286
|
+
) });
|
|
33287
|
+
};
|
|
33288
|
+
var defaultZoomOptions = [
|
|
33289
|
+
{ label: "25%", value: 0.25 },
|
|
33290
|
+
{ label: "50%", value: 0.5 },
|
|
33291
|
+
{ label: "75%", value: 0.75 },
|
|
33292
|
+
{ label: "100%", value: 1 },
|
|
33293
|
+
{ label: "125%", value: 1.25 },
|
|
33294
|
+
{ label: "150%", value: 1.5 },
|
|
33295
|
+
{ label: "200%", value: 2 }
|
|
33296
|
+
];
|
|
33297
|
+
var ViewportControls = ({
|
|
33298
|
+
autoZoom,
|
|
33299
|
+
zoom,
|
|
33300
|
+
onViewportChange,
|
|
33301
|
+
onZoom
|
|
33302
|
+
}) => {
|
|
33303
|
+
const { viewports } = useAppContext();
|
|
33304
|
+
const defaultsContainAutoZoom = defaultZoomOptions.find(
|
|
33305
|
+
(option) => option.value === autoZoom
|
|
33306
|
+
);
|
|
33307
|
+
const zoomOptions = (0, import_react26.useMemo)(
|
|
33308
|
+
() => [
|
|
33309
|
+
...defaultZoomOptions,
|
|
33310
|
+
...defaultsContainAutoZoom ? [] : [
|
|
33311
|
+
{
|
|
33312
|
+
value: autoZoom,
|
|
33313
|
+
label: `${(autoZoom * 100).toFixed(0)}% (Auto)`
|
|
33314
|
+
}
|
|
33315
|
+
]
|
|
33316
|
+
].filter((a) => a.value <= autoZoom).sort((a, b) => a.value > b.value ? 1 : -1),
|
|
33317
|
+
[autoZoom]
|
|
33318
|
+
);
|
|
33319
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: getClassName23(), children: [
|
|
33320
|
+
viewports.map((viewport, i) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33321
|
+
ViewportButton,
|
|
33322
|
+
{
|
|
33323
|
+
height: viewport.height,
|
|
33324
|
+
width: viewport.width,
|
|
33325
|
+
title: viewport.label ? `Switch to ${viewport.label} viewport` : "Switch viewport",
|
|
33326
|
+
onClick: onViewportChange,
|
|
33327
|
+
children: typeof viewport.icon === "string" ? icons[viewport.icon] || viewport.icon : viewport.icon || icons.Smartphone
|
|
33328
|
+
},
|
|
33329
|
+
i
|
|
33330
|
+
)),
|
|
33331
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: getClassName23("divider") }),
|
|
33332
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33333
|
+
IconButton,
|
|
33334
|
+
{
|
|
33335
|
+
title: "Zoom viewport out",
|
|
33336
|
+
disabled: zoom <= zoomOptions[0].value,
|
|
33337
|
+
onClick: (e) => {
|
|
33338
|
+
e.stopPropagation();
|
|
33339
|
+
onZoom(
|
|
33340
|
+
zoomOptions[Math.max(
|
|
33341
|
+
zoomOptions.findIndex((option) => option.value === zoom) - 1,
|
|
33342
|
+
0
|
|
33343
|
+
)].value
|
|
33344
|
+
);
|
|
33345
|
+
},
|
|
33346
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(ZoomOut, { size: 16 })
|
|
33347
|
+
}
|
|
33348
|
+
),
|
|
33349
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33350
|
+
IconButton,
|
|
33351
|
+
{
|
|
33352
|
+
title: "Zoom viewport in",
|
|
33353
|
+
disabled: zoom >= zoomOptions[zoomOptions.length - 1].value,
|
|
33354
|
+
onClick: (e) => {
|
|
33355
|
+
e.stopPropagation();
|
|
33356
|
+
onZoom(
|
|
33357
|
+
zoomOptions[Math.min(
|
|
33358
|
+
zoomOptions.findIndex((option) => option.value === zoom) + 1,
|
|
33359
|
+
zoomOptions.length - 1
|
|
33360
|
+
)].value
|
|
33361
|
+
);
|
|
33362
|
+
},
|
|
33363
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(ZoomIn, { size: 16 })
|
|
33364
|
+
}
|
|
33365
|
+
),
|
|
33366
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: getClassName23("divider") }),
|
|
33367
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33368
|
+
"select",
|
|
33369
|
+
{
|
|
33370
|
+
className: getClassName23("zoomSelect"),
|
|
33371
|
+
value: zoom.toString(),
|
|
33372
|
+
onChange: (e) => {
|
|
33373
|
+
onZoom(parseFloat(e.currentTarget.value));
|
|
33374
|
+
},
|
|
33375
|
+
children: zoomOptions.map((option) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
33376
|
+
"option",
|
|
33377
|
+
{
|
|
33378
|
+
value: option.value,
|
|
33379
|
+
label: option.label
|
|
33380
|
+
},
|
|
33381
|
+
option.label
|
|
33382
|
+
))
|
|
33383
|
+
}
|
|
33384
|
+
)
|
|
33385
|
+
] });
|
|
33386
|
+
};
|
|
33387
|
+
|
|
33388
|
+
// components/Puck/components/Canvas/styles.module.css
|
|
33389
|
+
var styles_default19 = {
|
|
33390
|
+
PuckCanvas: "styles_PuckCanvas",
|
|
33391
|
+
"PuckCanvas-controls": "styles_PuckCanvas-controls",
|
|
33392
|
+
"PuckCanvas-inner": "styles_PuckCanvas-inner",
|
|
33393
|
+
"PuckCanvas-root": "styles_PuckCanvas-root",
|
|
33394
|
+
"PuckCanvas--ready": "styles_PuckCanvas--ready"
|
|
33395
|
+
};
|
|
33396
|
+
|
|
33397
|
+
// lib/get-zoom-config.ts
|
|
33398
|
+
init_react_import();
|
|
33399
|
+
var RESET_ZOOM_SMALLER_THAN_FRAME = true;
|
|
33400
|
+
var getZoomConfig = (uiViewport, frame, zoom) => {
|
|
33401
|
+
const box = getBox(frame);
|
|
33402
|
+
const { width: frameWidth, height: frameHeight } = box.contentBox;
|
|
33403
|
+
const viewportHeight = uiViewport.height === "auto" ? frameHeight : uiViewport.height;
|
|
33404
|
+
let rootHeight = 0;
|
|
33405
|
+
let autoZoom = 1;
|
|
33406
|
+
if (uiViewport.width > frameWidth || viewportHeight > frameHeight) {
|
|
33407
|
+
const widthZoom = Math.min(frameWidth / uiViewport.width, 1);
|
|
33408
|
+
const heightZoom = Math.min(frameHeight / viewportHeight, 1);
|
|
33409
|
+
zoom = widthZoom;
|
|
33410
|
+
if (widthZoom < heightZoom) {
|
|
33411
|
+
rootHeight = viewportHeight / zoom;
|
|
33412
|
+
} else {
|
|
33413
|
+
rootHeight = viewportHeight;
|
|
33414
|
+
zoom = heightZoom;
|
|
33415
|
+
}
|
|
33416
|
+
autoZoom = zoom;
|
|
33417
|
+
} else {
|
|
33418
|
+
if (RESET_ZOOM_SMALLER_THAN_FRAME) {
|
|
33419
|
+
autoZoom = 1;
|
|
33420
|
+
zoom = 1;
|
|
33421
|
+
rootHeight = viewportHeight;
|
|
33422
|
+
}
|
|
33423
|
+
}
|
|
33424
|
+
return { autoZoom, rootHeight, zoom };
|
|
33425
|
+
};
|
|
33426
|
+
|
|
33427
|
+
// components/Puck/components/Canvas/index.tsx
|
|
33428
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
33429
|
+
var getClassName24 = get_class_name_factory_default("PuckCanvas", styles_default19);
|
|
33430
|
+
var ZOOM_ON_CHANGE = true;
|
|
33431
|
+
var Canvas = () => {
|
|
33432
|
+
const { status, iframe } = useAppContext();
|
|
33433
|
+
const { dispatch, state, overrides, setUi, zoomConfig, setZoomConfig } = useAppContext();
|
|
33434
|
+
const { ui } = state;
|
|
33435
|
+
const frameRef = (0, import_react27.useRef)(null);
|
|
33436
|
+
const [showTransition, setShowTransition] = (0, import_react27.useState)(false);
|
|
33437
|
+
const defaultRender = (0, import_react27.useMemo)(() => {
|
|
33438
|
+
const PuckDefault = ({ children }) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children });
|
|
33439
|
+
return PuckDefault;
|
|
33440
|
+
}, []);
|
|
33441
|
+
const CustomPreview = (0, import_react27.useMemo)(
|
|
33442
|
+
() => overrides.preview || defaultRender,
|
|
33443
|
+
[overrides]
|
|
33444
|
+
);
|
|
33445
|
+
const getFrameDimensions = (0, import_react27.useCallback)(() => {
|
|
33446
|
+
if (frameRef.current) {
|
|
33447
|
+
const frame = frameRef.current;
|
|
33448
|
+
const box = getBox(frame);
|
|
33449
|
+
return { width: box.contentBox.width, height: box.contentBox.height };
|
|
33450
|
+
}
|
|
33451
|
+
return { width: 0, height: 0 };
|
|
33452
|
+
}, [frameRef]);
|
|
33453
|
+
const resetAutoZoom = (0, import_react27.useCallback)(
|
|
33454
|
+
(ui2 = state.ui) => {
|
|
33455
|
+
if (frameRef.current) {
|
|
33456
|
+
setZoomConfig(
|
|
33457
|
+
getZoomConfig(ui2.viewports.current, frameRef.current, zoomConfig.zoom)
|
|
33458
|
+
);
|
|
33459
|
+
}
|
|
33460
|
+
},
|
|
33461
|
+
[frameRef, zoomConfig, state.ui]
|
|
33462
|
+
);
|
|
33463
|
+
(0, import_react27.useEffect)(() => {
|
|
33464
|
+
setShowTransition(false);
|
|
33465
|
+
resetAutoZoom();
|
|
33466
|
+
}, [frameRef, ui.leftSideBarVisible, ui.rightSideBarVisible]);
|
|
33467
|
+
(0, import_react27.useEffect)(() => {
|
|
33468
|
+
const { height: frameHeight } = getFrameDimensions();
|
|
33469
|
+
if (ui.viewports.current.height === "auto") {
|
|
33470
|
+
setZoomConfig(__spreadProps(__spreadValues({}, zoomConfig), {
|
|
33471
|
+
rootHeight: frameHeight / zoomConfig.zoom
|
|
33472
|
+
}));
|
|
33473
|
+
}
|
|
33474
|
+
}, [zoomConfig.zoom]);
|
|
33475
|
+
(0, import_react27.useEffect)(() => {
|
|
33476
|
+
const observer = new ResizeObserver(() => {
|
|
33477
|
+
setShowTransition(false);
|
|
33478
|
+
resetAutoZoom();
|
|
33479
|
+
});
|
|
33480
|
+
if (document.body) {
|
|
33481
|
+
observer.observe(document.body);
|
|
33482
|
+
}
|
|
33483
|
+
return () => {
|
|
33484
|
+
observer.disconnect();
|
|
33485
|
+
};
|
|
33486
|
+
}, []);
|
|
33487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
33488
|
+
"div",
|
|
33489
|
+
{
|
|
33490
|
+
className: getClassName24({
|
|
33491
|
+
ready: status === "READY" || !iframe.enabled
|
|
33492
|
+
}),
|
|
33493
|
+
onClick: () => dispatch({
|
|
33494
|
+
type: "setUi",
|
|
33495
|
+
ui: { itemSelector: null },
|
|
33496
|
+
recordHistory: true
|
|
33497
|
+
}),
|
|
33498
|
+
children: [
|
|
33499
|
+
ui.viewports.controlsVisible && iframe.enabled && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: getClassName24("controls"), children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
33500
|
+
ViewportControls,
|
|
33501
|
+
{
|
|
33502
|
+
autoZoom: zoomConfig.autoZoom,
|
|
33503
|
+
zoom: zoomConfig.zoom,
|
|
33504
|
+
onViewportChange: (viewport) => {
|
|
33505
|
+
setShowTransition(true);
|
|
33506
|
+
const uiViewport = __spreadProps(__spreadValues({}, viewport), {
|
|
33507
|
+
height: viewport.height || "auto",
|
|
33508
|
+
zoom: zoomConfig.zoom
|
|
33509
|
+
});
|
|
33510
|
+
const newUi = __spreadProps(__spreadValues({}, ui), {
|
|
33511
|
+
viewports: __spreadProps(__spreadValues({}, ui.viewports), { current: uiViewport })
|
|
33512
|
+
});
|
|
33513
|
+
setUi(newUi);
|
|
33514
|
+
if (ZOOM_ON_CHANGE) {
|
|
33515
|
+
resetAutoZoom(newUi);
|
|
33516
|
+
}
|
|
33517
|
+
},
|
|
33518
|
+
onZoom: (zoom) => {
|
|
33519
|
+
setShowTransition(true);
|
|
33520
|
+
setZoomConfig(__spreadProps(__spreadValues({}, zoomConfig), { zoom }));
|
|
33521
|
+
}
|
|
33522
|
+
}
|
|
33523
|
+
) }),
|
|
33524
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: getClassName24("inner"), ref: frameRef, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
33525
|
+
"div",
|
|
33526
|
+
{
|
|
33527
|
+
className: getClassName24("root"),
|
|
33528
|
+
style: {
|
|
33529
|
+
width: iframe.enabled ? ui.viewports.current.width : void 0,
|
|
33530
|
+
height: zoomConfig.rootHeight,
|
|
33531
|
+
transform: iframe.enabled ? `scale(${zoomConfig.zoom})` : void 0,
|
|
33532
|
+
transition: showTransition ? "width 150ms ease-out, height 150ms ease-out, transform 150ms ease-out" : "",
|
|
33533
|
+
overflow: iframe.enabled ? void 0 : "auto"
|
|
33534
|
+
},
|
|
33535
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(CustomPreview, { children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Preview, {}) })
|
|
33536
|
+
}
|
|
33537
|
+
) })
|
|
33538
|
+
]
|
|
33539
|
+
}
|
|
33540
|
+
);
|
|
33541
|
+
};
|
|
33542
|
+
|
|
32731
33543
|
// components/Puck/index.tsx
|
|
32732
|
-
var
|
|
32733
|
-
var
|
|
33544
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
33545
|
+
var getClassName25 = get_class_name_factory_default("Puck", styles_default8);
|
|
32734
33546
|
function Puck({
|
|
32735
33547
|
children,
|
|
32736
33548
|
config,
|
|
32737
33549
|
data: initialData = { content: [], root: { props: { title: "" } } },
|
|
32738
|
-
ui: initialUi
|
|
33550
|
+
ui: initialUi,
|
|
32739
33551
|
onChange,
|
|
32740
33552
|
onPublish,
|
|
32741
33553
|
plugins = [],
|
|
@@ -32743,32 +33555,63 @@ function Puck({
|
|
|
32743
33555
|
renderHeader,
|
|
32744
33556
|
renderHeaderActions,
|
|
32745
33557
|
headerTitle,
|
|
32746
|
-
headerPath
|
|
33558
|
+
headerPath,
|
|
33559
|
+
viewports = defaultViewports,
|
|
33560
|
+
iframe = {
|
|
33561
|
+
enabled: true
|
|
33562
|
+
}
|
|
32747
33563
|
}) {
|
|
33564
|
+
var _a;
|
|
32748
33565
|
const historyStore = useHistoryStore();
|
|
32749
|
-
const [reducer] = (0,
|
|
33566
|
+
const [reducer] = (0, import_react28.useState)(
|
|
32750
33567
|
() => createReducer({ config, record: historyStore.record })
|
|
32751
33568
|
);
|
|
32752
|
-
const [initialAppState] = (0,
|
|
32753
|
-
|
|
32754
|
-
|
|
32755
|
-
|
|
32756
|
-
|
|
32757
|
-
|
|
32758
|
-
|
|
32759
|
-
|
|
32760
|
-
|
|
32761
|
-
|
|
32762
|
-
|
|
32763
|
-
|
|
32764
|
-
|
|
32765
|
-
|
|
32766
|
-
|
|
32767
|
-
{
|
|
32768
|
-
|
|
32769
|
-
|
|
32770
|
-
|
|
32771
|
-
|
|
33569
|
+
const [initialAppState] = (0, import_react28.useState)(() => {
|
|
33570
|
+
var _a2, _b, _c, _d;
|
|
33571
|
+
const initial = __spreadValues(__spreadValues({}, defaultAppState.ui), initialUi);
|
|
33572
|
+
let clientUiState = {};
|
|
33573
|
+
if (typeof window !== "undefined") {
|
|
33574
|
+
const viewportWidth = window.innerWidth;
|
|
33575
|
+
const viewportDifferences = Object.entries(viewports).map(([key, value]) => ({
|
|
33576
|
+
key,
|
|
33577
|
+
diff: Math.abs(viewportWidth - value.width)
|
|
33578
|
+
})).sort((a, b) => a.diff > b.diff ? 1 : -1);
|
|
33579
|
+
const closestViewport = viewportDifferences[0].key;
|
|
33580
|
+
if (iframe.enabled) {
|
|
33581
|
+
clientUiState = __spreadProps(__spreadValues({}, window.matchMedia("(min-width: 638px)").matches ? {} : {
|
|
33582
|
+
leftSideBarVisible: false,
|
|
33583
|
+
rightSideBarVisible: false
|
|
33584
|
+
}), {
|
|
33585
|
+
viewports: __spreadProps(__spreadValues({}, initial.viewports), {
|
|
33586
|
+
current: __spreadProps(__spreadValues({}, initial.viewports.current), {
|
|
33587
|
+
height: ((_b = (_a2 = initialUi == null ? void 0 : initialUi.viewports) == null ? void 0 : _a2.current) == null ? void 0 : _b.height) || viewports[closestViewport].height || "auto",
|
|
33588
|
+
width: ((_d = (_c = initialUi == null ? void 0 : initialUi.viewports) == null ? void 0 : _c.current) == null ? void 0 : _d.width) || viewports[closestViewport].width
|
|
33589
|
+
})
|
|
33590
|
+
})
|
|
33591
|
+
});
|
|
33592
|
+
}
|
|
33593
|
+
}
|
|
33594
|
+
return __spreadProps(__spreadValues({}, defaultAppState), {
|
|
33595
|
+
data: initialData,
|
|
33596
|
+
ui: __spreadProps(__spreadValues(__spreadValues({}, initial), clientUiState), {
|
|
33597
|
+
// Store categories under componentList on state to allow render functions and plugins to modify
|
|
33598
|
+
componentList: config.categories ? Object.entries(config.categories).reduce(
|
|
33599
|
+
(acc, [categoryName, category]) => {
|
|
33600
|
+
return __spreadProps(__spreadValues({}, acc), {
|
|
33601
|
+
[categoryName]: {
|
|
33602
|
+
title: category.title,
|
|
33603
|
+
components: category.components,
|
|
33604
|
+
expanded: category.defaultExpanded,
|
|
33605
|
+
visible: category.visible
|
|
33606
|
+
}
|
|
33607
|
+
});
|
|
33608
|
+
},
|
|
33609
|
+
{}
|
|
33610
|
+
) : {}
|
|
33611
|
+
})
|
|
33612
|
+
});
|
|
33613
|
+
});
|
|
33614
|
+
const [appState, dispatch] = (0, import_react28.useReducer)(
|
|
32772
33615
|
reducer,
|
|
32773
33616
|
flushZones(initialAppState)
|
|
32774
33617
|
);
|
|
@@ -32779,9 +33622,9 @@ function Puck({
|
|
|
32779
33622
|
config,
|
|
32780
33623
|
dispatch
|
|
32781
33624
|
);
|
|
32782
|
-
const [menuOpen, setMenuOpen] = (0,
|
|
33625
|
+
const [menuOpen, setMenuOpen] = (0, import_react28.useState)(false);
|
|
32783
33626
|
const { itemSelector, leftSideBarVisible, rightSideBarVisible } = ui;
|
|
32784
|
-
const setItemSelector = (0,
|
|
33627
|
+
const setItemSelector = (0, import_react28.useCallback)(
|
|
32785
33628
|
(newItemSelector) => {
|
|
32786
33629
|
if (newItemSelector === itemSelector)
|
|
32787
33630
|
return;
|
|
@@ -32794,21 +33637,21 @@ function Puck({
|
|
|
32794
33637
|
[itemSelector]
|
|
32795
33638
|
);
|
|
32796
33639
|
const selectedItem = itemSelector ? getItem(itemSelector, data) : null;
|
|
32797
|
-
(0,
|
|
33640
|
+
(0, import_react28.useEffect)(() => {
|
|
32798
33641
|
if (onChange)
|
|
32799
33642
|
onChange(data);
|
|
32800
33643
|
}, [data]);
|
|
32801
33644
|
const { onDragStartOrUpdate, placeholderStyle } = usePlaceholderStyle();
|
|
32802
|
-
const [draggedItem, setDraggedItem] = (0,
|
|
33645
|
+
const [draggedItem, setDraggedItem] = (0, import_react28.useState)();
|
|
32803
33646
|
const rootProps = data.root.props || data.root;
|
|
32804
|
-
(0,
|
|
33647
|
+
(0, import_react28.useEffect)(() => {
|
|
32805
33648
|
if (Object.keys(data.root).length > 0 && !data.root.props) {
|
|
32806
33649
|
console.error(
|
|
32807
33650
|
"Warning: Defining props on `root` is deprecated. Please use `root.props`. This will be a breaking change in a future release."
|
|
32808
33651
|
);
|
|
32809
33652
|
}
|
|
32810
33653
|
}, []);
|
|
32811
|
-
const toggleSidebars = (0,
|
|
33654
|
+
const toggleSidebars = (0, import_react28.useCallback)(
|
|
32812
33655
|
(sidebar) => {
|
|
32813
33656
|
const widerViewport = window.matchMedia("(min-width: 638px)").matches;
|
|
32814
33657
|
const sideBarVisible = sidebar === "left" ? leftSideBarVisible : rightSideBarVisible;
|
|
@@ -32822,7 +33665,7 @@ function Puck({
|
|
|
32822
33665
|
},
|
|
32823
33666
|
[dispatch, leftSideBarVisible, rightSideBarVisible]
|
|
32824
33667
|
);
|
|
32825
|
-
(0,
|
|
33668
|
+
(0, import_react28.useEffect)(() => {
|
|
32826
33669
|
if (!window.matchMedia("(min-width: 638px)").matches) {
|
|
32827
33670
|
dispatch({
|
|
32828
33671
|
type: "setUi",
|
|
@@ -32845,59 +33688,54 @@ function Puck({
|
|
|
32845
33688
|
window.removeEventListener("resize", handleResize);
|
|
32846
33689
|
};
|
|
32847
33690
|
}, []);
|
|
32848
|
-
const defaultRender = (0,
|
|
32849
|
-
const PuckDefault = ({ children: children2 }) => /* @__PURE__ */ (0,
|
|
33691
|
+
const defaultRender = (0, import_react28.useMemo)(() => {
|
|
33692
|
+
const PuckDefault = ({ children: children2 }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_jsx_runtime34.Fragment, { children: children2 });
|
|
32850
33693
|
return PuckDefault;
|
|
32851
33694
|
}, []);
|
|
32852
|
-
const defaultHeaderRender = (0,
|
|
33695
|
+
const defaultHeaderRender = (0, import_react28.useMemo)(() => {
|
|
32853
33696
|
if (renderHeader) {
|
|
32854
33697
|
console.warn(
|
|
32855
33698
|
"`renderHeader` is deprecated. Please use `overrides.header` and the `usePuck` hook instead"
|
|
32856
33699
|
);
|
|
32857
|
-
const RenderHeader = (
|
|
32858
|
-
var _b =
|
|
33700
|
+
const RenderHeader = (_a2) => {
|
|
33701
|
+
var _b = _a2, { actions } = _b, props = __objRest(_b, ["actions"]);
|
|
32859
33702
|
const Comp = renderHeader;
|
|
32860
|
-
return /* @__PURE__ */ (0,
|
|
33703
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Comp, __spreadProps(__spreadValues({}, props), { dispatch, state: appState, children: actions }));
|
|
32861
33704
|
};
|
|
32862
33705
|
return RenderHeader;
|
|
32863
33706
|
}
|
|
32864
33707
|
return defaultRender;
|
|
32865
33708
|
}, [renderHeader]);
|
|
32866
|
-
const defaultHeaderActionsRender = (0,
|
|
33709
|
+
const defaultHeaderActionsRender = (0, import_react28.useMemo)(() => {
|
|
32867
33710
|
if (renderHeaderActions) {
|
|
32868
33711
|
console.warn(
|
|
32869
33712
|
"`renderHeaderActions` is deprecated. Please use `overrides.headerActions` and the `usePuck` hook instead."
|
|
32870
33713
|
);
|
|
32871
33714
|
const RenderHeader = (props) => {
|
|
32872
33715
|
const Comp = renderHeaderActions;
|
|
32873
|
-
return /* @__PURE__ */ (0,
|
|
33716
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Comp, __spreadProps(__spreadValues({}, props), { dispatch, state: appState }));
|
|
32874
33717
|
};
|
|
32875
33718
|
return RenderHeader;
|
|
32876
33719
|
}
|
|
32877
33720
|
return defaultRender;
|
|
32878
33721
|
}, [renderHeader]);
|
|
32879
|
-
const loadedOverrides = (0,
|
|
33722
|
+
const loadedOverrides = (0, import_react28.useMemo)(() => {
|
|
32880
33723
|
return loadOverrides({ overrides, plugins });
|
|
32881
33724
|
}, [plugins]);
|
|
32882
|
-
const CustomPuck = (0,
|
|
33725
|
+
const CustomPuck = (0, import_react28.useMemo)(
|
|
32883
33726
|
() => loadedOverrides.puck || defaultRender,
|
|
32884
33727
|
[loadedOverrides]
|
|
32885
33728
|
);
|
|
32886
|
-
const
|
|
32887
|
-
() => loadedOverrides.preview || defaultRender,
|
|
32888
|
-
[loadedOverrides]
|
|
32889
|
-
);
|
|
32890
|
-
const CustomHeader = (0, import_react26.useMemo)(
|
|
33729
|
+
const CustomHeader = (0, import_react28.useMemo)(
|
|
32891
33730
|
() => loadedOverrides.header || defaultHeaderRender,
|
|
32892
33731
|
[loadedOverrides]
|
|
32893
33732
|
);
|
|
32894
|
-
const CustomHeaderActions = (0,
|
|
33733
|
+
const CustomHeaderActions = (0, import_react28.useMemo)(
|
|
32895
33734
|
() => loadedOverrides.headerActions || defaultHeaderActionsRender,
|
|
32896
33735
|
[loadedOverrides]
|
|
32897
33736
|
);
|
|
32898
|
-
|
|
32899
|
-
|
|
32900
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
33737
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "Puck", children: [
|
|
33738
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
32901
33739
|
AppProvider,
|
|
32902
33740
|
{
|
|
32903
33741
|
value: {
|
|
@@ -32908,10 +33746,12 @@ function Puck({
|
|
|
32908
33746
|
resolveData,
|
|
32909
33747
|
plugins,
|
|
32910
33748
|
overrides: loadedOverrides,
|
|
32911
|
-
history
|
|
33749
|
+
history,
|
|
33750
|
+
viewports,
|
|
33751
|
+
iframe
|
|
32912
33752
|
},
|
|
32913
|
-
children: /* @__PURE__ */ (0,
|
|
32914
|
-
|
|
33753
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33754
|
+
DragDropContext,
|
|
32915
33755
|
{
|
|
32916
33756
|
onDragUpdate: (update) => {
|
|
32917
33757
|
setDraggedItem(__spreadValues(__spreadValues({}, draggedItem), update));
|
|
@@ -32965,7 +33805,7 @@ function Puck({
|
|
|
32965
33805
|
});
|
|
32966
33806
|
}
|
|
32967
33807
|
},
|
|
32968
|
-
children: /* @__PURE__ */ (0,
|
|
33808
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
32969
33809
|
DropZoneProvider,
|
|
32970
33810
|
{
|
|
32971
33811
|
value: {
|
|
@@ -32977,77 +33817,75 @@ function Puck({
|
|
|
32977
33817
|
draggedItem,
|
|
32978
33818
|
placeholderStyle,
|
|
32979
33819
|
mode: "edit",
|
|
32980
|
-
areaId: "root"
|
|
32981
|
-
disableZoom
|
|
33820
|
+
areaId: "root"
|
|
32982
33821
|
},
|
|
32983
|
-
children: /* @__PURE__ */ (0,
|
|
33822
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(CustomPuck, { children: children || /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(
|
|
32984
33823
|
"div",
|
|
32985
33824
|
{
|
|
32986
|
-
className:
|
|
33825
|
+
className: getClassName25({
|
|
32987
33826
|
leftSideBarVisible,
|
|
32988
33827
|
menuOpen,
|
|
32989
|
-
rightSideBarVisible
|
|
32990
|
-
disableZoom
|
|
33828
|
+
rightSideBarVisible
|
|
32991
33829
|
}),
|
|
32992
33830
|
children: [
|
|
32993
|
-
/* @__PURE__ */ (0,
|
|
33831
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
32994
33832
|
CustomHeader,
|
|
32995
33833
|
{
|
|
32996
|
-
actions: /* @__PURE__ */ (0,
|
|
32997
|
-
/* @__PURE__ */ (0,
|
|
32998
|
-
/* @__PURE__ */ (0,
|
|
33834
|
+
actions: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(import_jsx_runtime34.Fragment, { children: [
|
|
33835
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(CustomHeaderActions, {}),
|
|
33836
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
32999
33837
|
Button,
|
|
33000
33838
|
{
|
|
33001
33839
|
onClick: () => {
|
|
33002
33840
|
onPublish && onPublish(data);
|
|
33003
33841
|
},
|
|
33004
|
-
icon: /* @__PURE__ */ (0,
|
|
33842
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Globe, { size: "14px" }),
|
|
33005
33843
|
children: "Publish"
|
|
33006
33844
|
}
|
|
33007
33845
|
)
|
|
33008
33846
|
] }),
|
|
33009
|
-
children: /* @__PURE__ */ (0,
|
|
33010
|
-
/* @__PURE__ */ (0,
|
|
33011
|
-
/* @__PURE__ */ (0,
|
|
33847
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("header", { className: getClassName25("header"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: getClassName25("headerInner"), children: [
|
|
33848
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: getClassName25("headerToggle"), children: [
|
|
33849
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: getClassName25("leftSideBarToggle"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33012
33850
|
IconButton,
|
|
33013
33851
|
{
|
|
33014
33852
|
onClick: () => {
|
|
33015
33853
|
toggleSidebars("left");
|
|
33016
33854
|
},
|
|
33017
33855
|
title: "Toggle left sidebar",
|
|
33018
|
-
children: /* @__PURE__ */ (0,
|
|
33856
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(PanelLeft, { focusable: "false" })
|
|
33019
33857
|
}
|
|
33020
33858
|
) }),
|
|
33021
|
-
/* @__PURE__ */ (0,
|
|
33859
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: getClassName25("rightSideBarToggle"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33022
33860
|
IconButton,
|
|
33023
33861
|
{
|
|
33024
33862
|
onClick: () => {
|
|
33025
33863
|
toggleSidebars("right");
|
|
33026
33864
|
},
|
|
33027
33865
|
title: "Toggle right sidebar",
|
|
33028
|
-
children: /* @__PURE__ */ (0,
|
|
33866
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(PanelRight, { focusable: "false" })
|
|
33029
33867
|
}
|
|
33030
33868
|
) })
|
|
33031
33869
|
] }),
|
|
33032
|
-
/* @__PURE__ */ (0,
|
|
33870
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: getClassName25("headerTitle"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(Heading, { rank: 2, size: "xs", children: [
|
|
33033
33871
|
headerTitle || rootProps.title || "Page",
|
|
33034
|
-
headerPath && /* @__PURE__ */ (0,
|
|
33872
|
+
headerPath && /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(import_jsx_runtime34.Fragment, { children: [
|
|
33035
33873
|
" ",
|
|
33036
|
-
/* @__PURE__ */ (0,
|
|
33874
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("code", { className: getClassName25("headerPath"), children: headerPath })
|
|
33037
33875
|
] })
|
|
33038
33876
|
] }) }),
|
|
33039
|
-
/* @__PURE__ */ (0,
|
|
33040
|
-
/* @__PURE__ */ (0,
|
|
33877
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: getClassName25("headerTools"), children: [
|
|
33878
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: getClassName25("menuButton"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33041
33879
|
IconButton,
|
|
33042
33880
|
{
|
|
33043
33881
|
onClick: () => {
|
|
33044
33882
|
return setMenuOpen(!menuOpen);
|
|
33045
33883
|
},
|
|
33046
33884
|
title: "Toggle menu bar",
|
|
33047
|
-
children: menuOpen ? /* @__PURE__ */ (0,
|
|
33885
|
+
children: menuOpen ? /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(ChevronUp, { focusable: "false" }) : /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(ChevronDown, { focusable: "false" })
|
|
33048
33886
|
}
|
|
33049
33887
|
) }),
|
|
33050
|
-
/* @__PURE__ */ (0,
|
|
33888
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33051
33889
|
MenuBar,
|
|
33052
33890
|
{
|
|
33053
33891
|
appState,
|
|
@@ -33055,7 +33893,7 @@ function Puck({
|
|
|
33055
33893
|
dispatch,
|
|
33056
33894
|
onPublish,
|
|
33057
33895
|
menuOpen,
|
|
33058
|
-
renderHeaderActions: () => /* @__PURE__ */ (0,
|
|
33896
|
+
renderHeaderActions: () => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(CustomHeaderActions, {}),
|
|
33059
33897
|
setMenuOpen
|
|
33060
33898
|
}
|
|
33061
33899
|
)
|
|
@@ -33063,38 +33901,19 @@ function Puck({
|
|
|
33063
33901
|
] }) })
|
|
33064
33902
|
}
|
|
33065
33903
|
),
|
|
33066
|
-
/* @__PURE__ */ (0,
|
|
33067
|
-
/* @__PURE__ */ (0,
|
|
33068
|
-
/* @__PURE__ */ (0,
|
|
33904
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: getClassName25("leftSideBar"), children: [
|
|
33905
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SidebarSection, { title: "Components", noBorderTop: true, children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Components, {}) }),
|
|
33906
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SidebarSection, { title: "Outline", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Outline, {}) })
|
|
33069
33907
|
] }),
|
|
33070
|
-
/* @__PURE__ */ (0,
|
|
33071
|
-
|
|
33072
|
-
{
|
|
33073
|
-
className: getClassName22("frame"),
|
|
33074
|
-
onClick: () => setItemSelector(null),
|
|
33075
|
-
children: [
|
|
33076
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: getClassName22("root"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(CustomPreview, { children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Preview, {}) }) }),
|
|
33077
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
33078
|
-
"div",
|
|
33079
|
-
{
|
|
33080
|
-
style: {
|
|
33081
|
-
background: "var(--puck-color-grey-11)",
|
|
33082
|
-
height: "100%",
|
|
33083
|
-
flexGrow: 1
|
|
33084
|
-
}
|
|
33085
|
-
}
|
|
33086
|
-
)
|
|
33087
|
-
]
|
|
33088
|
-
}
|
|
33089
|
-
),
|
|
33090
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: getClassName22("rightSideBar"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
33908
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Canvas, {}),
|
|
33909
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: getClassName25("rightSideBar"), children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
33091
33910
|
SidebarSection,
|
|
33092
33911
|
{
|
|
33093
33912
|
noPadding: true,
|
|
33094
33913
|
noBorderTop: true,
|
|
33095
33914
|
showBreadcrumbs: true,
|
|
33096
|
-
title: selectedItem ? selectedItem.type : "Page",
|
|
33097
|
-
children: /* @__PURE__ */ (0,
|
|
33915
|
+
title: selectedItem ? (_a = config.components[selectedItem.type]["label"]) != null ? _a : selectedItem.type : "Page",
|
|
33916
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Fields, {})
|
|
33098
33917
|
}
|
|
33099
33918
|
) })
|
|
33100
33919
|
]
|
|
@@ -33106,7 +33925,7 @@ function Puck({
|
|
|
33106
33925
|
)
|
|
33107
33926
|
}
|
|
33108
33927
|
),
|
|
33109
|
-
/* @__PURE__ */ (0,
|
|
33928
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { id: "puck-portal-root" })
|
|
33110
33929
|
] });
|
|
33111
33930
|
}
|
|
33112
33931
|
Puck.Components = Components;
|
|
@@ -33116,13 +33935,16 @@ Puck.Preview = Preview;
|
|
|
33116
33935
|
|
|
33117
33936
|
// components/Render/index.tsx
|
|
33118
33937
|
init_react_import();
|
|
33119
|
-
var
|
|
33120
|
-
function Render({
|
|
33938
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
33939
|
+
function Render({
|
|
33940
|
+
config,
|
|
33941
|
+
data
|
|
33942
|
+
}) {
|
|
33121
33943
|
var _a;
|
|
33122
33944
|
const rootProps = data.root.props || data.root;
|
|
33123
33945
|
const title = (rootProps == null ? void 0 : rootProps.title) || "";
|
|
33124
33946
|
if ((_a = config.root) == null ? void 0 : _a.render) {
|
|
33125
|
-
return /* @__PURE__ */ (0,
|
|
33947
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(DropZoneProvider, { value: { data, config, mode: "render" }, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
33126
33948
|
config.root.render,
|
|
33127
33949
|
__spreadProps(__spreadValues({}, rootProps), {
|
|
33128
33950
|
puck: {
|
|
@@ -33131,11 +33953,11 @@ function Render({ config, data }) {
|
|
|
33131
33953
|
title,
|
|
33132
33954
|
editMode: false,
|
|
33133
33955
|
id: "puck-root",
|
|
33134
|
-
children: /* @__PURE__ */ (0,
|
|
33956
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(DropZone, { zone: rootDroppableId })
|
|
33135
33957
|
})
|
|
33136
33958
|
) });
|
|
33137
33959
|
}
|
|
33138
|
-
return /* @__PURE__ */ (0,
|
|
33960
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(DropZoneProvider, { value: { data, config, mode: "render" }, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(DropZone, { zone: rootDroppableId }) });
|
|
33139
33961
|
}
|
|
33140
33962
|
|
|
33141
33963
|
// lib/migrate.ts
|
|
@@ -33196,37 +34018,51 @@ function transformProps(data, propTransforms) {
|
|
|
33196
34018
|
|
|
33197
34019
|
// lib/resolve-all-data.ts
|
|
33198
34020
|
init_react_import();
|
|
33199
|
-
|
|
33200
|
-
|
|
33201
|
-
|
|
33202
|
-
|
|
33203
|
-
|
|
33204
|
-
|
|
33205
|
-
|
|
33206
|
-
|
|
33207
|
-
|
|
33208
|
-
|
|
33209
|
-
|
|
33210
|
-
|
|
33211
|
-
|
|
33212
|
-
|
|
33213
|
-
|
|
33214
|
-
|
|
33215
|
-
|
|
33216
|
-
|
|
33217
|
-
|
|
33218
|
-
|
|
33219
|
-
|
|
33220
|
-
|
|
33221
|
-
|
|
34021
|
+
function resolveAllData(data, config, onResolveStart, onResolveEnd) {
|
|
34022
|
+
return __async(this, null, function* () {
|
|
34023
|
+
const dynamicRoot = yield resolveRootData(data, config);
|
|
34024
|
+
const { zones = {} } = data;
|
|
34025
|
+
const zoneKeys = Object.keys(zones);
|
|
34026
|
+
const resolvedZones = {};
|
|
34027
|
+
for (let i = 0; i < zoneKeys.length; i++) {
|
|
34028
|
+
const zoneKey = zoneKeys[i];
|
|
34029
|
+
resolvedZones[zoneKey] = yield resolveAllComponentData(
|
|
34030
|
+
zones[zoneKey],
|
|
34031
|
+
config,
|
|
34032
|
+
onResolveStart,
|
|
34033
|
+
onResolveEnd
|
|
34034
|
+
);
|
|
34035
|
+
}
|
|
34036
|
+
return __spreadProps(__spreadValues({}, data), {
|
|
34037
|
+
root: dynamicRoot,
|
|
34038
|
+
content: yield resolveAllComponentData(
|
|
34039
|
+
data.content,
|
|
34040
|
+
config,
|
|
34041
|
+
onResolveStart,
|
|
34042
|
+
onResolveEnd
|
|
34043
|
+
),
|
|
34044
|
+
zones: resolvedZones
|
|
34045
|
+
});
|
|
33222
34046
|
});
|
|
33223
|
-
}
|
|
34047
|
+
}
|
|
33224
34048
|
|
|
33225
34049
|
// lib/use-puck.ts
|
|
33226
34050
|
init_react_import();
|
|
33227
34051
|
var usePuck = () => {
|
|
33228
|
-
const {
|
|
33229
|
-
|
|
34052
|
+
const {
|
|
34053
|
+
state: appState,
|
|
34054
|
+
config,
|
|
34055
|
+
history,
|
|
34056
|
+
dispatch,
|
|
34057
|
+
selectedItem
|
|
34058
|
+
} = useAppContext();
|
|
34059
|
+
return {
|
|
34060
|
+
appState,
|
|
34061
|
+
config,
|
|
34062
|
+
dispatch,
|
|
34063
|
+
history,
|
|
34064
|
+
selectedItem: selectedItem || null
|
|
34065
|
+
};
|
|
33230
34066
|
};
|
|
33231
34067
|
// Annotate the CommonJS export names for ESM import in node:
|
|
33232
34068
|
0 && (module.exports = {
|
|
@@ -33430,6 +34266,14 @@ lucide-react/dist/esm/icons/lock.js:
|
|
|
33430
34266
|
* See the LICENSE file in the root directory of this source tree.
|
|
33431
34267
|
*)
|
|
33432
34268
|
|
|
34269
|
+
lucide-react/dist/esm/icons/monitor.js:
|
|
34270
|
+
(**
|
|
34271
|
+
* @license lucide-react v0.298.0 - ISC
|
|
34272
|
+
*
|
|
34273
|
+
* This source code is licensed under the ISC license.
|
|
34274
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34275
|
+
*)
|
|
34276
|
+
|
|
33433
34277
|
lucide-react/dist/esm/icons/more-vertical.js:
|
|
33434
34278
|
(**
|
|
33435
34279
|
* @license lucide-react v0.298.0 - ISC
|
|
@@ -33478,6 +34322,22 @@ lucide-react/dist/esm/icons/sliders-horizontal.js:
|
|
|
33478
34322
|
* See the LICENSE file in the root directory of this source tree.
|
|
33479
34323
|
*)
|
|
33480
34324
|
|
|
34325
|
+
lucide-react/dist/esm/icons/smartphone.js:
|
|
34326
|
+
(**
|
|
34327
|
+
* @license lucide-react v0.298.0 - ISC
|
|
34328
|
+
*
|
|
34329
|
+
* This source code is licensed under the ISC license.
|
|
34330
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34331
|
+
*)
|
|
34332
|
+
|
|
34333
|
+
lucide-react/dist/esm/icons/tablet.js:
|
|
34334
|
+
(**
|
|
34335
|
+
* @license lucide-react v0.298.0 - ISC
|
|
34336
|
+
*
|
|
34337
|
+
* This source code is licensed under the ISC license.
|
|
34338
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34339
|
+
*)
|
|
34340
|
+
|
|
33481
34341
|
lucide-react/dist/esm/icons/trash.js:
|
|
33482
34342
|
(**
|
|
33483
34343
|
* @license lucide-react v0.298.0 - ISC
|
|
@@ -33502,6 +34362,22 @@ lucide-react/dist/esm/icons/unlock.js:
|
|
|
33502
34362
|
* See the LICENSE file in the root directory of this source tree.
|
|
33503
34363
|
*)
|
|
33504
34364
|
|
|
34365
|
+
lucide-react/dist/esm/icons/zoom-in.js:
|
|
34366
|
+
(**
|
|
34367
|
+
* @license lucide-react v0.298.0 - ISC
|
|
34368
|
+
*
|
|
34369
|
+
* This source code is licensed under the ISC license.
|
|
34370
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34371
|
+
*)
|
|
34372
|
+
|
|
34373
|
+
lucide-react/dist/esm/icons/zoom-out.js:
|
|
34374
|
+
(**
|
|
34375
|
+
* @license lucide-react v0.298.0 - ISC
|
|
34376
|
+
*
|
|
34377
|
+
* This source code is licensed under the ISC license.
|
|
34378
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34379
|
+
*)
|
|
34380
|
+
|
|
33505
34381
|
lucide-react/dist/esm/lucide-react.js:
|
|
33506
34382
|
(**
|
|
33507
34383
|
* @license lucide-react v0.298.0 - ISC
|