@measured/puck-plugin-heading-analyzer 0.14.2-canary.4dbd487 → 0.14.2-canary.9008b70
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/index.js +1621 -169
- package/package.json +2 -2
package/dist/index.js
CHANGED
@@ -62,6 +62,60 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
62
62
|
mod
|
63
63
|
));
|
64
64
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
65
|
+
var __publicField = (obj, key, value) => {
|
66
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
67
|
+
return value;
|
68
|
+
};
|
69
|
+
var __accessCheck = (obj, member, msg) => {
|
70
|
+
if (!member.has(obj))
|
71
|
+
throw TypeError("Cannot " + msg);
|
72
|
+
};
|
73
|
+
var __privateGet = (obj, member, getter) => {
|
74
|
+
__accessCheck(obj, member, "read from private field");
|
75
|
+
return getter ? getter.call(obj) : member.get(obj);
|
76
|
+
};
|
77
|
+
var __privateAdd = (obj, member, value) => {
|
78
|
+
if (member.has(obj))
|
79
|
+
throw TypeError("Cannot add the same private member more than once");
|
80
|
+
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
81
|
+
};
|
82
|
+
var __privateSet = (obj, member, value, setter) => {
|
83
|
+
__accessCheck(obj, member, "write to private field");
|
84
|
+
setter ? setter.call(obj, value) : member.set(obj, value);
|
85
|
+
return value;
|
86
|
+
};
|
87
|
+
var __privateWrapper = (obj, member, setter, getter) => ({
|
88
|
+
set _(value) {
|
89
|
+
__privateSet(obj, member, value, setter);
|
90
|
+
},
|
91
|
+
get _() {
|
92
|
+
return __privateGet(obj, member, getter);
|
93
|
+
}
|
94
|
+
});
|
95
|
+
var __privateMethod = (obj, member, method) => {
|
96
|
+
__accessCheck(obj, member, "access private method");
|
97
|
+
return method;
|
98
|
+
};
|
99
|
+
var __async = (__this, __arguments, generator) => {
|
100
|
+
return new Promise((resolve, reject) => {
|
101
|
+
var fulfilled = (value) => {
|
102
|
+
try {
|
103
|
+
step(generator.next(value));
|
104
|
+
} catch (e2) {
|
105
|
+
reject(e2);
|
106
|
+
}
|
107
|
+
};
|
108
|
+
var rejected = (value) => {
|
109
|
+
try {
|
110
|
+
step(generator.throw(value));
|
111
|
+
} catch (e2) {
|
112
|
+
reject(e2);
|
113
|
+
}
|
114
|
+
};
|
115
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
116
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
117
|
+
});
|
118
|
+
};
|
65
119
|
|
66
120
|
// ../tsup-config/react-import.js
|
67
121
|
var import_react;
|
@@ -198,8 +252,8 @@ var init_colors = __esm({
|
|
198
252
|
});
|
199
253
|
|
200
254
|
// ../../node_modules/react-spinners/esm/BarLoader.js
|
201
|
-
function BarLoader(
|
202
|
-
var _b =
|
255
|
+
function BarLoader(_a3) {
|
256
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.height, height = _f === void 0 ? 4 : _f, _g = _a3.width, width = _g === void 0 ? 100 : _g, additionalprops = __rest(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "height", "width"]);
|
203
257
|
var wrapper = __assign({ display: "inherit", position: "relative", width: cssValue(width), height: cssValue(height), overflow: "hidden", backgroundColor: calculateRgba(color, 0.2), backgroundClip: "padding-box" }, cssOverride);
|
204
258
|
var style2 = function(i2) {
|
205
259
|
return {
|
@@ -264,8 +318,8 @@ var init_BarLoader = __esm({
|
|
264
318
|
});
|
265
319
|
|
266
320
|
// ../../node_modules/react-spinners/esm/BeatLoader.js
|
267
|
-
function BeatLoader(
|
268
|
-
var _b =
|
321
|
+
function BeatLoader(_a3) {
|
322
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest2(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
269
323
|
var wrapper = __assign2({ display: "inherit" }, cssOverride);
|
270
324
|
var style2 = function(i2) {
|
271
325
|
return {
|
@@ -327,8 +381,8 @@ var init_BeatLoader = __esm({
|
|
327
381
|
});
|
328
382
|
|
329
383
|
// ../../node_modules/react-spinners/esm/BounceLoader.js
|
330
|
-
function BounceLoader(
|
331
|
-
var _b =
|
384
|
+
function BounceLoader(_a3) {
|
385
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 60 : _f, additionalprops = __rest3(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
332
386
|
var style2 = function(i2) {
|
333
387
|
var animationTiming = i2 === 1 ? "".concat(1 / speedMultiplier, "s") : "0s";
|
334
388
|
return {
|
@@ -392,11 +446,11 @@ var init_BounceLoader = __esm({
|
|
392
446
|
});
|
393
447
|
|
394
448
|
// ../../node_modules/react-spinners/esm/CircleLoader.js
|
395
|
-
function CircleLoader(
|
396
|
-
var _b =
|
449
|
+
function CircleLoader(_a3) {
|
450
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 50 : _f, additionalprops = __rest4(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
397
451
|
var wrapper = __assign4({ display: "inherit", position: "relative", width: cssValue(size), height: cssValue(size) }, cssOverride);
|
398
452
|
var style2 = function(i2) {
|
399
|
-
var
|
453
|
+
var _a4 = parseLengthAndUnit(size), value = _a4.value, unit = _a4.unit;
|
400
454
|
return {
|
401
455
|
position: "absolute",
|
402
456
|
height: "".concat(value * (1 - i2 / 10)).concat(unit),
|
@@ -462,8 +516,8 @@ var init_CircleLoader = __esm({
|
|
462
516
|
});
|
463
517
|
|
464
518
|
// ../../node_modules/react-spinners/esm/ClimbingBoxLoader.js
|
465
|
-
function ClimbingBoxLoader(
|
466
|
-
var _b =
|
519
|
+
function ClimbingBoxLoader(_a3) {
|
520
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, additionalprops = __rest5(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
467
521
|
var container = __assign5({ display: "inherit", position: "relative", width: "7.1em", height: "7.1em" }, cssOverride);
|
468
522
|
var wrapper = {
|
469
523
|
position: "absolute",
|
@@ -548,8 +602,8 @@ var init_ClimbingBoxLoader = __esm({
|
|
548
602
|
});
|
549
603
|
|
550
604
|
// ../../node_modules/react-spinners/esm/ClipLoader.js
|
551
|
-
function ClipLoader(
|
552
|
-
var _b =
|
605
|
+
function ClipLoader(_a3) {
|
606
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 35 : _f, additionalprops = __rest6(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
553
607
|
var style2 = __assign6({ background: "transparent !important", width: cssValue(size), height: cssValue(size), borderRadius: "100%", border: "2px solid", borderTopColor: color, borderBottomColor: "transparent", borderLeftColor: color, borderRightColor: color, display: "inline-block", animation: "".concat(clip, " ").concat(0.75 / speedMultiplier, "s 0s infinite linear"), animationFillMode: "both" }, cssOverride);
|
554
608
|
if (!loading) {
|
555
609
|
return null;
|
@@ -593,8 +647,8 @@ var init_ClipLoader = __esm({
|
|
593
647
|
});
|
594
648
|
|
595
649
|
// ../../node_modules/react-spinners/esm/ClockLoader.js
|
596
|
-
function ClockLoader(
|
597
|
-
var _b =
|
650
|
+
function ClockLoader(_a3) {
|
651
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 50 : _f, additionalprops = __rest7(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
598
652
|
var _g = parseLengthAndUnit(size), value = _g.value, unit = _g.unit;
|
599
653
|
var wrapper = __assign7({ display: "inherit", position: "relative", width: "".concat(value).concat(unit), height: "".concat(value).concat(unit), backgroundColor: "transparent", boxShadow: "inset 0px 0px 0px 2px ".concat(color), borderRadius: "50%" }, cssOverride);
|
600
654
|
var minute = {
|
@@ -664,11 +718,11 @@ var init_ClockLoader = __esm({
|
|
664
718
|
});
|
665
719
|
|
666
720
|
// ../../node_modules/react-spinners/esm/DotLoader.js
|
667
|
-
function DotLoader(
|
668
|
-
var _b =
|
721
|
+
function DotLoader(_a3) {
|
722
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 60 : _f, additionalprops = __rest8(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
669
723
|
var wrapper = __assign8({ display: "inherit", position: "relative", width: cssValue(size), height: cssValue(size), animationFillMode: "forwards", animation: "".concat(rotate2, " ").concat(2 / speedMultiplier, "s 0s infinite linear") }, cssOverride);
|
670
724
|
var style2 = function(i2) {
|
671
|
-
var
|
725
|
+
var _a4 = parseLengthAndUnit(size), value = _a4.value, unit = _a4.unit;
|
672
726
|
return {
|
673
727
|
position: "absolute",
|
674
728
|
top: i2 % 2 ? "0" : "auto",
|
@@ -729,8 +783,8 @@ var init_DotLoader = __esm({
|
|
729
783
|
});
|
730
784
|
|
731
785
|
// ../../node_modules/react-spinners/esm/FadeLoader.js
|
732
|
-
function FadeLoader(
|
733
|
-
var _b =
|
786
|
+
function FadeLoader(_a3) {
|
787
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.height, height = _f === void 0 ? 15 : _f, _g = _a3.width, width = _g === void 0 ? 5 : _g, _h = _a3.radius, radius = _h === void 0 ? 2 : _h, _j = _a3.margin, margin = _j === void 0 ? 2 : _j, additionalprops = __rest9(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "height", "width", "radius", "margin"]);
|
734
788
|
var value = parseLengthAndUnit(margin).value;
|
735
789
|
var radiusValue = value + 18;
|
736
790
|
var quarter = radiusValue / 2 + radiusValue / 5.5;
|
@@ -809,8 +863,8 @@ var init_FadeLoader = __esm({
|
|
809
863
|
});
|
810
864
|
|
811
865
|
// ../../node_modules/react-spinners/esm/GridLoader.js
|
812
|
-
function GridLoader(
|
813
|
-
var _b =
|
866
|
+
function GridLoader(_a3) {
|
867
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest10(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
814
868
|
var sizeWithUnit = parseLengthAndUnit(size);
|
815
869
|
var marginWithUnit = parseLengthAndUnit(margin);
|
816
870
|
var width = parseFloat(sizeWithUnit.value.toString()) * 3 + parseFloat(marginWithUnit.value.toString()) * 6;
|
@@ -888,8 +942,8 @@ var init_GridLoader = __esm({
|
|
888
942
|
});
|
889
943
|
|
890
944
|
// ../../node_modules/react-spinners/esm/HashLoader.js
|
891
|
-
function HashLoader(
|
892
|
-
var _b =
|
945
|
+
function HashLoader(_a3) {
|
946
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 50 : _f, additionalprops = __rest11(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
893
947
|
var _g = parseLengthAndUnit(size), value = _g.value, unit = _g.unit;
|
894
948
|
var wrapper = __assign11({ display: "inherit", position: "relative", width: cssValue(size), height: cssValue(size), transform: "rotate(165deg)" }, cssOverride);
|
895
949
|
var thickness = value / 5;
|
@@ -959,8 +1013,8 @@ var init_HashLoader = __esm({
|
|
959
1013
|
});
|
960
1014
|
|
961
1015
|
// ../../node_modules/react-spinners/esm/MoonLoader.js
|
962
|
-
function MoonLoader(
|
963
|
-
var _b =
|
1016
|
+
function MoonLoader(_a3) {
|
1017
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 60 : _f, additionalprops = __rest12(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
964
1018
|
var _g = parseLengthAndUnit(size), value = _g.value, unit = _g.unit;
|
965
1019
|
var moonSize = value / 7;
|
966
1020
|
var wrapper = __assign12({ display: "inherit", position: "relative", width: "".concat("".concat(value + moonSize * 2).concat(unit)), height: "".concat("".concat(value + moonSize * 2).concat(unit)), animation: "".concat(moon, " ").concat(0.6 / speedMultiplier, "s 0s infinite linear"), animationFillMode: "forwards" }, cssOverride);
|
@@ -1020,8 +1074,8 @@ var init_MoonLoader = __esm({
|
|
1020
1074
|
});
|
1021
1075
|
|
1022
1076
|
// ../../node_modules/react-spinners/esm/PacmanLoader.js
|
1023
|
-
function PacmanLoader(
|
1024
|
-
var _b =
|
1077
|
+
function PacmanLoader(_a3) {
|
1078
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 25 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest13(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
1025
1079
|
var _h = parseLengthAndUnit(size), value = _h.value, unit = _h.unit;
|
1026
1080
|
var wrapper = __assign13({ display: "inherit", position: "relative", fontSize: 0, height: "".concat(value * 2).concat(unit), width: "".concat(value * 2).concat(unit) }, cssOverride);
|
1027
1081
|
var ball = createAnimation("PacmanLoader", "75% {opacity: 0.7}\n 100% {transform: translate(".concat("".concat(-4 * value).concat(unit), ", ").concat("".concat(-value / 4).concat(unit), ")}"), "ball");
|
@@ -1112,8 +1166,8 @@ var init_PacmanLoader = __esm({
|
|
1112
1166
|
});
|
1113
1167
|
|
1114
1168
|
// ../../node_modules/react-spinners/esm/PropagateLoader.js
|
1115
|
-
function PropagateLoader(
|
1116
|
-
var _b =
|
1169
|
+
function PropagateLoader(_a3) {
|
1170
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, additionalprops = __rest14(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
1117
1171
|
var _g = parseLengthAndUnit(size), value = _g.value, unit = _g.unit;
|
1118
1172
|
var wrapper = __assign14({ display: "inherit", position: "relative" }, cssOverride);
|
1119
1173
|
var style2 = function(i2) {
|
@@ -1187,8 +1241,8 @@ var init_PropagateLoader = __esm({
|
|
1187
1241
|
});
|
1188
1242
|
|
1189
1243
|
// ../../node_modules/react-spinners/esm/PulseLoader.js
|
1190
|
-
function PulseLoader(
|
1191
|
-
var _b =
|
1244
|
+
function PulseLoader(_a3) {
|
1245
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest15(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
1192
1246
|
var wrapper = __assign15({ display: "inherit" }, cssOverride);
|
1193
1247
|
var style2 = function(i2) {
|
1194
1248
|
return {
|
@@ -1250,8 +1304,8 @@ var init_PulseLoader = __esm({
|
|
1250
1304
|
});
|
1251
1305
|
|
1252
1306
|
// ../../node_modules/react-spinners/esm/PuffLoader.js
|
1253
|
-
function PuffLoader(
|
1254
|
-
var _b =
|
1307
|
+
function PuffLoader(_a3) {
|
1308
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 60 : _f, additionalprops = __rest16(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
1255
1309
|
var wrapper = __assign16({ display: "inherit", position: "relative", width: cssValue(size), height: cssValue(size) }, cssOverride);
|
1256
1310
|
var style2 = function(i2) {
|
1257
1311
|
return {
|
@@ -1321,8 +1375,8 @@ var init_PuffLoader = __esm({
|
|
1321
1375
|
});
|
1322
1376
|
|
1323
1377
|
// ../../node_modules/react-spinners/esm/RingLoader.js
|
1324
|
-
function RingLoader(
|
1325
|
-
var _b =
|
1378
|
+
function RingLoader(_a3) {
|
1379
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 60 : _f, additionalprops = __rest17(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
1326
1380
|
var _g = parseLengthAndUnit(size), value = _g.value, unit = _g.unit;
|
1327
1381
|
var wrapper = __assign17({ display: "inherit", width: cssValue(size), height: cssValue(size), position: "relative" }, cssOverride);
|
1328
1382
|
var style2 = function(i2) {
|
@@ -1388,8 +1442,8 @@ var init_RingLoader = __esm({
|
|
1388
1442
|
});
|
1389
1443
|
|
1390
1444
|
// ../../node_modules/react-spinners/esm/RiseLoader.js
|
1391
|
-
function RiseLoader(
|
1392
|
-
var _b =
|
1445
|
+
function RiseLoader(_a3) {
|
1446
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest18(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
1393
1447
|
var wrapper = __assign18({ display: "inherit" }, cssOverride);
|
1394
1448
|
var even = createAnimation("RiseLoader", "0% {transform: scale(1.1)}\n 25% {transform: translateY(-".concat(size, "px)}\n 50% {transform: scale(0.4)}\n 75% {transform: translateY(").concat(size, "px)}\n 100% {transform: translateY(0) scale(1.0)}"), "even");
|
1395
1449
|
var odd = createAnimation("RiseLoader", "0% {transform: scale(0.4)}\n 25% {transform: translateY(".concat(size, "px)}\n 50% {transform: scale(1.1)}\n 75% {transform: translateY(").concat(-size, "px)}\n 100% {transform: translateY(0) scale(0.75)}"), "odd");
|
@@ -1454,8 +1508,8 @@ var init_RiseLoader = __esm({
|
|
1454
1508
|
});
|
1455
1509
|
|
1456
1510
|
// ../../node_modules/react-spinners/esm/RotateLoader.js
|
1457
|
-
function RotateLoader(
|
1458
|
-
var _b =
|
1511
|
+
function RotateLoader(_a3) {
|
1512
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest19(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
1459
1513
|
var _h = parseLengthAndUnit(margin), value = _h.value, unit = _h.unit;
|
1460
1514
|
var ball = {
|
1461
1515
|
backgroundColor: color,
|
@@ -1520,8 +1574,8 @@ var init_RotateLoader = __esm({
|
|
1520
1574
|
});
|
1521
1575
|
|
1522
1576
|
// ../../node_modules/react-spinners/esm/ScaleLoader.js
|
1523
|
-
function ScaleLoader(
|
1524
|
-
var _b =
|
1577
|
+
function ScaleLoader(_a3) {
|
1578
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.height, height = _f === void 0 ? 35 : _f, _g = _a3.width, width = _g === void 0 ? 4 : _g, _h = _a3.radius, radius = _h === void 0 ? 2 : _h, _j = _a3.margin, margin = _j === void 0 ? 2 : _j, additionalprops = __rest20(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "height", "width", "radius", "margin"]);
|
1525
1579
|
var wrapper = __assign20({ display: "inherit" }, cssOverride);
|
1526
1580
|
var style2 = function(i2) {
|
1527
1581
|
return {
|
@@ -1585,8 +1639,8 @@ var init_ScaleLoader = __esm({
|
|
1585
1639
|
});
|
1586
1640
|
|
1587
1641
|
// ../../node_modules/react-spinners/esm/SkewLoader.js
|
1588
|
-
function SkewLoader(
|
1589
|
-
var _b =
|
1642
|
+
function SkewLoader(_a3) {
|
1643
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 20 : _f, additionalprops = __rest21(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
1590
1644
|
var style2 = __assign21({ width: "0", height: "0", borderLeft: "".concat(cssValue(size), " solid transparent"), borderRight: "".concat(cssValue(size), " solid transparent"), borderBottom: "".concat(cssValue(size), " solid ").concat(color), display: "inline-block", animation: "".concat(skew, " ").concat(3 / speedMultiplier, "s 0s infinite cubic-bezier(0.09, 0.57, 0.49, 0.9)"), animationFillMode: "both" }, cssOverride);
|
1591
1645
|
if (!loading) {
|
1592
1646
|
return null;
|
@@ -1630,8 +1684,8 @@ var init_SkewLoader = __esm({
|
|
1630
1684
|
});
|
1631
1685
|
|
1632
1686
|
// ../../node_modules/react-spinners/esm/SquareLoader.js
|
1633
|
-
function SquareLoader(
|
1634
|
-
var _b =
|
1687
|
+
function SquareLoader(_a3) {
|
1688
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 50 : _f, additionalprops = __rest22(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size"]);
|
1635
1689
|
var style2 = __assign22({ backgroundColor: color, width: cssValue(size), height: cssValue(size), display: "inline-block", animation: "".concat(square, " ").concat(3 / speedMultiplier, "s 0s infinite cubic-bezier(0.09, 0.57, 0.49, 0.9)"), animationFillMode: "both" }, cssOverride);
|
1636
1690
|
if (!loading) {
|
1637
1691
|
return null;
|
@@ -1675,8 +1729,8 @@ var init_SquareLoader = __esm({
|
|
1675
1729
|
});
|
1676
1730
|
|
1677
1731
|
// ../../node_modules/react-spinners/esm/SyncLoader.js
|
1678
|
-
function SyncLoader(
|
1679
|
-
var _b =
|
1732
|
+
function SyncLoader(_a3) {
|
1733
|
+
var _b = _a3.loading, loading = _b === void 0 ? true : _b, _c = _a3.color, color = _c === void 0 ? "#000000" : _c, _d = _a3.speedMultiplier, speedMultiplier = _d === void 0 ? 1 : _d, _e = _a3.cssOverride, cssOverride = _e === void 0 ? {} : _e, _f = _a3.size, size = _f === void 0 ? 15 : _f, _g = _a3.margin, margin = _g === void 0 ? 2 : _g, additionalprops = __rest23(_a3, ["loading", "color", "speedMultiplier", "cssOverride", "size", "margin"]);
|
1680
1734
|
var wrapper = __assign23({ display: "inherit" }, cssOverride);
|
1681
1735
|
var style2 = function(i2) {
|
1682
1736
|
return {
|
@@ -24768,7 +24822,7 @@ var require_react_dom_development = __commonJS({
|
|
24768
24822
|
break;
|
24769
24823
|
}
|
24770
24824
|
case "backwards": {
|
24771
|
-
var
|
24825
|
+
var _tail2 = null;
|
24772
24826
|
var row = workInProgress2.child;
|
24773
24827
|
workInProgress2.child = null;
|
24774
24828
|
while (row !== null) {
|
@@ -24778,15 +24832,15 @@ var require_react_dom_development = __commonJS({
|
|
24778
24832
|
break;
|
24779
24833
|
}
|
24780
24834
|
var nextRow = row.sibling;
|
24781
|
-
row.sibling =
|
24782
|
-
|
24835
|
+
row.sibling = _tail2;
|
24836
|
+
_tail2 = row;
|
24783
24837
|
row = nextRow;
|
24784
24838
|
}
|
24785
24839
|
initSuspenseListRenderState(
|
24786
24840
|
workInProgress2,
|
24787
24841
|
true,
|
24788
24842
|
// isBackwards
|
24789
|
-
|
24843
|
+
_tail2,
|
24790
24844
|
null,
|
24791
24845
|
// last
|
24792
24846
|
tailMode
|
@@ -28432,10 +28486,10 @@ var require_react_dom_development = __commonJS({
|
|
28432
28486
|
return;
|
28433
28487
|
}
|
28434
28488
|
} else {
|
28435
|
-
var
|
28436
|
-
if (
|
28437
|
-
|
28438
|
-
workInProgress =
|
28489
|
+
var _next2 = unwindWork(current2, completedWork);
|
28490
|
+
if (_next2 !== null) {
|
28491
|
+
_next2.flags &= HostEffectMask;
|
28492
|
+
workInProgress = _next2;
|
28439
28493
|
return;
|
28440
28494
|
}
|
28441
28495
|
if ((completedWork.mode & ProfileMode) !== NoMode) {
|
@@ -33511,6 +33565,1370 @@ var init_raf_schd_esm = __esm({
|
|
33511
33565
|
}
|
33512
33566
|
});
|
33513
33567
|
|
33568
|
+
// ../../node_modules/@measured/dnd/node_modules/lru-cache/dist/esm/index.js
|
33569
|
+
var perf, warned, PROCESS, emitWarning, AC, AS, _a, shouldWarn, TYPE, isPosInt, getUintArray, ZeroArray, _constructing, _Stack, Stack, _max, _maxSize, _dispose, _disposeAfter, _fetchMethod, _size, _calculatedSize, _keyMap, _keyList, _valList, _next, _prev, _head, _tail, _free, _disposed, _sizes, _starts, _ttls, _hasDispose, _hasFetchMethod, _hasDisposeAfter, _initializeTTLTracking, initializeTTLTracking_fn, _updateItemAge, _statusTTL, _setItemTTL, _isStale, _initializeSizeTracking, initializeSizeTracking_fn, _removeItemSize, _addItemSize, _requireSize, _indexes, indexes_fn, _rindexes, rindexes_fn, _isValidIndex, isValidIndex_fn, _a2, _evict, evict_fn, _backgroundFetch, backgroundFetch_fn, _isBackgroundFetch, isBackgroundFetch_fn, _connect, connect_fn, _moveToTail, moveToTail_fn, _LRUCache, LRUCache;
|
33570
|
+
var init_esm2 = __esm({
|
33571
|
+
"../../node_modules/@measured/dnd/node_modules/lru-cache/dist/esm/index.js"() {
|
33572
|
+
init_react_import();
|
33573
|
+
perf = typeof performance === "object" && performance && typeof performance.now === "function" ? performance : Date;
|
33574
|
+
warned = /* @__PURE__ */ new Set();
|
33575
|
+
PROCESS = typeof process === "object" && !!process ? process : {};
|
33576
|
+
emitWarning = (msg, type, code, fn) => {
|
33577
|
+
typeof PROCESS.emitWarning === "function" ? PROCESS.emitWarning(msg, type, code, fn) : console.error(`[${code}] ${type}: ${msg}`);
|
33578
|
+
};
|
33579
|
+
AC = globalThis.AbortController;
|
33580
|
+
AS = globalThis.AbortSignal;
|
33581
|
+
if (typeof AC === "undefined") {
|
33582
|
+
AS = class AbortSignal {
|
33583
|
+
constructor() {
|
33584
|
+
__publicField(this, "onabort");
|
33585
|
+
__publicField(this, "_onabort", []);
|
33586
|
+
__publicField(this, "reason");
|
33587
|
+
__publicField(this, "aborted", false);
|
33588
|
+
}
|
33589
|
+
addEventListener(_, fn) {
|
33590
|
+
this._onabort.push(fn);
|
33591
|
+
}
|
33592
|
+
};
|
33593
|
+
AC = class AbortController {
|
33594
|
+
constructor() {
|
33595
|
+
__publicField(this, "signal", new AS());
|
33596
|
+
warnACPolyfill();
|
33597
|
+
}
|
33598
|
+
abort(reason) {
|
33599
|
+
var _a3, _b;
|
33600
|
+
if (this.signal.aborted)
|
33601
|
+
return;
|
33602
|
+
this.signal.reason = reason;
|
33603
|
+
this.signal.aborted = true;
|
33604
|
+
for (const fn of this.signal._onabort) {
|
33605
|
+
fn(reason);
|
33606
|
+
}
|
33607
|
+
(_b = (_a3 = this.signal).onabort) == null ? void 0 : _b.call(_a3, reason);
|
33608
|
+
}
|
33609
|
+
};
|
33610
|
+
let printACPolyfillWarning = ((_a = PROCESS.env) == null ? void 0 : _a.LRU_CACHE_IGNORE_AC_WARNING) !== "1";
|
33611
|
+
const warnACPolyfill = () => {
|
33612
|
+
if (!printACPolyfillWarning)
|
33613
|
+
return;
|
33614
|
+
printACPolyfillWarning = false;
|
33615
|
+
emitWarning("AbortController is not defined. If using lru-cache in node 14, load an AbortController polyfill from the `node-abort-controller` package. A minimal polyfill is provided for use by LRUCache.fetch(), but it should not be relied upon in other contexts (eg, passing it to other APIs that use AbortController/AbortSignal might have undesirable effects). You may disable this with LRU_CACHE_IGNORE_AC_WARNING=1 in the env.", "NO_ABORT_CONTROLLER", "ENOTSUP", warnACPolyfill);
|
33616
|
+
};
|
33617
|
+
}
|
33618
|
+
shouldWarn = (code) => !warned.has(code);
|
33619
|
+
TYPE = Symbol("type");
|
33620
|
+
isPosInt = (n2) => n2 && n2 === Math.floor(n2) && n2 > 0 && isFinite(n2);
|
33621
|
+
getUintArray = (max) => !isPosInt(max) ? null : max <= Math.pow(2, 8) ? Uint8Array : max <= Math.pow(2, 16) ? Uint16Array : max <= Math.pow(2, 32) ? Uint32Array : max <= Number.MAX_SAFE_INTEGER ? ZeroArray : null;
|
33622
|
+
ZeroArray = class extends Array {
|
33623
|
+
constructor(size) {
|
33624
|
+
super(size);
|
33625
|
+
this.fill(0);
|
33626
|
+
}
|
33627
|
+
};
|
33628
|
+
_Stack = class {
|
33629
|
+
constructor(max, HeapCls) {
|
33630
|
+
__publicField(this, "heap");
|
33631
|
+
__publicField(this, "length");
|
33632
|
+
if (!__privateGet(_Stack, _constructing)) {
|
33633
|
+
throw new TypeError("instantiate Stack using Stack.create(n)");
|
33634
|
+
}
|
33635
|
+
this.heap = new HeapCls(max);
|
33636
|
+
this.length = 0;
|
33637
|
+
}
|
33638
|
+
static create(max) {
|
33639
|
+
const HeapCls = getUintArray(max);
|
33640
|
+
if (!HeapCls)
|
33641
|
+
return [];
|
33642
|
+
__privateSet(_Stack, _constructing, true);
|
33643
|
+
const s = new _Stack(max, HeapCls);
|
33644
|
+
__privateSet(_Stack, _constructing, false);
|
33645
|
+
return s;
|
33646
|
+
}
|
33647
|
+
push(n2) {
|
33648
|
+
this.heap[this.length++] = n2;
|
33649
|
+
}
|
33650
|
+
pop() {
|
33651
|
+
return this.heap[--this.length];
|
33652
|
+
}
|
33653
|
+
};
|
33654
|
+
Stack = _Stack;
|
33655
|
+
_constructing = new WeakMap();
|
33656
|
+
// private constructor
|
33657
|
+
__privateAdd(Stack, _constructing, false);
|
33658
|
+
_LRUCache = class {
|
33659
|
+
constructor(options) {
|
33660
|
+
__privateAdd(this, _initializeTTLTracking);
|
33661
|
+
__privateAdd(this, _initializeSizeTracking);
|
33662
|
+
__privateAdd(this, _indexes);
|
33663
|
+
__privateAdd(this, _rindexes);
|
33664
|
+
__privateAdd(this, _isValidIndex);
|
33665
|
+
__privateAdd(this, _evict);
|
33666
|
+
__privateAdd(this, _backgroundFetch);
|
33667
|
+
__privateAdd(this, _isBackgroundFetch);
|
33668
|
+
__privateAdd(this, _connect);
|
33669
|
+
__privateAdd(this, _moveToTail);
|
33670
|
+
// properties coming in from the options of these, only max and maxSize
|
33671
|
+
// really *need* to be protected. The rest can be modified, as they just
|
33672
|
+
// set defaults for various methods.
|
33673
|
+
__privateAdd(this, _max, void 0);
|
33674
|
+
__privateAdd(this, _maxSize, void 0);
|
33675
|
+
__privateAdd(this, _dispose, void 0);
|
33676
|
+
__privateAdd(this, _disposeAfter, void 0);
|
33677
|
+
__privateAdd(this, _fetchMethod, void 0);
|
33678
|
+
/**
|
33679
|
+
* {@link LRUCache.OptionsBase.ttl}
|
33680
|
+
*/
|
33681
|
+
__publicField(this, "ttl");
|
33682
|
+
/**
|
33683
|
+
* {@link LRUCache.OptionsBase.ttlResolution}
|
33684
|
+
*/
|
33685
|
+
__publicField(this, "ttlResolution");
|
33686
|
+
/**
|
33687
|
+
* {@link LRUCache.OptionsBase.ttlAutopurge}
|
33688
|
+
*/
|
33689
|
+
__publicField(this, "ttlAutopurge");
|
33690
|
+
/**
|
33691
|
+
* {@link LRUCache.OptionsBase.updateAgeOnGet}
|
33692
|
+
*/
|
33693
|
+
__publicField(this, "updateAgeOnGet");
|
33694
|
+
/**
|
33695
|
+
* {@link LRUCache.OptionsBase.updateAgeOnHas}
|
33696
|
+
*/
|
33697
|
+
__publicField(this, "updateAgeOnHas");
|
33698
|
+
/**
|
33699
|
+
* {@link LRUCache.OptionsBase.allowStale}
|
33700
|
+
*/
|
33701
|
+
__publicField(this, "allowStale");
|
33702
|
+
/**
|
33703
|
+
* {@link LRUCache.OptionsBase.noDisposeOnSet}
|
33704
|
+
*/
|
33705
|
+
__publicField(this, "noDisposeOnSet");
|
33706
|
+
/**
|
33707
|
+
* {@link LRUCache.OptionsBase.noUpdateTTL}
|
33708
|
+
*/
|
33709
|
+
__publicField(this, "noUpdateTTL");
|
33710
|
+
/**
|
33711
|
+
* {@link LRUCache.OptionsBase.maxEntrySize}
|
33712
|
+
*/
|
33713
|
+
__publicField(this, "maxEntrySize");
|
33714
|
+
/**
|
33715
|
+
* {@link LRUCache.OptionsBase.sizeCalculation}
|
33716
|
+
*/
|
33717
|
+
__publicField(this, "sizeCalculation");
|
33718
|
+
/**
|
33719
|
+
* {@link LRUCache.OptionsBase.noDeleteOnFetchRejection}
|
33720
|
+
*/
|
33721
|
+
__publicField(this, "noDeleteOnFetchRejection");
|
33722
|
+
/**
|
33723
|
+
* {@link LRUCache.OptionsBase.noDeleteOnStaleGet}
|
33724
|
+
*/
|
33725
|
+
__publicField(this, "noDeleteOnStaleGet");
|
33726
|
+
/**
|
33727
|
+
* {@link LRUCache.OptionsBase.allowStaleOnFetchAbort}
|
33728
|
+
*/
|
33729
|
+
__publicField(this, "allowStaleOnFetchAbort");
|
33730
|
+
/**
|
33731
|
+
* {@link LRUCache.OptionsBase.allowStaleOnFetchRejection}
|
33732
|
+
*/
|
33733
|
+
__publicField(this, "allowStaleOnFetchRejection");
|
33734
|
+
/**
|
33735
|
+
* {@link LRUCache.OptionsBase.ignoreFetchAbort}
|
33736
|
+
*/
|
33737
|
+
__publicField(this, "ignoreFetchAbort");
|
33738
|
+
// computed properties
|
33739
|
+
__privateAdd(this, _size, void 0);
|
33740
|
+
__privateAdd(this, _calculatedSize, void 0);
|
33741
|
+
__privateAdd(this, _keyMap, void 0);
|
33742
|
+
__privateAdd(this, _keyList, void 0);
|
33743
|
+
__privateAdd(this, _valList, void 0);
|
33744
|
+
__privateAdd(this, _next, void 0);
|
33745
|
+
__privateAdd(this, _prev, void 0);
|
33746
|
+
__privateAdd(this, _head, void 0);
|
33747
|
+
__privateAdd(this, _tail, void 0);
|
33748
|
+
__privateAdd(this, _free, void 0);
|
33749
|
+
__privateAdd(this, _disposed, void 0);
|
33750
|
+
__privateAdd(this, _sizes, void 0);
|
33751
|
+
__privateAdd(this, _starts, void 0);
|
33752
|
+
__privateAdd(this, _ttls, void 0);
|
33753
|
+
__privateAdd(this, _hasDispose, void 0);
|
33754
|
+
__privateAdd(this, _hasFetchMethod, void 0);
|
33755
|
+
__privateAdd(this, _hasDisposeAfter, void 0);
|
33756
|
+
// conditionally set private methods related to TTL
|
33757
|
+
__privateAdd(this, _updateItemAge, () => {
|
33758
|
+
});
|
33759
|
+
__privateAdd(this, _statusTTL, () => {
|
33760
|
+
});
|
33761
|
+
__privateAdd(this, _setItemTTL, () => {
|
33762
|
+
});
|
33763
|
+
/* c8 ignore stop */
|
33764
|
+
__privateAdd(this, _isStale, () => false);
|
33765
|
+
__privateAdd(this, _removeItemSize, (_i) => {
|
33766
|
+
});
|
33767
|
+
__privateAdd(this, _addItemSize, (_i, _s, _st) => {
|
33768
|
+
});
|
33769
|
+
__privateAdd(this, _requireSize, (_k, _v, size, sizeCalculation) => {
|
33770
|
+
if (size || sizeCalculation) {
|
33771
|
+
throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");
|
33772
|
+
}
|
33773
|
+
return 0;
|
33774
|
+
});
|
33775
|
+
/**
|
33776
|
+
* A String value that is used in the creation of the default string description of an object.
|
33777
|
+
* Called by the built-in method Object.prototype.toString.
|
33778
|
+
*/
|
33779
|
+
__publicField(this, _a2, "LRUCache");
|
33780
|
+
const { max = 0, ttl, ttlResolution = 1, ttlAutopurge, updateAgeOnGet, updateAgeOnHas, allowStale, dispose, disposeAfter, noDisposeOnSet, noUpdateTTL, maxSize = 0, maxEntrySize = 0, sizeCalculation, fetchMethod, noDeleteOnFetchRejection, noDeleteOnStaleGet, allowStaleOnFetchRejection, allowStaleOnFetchAbort, ignoreFetchAbort } = options;
|
33781
|
+
if (max !== 0 && !isPosInt(max)) {
|
33782
|
+
throw new TypeError("max option must be a nonnegative integer");
|
33783
|
+
}
|
33784
|
+
const UintArray = max ? getUintArray(max) : Array;
|
33785
|
+
if (!UintArray) {
|
33786
|
+
throw new Error("invalid max value: " + max);
|
33787
|
+
}
|
33788
|
+
__privateSet(this, _max, max);
|
33789
|
+
__privateSet(this, _maxSize, maxSize);
|
33790
|
+
this.maxEntrySize = maxEntrySize || __privateGet(this, _maxSize);
|
33791
|
+
this.sizeCalculation = sizeCalculation;
|
33792
|
+
if (this.sizeCalculation) {
|
33793
|
+
if (!__privateGet(this, _maxSize) && !this.maxEntrySize) {
|
33794
|
+
throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");
|
33795
|
+
}
|
33796
|
+
if (typeof this.sizeCalculation !== "function") {
|
33797
|
+
throw new TypeError("sizeCalculation set to non-function");
|
33798
|
+
}
|
33799
|
+
}
|
33800
|
+
if (fetchMethod !== void 0 && typeof fetchMethod !== "function") {
|
33801
|
+
throw new TypeError("fetchMethod must be a function if specified");
|
33802
|
+
}
|
33803
|
+
__privateSet(this, _fetchMethod, fetchMethod);
|
33804
|
+
__privateSet(this, _hasFetchMethod, !!fetchMethod);
|
33805
|
+
__privateSet(this, _keyMap, /* @__PURE__ */ new Map());
|
33806
|
+
__privateSet(this, _keyList, new Array(max).fill(void 0));
|
33807
|
+
__privateSet(this, _valList, new Array(max).fill(void 0));
|
33808
|
+
__privateSet(this, _next, new UintArray(max));
|
33809
|
+
__privateSet(this, _prev, new UintArray(max));
|
33810
|
+
__privateSet(this, _head, 0);
|
33811
|
+
__privateSet(this, _tail, 0);
|
33812
|
+
__privateSet(this, _free, Stack.create(max));
|
33813
|
+
__privateSet(this, _size, 0);
|
33814
|
+
__privateSet(this, _calculatedSize, 0);
|
33815
|
+
if (typeof dispose === "function") {
|
33816
|
+
__privateSet(this, _dispose, dispose);
|
33817
|
+
}
|
33818
|
+
if (typeof disposeAfter === "function") {
|
33819
|
+
__privateSet(this, _disposeAfter, disposeAfter);
|
33820
|
+
__privateSet(this, _disposed, []);
|
33821
|
+
} else {
|
33822
|
+
__privateSet(this, _disposeAfter, void 0);
|
33823
|
+
__privateSet(this, _disposed, void 0);
|
33824
|
+
}
|
33825
|
+
__privateSet(this, _hasDispose, !!__privateGet(this, _dispose));
|
33826
|
+
__privateSet(this, _hasDisposeAfter, !!__privateGet(this, _disposeAfter));
|
33827
|
+
this.noDisposeOnSet = !!noDisposeOnSet;
|
33828
|
+
this.noUpdateTTL = !!noUpdateTTL;
|
33829
|
+
this.noDeleteOnFetchRejection = !!noDeleteOnFetchRejection;
|
33830
|
+
this.allowStaleOnFetchRejection = !!allowStaleOnFetchRejection;
|
33831
|
+
this.allowStaleOnFetchAbort = !!allowStaleOnFetchAbort;
|
33832
|
+
this.ignoreFetchAbort = !!ignoreFetchAbort;
|
33833
|
+
if (this.maxEntrySize !== 0) {
|
33834
|
+
if (__privateGet(this, _maxSize) !== 0) {
|
33835
|
+
if (!isPosInt(__privateGet(this, _maxSize))) {
|
33836
|
+
throw new TypeError("maxSize must be a positive integer if specified");
|
33837
|
+
}
|
33838
|
+
}
|
33839
|
+
if (!isPosInt(this.maxEntrySize)) {
|
33840
|
+
throw new TypeError("maxEntrySize must be a positive integer if specified");
|
33841
|
+
}
|
33842
|
+
__privateMethod(this, _initializeSizeTracking, initializeSizeTracking_fn).call(this);
|
33843
|
+
}
|
33844
|
+
this.allowStale = !!allowStale;
|
33845
|
+
this.noDeleteOnStaleGet = !!noDeleteOnStaleGet;
|
33846
|
+
this.updateAgeOnGet = !!updateAgeOnGet;
|
33847
|
+
this.updateAgeOnHas = !!updateAgeOnHas;
|
33848
|
+
this.ttlResolution = isPosInt(ttlResolution) || ttlResolution === 0 ? ttlResolution : 1;
|
33849
|
+
this.ttlAutopurge = !!ttlAutopurge;
|
33850
|
+
this.ttl = ttl || 0;
|
33851
|
+
if (this.ttl) {
|
33852
|
+
if (!isPosInt(this.ttl)) {
|
33853
|
+
throw new TypeError("ttl must be a positive integer if specified");
|
33854
|
+
}
|
33855
|
+
__privateMethod(this, _initializeTTLTracking, initializeTTLTracking_fn).call(this);
|
33856
|
+
}
|
33857
|
+
if (__privateGet(this, _max) === 0 && this.ttl === 0 && __privateGet(this, _maxSize) === 0) {
|
33858
|
+
throw new TypeError("At least one of max, maxSize, or ttl is required");
|
33859
|
+
}
|
33860
|
+
if (!this.ttlAutopurge && !__privateGet(this, _max) && !__privateGet(this, _maxSize)) {
|
33861
|
+
const code = "LRU_CACHE_UNBOUNDED";
|
33862
|
+
if (shouldWarn(code)) {
|
33863
|
+
warned.add(code);
|
33864
|
+
const msg = "TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.";
|
33865
|
+
emitWarning(msg, "UnboundedCacheWarning", code, _LRUCache);
|
33866
|
+
}
|
33867
|
+
}
|
33868
|
+
}
|
33869
|
+
/**
|
33870
|
+
* Do not call this method unless you need to inspect the
|
33871
|
+
* inner workings of the cache. If anything returned by this
|
33872
|
+
* object is modified in any way, strange breakage may occur.
|
33873
|
+
*
|
33874
|
+
* These fields are private for a reason!
|
33875
|
+
*
|
33876
|
+
* @internal
|
33877
|
+
*/
|
33878
|
+
static unsafeExposeInternals(c2) {
|
33879
|
+
return {
|
33880
|
+
// properties
|
33881
|
+
starts: __privateGet(c2, _starts),
|
33882
|
+
ttls: __privateGet(c2, _ttls),
|
33883
|
+
sizes: __privateGet(c2, _sizes),
|
33884
|
+
keyMap: __privateGet(c2, _keyMap),
|
33885
|
+
keyList: __privateGet(c2, _keyList),
|
33886
|
+
valList: __privateGet(c2, _valList),
|
33887
|
+
next: __privateGet(c2, _next),
|
33888
|
+
prev: __privateGet(c2, _prev),
|
33889
|
+
get head() {
|
33890
|
+
return __privateGet(c2, _head);
|
33891
|
+
},
|
33892
|
+
get tail() {
|
33893
|
+
return __privateGet(c2, _tail);
|
33894
|
+
},
|
33895
|
+
free: __privateGet(c2, _free),
|
33896
|
+
// methods
|
33897
|
+
isBackgroundFetch: (p) => {
|
33898
|
+
var _a3;
|
33899
|
+
return __privateMethod(_a3 = c2, _isBackgroundFetch, isBackgroundFetch_fn).call(_a3, p);
|
33900
|
+
},
|
33901
|
+
backgroundFetch: (k, index, options, context) => {
|
33902
|
+
var _a3;
|
33903
|
+
return __privateMethod(_a3 = c2, _backgroundFetch, backgroundFetch_fn).call(_a3, k, index, options, context);
|
33904
|
+
},
|
33905
|
+
moveToTail: (index) => {
|
33906
|
+
var _a3;
|
33907
|
+
return __privateMethod(_a3 = c2, _moveToTail, moveToTail_fn).call(_a3, index);
|
33908
|
+
},
|
33909
|
+
indexes: (options) => {
|
33910
|
+
var _a3;
|
33911
|
+
return __privateMethod(_a3 = c2, _indexes, indexes_fn).call(_a3, options);
|
33912
|
+
},
|
33913
|
+
rindexes: (options) => {
|
33914
|
+
var _a3;
|
33915
|
+
return __privateMethod(_a3 = c2, _rindexes, rindexes_fn).call(_a3, options);
|
33916
|
+
},
|
33917
|
+
isStale: (index) => {
|
33918
|
+
var _a3;
|
33919
|
+
return __privateGet(_a3 = c2, _isStale).call(_a3, index);
|
33920
|
+
}
|
33921
|
+
};
|
33922
|
+
}
|
33923
|
+
// Protected read-only members
|
33924
|
+
/**
|
33925
|
+
* {@link LRUCache.OptionsBase.max} (read-only)
|
33926
|
+
*/
|
33927
|
+
get max() {
|
33928
|
+
return __privateGet(this, _max);
|
33929
|
+
}
|
33930
|
+
/**
|
33931
|
+
* {@link LRUCache.OptionsBase.maxSize} (read-only)
|
33932
|
+
*/
|
33933
|
+
get maxSize() {
|
33934
|
+
return __privateGet(this, _maxSize);
|
33935
|
+
}
|
33936
|
+
/**
|
33937
|
+
* The total computed size of items in the cache (read-only)
|
33938
|
+
*/
|
33939
|
+
get calculatedSize() {
|
33940
|
+
return __privateGet(this, _calculatedSize);
|
33941
|
+
}
|
33942
|
+
/**
|
33943
|
+
* The number of items stored in the cache (read-only)
|
33944
|
+
*/
|
33945
|
+
get size() {
|
33946
|
+
return __privateGet(this, _size);
|
33947
|
+
}
|
33948
|
+
/**
|
33949
|
+
* {@link LRUCache.OptionsBase.fetchMethod} (read-only)
|
33950
|
+
*/
|
33951
|
+
get fetchMethod() {
|
33952
|
+
return __privateGet(this, _fetchMethod);
|
33953
|
+
}
|
33954
|
+
/**
|
33955
|
+
* {@link LRUCache.OptionsBase.dispose} (read-only)
|
33956
|
+
*/
|
33957
|
+
get dispose() {
|
33958
|
+
return __privateGet(this, _dispose);
|
33959
|
+
}
|
33960
|
+
/**
|
33961
|
+
* {@link LRUCache.OptionsBase.disposeAfter} (read-only)
|
33962
|
+
*/
|
33963
|
+
get disposeAfter() {
|
33964
|
+
return __privateGet(this, _disposeAfter);
|
33965
|
+
}
|
33966
|
+
/**
|
33967
|
+
* Return the remaining TTL time for a given entry key
|
33968
|
+
*/
|
33969
|
+
getRemainingTTL(key) {
|
33970
|
+
return __privateGet(this, _keyMap).has(key) ? Infinity : 0;
|
33971
|
+
}
|
33972
|
+
/**
|
33973
|
+
* Return a generator yielding `[key, value]` pairs,
|
33974
|
+
* in order from most recently used to least recently used.
|
33975
|
+
*/
|
33976
|
+
*entries() {
|
33977
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this)) {
|
33978
|
+
if (__privateGet(this, _valList)[i2] !== void 0 && __privateGet(this, _keyList)[i2] !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
33979
|
+
yield [__privateGet(this, _keyList)[i2], __privateGet(this, _valList)[i2]];
|
33980
|
+
}
|
33981
|
+
}
|
33982
|
+
}
|
33983
|
+
/**
|
33984
|
+
* Inverse order version of {@link LRUCache.entries}
|
33985
|
+
*
|
33986
|
+
* Return a generator yielding `[key, value]` pairs,
|
33987
|
+
* in order from least recently used to most recently used.
|
33988
|
+
*/
|
33989
|
+
*rentries() {
|
33990
|
+
for (const i2 of __privateMethod(this, _rindexes, rindexes_fn).call(this)) {
|
33991
|
+
if (__privateGet(this, _valList)[i2] !== void 0 && __privateGet(this, _keyList)[i2] !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
33992
|
+
yield [__privateGet(this, _keyList)[i2], __privateGet(this, _valList)[i2]];
|
33993
|
+
}
|
33994
|
+
}
|
33995
|
+
}
|
33996
|
+
/**
|
33997
|
+
* Return a generator yielding the keys in the cache,
|
33998
|
+
* in order from most recently used to least recently used.
|
33999
|
+
*/
|
34000
|
+
*keys() {
|
34001
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this)) {
|
34002
|
+
const k = __privateGet(this, _keyList)[i2];
|
34003
|
+
if (k !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
34004
|
+
yield k;
|
34005
|
+
}
|
34006
|
+
}
|
34007
|
+
}
|
34008
|
+
/**
|
34009
|
+
* Inverse order version of {@link LRUCache.keys}
|
34010
|
+
*
|
34011
|
+
* Return a generator yielding the keys in the cache,
|
34012
|
+
* in order from least recently used to most recently used.
|
34013
|
+
*/
|
34014
|
+
*rkeys() {
|
34015
|
+
for (const i2 of __privateMethod(this, _rindexes, rindexes_fn).call(this)) {
|
34016
|
+
const k = __privateGet(this, _keyList)[i2];
|
34017
|
+
if (k !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
34018
|
+
yield k;
|
34019
|
+
}
|
34020
|
+
}
|
34021
|
+
}
|
34022
|
+
/**
|
34023
|
+
* Return a generator yielding the values in the cache,
|
34024
|
+
* in order from most recently used to least recently used.
|
34025
|
+
*/
|
34026
|
+
*values() {
|
34027
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this)) {
|
34028
|
+
const v = __privateGet(this, _valList)[i2];
|
34029
|
+
if (v !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
34030
|
+
yield __privateGet(this, _valList)[i2];
|
34031
|
+
}
|
34032
|
+
}
|
34033
|
+
}
|
34034
|
+
/**
|
34035
|
+
* Inverse order version of {@link LRUCache.values}
|
34036
|
+
*
|
34037
|
+
* Return a generator yielding the values in the cache,
|
34038
|
+
* in order from least recently used to most recently used.
|
34039
|
+
*/
|
34040
|
+
*rvalues() {
|
34041
|
+
for (const i2 of __privateMethod(this, _rindexes, rindexes_fn).call(this)) {
|
34042
|
+
const v = __privateGet(this, _valList)[i2];
|
34043
|
+
if (v !== void 0 && !__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, __privateGet(this, _valList)[i2])) {
|
34044
|
+
yield __privateGet(this, _valList)[i2];
|
34045
|
+
}
|
34046
|
+
}
|
34047
|
+
}
|
34048
|
+
/**
|
34049
|
+
* Iterating over the cache itself yields the same results as
|
34050
|
+
* {@link LRUCache.entries}
|
34051
|
+
*/
|
34052
|
+
[Symbol.iterator]() {
|
34053
|
+
return this.entries();
|
34054
|
+
}
|
34055
|
+
/**
|
34056
|
+
* Find a value for which the supplied fn method returns a truthy value,
|
34057
|
+
* similar to Array.find(). fn is called as fn(value, key, cache).
|
34058
|
+
*/
|
34059
|
+
find(fn, getOptions2 = {}) {
|
34060
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this)) {
|
34061
|
+
const v = __privateGet(this, _valList)[i2];
|
34062
|
+
const value = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34063
|
+
if (value === void 0)
|
34064
|
+
continue;
|
34065
|
+
if (fn(value, __privateGet(this, _keyList)[i2], this)) {
|
34066
|
+
return this.get(__privateGet(this, _keyList)[i2], getOptions2);
|
34067
|
+
}
|
34068
|
+
}
|
34069
|
+
}
|
34070
|
+
/**
|
34071
|
+
* Call the supplied function on each item in the cache, in order from
|
34072
|
+
* most recently used to least recently used. fn is called as
|
34073
|
+
* fn(value, key, cache). Does not update age or recenty of use.
|
34074
|
+
* Does not iterate over stale values.
|
34075
|
+
*/
|
34076
|
+
forEach(fn, thisp = this) {
|
34077
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this)) {
|
34078
|
+
const v = __privateGet(this, _valList)[i2];
|
34079
|
+
const value = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34080
|
+
if (value === void 0)
|
34081
|
+
continue;
|
34082
|
+
fn.call(thisp, value, __privateGet(this, _keyList)[i2], this);
|
34083
|
+
}
|
34084
|
+
}
|
34085
|
+
/**
|
34086
|
+
* The same as {@link LRUCache.forEach} but items are iterated over in
|
34087
|
+
* reverse order. (ie, less recently used items are iterated over first.)
|
34088
|
+
*/
|
34089
|
+
rforEach(fn, thisp = this) {
|
34090
|
+
for (const i2 of __privateMethod(this, _rindexes, rindexes_fn).call(this)) {
|
34091
|
+
const v = __privateGet(this, _valList)[i2];
|
34092
|
+
const value = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34093
|
+
if (value === void 0)
|
34094
|
+
continue;
|
34095
|
+
fn.call(thisp, value, __privateGet(this, _keyList)[i2], this);
|
34096
|
+
}
|
34097
|
+
}
|
34098
|
+
/**
|
34099
|
+
* Delete any stale entries. Returns true if anything was removed,
|
34100
|
+
* false otherwise.
|
34101
|
+
*/
|
34102
|
+
purgeStale() {
|
34103
|
+
let deleted = false;
|
34104
|
+
for (const i2 of __privateMethod(this, _rindexes, rindexes_fn).call(this, { allowStale: true })) {
|
34105
|
+
if (__privateGet(this, _isStale).call(this, i2)) {
|
34106
|
+
this.delete(__privateGet(this, _keyList)[i2]);
|
34107
|
+
deleted = true;
|
34108
|
+
}
|
34109
|
+
}
|
34110
|
+
return deleted;
|
34111
|
+
}
|
34112
|
+
/**
|
34113
|
+
* Get the extended info about a given entry, to get its value, size, and
|
34114
|
+
* TTL info simultaneously. Like {@link LRUCache#dump}, but just for a
|
34115
|
+
* single key. Always returns stale values, if their info is found in the
|
34116
|
+
* cache, so be sure to check for expired TTLs if relevant.
|
34117
|
+
*/
|
34118
|
+
info(key) {
|
34119
|
+
const i2 = __privateGet(this, _keyMap).get(key);
|
34120
|
+
if (i2 === void 0)
|
34121
|
+
return void 0;
|
34122
|
+
const v = __privateGet(this, _valList)[i2];
|
34123
|
+
const value = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34124
|
+
if (value === void 0)
|
34125
|
+
return void 0;
|
34126
|
+
const entry = { value };
|
34127
|
+
if (__privateGet(this, _ttls) && __privateGet(this, _starts)) {
|
34128
|
+
const ttl = __privateGet(this, _ttls)[i2];
|
34129
|
+
const start2 = __privateGet(this, _starts)[i2];
|
34130
|
+
if (ttl && start2) {
|
34131
|
+
const remain = ttl - (perf.now() - start2);
|
34132
|
+
entry.ttl = remain;
|
34133
|
+
entry.start = Date.now();
|
34134
|
+
}
|
34135
|
+
}
|
34136
|
+
if (__privateGet(this, _sizes)) {
|
34137
|
+
entry.size = __privateGet(this, _sizes)[i2];
|
34138
|
+
}
|
34139
|
+
return entry;
|
34140
|
+
}
|
34141
|
+
/**
|
34142
|
+
* Return an array of [key, {@link LRUCache.Entry}] tuples which can be
|
34143
|
+
* passed to cache.load()
|
34144
|
+
*/
|
34145
|
+
dump() {
|
34146
|
+
const arr = [];
|
34147
|
+
for (const i2 of __privateMethod(this, _indexes, indexes_fn).call(this, { allowStale: true })) {
|
34148
|
+
const key = __privateGet(this, _keyList)[i2];
|
34149
|
+
const v = __privateGet(this, _valList)[i2];
|
34150
|
+
const value = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34151
|
+
if (value === void 0 || key === void 0)
|
34152
|
+
continue;
|
34153
|
+
const entry = { value };
|
34154
|
+
if (__privateGet(this, _ttls) && __privateGet(this, _starts)) {
|
34155
|
+
entry.ttl = __privateGet(this, _ttls)[i2];
|
34156
|
+
const age = perf.now() - __privateGet(this, _starts)[i2];
|
34157
|
+
entry.start = Math.floor(Date.now() - age);
|
34158
|
+
}
|
34159
|
+
if (__privateGet(this, _sizes)) {
|
34160
|
+
entry.size = __privateGet(this, _sizes)[i2];
|
34161
|
+
}
|
34162
|
+
arr.unshift([key, entry]);
|
34163
|
+
}
|
34164
|
+
return arr;
|
34165
|
+
}
|
34166
|
+
/**
|
34167
|
+
* Reset the cache and load in the items in entries in the order listed.
|
34168
|
+
* Note that the shape of the resulting cache may be different if the
|
34169
|
+
* same options are not used in both caches.
|
34170
|
+
*/
|
34171
|
+
load(arr) {
|
34172
|
+
this.clear();
|
34173
|
+
for (const [key, entry] of arr) {
|
34174
|
+
if (entry.start) {
|
34175
|
+
const age = Date.now() - entry.start;
|
34176
|
+
entry.start = perf.now() - age;
|
34177
|
+
}
|
34178
|
+
this.set(key, entry.value, entry);
|
34179
|
+
}
|
34180
|
+
}
|
34181
|
+
/**
|
34182
|
+
* Add a value to the cache.
|
34183
|
+
*
|
34184
|
+
* Note: if `undefined` is specified as a value, this is an alias for
|
34185
|
+
* {@link LRUCache#delete}
|
34186
|
+
*/
|
34187
|
+
set(k, v, setOptions = {}) {
|
34188
|
+
var _a3, _b, _c, _d, _e;
|
34189
|
+
if (v === void 0) {
|
34190
|
+
this.delete(k);
|
34191
|
+
return this;
|
34192
|
+
}
|
34193
|
+
const { ttl = this.ttl, start: start2, noDisposeOnSet = this.noDisposeOnSet, sizeCalculation = this.sizeCalculation, status } = setOptions;
|
34194
|
+
let { noUpdateTTL = this.noUpdateTTL } = setOptions;
|
34195
|
+
const size = __privateGet(this, _requireSize).call(this, k, v, setOptions.size || 0, sizeCalculation);
|
34196
|
+
if (this.maxEntrySize && size > this.maxEntrySize) {
|
34197
|
+
if (status) {
|
34198
|
+
status.set = "miss";
|
34199
|
+
status.maxEntrySizeExceeded = true;
|
34200
|
+
}
|
34201
|
+
this.delete(k);
|
34202
|
+
return this;
|
34203
|
+
}
|
34204
|
+
let index = __privateGet(this, _size) === 0 ? void 0 : __privateGet(this, _keyMap).get(k);
|
34205
|
+
if (index === void 0) {
|
34206
|
+
index = __privateGet(this, _size) === 0 ? __privateGet(this, _tail) : __privateGet(this, _free).length !== 0 ? __privateGet(this, _free).pop() : __privateGet(this, _size) === __privateGet(this, _max) ? __privateMethod(this, _evict, evict_fn).call(this, false) : __privateGet(this, _size);
|
34207
|
+
__privateGet(this, _keyList)[index] = k;
|
34208
|
+
__privateGet(this, _valList)[index] = v;
|
34209
|
+
__privateGet(this, _keyMap).set(k, index);
|
34210
|
+
__privateGet(this, _next)[__privateGet(this, _tail)] = index;
|
34211
|
+
__privateGet(this, _prev)[index] = __privateGet(this, _tail);
|
34212
|
+
__privateSet(this, _tail, index);
|
34213
|
+
__privateWrapper(this, _size)._++;
|
34214
|
+
__privateGet(this, _addItemSize).call(this, index, size, status);
|
34215
|
+
if (status)
|
34216
|
+
status.set = "add";
|
34217
|
+
noUpdateTTL = false;
|
34218
|
+
} else {
|
34219
|
+
__privateMethod(this, _moveToTail, moveToTail_fn).call(this, index);
|
34220
|
+
const oldVal = __privateGet(this, _valList)[index];
|
34221
|
+
if (v !== oldVal) {
|
34222
|
+
if (__privateGet(this, _hasFetchMethod) && __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, oldVal)) {
|
34223
|
+
oldVal.__abortController.abort(new Error("replaced"));
|
34224
|
+
const { __staleWhileFetching: s } = oldVal;
|
34225
|
+
if (s !== void 0 && !noDisposeOnSet) {
|
34226
|
+
if (__privateGet(this, _hasDispose)) {
|
34227
|
+
(_a3 = __privateGet(this, _dispose)) == null ? void 0 : _a3.call(this, s, k, "set");
|
34228
|
+
}
|
34229
|
+
if (__privateGet(this, _hasDisposeAfter)) {
|
34230
|
+
(_b = __privateGet(this, _disposed)) == null ? void 0 : _b.push([s, k, "set"]);
|
34231
|
+
}
|
34232
|
+
}
|
34233
|
+
} else if (!noDisposeOnSet) {
|
34234
|
+
if (__privateGet(this, _hasDispose)) {
|
34235
|
+
(_c = __privateGet(this, _dispose)) == null ? void 0 : _c.call(this, oldVal, k, "set");
|
34236
|
+
}
|
34237
|
+
if (__privateGet(this, _hasDisposeAfter)) {
|
34238
|
+
(_d = __privateGet(this, _disposed)) == null ? void 0 : _d.push([oldVal, k, "set"]);
|
34239
|
+
}
|
34240
|
+
}
|
34241
|
+
__privateGet(this, _removeItemSize).call(this, index);
|
34242
|
+
__privateGet(this, _addItemSize).call(this, index, size, status);
|
34243
|
+
__privateGet(this, _valList)[index] = v;
|
34244
|
+
if (status) {
|
34245
|
+
status.set = "replace";
|
34246
|
+
const oldValue = oldVal && __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, oldVal) ? oldVal.__staleWhileFetching : oldVal;
|
34247
|
+
if (oldValue !== void 0)
|
34248
|
+
status.oldValue = oldValue;
|
34249
|
+
}
|
34250
|
+
} else if (status) {
|
34251
|
+
status.set = "update";
|
34252
|
+
}
|
34253
|
+
}
|
34254
|
+
if (ttl !== 0 && !__privateGet(this, _ttls)) {
|
34255
|
+
__privateMethod(this, _initializeTTLTracking, initializeTTLTracking_fn).call(this);
|
34256
|
+
}
|
34257
|
+
if (__privateGet(this, _ttls)) {
|
34258
|
+
if (!noUpdateTTL) {
|
34259
|
+
__privateGet(this, _setItemTTL).call(this, index, ttl, start2);
|
34260
|
+
}
|
34261
|
+
if (status)
|
34262
|
+
__privateGet(this, _statusTTL).call(this, status, index);
|
34263
|
+
}
|
34264
|
+
if (!noDisposeOnSet && __privateGet(this, _hasDisposeAfter) && __privateGet(this, _disposed)) {
|
34265
|
+
const dt = __privateGet(this, _disposed);
|
34266
|
+
let task;
|
34267
|
+
while (task = dt == null ? void 0 : dt.shift()) {
|
34268
|
+
(_e = __privateGet(this, _disposeAfter)) == null ? void 0 : _e.call(this, ...task);
|
34269
|
+
}
|
34270
|
+
}
|
34271
|
+
return this;
|
34272
|
+
}
|
34273
|
+
/**
|
34274
|
+
* Evict the least recently used item, returning its value or
|
34275
|
+
* `undefined` if cache is empty.
|
34276
|
+
*/
|
34277
|
+
pop() {
|
34278
|
+
var _a3;
|
34279
|
+
try {
|
34280
|
+
while (__privateGet(this, _size)) {
|
34281
|
+
const val = __privateGet(this, _valList)[__privateGet(this, _head)];
|
34282
|
+
__privateMethod(this, _evict, evict_fn).call(this, true);
|
34283
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, val)) {
|
34284
|
+
if (val.__staleWhileFetching) {
|
34285
|
+
return val.__staleWhileFetching;
|
34286
|
+
}
|
34287
|
+
} else if (val !== void 0) {
|
34288
|
+
return val;
|
34289
|
+
}
|
34290
|
+
}
|
34291
|
+
} finally {
|
34292
|
+
if (__privateGet(this, _hasDisposeAfter) && __privateGet(this, _disposed)) {
|
34293
|
+
const dt = __privateGet(this, _disposed);
|
34294
|
+
let task;
|
34295
|
+
while (task = dt == null ? void 0 : dt.shift()) {
|
34296
|
+
(_a3 = __privateGet(this, _disposeAfter)) == null ? void 0 : _a3.call(this, ...task);
|
34297
|
+
}
|
34298
|
+
}
|
34299
|
+
}
|
34300
|
+
}
|
34301
|
+
/**
|
34302
|
+
* Check if a key is in the cache, without updating the recency of use.
|
34303
|
+
* Will return false if the item is stale, even though it is technically
|
34304
|
+
* in the cache.
|
34305
|
+
*
|
34306
|
+
* Will not update item age unless
|
34307
|
+
* {@link LRUCache.OptionsBase.updateAgeOnHas} is set.
|
34308
|
+
*/
|
34309
|
+
has(k, hasOptions = {}) {
|
34310
|
+
const { updateAgeOnHas = this.updateAgeOnHas, status } = hasOptions;
|
34311
|
+
const index = __privateGet(this, _keyMap).get(k);
|
34312
|
+
if (index !== void 0) {
|
34313
|
+
const v = __privateGet(this, _valList)[index];
|
34314
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) && v.__staleWhileFetching === void 0) {
|
34315
|
+
return false;
|
34316
|
+
}
|
34317
|
+
if (!__privateGet(this, _isStale).call(this, index)) {
|
34318
|
+
if (updateAgeOnHas) {
|
34319
|
+
__privateGet(this, _updateItemAge).call(this, index);
|
34320
|
+
}
|
34321
|
+
if (status) {
|
34322
|
+
status.has = "hit";
|
34323
|
+
__privateGet(this, _statusTTL).call(this, status, index);
|
34324
|
+
}
|
34325
|
+
return true;
|
34326
|
+
} else if (status) {
|
34327
|
+
status.has = "stale";
|
34328
|
+
__privateGet(this, _statusTTL).call(this, status, index);
|
34329
|
+
}
|
34330
|
+
} else if (status) {
|
34331
|
+
status.has = "miss";
|
34332
|
+
}
|
34333
|
+
return false;
|
34334
|
+
}
|
34335
|
+
/**
|
34336
|
+
* Like {@link LRUCache#get} but doesn't update recency or delete stale
|
34337
|
+
* items.
|
34338
|
+
*
|
34339
|
+
* Returns `undefined` if the item is stale, unless
|
34340
|
+
* {@link LRUCache.OptionsBase.allowStale} is set.
|
34341
|
+
*/
|
34342
|
+
peek(k, peekOptions = {}) {
|
34343
|
+
const { allowStale = this.allowStale } = peekOptions;
|
34344
|
+
const index = __privateGet(this, _keyMap).get(k);
|
34345
|
+
if (index === void 0 || !allowStale && __privateGet(this, _isStale).call(this, index)) {
|
34346
|
+
return;
|
34347
|
+
}
|
34348
|
+
const v = __privateGet(this, _valList)[index];
|
34349
|
+
return __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v) ? v.__staleWhileFetching : v;
|
34350
|
+
}
|
34351
|
+
fetch(_0) {
|
34352
|
+
return __async(this, arguments, function* (k, fetchOptions = {}) {
|
34353
|
+
const {
|
34354
|
+
// get options
|
34355
|
+
allowStale = this.allowStale,
|
34356
|
+
updateAgeOnGet = this.updateAgeOnGet,
|
34357
|
+
noDeleteOnStaleGet = this.noDeleteOnStaleGet,
|
34358
|
+
// set options
|
34359
|
+
ttl = this.ttl,
|
34360
|
+
noDisposeOnSet = this.noDisposeOnSet,
|
34361
|
+
size = 0,
|
34362
|
+
sizeCalculation = this.sizeCalculation,
|
34363
|
+
noUpdateTTL = this.noUpdateTTL,
|
34364
|
+
// fetch exclusive options
|
34365
|
+
noDeleteOnFetchRejection = this.noDeleteOnFetchRejection,
|
34366
|
+
allowStaleOnFetchRejection = this.allowStaleOnFetchRejection,
|
34367
|
+
ignoreFetchAbort = this.ignoreFetchAbort,
|
34368
|
+
allowStaleOnFetchAbort = this.allowStaleOnFetchAbort,
|
34369
|
+
context,
|
34370
|
+
forceRefresh = false,
|
34371
|
+
status,
|
34372
|
+
signal
|
34373
|
+
} = fetchOptions;
|
34374
|
+
if (!__privateGet(this, _hasFetchMethod)) {
|
34375
|
+
if (status)
|
34376
|
+
status.fetch = "get";
|
34377
|
+
return this.get(k, {
|
34378
|
+
allowStale,
|
34379
|
+
updateAgeOnGet,
|
34380
|
+
noDeleteOnStaleGet,
|
34381
|
+
status
|
34382
|
+
});
|
34383
|
+
}
|
34384
|
+
const options = {
|
34385
|
+
allowStale,
|
34386
|
+
updateAgeOnGet,
|
34387
|
+
noDeleteOnStaleGet,
|
34388
|
+
ttl,
|
34389
|
+
noDisposeOnSet,
|
34390
|
+
size,
|
34391
|
+
sizeCalculation,
|
34392
|
+
noUpdateTTL,
|
34393
|
+
noDeleteOnFetchRejection,
|
34394
|
+
allowStaleOnFetchRejection,
|
34395
|
+
allowStaleOnFetchAbort,
|
34396
|
+
ignoreFetchAbort,
|
34397
|
+
status,
|
34398
|
+
signal
|
34399
|
+
};
|
34400
|
+
let index = __privateGet(this, _keyMap).get(k);
|
34401
|
+
if (index === void 0) {
|
34402
|
+
if (status)
|
34403
|
+
status.fetch = "miss";
|
34404
|
+
const p = __privateMethod(this, _backgroundFetch, backgroundFetch_fn).call(this, k, index, options, context);
|
34405
|
+
return p.__returned = p;
|
34406
|
+
} else {
|
34407
|
+
const v = __privateGet(this, _valList)[index];
|
34408
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34409
|
+
const stale = allowStale && v.__staleWhileFetching !== void 0;
|
34410
|
+
if (status) {
|
34411
|
+
status.fetch = "inflight";
|
34412
|
+
if (stale)
|
34413
|
+
status.returnedStale = true;
|
34414
|
+
}
|
34415
|
+
return stale ? v.__staleWhileFetching : v.__returned = v;
|
34416
|
+
}
|
34417
|
+
const isStale = __privateGet(this, _isStale).call(this, index);
|
34418
|
+
if (!forceRefresh && !isStale) {
|
34419
|
+
if (status)
|
34420
|
+
status.fetch = "hit";
|
34421
|
+
__privateMethod(this, _moveToTail, moveToTail_fn).call(this, index);
|
34422
|
+
if (updateAgeOnGet) {
|
34423
|
+
__privateGet(this, _updateItemAge).call(this, index);
|
34424
|
+
}
|
34425
|
+
if (status)
|
34426
|
+
__privateGet(this, _statusTTL).call(this, status, index);
|
34427
|
+
return v;
|
34428
|
+
}
|
34429
|
+
const p = __privateMethod(this, _backgroundFetch, backgroundFetch_fn).call(this, k, index, options, context);
|
34430
|
+
const hasStale = p.__staleWhileFetching !== void 0;
|
34431
|
+
const staleVal = hasStale && allowStale;
|
34432
|
+
if (status) {
|
34433
|
+
status.fetch = isStale ? "stale" : "refresh";
|
34434
|
+
if (staleVal && isStale)
|
34435
|
+
status.returnedStale = true;
|
34436
|
+
}
|
34437
|
+
return staleVal ? p.__staleWhileFetching : p.__returned = p;
|
34438
|
+
}
|
34439
|
+
});
|
34440
|
+
}
|
34441
|
+
/**
|
34442
|
+
* Return a value from the cache. Will update the recency of the cache
|
34443
|
+
* entry found.
|
34444
|
+
*
|
34445
|
+
* If the key is not found, get() will return `undefined`.
|
34446
|
+
*/
|
34447
|
+
get(k, getOptions2 = {}) {
|
34448
|
+
const { allowStale = this.allowStale, updateAgeOnGet = this.updateAgeOnGet, noDeleteOnStaleGet = this.noDeleteOnStaleGet, status } = getOptions2;
|
34449
|
+
const index = __privateGet(this, _keyMap).get(k);
|
34450
|
+
if (index !== void 0) {
|
34451
|
+
const value = __privateGet(this, _valList)[index];
|
34452
|
+
const fetching = __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, value);
|
34453
|
+
if (status)
|
34454
|
+
__privateGet(this, _statusTTL).call(this, status, index);
|
34455
|
+
if (__privateGet(this, _isStale).call(this, index)) {
|
34456
|
+
if (status)
|
34457
|
+
status.get = "stale";
|
34458
|
+
if (!fetching) {
|
34459
|
+
if (!noDeleteOnStaleGet) {
|
34460
|
+
this.delete(k);
|
34461
|
+
}
|
34462
|
+
if (status && allowStale)
|
34463
|
+
status.returnedStale = true;
|
34464
|
+
return allowStale ? value : void 0;
|
34465
|
+
} else {
|
34466
|
+
if (status && allowStale && value.__staleWhileFetching !== void 0) {
|
34467
|
+
status.returnedStale = true;
|
34468
|
+
}
|
34469
|
+
return allowStale ? value.__staleWhileFetching : void 0;
|
34470
|
+
}
|
34471
|
+
} else {
|
34472
|
+
if (status)
|
34473
|
+
status.get = "hit";
|
34474
|
+
if (fetching) {
|
34475
|
+
return value.__staleWhileFetching;
|
34476
|
+
}
|
34477
|
+
__privateMethod(this, _moveToTail, moveToTail_fn).call(this, index);
|
34478
|
+
if (updateAgeOnGet) {
|
34479
|
+
__privateGet(this, _updateItemAge).call(this, index);
|
34480
|
+
}
|
34481
|
+
return value;
|
34482
|
+
}
|
34483
|
+
} else if (status) {
|
34484
|
+
status.get = "miss";
|
34485
|
+
}
|
34486
|
+
}
|
34487
|
+
/**
|
34488
|
+
* Deletes a key out of the cache.
|
34489
|
+
* Returns true if the key was deleted, false otherwise.
|
34490
|
+
*/
|
34491
|
+
delete(k) {
|
34492
|
+
var _a3, _b, _c, _d;
|
34493
|
+
let deleted = false;
|
34494
|
+
if (__privateGet(this, _size) !== 0) {
|
34495
|
+
const index = __privateGet(this, _keyMap).get(k);
|
34496
|
+
if (index !== void 0) {
|
34497
|
+
deleted = true;
|
34498
|
+
if (__privateGet(this, _size) === 1) {
|
34499
|
+
this.clear();
|
34500
|
+
} else {
|
34501
|
+
__privateGet(this, _removeItemSize).call(this, index);
|
34502
|
+
const v = __privateGet(this, _valList)[index];
|
34503
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34504
|
+
v.__abortController.abort(new Error("deleted"));
|
34505
|
+
} else if (__privateGet(this, _hasDispose) || __privateGet(this, _hasDisposeAfter)) {
|
34506
|
+
if (__privateGet(this, _hasDispose)) {
|
34507
|
+
(_a3 = __privateGet(this, _dispose)) == null ? void 0 : _a3.call(this, v, k, "delete");
|
34508
|
+
}
|
34509
|
+
if (__privateGet(this, _hasDisposeAfter)) {
|
34510
|
+
(_b = __privateGet(this, _disposed)) == null ? void 0 : _b.push([v, k, "delete"]);
|
34511
|
+
}
|
34512
|
+
}
|
34513
|
+
__privateGet(this, _keyMap).delete(k);
|
34514
|
+
__privateGet(this, _keyList)[index] = void 0;
|
34515
|
+
__privateGet(this, _valList)[index] = void 0;
|
34516
|
+
if (index === __privateGet(this, _tail)) {
|
34517
|
+
__privateSet(this, _tail, __privateGet(this, _prev)[index]);
|
34518
|
+
} else if (index === __privateGet(this, _head)) {
|
34519
|
+
__privateSet(this, _head, __privateGet(this, _next)[index]);
|
34520
|
+
} else {
|
34521
|
+
const pi = __privateGet(this, _prev)[index];
|
34522
|
+
__privateGet(this, _next)[pi] = __privateGet(this, _next)[index];
|
34523
|
+
const ni = __privateGet(this, _next)[index];
|
34524
|
+
__privateGet(this, _prev)[ni] = __privateGet(this, _prev)[index];
|
34525
|
+
}
|
34526
|
+
__privateWrapper(this, _size)._--;
|
34527
|
+
__privateGet(this, _free).push(index);
|
34528
|
+
}
|
34529
|
+
}
|
34530
|
+
}
|
34531
|
+
if (__privateGet(this, _hasDisposeAfter) && ((_c = __privateGet(this, _disposed)) == null ? void 0 : _c.length)) {
|
34532
|
+
const dt = __privateGet(this, _disposed);
|
34533
|
+
let task;
|
34534
|
+
while (task = dt == null ? void 0 : dt.shift()) {
|
34535
|
+
(_d = __privateGet(this, _disposeAfter)) == null ? void 0 : _d.call(this, ...task);
|
34536
|
+
}
|
34537
|
+
}
|
34538
|
+
return deleted;
|
34539
|
+
}
|
34540
|
+
/**
|
34541
|
+
* Clear the cache entirely, throwing away all values.
|
34542
|
+
*/
|
34543
|
+
clear() {
|
34544
|
+
var _a3, _b, _c;
|
34545
|
+
for (const index of __privateMethod(this, _rindexes, rindexes_fn).call(this, { allowStale: true })) {
|
34546
|
+
const v = __privateGet(this, _valList)[index];
|
34547
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34548
|
+
v.__abortController.abort(new Error("deleted"));
|
34549
|
+
} else {
|
34550
|
+
const k = __privateGet(this, _keyList)[index];
|
34551
|
+
if (__privateGet(this, _hasDispose)) {
|
34552
|
+
(_a3 = __privateGet(this, _dispose)) == null ? void 0 : _a3.call(this, v, k, "delete");
|
34553
|
+
}
|
34554
|
+
if (__privateGet(this, _hasDisposeAfter)) {
|
34555
|
+
(_b = __privateGet(this, _disposed)) == null ? void 0 : _b.push([v, k, "delete"]);
|
34556
|
+
}
|
34557
|
+
}
|
34558
|
+
}
|
34559
|
+
__privateGet(this, _keyMap).clear();
|
34560
|
+
__privateGet(this, _valList).fill(void 0);
|
34561
|
+
__privateGet(this, _keyList).fill(void 0);
|
34562
|
+
if (__privateGet(this, _ttls) && __privateGet(this, _starts)) {
|
34563
|
+
__privateGet(this, _ttls).fill(0);
|
34564
|
+
__privateGet(this, _starts).fill(0);
|
34565
|
+
}
|
34566
|
+
if (__privateGet(this, _sizes)) {
|
34567
|
+
__privateGet(this, _sizes).fill(0);
|
34568
|
+
}
|
34569
|
+
__privateSet(this, _head, 0);
|
34570
|
+
__privateSet(this, _tail, 0);
|
34571
|
+
__privateGet(this, _free).length = 0;
|
34572
|
+
__privateSet(this, _calculatedSize, 0);
|
34573
|
+
__privateSet(this, _size, 0);
|
34574
|
+
if (__privateGet(this, _hasDisposeAfter) && __privateGet(this, _disposed)) {
|
34575
|
+
const dt = __privateGet(this, _disposed);
|
34576
|
+
let task;
|
34577
|
+
while (task = dt == null ? void 0 : dt.shift()) {
|
34578
|
+
(_c = __privateGet(this, _disposeAfter)) == null ? void 0 : _c.call(this, ...task);
|
34579
|
+
}
|
34580
|
+
}
|
34581
|
+
}
|
34582
|
+
};
|
34583
|
+
LRUCache = _LRUCache;
|
34584
|
+
_a2 = Symbol.toStringTag;
|
34585
|
+
_max = new WeakMap();
|
34586
|
+
_maxSize = new WeakMap();
|
34587
|
+
_dispose = new WeakMap();
|
34588
|
+
_disposeAfter = new WeakMap();
|
34589
|
+
_fetchMethod = new WeakMap();
|
34590
|
+
_size = new WeakMap();
|
34591
|
+
_calculatedSize = new WeakMap();
|
34592
|
+
_keyMap = new WeakMap();
|
34593
|
+
_keyList = new WeakMap();
|
34594
|
+
_valList = new WeakMap();
|
34595
|
+
_next = new WeakMap();
|
34596
|
+
_prev = new WeakMap();
|
34597
|
+
_head = new WeakMap();
|
34598
|
+
_tail = new WeakMap();
|
34599
|
+
_free = new WeakMap();
|
34600
|
+
_disposed = new WeakMap();
|
34601
|
+
_sizes = new WeakMap();
|
34602
|
+
_starts = new WeakMap();
|
34603
|
+
_ttls = new WeakMap();
|
34604
|
+
_hasDispose = new WeakMap();
|
34605
|
+
_hasFetchMethod = new WeakMap();
|
34606
|
+
_hasDisposeAfter = new WeakMap();
|
34607
|
+
_initializeTTLTracking = new WeakSet();
|
34608
|
+
initializeTTLTracking_fn = function() {
|
34609
|
+
const ttls = new ZeroArray(__privateGet(this, _max));
|
34610
|
+
const starts = new ZeroArray(__privateGet(this, _max));
|
34611
|
+
__privateSet(this, _ttls, ttls);
|
34612
|
+
__privateSet(this, _starts, starts);
|
34613
|
+
__privateSet(this, _setItemTTL, (index, ttl, start2 = perf.now()) => {
|
34614
|
+
starts[index] = ttl !== 0 ? start2 : 0;
|
34615
|
+
ttls[index] = ttl;
|
34616
|
+
if (ttl !== 0 && this.ttlAutopurge) {
|
34617
|
+
const t2 = setTimeout(() => {
|
34618
|
+
if (__privateGet(this, _isStale).call(this, index)) {
|
34619
|
+
this.delete(__privateGet(this, _keyList)[index]);
|
34620
|
+
}
|
34621
|
+
}, ttl + 1);
|
34622
|
+
if (t2.unref) {
|
34623
|
+
t2.unref();
|
34624
|
+
}
|
34625
|
+
}
|
34626
|
+
});
|
34627
|
+
__privateSet(this, _updateItemAge, (index) => {
|
34628
|
+
starts[index] = ttls[index] !== 0 ? perf.now() : 0;
|
34629
|
+
});
|
34630
|
+
__privateSet(this, _statusTTL, (status, index) => {
|
34631
|
+
if (ttls[index]) {
|
34632
|
+
const ttl = ttls[index];
|
34633
|
+
const start2 = starts[index];
|
34634
|
+
if (!ttl || !start2)
|
34635
|
+
return;
|
34636
|
+
status.ttl = ttl;
|
34637
|
+
status.start = start2;
|
34638
|
+
status.now = cachedNow || getNow();
|
34639
|
+
const age = status.now - start2;
|
34640
|
+
status.remainingTTL = ttl - age;
|
34641
|
+
}
|
34642
|
+
});
|
34643
|
+
let cachedNow = 0;
|
34644
|
+
const getNow = () => {
|
34645
|
+
const n2 = perf.now();
|
34646
|
+
if (this.ttlResolution > 0) {
|
34647
|
+
cachedNow = n2;
|
34648
|
+
const t2 = setTimeout(() => cachedNow = 0, this.ttlResolution);
|
34649
|
+
if (t2.unref) {
|
34650
|
+
t2.unref();
|
34651
|
+
}
|
34652
|
+
}
|
34653
|
+
return n2;
|
34654
|
+
};
|
34655
|
+
this.getRemainingTTL = (key) => {
|
34656
|
+
const index = __privateGet(this, _keyMap).get(key);
|
34657
|
+
if (index === void 0) {
|
34658
|
+
return 0;
|
34659
|
+
}
|
34660
|
+
const ttl = ttls[index];
|
34661
|
+
const start2 = starts[index];
|
34662
|
+
if (!ttl || !start2) {
|
34663
|
+
return Infinity;
|
34664
|
+
}
|
34665
|
+
const age = (cachedNow || getNow()) - start2;
|
34666
|
+
return ttl - age;
|
34667
|
+
};
|
34668
|
+
__privateSet(this, _isStale, (index) => {
|
34669
|
+
const s = starts[index];
|
34670
|
+
const t2 = ttls[index];
|
34671
|
+
return !!t2 && !!s && (cachedNow || getNow()) - s > t2;
|
34672
|
+
});
|
34673
|
+
};
|
34674
|
+
_updateItemAge = new WeakMap();
|
34675
|
+
_statusTTL = new WeakMap();
|
34676
|
+
_setItemTTL = new WeakMap();
|
34677
|
+
_isStale = new WeakMap();
|
34678
|
+
_initializeSizeTracking = new WeakSet();
|
34679
|
+
initializeSizeTracking_fn = function() {
|
34680
|
+
const sizes = new ZeroArray(__privateGet(this, _max));
|
34681
|
+
__privateSet(this, _calculatedSize, 0);
|
34682
|
+
__privateSet(this, _sizes, sizes);
|
34683
|
+
__privateSet(this, _removeItemSize, (index) => {
|
34684
|
+
__privateSet(this, _calculatedSize, __privateGet(this, _calculatedSize) - sizes[index]);
|
34685
|
+
sizes[index] = 0;
|
34686
|
+
});
|
34687
|
+
__privateSet(this, _requireSize, (k, v, size, sizeCalculation) => {
|
34688
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34689
|
+
return 0;
|
34690
|
+
}
|
34691
|
+
if (!isPosInt(size)) {
|
34692
|
+
if (sizeCalculation) {
|
34693
|
+
if (typeof sizeCalculation !== "function") {
|
34694
|
+
throw new TypeError("sizeCalculation must be a function");
|
34695
|
+
}
|
34696
|
+
size = sizeCalculation(v, k);
|
34697
|
+
if (!isPosInt(size)) {
|
34698
|
+
throw new TypeError("sizeCalculation return invalid (expect positive integer)");
|
34699
|
+
}
|
34700
|
+
} else {
|
34701
|
+
throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");
|
34702
|
+
}
|
34703
|
+
}
|
34704
|
+
return size;
|
34705
|
+
});
|
34706
|
+
__privateSet(this, _addItemSize, (index, size, status) => {
|
34707
|
+
sizes[index] = size;
|
34708
|
+
if (__privateGet(this, _maxSize)) {
|
34709
|
+
const maxSize = __privateGet(this, _maxSize) - sizes[index];
|
34710
|
+
while (__privateGet(this, _calculatedSize) > maxSize) {
|
34711
|
+
__privateMethod(this, _evict, evict_fn).call(this, true);
|
34712
|
+
}
|
34713
|
+
}
|
34714
|
+
__privateSet(this, _calculatedSize, __privateGet(this, _calculatedSize) + sizes[index]);
|
34715
|
+
if (status) {
|
34716
|
+
status.entrySize = size;
|
34717
|
+
status.totalCalculatedSize = __privateGet(this, _calculatedSize);
|
34718
|
+
}
|
34719
|
+
});
|
34720
|
+
};
|
34721
|
+
_removeItemSize = new WeakMap();
|
34722
|
+
_addItemSize = new WeakMap();
|
34723
|
+
_requireSize = new WeakMap();
|
34724
|
+
_indexes = new WeakSet();
|
34725
|
+
indexes_fn = function* ({ allowStale = this.allowStale } = {}) {
|
34726
|
+
if (__privateGet(this, _size)) {
|
34727
|
+
for (let i2 = __privateGet(this, _tail); true; ) {
|
34728
|
+
if (!__privateMethod(this, _isValidIndex, isValidIndex_fn).call(this, i2)) {
|
34729
|
+
break;
|
34730
|
+
}
|
34731
|
+
if (allowStale || !__privateGet(this, _isStale).call(this, i2)) {
|
34732
|
+
yield i2;
|
34733
|
+
}
|
34734
|
+
if (i2 === __privateGet(this, _head)) {
|
34735
|
+
break;
|
34736
|
+
} else {
|
34737
|
+
i2 = __privateGet(this, _prev)[i2];
|
34738
|
+
}
|
34739
|
+
}
|
34740
|
+
}
|
34741
|
+
};
|
34742
|
+
_rindexes = new WeakSet();
|
34743
|
+
rindexes_fn = function* ({ allowStale = this.allowStale } = {}) {
|
34744
|
+
if (__privateGet(this, _size)) {
|
34745
|
+
for (let i2 = __privateGet(this, _head); true; ) {
|
34746
|
+
if (!__privateMethod(this, _isValidIndex, isValidIndex_fn).call(this, i2)) {
|
34747
|
+
break;
|
34748
|
+
}
|
34749
|
+
if (allowStale || !__privateGet(this, _isStale).call(this, i2)) {
|
34750
|
+
yield i2;
|
34751
|
+
}
|
34752
|
+
if (i2 === __privateGet(this, _tail)) {
|
34753
|
+
break;
|
34754
|
+
} else {
|
34755
|
+
i2 = __privateGet(this, _next)[i2];
|
34756
|
+
}
|
34757
|
+
}
|
34758
|
+
}
|
34759
|
+
};
|
34760
|
+
_isValidIndex = new WeakSet();
|
34761
|
+
isValidIndex_fn = function(index) {
|
34762
|
+
return index !== void 0 && __privateGet(this, _keyMap).get(__privateGet(this, _keyList)[index]) === index;
|
34763
|
+
};
|
34764
|
+
_evict = new WeakSet();
|
34765
|
+
evict_fn = function(free) {
|
34766
|
+
var _a3, _b;
|
34767
|
+
const head = __privateGet(this, _head);
|
34768
|
+
const k = __privateGet(this, _keyList)[head];
|
34769
|
+
const v = __privateGet(this, _valList)[head];
|
34770
|
+
if (__privateGet(this, _hasFetchMethod) && __privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34771
|
+
v.__abortController.abort(new Error("evicted"));
|
34772
|
+
} else if (__privateGet(this, _hasDispose) || __privateGet(this, _hasDisposeAfter)) {
|
34773
|
+
if (__privateGet(this, _hasDispose)) {
|
34774
|
+
(_a3 = __privateGet(this, _dispose)) == null ? void 0 : _a3.call(this, v, k, "evict");
|
34775
|
+
}
|
34776
|
+
if (__privateGet(this, _hasDisposeAfter)) {
|
34777
|
+
(_b = __privateGet(this, _disposed)) == null ? void 0 : _b.push([v, k, "evict"]);
|
34778
|
+
}
|
34779
|
+
}
|
34780
|
+
__privateGet(this, _removeItemSize).call(this, head);
|
34781
|
+
if (free) {
|
34782
|
+
__privateGet(this, _keyList)[head] = void 0;
|
34783
|
+
__privateGet(this, _valList)[head] = void 0;
|
34784
|
+
__privateGet(this, _free).push(head);
|
34785
|
+
}
|
34786
|
+
if (__privateGet(this, _size) === 1) {
|
34787
|
+
__privateSet(this, _head, __privateSet(this, _tail, 0));
|
34788
|
+
__privateGet(this, _free).length = 0;
|
34789
|
+
} else {
|
34790
|
+
__privateSet(this, _head, __privateGet(this, _next)[head]);
|
34791
|
+
}
|
34792
|
+
__privateGet(this, _keyMap).delete(k);
|
34793
|
+
__privateWrapper(this, _size)._--;
|
34794
|
+
return head;
|
34795
|
+
};
|
34796
|
+
_backgroundFetch = new WeakSet();
|
34797
|
+
backgroundFetch_fn = function(k, index, options, context) {
|
34798
|
+
const v = index === void 0 ? void 0 : __privateGet(this, _valList)[index];
|
34799
|
+
if (__privateMethod(this, _isBackgroundFetch, isBackgroundFetch_fn).call(this, v)) {
|
34800
|
+
return v;
|
34801
|
+
}
|
34802
|
+
const ac = new AC();
|
34803
|
+
const { signal } = options;
|
34804
|
+
signal == null ? void 0 : signal.addEventListener("abort", () => ac.abort(signal.reason), {
|
34805
|
+
signal: ac.signal
|
34806
|
+
});
|
34807
|
+
const fetchOpts = {
|
34808
|
+
signal: ac.signal,
|
34809
|
+
options,
|
34810
|
+
context
|
34811
|
+
};
|
34812
|
+
const cb = (v2, updateCache = false) => {
|
34813
|
+
const { aborted } = ac.signal;
|
34814
|
+
const ignoreAbort = options.ignoreFetchAbort && v2 !== void 0;
|
34815
|
+
if (options.status) {
|
34816
|
+
if (aborted && !updateCache) {
|
34817
|
+
options.status.fetchAborted = true;
|
34818
|
+
options.status.fetchError = ac.signal.reason;
|
34819
|
+
if (ignoreAbort)
|
34820
|
+
options.status.fetchAbortIgnored = true;
|
34821
|
+
} else {
|
34822
|
+
options.status.fetchResolved = true;
|
34823
|
+
}
|
34824
|
+
}
|
34825
|
+
if (aborted && !ignoreAbort && !updateCache) {
|
34826
|
+
return fetchFail(ac.signal.reason);
|
34827
|
+
}
|
34828
|
+
const bf2 = p;
|
34829
|
+
if (__privateGet(this, _valList)[index] === p) {
|
34830
|
+
if (v2 === void 0) {
|
34831
|
+
if (bf2.__staleWhileFetching) {
|
34832
|
+
__privateGet(this, _valList)[index] = bf2.__staleWhileFetching;
|
34833
|
+
} else {
|
34834
|
+
this.delete(k);
|
34835
|
+
}
|
34836
|
+
} else {
|
34837
|
+
if (options.status)
|
34838
|
+
options.status.fetchUpdated = true;
|
34839
|
+
this.set(k, v2, fetchOpts.options);
|
34840
|
+
}
|
34841
|
+
}
|
34842
|
+
return v2;
|
34843
|
+
};
|
34844
|
+
const eb = (er) => {
|
34845
|
+
if (options.status) {
|
34846
|
+
options.status.fetchRejected = true;
|
34847
|
+
options.status.fetchError = er;
|
34848
|
+
}
|
34849
|
+
return fetchFail(er);
|
34850
|
+
};
|
34851
|
+
const fetchFail = (er) => {
|
34852
|
+
const { aborted } = ac.signal;
|
34853
|
+
const allowStaleAborted = aborted && options.allowStaleOnFetchAbort;
|
34854
|
+
const allowStale = allowStaleAborted || options.allowStaleOnFetchRejection;
|
34855
|
+
const noDelete = allowStale || options.noDeleteOnFetchRejection;
|
34856
|
+
const bf2 = p;
|
34857
|
+
if (__privateGet(this, _valList)[index] === p) {
|
34858
|
+
const del = !noDelete || bf2.__staleWhileFetching === void 0;
|
34859
|
+
if (del) {
|
34860
|
+
this.delete(k);
|
34861
|
+
} else if (!allowStaleAborted) {
|
34862
|
+
__privateGet(this, _valList)[index] = bf2.__staleWhileFetching;
|
34863
|
+
}
|
34864
|
+
}
|
34865
|
+
if (allowStale) {
|
34866
|
+
if (options.status && bf2.__staleWhileFetching !== void 0) {
|
34867
|
+
options.status.returnedStale = true;
|
34868
|
+
}
|
34869
|
+
return bf2.__staleWhileFetching;
|
34870
|
+
} else if (bf2.__returned === bf2) {
|
34871
|
+
throw er;
|
34872
|
+
}
|
34873
|
+
};
|
34874
|
+
const pcall = (res, rej) => {
|
34875
|
+
var _a3;
|
34876
|
+
const fmp = (_a3 = __privateGet(this, _fetchMethod)) == null ? void 0 : _a3.call(this, k, v, fetchOpts);
|
34877
|
+
if (fmp && fmp instanceof Promise) {
|
34878
|
+
fmp.then((v2) => res(v2 === void 0 ? void 0 : v2), rej);
|
34879
|
+
}
|
34880
|
+
ac.signal.addEventListener("abort", () => {
|
34881
|
+
if (!options.ignoreFetchAbort || options.allowStaleOnFetchAbort) {
|
34882
|
+
res(void 0);
|
34883
|
+
if (options.allowStaleOnFetchAbort) {
|
34884
|
+
res = (v2) => cb(v2, true);
|
34885
|
+
}
|
34886
|
+
}
|
34887
|
+
});
|
34888
|
+
};
|
34889
|
+
if (options.status)
|
34890
|
+
options.status.fetchDispatched = true;
|
34891
|
+
const p = new Promise(pcall).then(cb, eb);
|
34892
|
+
const bf = Object.assign(p, {
|
34893
|
+
__abortController: ac,
|
34894
|
+
__staleWhileFetching: v,
|
34895
|
+
__returned: void 0
|
34896
|
+
});
|
34897
|
+
if (index === void 0) {
|
34898
|
+
this.set(k, bf, __spreadProps(__spreadValues({}, fetchOpts.options), { status: void 0 }));
|
34899
|
+
index = __privateGet(this, _keyMap).get(k);
|
34900
|
+
} else {
|
34901
|
+
__privateGet(this, _valList)[index] = bf;
|
34902
|
+
}
|
34903
|
+
return bf;
|
34904
|
+
};
|
34905
|
+
_isBackgroundFetch = new WeakSet();
|
34906
|
+
isBackgroundFetch_fn = function(p) {
|
34907
|
+
if (!__privateGet(this, _hasFetchMethod))
|
34908
|
+
return false;
|
34909
|
+
const b = p;
|
34910
|
+
return !!b && b instanceof Promise && b.hasOwnProperty("__staleWhileFetching") && b.__abortController instanceof AC;
|
34911
|
+
};
|
34912
|
+
_connect = new WeakSet();
|
34913
|
+
connect_fn = function(p, n2) {
|
34914
|
+
__privateGet(this, _prev)[n2] = p;
|
34915
|
+
__privateGet(this, _next)[p] = n2;
|
34916
|
+
};
|
34917
|
+
_moveToTail = new WeakSet();
|
34918
|
+
moveToTail_fn = function(index) {
|
34919
|
+
if (index !== __privateGet(this, _tail)) {
|
34920
|
+
if (index === __privateGet(this, _head)) {
|
34921
|
+
__privateSet(this, _head, __privateGet(this, _next)[index]);
|
34922
|
+
} else {
|
34923
|
+
__privateMethod(this, _connect, connect_fn).call(this, __privateGet(this, _prev)[index], __privateGet(this, _next)[index]);
|
34924
|
+
}
|
34925
|
+
__privateMethod(this, _connect, connect_fn).call(this, __privateGet(this, _tail), index);
|
34926
|
+
__privateSet(this, _tail, index);
|
34927
|
+
}
|
34928
|
+
};
|
34929
|
+
}
|
34930
|
+
});
|
34931
|
+
|
33514
34932
|
// ../../node_modules/@measured/dnd/node_modules/@babel/runtime/helpers/esm/extends.js
|
33515
34933
|
function _extends2() {
|
33516
34934
|
_extends2 = Object.assign ? Object.assign.bind() : function(target) {
|
@@ -33560,33 +34978,36 @@ function querySelectorAll(parentNode, selector) {
|
|
33560
34978
|
function getOptions(shared2, fromBinding) {
|
33561
34979
|
return __spreadValues(__spreadValues({}, shared2), fromBinding);
|
33562
34980
|
}
|
33563
|
-
function bindEvent(
|
34981
|
+
function bindEvent(el, binding, options) {
|
33564
34982
|
let timer;
|
33565
|
-
if (
|
34983
|
+
if (el.nodeName === "IFRAME") {
|
33566
34984
|
timer = setInterval(() => {
|
33567
|
-
|
33568
|
-
|
33569
|
-
|
34985
|
+
const currentWin = getWin(el);
|
34986
|
+
if ((currentWin == null ? void 0 : currentWin.document.readyState) === "complete") {
|
34987
|
+
currentWin.addEventListener(binding.eventName, binding.fn, options);
|
34988
|
+
clearInterval(timer);
|
33570
34989
|
}
|
33571
34990
|
}, 100);
|
33572
|
-
|
33573
|
-
win.addEventListener(binding.eventName, binding.fn, options);
|
34991
|
+
return timer;
|
33574
34992
|
}
|
34993
|
+
const win = getWin(el);
|
34994
|
+
win == null ? void 0 : win.addEventListener(binding.eventName, binding.fn, options);
|
33575
34995
|
return timer;
|
33576
34996
|
}
|
33577
34997
|
function bindEvents(el, bindings, sharedOptions) {
|
33578
34998
|
const unbindings = bindings.flatMap((binding) => {
|
33579
|
-
const iframes = querySelectorAll(window.document, "iframe");
|
33580
|
-
const
|
33581
|
-
return
|
33582
|
-
if (!
|
34999
|
+
const iframes = querySelectorAll(window.document, "[data-rfd-iframe]");
|
35000
|
+
const els = [el, ...iframes];
|
35001
|
+
return els.map((currentEl) => {
|
35002
|
+
if (!currentEl)
|
33583
35003
|
return function unbind() {
|
33584
35004
|
};
|
33585
35005
|
const options = getOptions(sharedOptions, binding.options);
|
33586
|
-
const timer = bindEvent(
|
35006
|
+
const timer = bindEvent(currentEl, binding, options);
|
33587
35007
|
return function unbind() {
|
33588
35008
|
clearInterval(timer);
|
33589
|
-
win
|
35009
|
+
const win = getWin(currentEl);
|
35010
|
+
win == null ? void 0 : win.removeEventListener(binding.eventName, binding.fn, options);
|
33590
35011
|
};
|
33591
35012
|
});
|
33592
35013
|
});
|
@@ -34046,8 +35467,16 @@ function shouldPublishUpdate(registry, dragging, entry) {
|
|
34046
35467
|
return true;
|
34047
35468
|
}
|
34048
35469
|
function querySelectorAllIframe(selector) {
|
34049
|
-
|
34050
|
-
|
35470
|
+
let iframes = iframeCache.get("iframes");
|
35471
|
+
if (!iframes) {
|
35472
|
+
iframes = querySelectorAll(document, "iframe");
|
35473
|
+
iframes = iframes.filter((iframe) => iframe.hasAttribute("data-rfd-iframe"));
|
35474
|
+
iframeCache.set("iframes", iframes);
|
35475
|
+
}
|
35476
|
+
const iframePossible = iframes.reduce((acc, iframe) => {
|
35477
|
+
var _a3;
|
35478
|
+
return [...acc, ...((_a3 = iframe.contentWindow) == null ? void 0 : _a3.document) ? querySelectorAll(iframe.contentWindow.document, selector) : []];
|
35479
|
+
}, []);
|
34051
35480
|
return [...querySelectorAll(document, selector), ...iframePossible];
|
34052
35481
|
}
|
34053
35482
|
function useStyleMarshal(contextId, nonce) {
|
@@ -34069,7 +35498,10 @@ function useStyleMarshal(contextId, nonce) {
|
|
34069
35498
|
useLayoutEffect2(() => {
|
34070
35499
|
const alwaysSelector = `[${alwaysDataAttr}="${contextId}"]`;
|
34071
35500
|
const dynamicSelector = `[${dynamicDataAttr}="${contextId}"]`;
|
34072
|
-
const heads = [getHead(document), ...querySelectorAll(document, `[${prefix2}-iframe]`).
|
35501
|
+
const heads = [getHead(document), ...querySelectorAll(document, `[${prefix2}-iframe]`).filter((iframe) => {
|
35502
|
+
var _a3;
|
35503
|
+
return (_a3 = iframe.contentWindow) == null ? void 0 : _a3.document;
|
35504
|
+
}).map((iframe) => getHead(iframe.contentWindow.document))];
|
34073
35505
|
heads.forEach((head) => {
|
34074
35506
|
if (!head)
|
34075
35507
|
return;
|
@@ -34122,6 +35554,10 @@ function isHtmlElement(el) {
|
|
34122
35554
|
}
|
34123
35555
|
function findDragHandle(contextId, draggableId) {
|
34124
35556
|
const selector = `[${dragHandle.contextId}="${contextId}"]`;
|
35557
|
+
const cachedHandle = dragHandleCache.get(selector);
|
35558
|
+
if (cachedHandle) {
|
35559
|
+
return cachedHandle;
|
35560
|
+
}
|
34125
35561
|
const possible = querySelectorAllIframe(selector);
|
34126
35562
|
if (!possible.length) {
|
34127
35563
|
process.env.NODE_ENV !== "production" ? warning2(`Unable to find any drag handles in the context "${contextId}" ${selector}`) : void 0;
|
@@ -34138,6 +35574,7 @@ function findDragHandle(contextId, draggableId) {
|
|
34138
35574
|
process.env.NODE_ENV !== "production" ? warning2("drag handle needs to be a HTMLElement") : void 0;
|
34139
35575
|
return null;
|
34140
35576
|
}
|
35577
|
+
dragHandleCache.set(selector, handle);
|
34141
35578
|
return handle;
|
34142
35579
|
}
|
34143
35580
|
function useFocusMarshal(contextId) {
|
@@ -35207,10 +36644,10 @@ function isActive({
|
|
35207
36644
|
expected,
|
35208
36645
|
phase,
|
35209
36646
|
isLockActive,
|
35210
|
-
shouldWarn
|
36647
|
+
shouldWarn: shouldWarn2
|
35211
36648
|
}) {
|
35212
36649
|
if (!isLockActive()) {
|
35213
|
-
if (
|
36650
|
+
if (shouldWarn2) {
|
35214
36651
|
process.env.NODE_ENV !== "production" ? warning2(`
|
35215
36652
|
Cannot perform action.
|
35216
36653
|
The sensor no longer has an action lock.
|
@@ -35224,7 +36661,7 @@ function isActive({
|
|
35224
36661
|
return false;
|
35225
36662
|
}
|
35226
36663
|
if (expected !== phase) {
|
35227
|
-
if (
|
36664
|
+
if (shouldWarn2) {
|
35228
36665
|
process.env.NODE_ENV !== "production" ? warning2(`
|
35229
36666
|
Cannot perform action.
|
35230
36667
|
The actions you used belong to an outdated phase
|
@@ -35636,7 +37073,7 @@ function DragDropContext(props) {
|
|
35636
37073
|
}, props.children));
|
35637
37074
|
}
|
35638
37075
|
function getDraggingStyle(dragging) {
|
35639
|
-
var
|
37076
|
+
var _a3, _b, _c, _d, _e, _f;
|
35640
37077
|
const dimension = dragging.dimension;
|
35641
37078
|
const box = dimension.client;
|
35642
37079
|
const {
|
@@ -35648,7 +37085,7 @@ function getDraggingStyle(dragging) {
|
|
35648
37085
|
const shouldAnimate = getShouldDraggingAnimate(dragging);
|
35649
37086
|
const isDropAnimating = Boolean(dropping);
|
35650
37087
|
const untransformedOffset = {
|
35651
|
-
x: offset3.x / (((
|
37088
|
+
x: offset3.x / (((_a3 = dimension == null ? void 0 : dimension.transform) == null ? void 0 : _a3.matrix.scaleX) || 1),
|
35652
37089
|
y: offset3.y / (((_b = dimension == null ? void 0 : dimension.transform) == null ? void 0 : _b.matrix.scaleY) || 1)
|
35653
37090
|
};
|
35654
37091
|
const transform = isDropAnimating ? transforms.drop(untransformedOffset, isCombining) : transforms.moveTo(untransformedOffset);
|
@@ -35668,14 +37105,14 @@ function getDraggingStyle(dragging) {
|
|
35668
37105
|
return style2;
|
35669
37106
|
}
|
35670
37107
|
function getSecondaryStyle(secondary) {
|
35671
|
-
var
|
37108
|
+
var _a3, _b;
|
35672
37109
|
const {
|
35673
37110
|
offset: offset3,
|
35674
37111
|
sourceDroppable
|
35675
37112
|
} = secondary;
|
35676
37113
|
return {
|
35677
37114
|
transform: transforms.moveTo({
|
35678
|
-
x: offset3.x / (((
|
37115
|
+
x: offset3.x / (((_a3 = sourceDroppable == null ? void 0 : sourceDroppable.transform) == null ? void 0 : _a3.matrix.scaleX) || 1),
|
35679
37116
|
y: offset3.y / (((_b = sourceDroppable == null ? void 0 : sourceDroppable.transform) == null ? void 0 : _b.matrix.scaleY) || 1)
|
35680
37117
|
}),
|
35681
37118
|
transition: secondary.shouldAnimateDisplacement ? void 0 : "none"
|
@@ -35710,7 +37147,7 @@ function getIframeOffset(el) {
|
|
35710
37147
|
return offset3;
|
35711
37148
|
}
|
35712
37149
|
function applyOffset(rect, offset3) {
|
35713
|
-
var
|
37150
|
+
var _a3, _b;
|
35714
37151
|
return __spreadProps(__spreadValues({}, rect), {
|
35715
37152
|
top: (rect.top || 0) + offset3.top,
|
35716
37153
|
left: (rect.left || 0) + offset3.left,
|
@@ -35719,7 +37156,7 @@ function applyOffset(rect, offset3) {
|
|
35719
37156
|
x: (rect.x || 0) + offset3.left,
|
35720
37157
|
y: (rect.y || 0) + offset3.top,
|
35721
37158
|
center: {
|
35722
|
-
x: (((
|
37159
|
+
x: (((_a3 = rect.center) == null ? void 0 : _a3.x) || 0) + offset3.left,
|
35723
37160
|
y: (((_b = rect.center) == null ? void 0 : _b.y) || 0) + offset3.top
|
35724
37161
|
},
|
35725
37162
|
width: rect.width || 0,
|
@@ -36184,7 +37621,7 @@ function getBody() {
|
|
36184
37621
|
!document.body ? process.env.NODE_ENV !== "production" ? invariant2(false, "document.body is not ready") : invariant2(false) : void 0;
|
36185
37622
|
return document.body;
|
36186
37623
|
}
|
36187
|
-
var import_react5, import_react_dom2, isProduction$1, spacesAndTabs, lineStartWithSpaces, clean$2, getDevMessage, getFormattedMessage, isDisabledFlag, warning2, error,
|
37624
|
+
var import_react5, import_react_dom2, isProduction$1, spacesAndTabs, lineStartWithSpaces, clean$2, getDevMessage, getFormattedMessage, isDisabledFlag, warning2, error, getWin, isProduction2, prefix$1, RbdInvariant, ErrorBoundary, dragHandleUsageInstructions, position, onDragStart, withLocation, withCombine, onDragUpdate, returnedToStart, onDragEnd, preset, preset$1, origin, add, subtract, isEqual$1, negate, patch, distance2, closest$1, apply, executeClip, offsetByPosition, getCorners, noSpacing2, scroll$1, increase, clip2, getSubject, scrollDroppable, toDroppableMap, toDraggableMap, toDroppableList, toDraggableList, getDraggablesInsideDroppable, removeDraggableFromList, moveToNextCombine, isHomeOf, noDisplacedBy, emptyGroups, noImpact, noImpact$1, isWithin, isPartiallyVisibleThroughFrame, isTotallyVisibleThroughFrame, vertical, horizontal, isTotallyVisibleThroughFrameOnAxis, getDroppableDisplaced, isVisibleInDroppable, isVisibleInViewport, isVisible$1, isPartiallyVisible, isTotallyVisible, isTotallyVisibleOnAxis, getShouldAnimate, fromCombine, fromReorder, moveToNextIndex, getCombinedItemDisplacement, whenCombining, distanceFromStartToBorderBoxCenter, distanceFromEndToBorderBoxCenter, getCrossAxisBorderBoxCenter, goAfter, goBefore, goIntoStart, whenReordering, withDroppableDisplacement, getResultWithoutDroppableDisplacement, getPageBorderBoxCenterFromImpact, scrollViewport, speculativelyIncrease, withViewportDisplacement, getClientFromPageBorderBoxCenter, isTotallyVisibleInNewLocation, moveToNextPlace, getKnownActive, getBestCrossAxisDroppable, getCurrentPageBorderBoxCenter, getCurrentPageBorderBox, getClosestDraggable, getDisplacedBy, getRequiredGrowthForPlaceholder, withMaxScroll, addPlaceholder, removePlaceholder, moveToNewDroppable, moveCrossAxis, whatIsDraggedOver, getDroppableOver$1, moveInDirection, offsetRectByPosition, withDroppableScroll, getReorderImpact, combineThresholdDivisor, getCombineImpact, getDragImpact, patchDroppableMap, clearUnusedPlaceholder, recomputePlaceholders, update, recompute, getClientBorderBoxCenter, refreshSnap, getHomeLocation, getLiftEffect, patchDimensionMap, start, finish, offsetDraggable, getFrame, adjustAdditionsForScrollChanges, timingsKey, publishWhileDraggingInVirtual, isSnapping, postDroppableChange, idle$2, reducer, beforeInitialCapture, lift$1, initialPublish, publishWhileDragging, collectionStarting, updateDroppableScroll, updateDroppableIsEnabled, updateDroppableIsCombineEnabled, move, moveByWindowScroll, updateViewportMaxScroll, moveUp, moveDown, moveRight, moveLeft, flush, animateDrop, completeDrop, drop$1, dropPending, dropAnimationFinished, lift, style, curves, combine, timings, outOfTheWayTiming, transitions, moveTo, transforms, minDropTime, maxDropTime, dropTimeRange, maxDropTimeAtDistance, cancelDropModifier, getDropDuration, getNewHomeClientOffset, getDropImpact, dropMiddleware, drop, getWindowScroll3, shouldEnd, scrollListener, scrollListener$1, getExpiringAnnounce, getAsyncMarshal, areLocationsEqual, isCombineEqual, isCriticalEqual, withTimings, getDragStart, getPublisher, responders, dropAnimationFinishMiddleware, dropAnimationFinish, dropAnimationFlushOnScrollMiddleware, dropAnimationFlushOnScroll, dimensionMarshalStopper, focus, shouldStop, autoScroll, pendingDrop, pendingDrop$1, composeEnhancers, createStore2, clean$1, getMaxScroll, getDocumentElement, getMaxWindowScroll, getViewport, getInitialPublish, createDimensionMarshal, canStartDrag, scrollWindow, getScrollableDroppables, getScrollableDroppableOver, getBestScrollableDroppable, defaultAutoScrollerOptions, getDistanceThresholds, getPercentage, minScroll, getValueFromDistance, dampenValueByTime, getValue, getScrollOnAxis, adjustForSizeLimits, clean, getScroll$1, smallestSigned, getOverlap, canPartiallyScroll, canScrollWindow, getWindowOverlap, canScrollDroppable, getDroppableOverlap, getWindowScrollChange, getDroppableScrollChange, iframeCache, createCol, matrixPattern, getMatrix, getOrigin, findNearestTransform, defaultTransform, getTransform, applyTransformPoint, applyTransformRect, applyTransformSpacing, applyTransformBox, resetToOrigin, getIframeScroll, scroll, createFluidScroller, createJumpScroller, createAutoScroller, prefix2, dragHandle, draggable, droppable, scrollContainer, makeGetSelector, getStyles, noPointerEvents, getStyles$1, useIsomorphicLayoutEffect2, useLayoutEffect2, getHead, createStyleEl, alwaysDataAttr, dynamicDataAttr, getWindowFromEl, dragHandleCache, StoreContext, getBodyElement, visuallyHidden, visuallyHidden$1, getId, count$1, defaults, useUniqueId$1, AppContext, peerDependencies, semver, getVersion, isSatisfied, checkReactVersion, suffix, checkDoctype, tab, enter, escape, space, pageUp, pageDown, end, home, arrowLeft, arrowUp, arrowRight, arrowDown, preventedKeys, preventStandardKeyEvents, supportedEventName, supportedPageVisibilityEventName, primaryButton, sloppyClickThreshold, idle$1, scrollJumpKeys, idle, timeForLongPress, forcePressThreshold, interactiveTagNames, getBorderBoxCenterPosition, supportedMatchesName, defaultSensors, createResponders, createAutoScrollerOptions, count, useUniqueContextId$1, zIndexOptions, getDraggingTransition, getDraggingOpacity, getShouldDraggingAnimate, applyOffsetBox, DroppableContext, Draggable, Draggable$1, isStrictEqual, whatIsDraggedOverFromResult, getCombineWithFromResult, getCombineWithFromImpact, atRest, makeMapStateToProps$1, mapDispatchToProps$1, ConnectedDraggable, ConnectedDraggable$1, getScroll, isEqual2, isScroll, isAuto, isVisible, isEither, isBoth, isElementScrollable, isBodyScrollable, getClosestScrollable, getClosestScrollable$1, getIsFixed, getEnv, getDroppableDimension, getClient, getDimension, immediate, delayed, getListenerOptions, getScrollable, getClosestScrollableFromDrag, empty, getSize, getStyle, Placeholder, Placeholder$1, shared, standard, virtual, AnimateInOut, Droppable, Droppable$1, defaultProps, attachDefaultPropsToOwnProps, isMatchingType, getDraggable, makeMapStateToProps, mapDispatchToProps, ConnectedDroppable, ConnectedDroppable$1;
|
36188
37625
|
var init_dnd_esm = __esm({
|
36189
37626
|
"../../node_modules/@measured/dnd/dist/dnd.esm.js"() {
|
36190
37627
|
init_react_import();
|
@@ -36196,6 +37633,7 @@ var init_dnd_esm = __esm({
|
|
36196
37633
|
init_css_box_model_esm();
|
36197
37634
|
init_memoize_one_esm();
|
36198
37635
|
init_raf_schd_esm();
|
37636
|
+
init_esm2();
|
36199
37637
|
init_extends2();
|
36200
37638
|
isProduction$1 = process.env.NODE_ENV === "production";
|
36201
37639
|
spacesAndTabs = /[ \t]{2,}/g;
|
@@ -36212,7 +37650,13 @@ var init_dnd_esm = __esm({
|
|
36212
37650
|
isDisabledFlag = "__@hello-pangea/dnd-disable-dev-warnings";
|
36213
37651
|
warning2 = log.bind(null, "warn");
|
36214
37652
|
error = log.bind(null, "error");
|
36215
|
-
|
37653
|
+
getWin = (el) => {
|
37654
|
+
let win = el;
|
37655
|
+
if (el.nodeName === "IFRAME") {
|
37656
|
+
win = el.contentWindow;
|
37657
|
+
}
|
37658
|
+
return win;
|
37659
|
+
};
|
36216
37660
|
isProduction2 = process.env.NODE_ENV === "production";
|
36217
37661
|
prefix$1 = "Invariant failed";
|
36218
37662
|
RbdInvariant = class extends Error {
|
@@ -39553,6 +40997,10 @@ var init_dnd_esm = __esm({
|
|
39553
40997
|
});
|
39554
40998
|
return scroll2 && canScrollDroppable(droppable2, scroll2) ? scroll2 : null;
|
39555
40999
|
};
|
41000
|
+
iframeCache = new LRUCache({
|
41001
|
+
max: 1,
|
41002
|
+
ttl: 1e3
|
41003
|
+
});
|
39556
41004
|
createCol = (name) => `((?<${name}>-?((\\d|\\.)+))(,\\s)?)`;
|
39557
41005
|
matrixPattern = new RegExp(`^matrix\\(${createCol("scaleX")}${createCol("skewY")}${createCol("skewX")}${createCol("scaleY")}${createCol("translateX")}${createCol("translateY")}\\)`);
|
39558
41006
|
getMatrix = (transform) => {
|
@@ -40070,6 +41518,10 @@ var init_dnd_esm = __esm({
|
|
40070
41518
|
}
|
40071
41519
|
return window;
|
40072
41520
|
};
|
41521
|
+
dragHandleCache = new LRUCache({
|
41522
|
+
max: 5e3,
|
41523
|
+
ttl: 1e3
|
41524
|
+
});
|
40073
41525
|
StoreContext = import_react5.default.createContext(null);
|
40074
41526
|
getBodyElement = () => {
|
40075
41527
|
const body = document.body;
|
@@ -40495,7 +41947,7 @@ var init_dnd_esm = __esm({
|
|
40495
41947
|
return false;
|
40496
41948
|
};
|
40497
41949
|
getClosestScrollable = (el) => {
|
40498
|
-
var
|
41950
|
+
var _a3, _b;
|
40499
41951
|
if (el == null) {
|
40500
41952
|
return null;
|
40501
41953
|
}
|
@@ -40503,7 +41955,7 @@ var init_dnd_esm = __esm({
|
|
40503
41955
|
if (isBodyScrollable(el)) {
|
40504
41956
|
return el;
|
40505
41957
|
}
|
40506
|
-
if ((
|
41958
|
+
if ((_a3 = el.ownerDocument.defaultView) == null ? void 0 : _a3.frameElement) {
|
40507
41959
|
return (_b = el.ownerDocument.defaultView) == null ? void 0 : _b.frameElement;
|
40508
41960
|
}
|
40509
41961
|
return null;
|
@@ -43204,8 +44656,8 @@ var require_dist = __commonJS({
|
|
43204
44656
|
}, []);
|
43205
44657
|
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_jsx_runtime8.Fragment, { children });
|
43206
44658
|
};
|
43207
|
-
var AutoFrameComponent_default = import_react22.default.forwardRef(function(
|
43208
|
-
var _b =
|
44659
|
+
var AutoFrameComponent_default = import_react22.default.forwardRef(function(_a3, ref2) {
|
44660
|
+
var _b = _a3, { children, debug, onStylesLoaded } = _b, props = __objRest2(_b, ["children", "debug", "onStylesLoaded"]);
|
43209
44661
|
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_react_frame_component.default, __spreadProps2(__spreadValues2({}, props), { ref: ref2, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(CopyHostStyles, { debug, onStylesLoaded, children }) }));
|
43210
44662
|
});
|
43211
44663
|
}
|
@@ -43746,7 +45198,7 @@ var require_dist2 = __commonJS({
|
|
43746
45198
|
mod
|
43747
45199
|
));
|
43748
45200
|
var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
|
43749
|
-
var
|
45201
|
+
var __async2 = (__this, __arguments, generator) => {
|
43750
45202
|
return new Promise((resolve, reject) => {
|
43751
45203
|
var fulfilled = (value) => {
|
43752
45204
|
try {
|
@@ -66789,7 +68241,7 @@ var require_dist2 = __commonJS({
|
|
66789
68241
|
break;
|
66790
68242
|
}
|
66791
68243
|
case "backwards": {
|
66792
|
-
var
|
68244
|
+
var _tail2 = null;
|
66793
68245
|
var row = workInProgress2.child;
|
66794
68246
|
workInProgress2.child = null;
|
66795
68247
|
while (row !== null) {
|
@@ -66799,15 +68251,15 @@ var require_dist2 = __commonJS({
|
|
66799
68251
|
break;
|
66800
68252
|
}
|
66801
68253
|
var nextRow = row.sibling;
|
66802
|
-
row.sibling =
|
66803
|
-
|
68254
|
+
row.sibling = _tail2;
|
68255
|
+
_tail2 = row;
|
66804
68256
|
row = nextRow;
|
66805
68257
|
}
|
66806
68258
|
initSuspenseListRenderState(
|
66807
68259
|
workInProgress2,
|
66808
68260
|
true,
|
66809
68261
|
// isBackwards
|
66810
|
-
|
68262
|
+
_tail2,
|
66811
68263
|
null,
|
66812
68264
|
// last
|
66813
68265
|
tailMode
|
@@ -70453,10 +71905,10 @@ var require_dist2 = __commonJS({
|
|
70453
71905
|
return;
|
70454
71906
|
}
|
70455
71907
|
} else {
|
70456
|
-
var
|
70457
|
-
if (
|
70458
|
-
|
70459
|
-
workInProgress =
|
71908
|
+
var _next2 = unwindWork(current2, completedWork);
|
71909
|
+
if (_next2 !== null) {
|
71910
|
+
_next2.flags &= HostEffectMask;
|
71911
|
+
workInProgress = _next2;
|
70460
71912
|
return;
|
70461
71913
|
}
|
70462
71914
|
if ((completedWork.mode & ProfileMode) !== NoMode) {
|
@@ -73084,7 +74536,7 @@ var require_dist2 = __commonJS({
|
|
73084
74536
|
const { status } = useAppContext2();
|
73085
74537
|
const El = status !== "LOADING" ? import_dnd2.Draggable : DefaultDraggable;
|
73086
74538
|
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(El, { draggableId: id, index, isDragDisabled, children: (provided, snapshot) => {
|
73087
|
-
var
|
74539
|
+
var _a3;
|
73088
74540
|
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(import_jsx_runtime42.Fragment, { children: [
|
73089
74541
|
/* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
73090
74542
|
"div",
|
@@ -73093,7 +74545,7 @@ var require_dist2 = __commonJS({
|
|
73093
74545
|
ref: provided.innerRef
|
73094
74546
|
}, provided.draggableProps), provided.dragHandleProps), {
|
73095
74547
|
style: __spreadProps2(__spreadValues2({}, provided.draggableProps.style), {
|
73096
|
-
transform: snapshot.isDragging || !disableAnimations ? (
|
74548
|
+
transform: snapshot.isDragging || !disableAnimations ? (_a3 = provided.draggableProps.style) == null ? void 0 : _a3.transform : "translate(0px, 0px)"
|
73097
74549
|
}),
|
73098
74550
|
children: children(provided, snapshot)
|
73099
74551
|
})
|
@@ -73198,7 +74650,7 @@ var require_dist2 = __commonJS({
|
|
73198
74650
|
var import_react72 = require("react");
|
73199
74651
|
var import_dnd3 = (init_dnd_esm(), __toCommonJS(dnd_esm_exports));
|
73200
74652
|
init_react_import2();
|
73201
|
-
var styles_module_default32 = { "DraggableComponent": "
|
74653
|
+
var styles_module_default32 = { "DraggableComponent": "_DraggableComponent_59z7f_1", "DraggableComponent--isDragging": "_DraggableComponent--isDragging_59z7f_11", "DraggableComponent-contents": "_DraggableComponent-contents_59z7f_16", "DraggableComponent-overlay": "_DraggableComponent-overlay_59z7f_29", "DraggableComponent-loadingOverlay": "_DraggableComponent-loadingOverlay_59z7f_49", "DraggableComponent--isLocked": "_DraggableComponent--isLocked_59z7f_65", "DraggableComponent--forceHover": "_DraggableComponent--forceHover_59z7f_71", "DraggableComponent--isSelected": "_DraggableComponent--isSelected_59z7f_76", "DraggableComponent--indicativeHover": "_DraggableComponent--indicativeHover_59z7f_81", "DraggableComponent-actionsOverlay": "_DraggableComponent-actionsOverlay_59z7f_97", "DraggableComponent-actions": "_DraggableComponent-actions_59z7f_97", "DraggableComponent-actionsLabel": "_DraggableComponent-actionsLabel_59z7f_127", "DraggableComponent-action": "_DraggableComponent-action_59z7f_97" };
|
73202
74654
|
init_react_import2();
|
73203
74655
|
init_react_import2();
|
73204
74656
|
var import_react52 = require("react");
|
@@ -73217,8 +74669,8 @@ var require_dist2 = __commonJS({
|
|
73217
74669
|
var toKebabCase2 = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().trim();
|
73218
74670
|
var createLucideIcon2 = (iconName, iconNode) => {
|
73219
74671
|
const Component = (0, import_react52.forwardRef)(
|
73220
|
-
(
|
73221
|
-
var _b =
|
74672
|
+
(_a3, ref2) => {
|
74673
|
+
var _b = _a3, { color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children } = _b, rest = __objRest2(_b, ["color", "size", "strokeWidth", "absoluteStrokeWidth", "className", "children"]);
|
73222
74674
|
return (0, import_react52.createElement)(
|
73223
74675
|
"svg",
|
73224
74676
|
__spreadValues2(__spreadProps2(__spreadValues2({
|
@@ -73539,7 +74991,7 @@ var require_dist2 = __commonJS({
|
|
73539
74991
|
);
|
73540
74992
|
};
|
73541
74993
|
init_react_import2();
|
73542
|
-
var styles_module_default42 = { "DropZone": "
|
74994
|
+
var styles_module_default42 = { "DropZone": "_DropZone_1fmd4_1", "DropZone-content": "_DropZone-content_1fmd4_10", "DropZone--userIsDragging": "_DropZone--userIsDragging_1fmd4_15", "DropZone--draggingOverArea": "_DropZone--draggingOverArea_1fmd4_19", "DropZone--draggingNewComponent": "_DropZone--draggingNewComponent_1fmd4_20", "DropZone--isAreaSelected": "_DropZone--isAreaSelected_1fmd4_26", "DropZone--hoveringOverArea": "_DropZone--hoveringOverArea_1fmd4_27", "DropZone--isDisabled": "_DropZone--isDisabled_1fmd4_28", "DropZone--isRootZone": "_DropZone--isRootZone_1fmd4_29", "DropZone--hasChildren": "_DropZone--hasChildren_1fmd4_30", "DropZone--isDestination": "_DropZone--isDestination_1fmd4_40", "DropZone-item": "_DropZone-item_1fmd4_52", "DropZone-hitbox": "_DropZone-hitbox_1fmd4_56" };
|
73543
74995
|
init_react_import2();
|
73544
74996
|
var import_react82 = require("react");
|
73545
74997
|
var import_use_debounce = (init_index_module(), __toCommonJS(index_module_exports));
|
@@ -73658,7 +75110,7 @@ var require_dist2 = __commonJS({
|
|
73658
75110
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
73659
75111
|
var getClassName5 = get_class_name_factory_default2("DropZone", styles_module_default42);
|
73660
75112
|
function DropZoneEdit({ zone, allow, disallow, style: style2 }) {
|
73661
|
-
var
|
75113
|
+
var _a3;
|
73662
75114
|
const appContext22 = useAppContext2();
|
73663
75115
|
const ctx = (0, import_react92.useContext)(dropZoneContext2);
|
73664
75116
|
const {
|
@@ -73702,7 +75154,7 @@ var require_dist2 = __commonJS({
|
|
73702
75154
|
}
|
73703
75155
|
const isRootZone = zoneCompound === rootDroppableId2 || zone === rootDroppableId2 || areaId === "root";
|
73704
75156
|
const draggedSourceId = draggedItem && draggedItem.source.droppableId;
|
73705
|
-
const draggedDestinationId = draggedItem && ((
|
75157
|
+
const draggedDestinationId = draggedItem && ((_a3 = draggedItem.destination) == null ? void 0 : _a3.droppableId);
|
73706
75158
|
const [zoneArea] = getZoneId2(zoneCompound);
|
73707
75159
|
const [draggedSourceArea] = getZoneId2(draggedSourceId);
|
73708
75160
|
const userWillDrag = zoneWillDrag === zone;
|
@@ -73785,9 +75237,9 @@ var require_dist2 = __commonJS({
|
|
73785
75237
|
},
|
73786
75238
|
children: [
|
73787
75239
|
content.map((item, i2) => {
|
73788
|
-
var
|
75240
|
+
var _a22, _b, _c;
|
73789
75241
|
const componentId = item.props.id;
|
73790
|
-
const defaultedProps = __spreadProps2(__spreadValues2(__spreadValues2({}, (
|
75242
|
+
const defaultedProps = __spreadProps2(__spreadValues2(__spreadValues2({}, (_a22 = config.components[item.type]) == null ? void 0 : _a22.defaultProps), item.props), {
|
73791
75243
|
puck: { renderDropZone: DropZone },
|
73792
75244
|
editMode: true
|
73793
75245
|
});
|
@@ -74034,7 +75486,7 @@ var require_dist2 = __commonJS({
|
|
74034
75486
|
const queryAttr = "data-rfd-drag-handle-draggable-id";
|
74035
75487
|
const [placeholderStyle, setPlaceholderStyle] = (0, import_react112.useState)();
|
74036
75488
|
const onDragStartOrUpdate = (draggedItem) => {
|
74037
|
-
var
|
75489
|
+
var _a3;
|
74038
75490
|
const draggableId = draggedItem.draggableId;
|
74039
75491
|
const destinationIndex = (draggedItem.destination || draggedItem.source).index;
|
74040
75492
|
const droppableId = (draggedItem.destination || draggedItem.source).droppableId;
|
@@ -74052,7 +75504,7 @@ var require_dist2 = __commonJS({
|
|
74052
75504
|
return;
|
74053
75505
|
}
|
74054
75506
|
let clientY = 0;
|
74055
|
-
const isSameDroppable = draggedItem.source.droppableId === ((
|
75507
|
+
const isSameDroppable = draggedItem.source.droppableId === ((_a3 = draggedItem.destination) == null ? void 0 : _a3.droppableId);
|
74056
75508
|
if (destinationIndex > 0) {
|
74057
75509
|
const end2 = destinationIndex > draggedItem.source.index && isSameDroppable ? destinationIndex + 1 : destinationIndex;
|
74058
75510
|
const children = Array.from(targetListElement.children).filter(
|
@@ -74539,9 +75991,9 @@ var require_dist2 = __commonJS({
|
|
74539
75991
|
var import_react132 = require("react");
|
74540
75992
|
init_react_import2();
|
74541
75993
|
var cache = { lastChange: {} };
|
74542
|
-
var resolveAllComponentData = (content, config, onResolveStart, onResolveEnd) =>
|
75994
|
+
var resolveAllComponentData = (content, config, onResolveStart, onResolveEnd) => __async2(void 0, null, function* () {
|
74543
75995
|
return yield Promise.all(
|
74544
|
-
content.map((item) =>
|
75996
|
+
content.map((item) => __async2(void 0, null, function* () {
|
74545
75997
|
return yield resolveComponentData(
|
74546
75998
|
item,
|
74547
75999
|
config,
|
@@ -74551,7 +76003,7 @@ var require_dist2 = __commonJS({
|
|
74551
76003
|
}))
|
74552
76004
|
);
|
74553
76005
|
});
|
74554
|
-
var resolveComponentData = (item, config, onResolveStart, onResolveEnd) =>
|
76006
|
+
var resolveComponentData = (item, config, onResolveStart, onResolveEnd) => __async2(void 0, null, function* () {
|
74555
76007
|
const configForItem = config.components[item.type];
|
74556
76008
|
if (configForItem.resolveData) {
|
74557
76009
|
let changed = Object.keys(item.props).reduce(
|
@@ -74610,9 +76062,9 @@ var require_dist2 = __commonJS({
|
|
74610
76062
|
};
|
74611
76063
|
init_react_import2();
|
74612
76064
|
var cache2 = {};
|
74613
|
-
var resolveRootData = (data, config) =>
|
74614
|
-
var
|
74615
|
-
if (((
|
76065
|
+
var resolveRootData = (data, config) => __async2(void 0, null, function* () {
|
76066
|
+
var _a3, _b;
|
76067
|
+
if (((_a3 = config.root) == null ? void 0 : _a3.resolveData) && data.root.props) {
|
74616
76068
|
let changed = Object.keys(data.root.props).reduce(
|
74617
76069
|
(acc, item) => __spreadProps2(__spreadValues2({}, acc), { [item]: true }),
|
74618
76070
|
{}
|
@@ -74664,11 +76116,11 @@ var require_dist2 = __commonJS({
|
|
74664
76116
|
},
|
74665
76117
|
[]
|
74666
76118
|
);
|
74667
|
-
const runResolvers = () =>
|
76119
|
+
const runResolvers = () => __async2(void 0, null, function* () {
|
74668
76120
|
const newData = newAppState.data;
|
74669
76121
|
const flatContent = Object.keys(newData.zones || {}).reduce((acc, zone) => [...acc, ...newData.zones[zone]], newData.content).filter((item) => {
|
74670
|
-
var
|
74671
|
-
return !!((
|
76122
|
+
var _a3;
|
76123
|
+
return !!((_a3 = config.components[item.type]) == null ? void 0 : _a3.resolveData);
|
74672
76124
|
});
|
74673
76125
|
const applyIfChange = (dynamicDataMap, dynamicRoot) => {
|
74674
76126
|
const processed = applyDynamicProps(
|
@@ -74691,7 +76143,7 @@ var require_dist2 = __commonJS({
|
|
74691
76143
|
};
|
74692
76144
|
const promises = [];
|
74693
76145
|
promises.push(
|
74694
|
-
(() =>
|
76146
|
+
(() => __async2(void 0, null, function* () {
|
74695
76147
|
setComponentLoading("puck-root", true, 50);
|
74696
76148
|
const dynamicRoot = yield resolveRootData(newData, config);
|
74697
76149
|
applyIfChange({}, dynamicRoot);
|
@@ -74700,7 +76152,7 @@ var require_dist2 = __commonJS({
|
|
74700
76152
|
);
|
74701
76153
|
flatContent.forEach((item) => {
|
74702
76154
|
promises.push(
|
74703
|
-
(() =>
|
76155
|
+
(() => __async2(void 0, null, function* () {
|
74704
76156
|
const dynamicData = yield resolveComponentData(
|
74705
76157
|
item,
|
74706
76158
|
config,
|
@@ -74756,12 +76208,12 @@ var require_dist2 = __commonJS({
|
|
74756
76208
|
{
|
74757
76209
|
className: getClassName9({ menuOpen }),
|
74758
76210
|
onClick: (event) => {
|
74759
|
-
var
|
76211
|
+
var _a3;
|
74760
76212
|
const element = event.target;
|
74761
76213
|
if (window.matchMedia("(min-width: 638px)").matches) {
|
74762
76214
|
return;
|
74763
76215
|
}
|
74764
|
-
if (element.tagName === "A" && ((
|
76216
|
+
if (element.tagName === "A" && ((_a3 = element.getAttribute("href")) == null ? void 0 : _a3.startsWith("#"))) {
|
74765
76217
|
setMenuOpen(false);
|
74766
76218
|
}
|
74767
76219
|
},
|
@@ -74870,11 +76322,11 @@ var require_dist2 = __commonJS({
|
|
74870
76322
|
(value2) => {
|
74871
76323
|
let highestIndex = getHighestIndex();
|
74872
76324
|
const newItems = Array.from(value2 || []).map((item, idx) => {
|
74873
|
-
var
|
76325
|
+
var _a3;
|
74874
76326
|
const arrayStateItem = arrayState.items[idx];
|
74875
76327
|
const newItem = {
|
74876
76328
|
_originalIndex: typeof (arrayStateItem == null ? void 0 : arrayStateItem._originalIndex) !== "undefined" ? arrayStateItem._originalIndex : highestIndex + 1,
|
74877
|
-
_arrayId: ((
|
76329
|
+
_arrayId: ((_a3 = arrayState.items[idx]) == null ? void 0 : _a3._arrayId) || `${id}-${highestIndex + 1}`
|
74878
76330
|
};
|
74879
76331
|
if (newItem._originalIndex > highestIndex) {
|
74880
76332
|
highestIndex = newItem._originalIndex;
|
@@ -74906,12 +76358,12 @@ var require_dist2 = __commonJS({
|
|
74906
76358
|
DragDropContext2,
|
74907
76359
|
{
|
74908
76360
|
onDragEnd: (event) => {
|
74909
|
-
var
|
76361
|
+
var _a3, _b;
|
74910
76362
|
if (event.destination) {
|
74911
76363
|
const newValue = reorder(
|
74912
76364
|
value,
|
74913
76365
|
event.source.index,
|
74914
|
-
(
|
76366
|
+
(_a3 = event.destination) == null ? void 0 : _a3.index
|
74915
76367
|
);
|
74916
76368
|
const newArrayStateItems = reorder(
|
74917
76369
|
arrayState.items,
|
@@ -75198,7 +76650,7 @@ var require_dist2 = __commonJS({
|
|
75198
76650
|
}, [mappedData]);
|
75199
76651
|
const [searchQuery, setSearchQuery] = (0, import_react16.useState)(field.initialQuery || "");
|
75200
76652
|
const search = (0, import_react16.useCallback)(
|
75201
|
-
(query, filters2) =>
|
76653
|
+
(query, filters2) => __async2(void 0, null, function* () {
|
75202
76654
|
setIsLoading(true);
|
75203
76655
|
const cacheKey = `${id}-${query}-${JSON.stringify(filters2)}`;
|
75204
76656
|
const listData = dataCache[cacheKey] || (yield field.fetchList({ query, filters: filters2 }));
|
@@ -75366,7 +76818,7 @@ var require_dist2 = __commonJS({
|
|
75366
76818
|
label,
|
75367
76819
|
id
|
75368
76820
|
}) => {
|
75369
|
-
var
|
76821
|
+
var _a3, _b, _c;
|
75370
76822
|
const validField = field;
|
75371
76823
|
const deprecatedField = field;
|
75372
76824
|
(0, import_react17.useEffect)(() => {
|
@@ -75391,10 +76843,10 @@ var require_dist2 = __commonJS({
|
|
75391
76843
|
name,
|
75392
76844
|
field: __spreadProps2(__spreadValues2({}, validField), {
|
75393
76845
|
// DEPRECATED
|
75394
|
-
placeholder: ((
|
76846
|
+
placeholder: ((_a3 = deprecatedField.adaptor) == null ? void 0 : _a3.name) ? `Select from ${deprecatedField.adaptor.name}` : validField.placeholder || "Select data",
|
75395
76847
|
mapProp: ((_b = deprecatedField.adaptor) == null ? void 0 : _b.mapProp) || validField.mapProp,
|
75396
76848
|
mapRow: validField.mapRow,
|
75397
|
-
fetchList: ((_c = deprecatedField.adaptor) == null ? void 0 : _c.fetchList) ? () =>
|
76849
|
+
fetchList: ((_c = deprecatedField.adaptor) == null ? void 0 : _c.fetchList) ? () => __async2(void 0, null, function* () {
|
75398
76850
|
return yield deprecatedField.adaptor.fetchList(
|
75399
76851
|
deprecatedField.adaptorParams
|
75400
76852
|
);
|
@@ -75644,9 +77096,9 @@ var require_dist2 = __commonJS({
|
|
75644
77096
|
}
|
75645
77097
|
);
|
75646
77098
|
};
|
75647
|
-
var InputOrGroup = (
|
75648
|
-
var _b =
|
75649
|
-
var
|
77099
|
+
var InputOrGroup = (_a3) => {
|
77100
|
+
var _b = _a3, { onChange } = _b, props = __objRest2(_b, ["onChange"]);
|
77101
|
+
var _a22, _b2, _c, _d, _e, _f, _g, _h;
|
75650
77102
|
const { overrides } = useAppContext2();
|
75651
77103
|
const { name, field, value, readOnly } = props;
|
75652
77104
|
const [localValue, setLocalValue] = (0, import_react18.useState)(value);
|
@@ -75689,7 +77141,7 @@ var require_dist2 = __commonJS({
|
|
75689
77141
|
number: DefaultField
|
75690
77142
|
};
|
75691
77143
|
const render = __spreadProps2(__spreadValues2({}, overrides.fieldTypes), {
|
75692
|
-
array: ((
|
77144
|
+
array: ((_a22 = overrides.fieldTypes) == null ? void 0 : _a22.array) || defaultFields.array,
|
75693
77145
|
external: ((_b2 = overrides.fieldTypes) == null ? void 0 : _b2.external) || defaultFields.external,
|
75694
77146
|
object: ((_c = overrides.fieldTypes) == null ? void 0 : _c.object) || defaultFields.object,
|
75695
77147
|
select: ((_d = overrides.fieldTypes) == null ? void 0 : _d.select) || defaultFields.select,
|
@@ -75721,7 +77173,7 @@ var require_dist2 = __commonJS({
|
|
75721
77173
|
] });
|
75722
77174
|
};
|
75723
77175
|
var Fields = () => {
|
75724
|
-
var
|
77176
|
+
var _a3, _b, _c, _d;
|
75725
77177
|
const {
|
75726
77178
|
selectedItem,
|
75727
77179
|
state,
|
@@ -75733,7 +77185,7 @@ var require_dist2 = __commonJS({
|
|
75733
77185
|
} = useAppContext2();
|
75734
77186
|
const { data, ui } = state;
|
75735
77187
|
const { itemSelector } = ui;
|
75736
|
-
const rootFields = ((
|
77188
|
+
const rootFields = ((_a3 = config.root) == null ? void 0 : _a3.fields) || defaultPageFields;
|
75737
77189
|
const fields = selectedItem ? ((_b = config.components[selectedItem.type]) == null ? void 0 : _b.fields) || {} : rootFields;
|
75738
77190
|
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;
|
75739
77191
|
const rootProps = data.root.props || data.root;
|
@@ -75748,7 +77200,7 @@ var require_dist2 = __commonJS({
|
|
75748
77200
|
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Wrapper, { isLoading, itemSelector, children: Object.keys(fields).map((fieldName) => {
|
75749
77201
|
const field = fields[fieldName];
|
75750
77202
|
const onChange = (value, updatedUi) => {
|
75751
|
-
var
|
77203
|
+
var _a22, _b2;
|
75752
77204
|
let currentProps;
|
75753
77205
|
if (selectedItem) {
|
75754
77206
|
currentProps = selectedItem.props;
|
@@ -75773,7 +77225,7 @@ var require_dist2 = __commonJS({
|
|
75773
77225
|
ui: __spreadValues2(__spreadValues2({}, ui), updatedUi)
|
75774
77226
|
}
|
75775
77227
|
};
|
75776
|
-
if ((
|
77228
|
+
if ((_a22 = config.components[selectedItem.type]) == null ? void 0 : _a22.resolveData) {
|
75777
77229
|
resolveData(setAction(state, setActionData));
|
75778
77230
|
} else {
|
75779
77231
|
dispatch(__spreadProps2(__spreadValues2({}, setActionData), {
|
@@ -75889,11 +77341,11 @@ var require_dist2 = __commonJS({
|
|
75889
77341
|
}
|
75890
77342
|
),
|
75891
77343
|
/* @__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, i2) => {
|
75892
|
-
var
|
77344
|
+
var _a3;
|
75893
77345
|
return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
75894
77346
|
ComponentListItem,
|
75895
77347
|
{
|
75896
|
-
label: (
|
77348
|
+
label: (_a3 = config.components[componentKey]["label"]) != null ? _a3 : componentKey,
|
75897
77349
|
name: componentKey,
|
75898
77350
|
index: i2
|
75899
77351
|
},
|
@@ -75907,7 +77359,7 @@ var require_dist2 = __commonJS({
|
|
75907
77359
|
var useComponentList = (config, ui) => {
|
75908
77360
|
const [componentList, setComponentList] = (0, import_react20.useState)();
|
75909
77361
|
(0, import_react20.useEffect)(() => {
|
75910
|
-
var
|
77362
|
+
var _a3, _b, _c;
|
75911
77363
|
if (Object.keys(ui.componentList).length > 0) {
|
75912
77364
|
const matchedComponents = [];
|
75913
77365
|
let _componentList;
|
@@ -75922,13 +77374,13 @@ var require_dist2 = __commonJS({
|
|
75922
77374
|
id: categoryKey,
|
75923
77375
|
title: category.title || categoryKey,
|
75924
77376
|
children: category.components.map((componentName, i2) => {
|
75925
|
-
var
|
77377
|
+
var _a22;
|
75926
77378
|
matchedComponents.push(componentName);
|
75927
77379
|
const componentConf = config.components[componentName] || {};
|
75928
77380
|
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
75929
77381
|
ComponentList.Item,
|
75930
77382
|
{
|
75931
|
-
label: (
|
77383
|
+
label: (_a22 = componentConf["label"]) != null ? _a22 : componentName,
|
75932
77384
|
name: componentName,
|
75933
77385
|
index: i2
|
75934
77386
|
},
|
@@ -75943,7 +77395,7 @@ var require_dist2 = __commonJS({
|
|
75943
77395
|
const remainingComponents = Object.keys(config.components).filter(
|
75944
77396
|
(component) => matchedComponents.indexOf(component) === -1
|
75945
77397
|
);
|
75946
|
-
if (remainingComponents.length > 0 && !((
|
77398
|
+
if (remainingComponents.length > 0 && !((_a3 = ui.componentList.other) == null ? void 0 : _a3.components) && ((_b = ui.componentList.other) == null ? void 0 : _b.visible) !== false) {
|
75947
77399
|
_componentList.push(
|
75948
77400
|
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
75949
77401
|
ComponentList,
|
@@ -75951,13 +77403,13 @@ var require_dist2 = __commonJS({
|
|
75951
77403
|
id: "other",
|
75952
77404
|
title: ((_c = ui.componentList.other) == null ? void 0 : _c.title) || "Other",
|
75953
77405
|
children: remainingComponents.map((componentName, i2) => {
|
75954
|
-
var
|
77406
|
+
var _a22;
|
75955
77407
|
const componentConf = config.components[componentName] || {};
|
75956
77408
|
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
75957
77409
|
ComponentList.Item,
|
75958
77410
|
{
|
75959
77411
|
name: componentName,
|
75960
|
-
label: (
|
77412
|
+
label: (_a22 = componentConf["label"]) != null ? _a22 : componentName,
|
75961
77413
|
index: i2
|
75962
77414
|
},
|
75963
77415
|
componentName
|
@@ -75992,8 +77444,8 @@ var require_dist2 = __commonJS({
|
|
75992
77444
|
const { config, dispatch, state, setStatus, iframe } = useAppContext2();
|
75993
77445
|
const Page = (0, import_react222.useCallback)(
|
75994
77446
|
(pageProps) => {
|
75995
|
-
var
|
75996
|
-
return ((
|
77447
|
+
var _a3, _b;
|
77448
|
+
return ((_a3 = config.root) == null ? void 0 : _a3.render) ? (_b = config.root) == null ? void 0 : _b.render(__spreadProps2(__spreadValues2({
|
75997
77449
|
id: "puck-root"
|
75998
77450
|
}, pageProps), {
|
75999
77451
|
editMode: true,
|
@@ -76059,9 +77511,9 @@ var require_dist2 = __commonJS({
|
|
76059
77511
|
var import_react23 = require("react");
|
76060
77512
|
init_react_import2();
|
76061
77513
|
var isChildOfZone = (item, maybeChild, ctx) => {
|
76062
|
-
var
|
77514
|
+
var _a3;
|
76063
77515
|
const { data, pathData = {} } = ctx || {};
|
76064
|
-
return maybeChild && data ? !!((
|
77516
|
+
return maybeChild && data ? !!((_a3 = pathData[maybeChild.props.id]) == null ? void 0 : _a3.path.find((zoneCompound) => {
|
76065
77517
|
const [area] = getZoneId2(zoneCompound);
|
76066
77518
|
return area === item.props.id;
|
76067
77519
|
})) : false;
|
@@ -76089,7 +77541,7 @@ var require_dist2 = __commonJS({
|
|
76089
77541
|
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("ul", { className: getClassName222(), children: [
|
76090
77542
|
zoneContent.length === 0 && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassName222("helper"), children: "No items" }),
|
76091
77543
|
zoneContent.map((item, i2) => {
|
76092
|
-
var
|
77544
|
+
var _a3;
|
76093
77545
|
const isSelected = (itemSelector == null ? void 0 : itemSelector.index) === i2 && (itemSelector.zone === zone || itemSelector.zone === rootDroppableId2 && !zone);
|
76094
77546
|
const zonesForItem = findZonesForArea(data, item.props.id);
|
76095
77547
|
const containsZone = Object.keys(zonesForItem).length > 0;
|
@@ -76155,7 +77607,7 @@ var require_dist2 = __commonJS({
|
|
76155
77607
|
),
|
76156
77608
|
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: getClassNameLayer("title"), children: [
|
76157
77609
|
/* @__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" }) }),
|
76158
|
-
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("name"), children: (
|
77610
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: getClassNameLayer("name"), children: (_a3 = config.components[item.type]["label"]) != null ? _a3 : item.type })
|
76159
77611
|
] })
|
76160
77612
|
]
|
76161
77613
|
}
|
@@ -76264,11 +77716,11 @@ var require_dist2 = __commonJS({
|
|
76264
77716
|
historyStore
|
76265
77717
|
}) {
|
76266
77718
|
const back = () => {
|
76267
|
-
var
|
77719
|
+
var _a3;
|
76268
77720
|
if (historyStore.hasPast) {
|
76269
77721
|
dispatch({
|
76270
77722
|
type: "set",
|
76271
|
-
state: ((
|
77723
|
+
state: ((_a3 = historyStore.prevHistory) == null ? void 0 : _a3.data) || initialAppState
|
76272
77724
|
});
|
76273
77725
|
historyStore.back();
|
76274
77726
|
}
|
@@ -76497,7 +77949,7 @@ var require_dist2 = __commonJS({
|
|
76497
77949
|
onViewportChange,
|
76498
77950
|
onZoom
|
76499
77951
|
}) => {
|
76500
|
-
var
|
77952
|
+
var _a3, _b;
|
76501
77953
|
const { viewports } = useAppContext2();
|
76502
77954
|
const defaultsContainAutoZoom = defaultZoomOptions.find(
|
76503
77955
|
(option) => option.value === autoZoom
|
@@ -76531,7 +77983,7 @@ var require_dist2 = __commonJS({
|
|
76531
77983
|
IconButton,
|
76532
77984
|
{
|
76533
77985
|
title: "Zoom viewport out",
|
76534
|
-
disabled: zoom <= ((
|
77986
|
+
disabled: zoom <= ((_a3 = zoomOptions[0]) == null ? void 0 : _a3.value),
|
76535
77987
|
onClick: (e2) => {
|
76536
77988
|
e2.stopPropagation();
|
76537
77989
|
onZoom(
|
@@ -76713,7 +78165,7 @@ var require_dist2 = __commonJS({
|
|
76713
78165
|
{
|
76714
78166
|
className: getClassName24("root"),
|
76715
78167
|
style: {
|
76716
|
-
width: iframe.enabled ? ui.viewports.current.width :
|
78168
|
+
width: iframe.enabled ? ui.viewports.current.width : "100%",
|
76717
78169
|
height: zoomConfig.rootHeight,
|
76718
78170
|
transform: iframe.enabled ? `scale(${zoomConfig.zoom})` : void 0,
|
76719
78171
|
transition: showTransition ? "width 150ms ease-out, height 150ms ease-out, transform 150ms ease-out" : "",
|
@@ -76747,13 +78199,13 @@ var require_dist2 = __commonJS({
|
|
76747
78199
|
enabled: true
|
76748
78200
|
}
|
76749
78201
|
}) {
|
76750
|
-
var
|
78202
|
+
var _a3;
|
76751
78203
|
const historyStore = useHistoryStore();
|
76752
78204
|
const [reducer2] = (0, import_react28.useState)(
|
76753
78205
|
() => createReducer({ config, record: historyStore.record })
|
76754
78206
|
);
|
76755
78207
|
const [initialAppState] = (0, import_react28.useState)(() => {
|
76756
|
-
var
|
78208
|
+
var _a22, _b, _c, _d;
|
76757
78209
|
const initial = __spreadValues2(__spreadValues2({}, defaultAppState2.ui), initialUi);
|
76758
78210
|
let clientUiState = {};
|
76759
78211
|
if (typeof window !== "undefined") {
|
@@ -76773,7 +78225,7 @@ var require_dist2 = __commonJS({
|
|
76773
78225
|
clientUiState = {
|
76774
78226
|
viewports: __spreadProps2(__spreadValues2({}, initial.viewports), {
|
76775
78227
|
current: __spreadProps2(__spreadValues2({}, initial.viewports.current), {
|
76776
|
-
height: ((_b = (
|
78228
|
+
height: ((_b = (_a22 = initialUi == null ? void 0 : initialUi.viewports) == null ? void 0 : _a22.current) == null ? void 0 : _b.height) || viewports[closestViewport].height || "auto",
|
76777
78229
|
width: ((_d = (_c = initialUi == null ? void 0 : initialUi.viewports) == null ? void 0 : _c.current) == null ? void 0 : _d.width) || viewports[closestViewport].width
|
76778
78230
|
})
|
76779
78231
|
})
|
@@ -76886,8 +78338,8 @@ var require_dist2 = __commonJS({
|
|
76886
78338
|
console.warn(
|
76887
78339
|
"`renderHeader` is deprecated. Please use `overrides.header` and the `usePuck` hook instead"
|
76888
78340
|
);
|
76889
|
-
const RenderHeader = (
|
76890
|
-
var _b =
|
78341
|
+
const RenderHeader = (_a22) => {
|
78342
|
+
var _b = _a22, { actions } = _b, props = __objRest2(_b, ["actions"]);
|
76891
78343
|
const Comp = renderHeader;
|
76892
78344
|
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Comp, __spreadProps2(__spreadValues2({}, props), { dispatch, state: appState, children: actions }));
|
76893
78345
|
};
|
@@ -77106,7 +78558,7 @@ var require_dist2 = __commonJS({
|
|
77106
78558
|
noPadding: true,
|
77107
78559
|
noBorderTop: true,
|
77108
78560
|
showBreadcrumbs: true,
|
77109
|
-
title: selectedItem ? (
|
78561
|
+
title: selectedItem ? (_a3 = config.components[selectedItem.type]["label"]) != null ? _a3 : selectedItem.type : "Page",
|
77110
78562
|
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Fields, {})
|
77111
78563
|
}
|
77112
78564
|
) })
|
@@ -77138,10 +78590,10 @@ var require_dist2 = __commonJS({
|
|
77138
78590
|
config,
|
77139
78591
|
data
|
77140
78592
|
}) {
|
77141
|
-
var
|
78593
|
+
var _a3;
|
77142
78594
|
const rootProps = data.root.props || data.root;
|
77143
78595
|
const title = (rootProps == null ? void 0 : rootProps.title) || "";
|
77144
|
-
if ((
|
78596
|
+
if ((_a3 = config.root) == null ? void 0 : _a3.render) {
|
77145
78597
|
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(DropZoneProvider, { value: { data, config, mode: "render" }, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
77146
78598
|
config.root.render,
|
77147
78599
|
__spreadProps2(__spreadValues2({}, rootProps), {
|
@@ -77211,7 +78663,7 @@ var require_dist2 = __commonJS({
|
|
77211
78663
|
}
|
77212
78664
|
init_react_import2();
|
77213
78665
|
function resolveAllData(data, config, onResolveStart, onResolveEnd) {
|
77214
|
-
return
|
78666
|
+
return __async2(this, null, function* () {
|
77215
78667
|
const dynamicRoot = yield resolveRootData(data, config);
|
77216
78668
|
const { zones = {} } = data;
|
77217
78669
|
const zoneKeys = Object.keys(zones);
|
@@ -77409,8 +78861,8 @@ var defaultAttributes = {
|
|
77409
78861
|
var toKebabCase = (string) => string.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().trim();
|
77410
78862
|
var createLucideIcon = (iconName, iconNode) => {
|
77411
78863
|
const Component = (0, import_react8.forwardRef)(
|
77412
|
-
(
|
77413
|
-
var _b =
|
78864
|
+
(_a3, ref2) => {
|
78865
|
+
var _b = _a3, { color = "currentColor", size = 24, strokeWidth = 2, absoluteStrokeWidth, className = "", children } = _b, rest = __objRest(_b, ["color", "size", "strokeWidth", "absoluteStrokeWidth", "className", "children"]);
|
77414
78866
|
return (0, import_react8.createElement)(
|
77415
78867
|
"svg",
|
77416
78868
|
__spreadValues(__spreadProps(__spreadValues({
|
@@ -77742,7 +79194,7 @@ var getOutline = ({
|
|
77742
79194
|
return _outline;
|
77743
79195
|
};
|
77744
79196
|
function buildHierarchy(frame) {
|
77745
|
-
var
|
79197
|
+
var _a3, _b;
|
77746
79198
|
const headings = getOutline({ addDataAttr: true, frame });
|
77747
79199
|
const root = { rank: 0, children: [], text: "" };
|
77748
79200
|
let path = [root];
|
@@ -77766,7 +79218,7 @@ function buildHierarchy(frame) {
|
|
77766
79218
|
children: [],
|
77767
79219
|
text: ""
|
77768
79220
|
};
|
77769
|
-
(
|
79221
|
+
(_a3 = path[path.length - 1].children) == null ? void 0 : _a3.push(missingNode);
|
77770
79222
|
path.push(missingNode);
|
77771
79223
|
}
|
77772
79224
|
}
|