@fictjs/runtime 0.12.0 → 0.14.0
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/README.md +25 -0
- package/dist/advanced.cjs +9 -9
- package/dist/advanced.js +4 -4
- package/dist/{chunk-2UR2UWE2.js → chunk-4GEXXASF.js} +3 -3
- package/dist/{chunk-DIK33H5U.js → chunk-A5K2MPZW.js} +2 -2
- package/dist/chunk-A5K2MPZW.js.map +1 -0
- package/dist/{chunk-44EQF3AR.cjs → chunk-BW4GNOOZ.cjs} +40 -40
- package/dist/{chunk-44EQF3AR.cjs.map → chunk-BW4GNOOZ.cjs.map} +1 -1
- package/dist/{chunk-WIHNVN6L.js → chunk-E6A6PCTW.js} +9 -11
- package/dist/chunk-E6A6PCTW.js.map +1 -0
- package/dist/{chunk-C5IE4WUG.cjs → chunk-FXDZVFEP.cjs} +8 -8
- package/dist/{chunk-C5IE4WUG.cjs.map → chunk-FXDZVFEP.cjs.map} +1 -1
- package/dist/{chunk-FHQZCAAK.cjs → chunk-HAFRB2OT.cjs} +17 -17
- package/dist/{chunk-FHQZCAAK.cjs.map → chunk-HAFRB2OT.cjs.map} +1 -1
- package/dist/{chunk-4QGEN5SJ.cjs → chunk-IEYESQRE.cjs} +180 -182
- package/dist/chunk-IEYESQRE.cjs.map +1 -0
- package/dist/{chunk-FESAXMHT.js → chunk-NPSPJGD4.js} +3 -3
- package/dist/{chunk-QNMYVXRL.cjs → chunk-R2WMNQGO.cjs} +2 -2
- package/dist/{chunk-QNMYVXRL.cjs.map → chunk-R2WMNQGO.cjs.map} +1 -1
- package/dist/{chunk-S63VBIWN.js → chunk-VEBU7SMW.js} +3 -3
- package/dist/index.cjs +42 -42
- package/dist/index.dev.js +2 -2
- package/dist/index.dev.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/internal-list.cjs +4 -4
- package/dist/internal-list.js +3 -3
- package/dist/internal.cjs +5 -5
- package/dist/internal.js +4 -4
- package/dist/loader.cjs +18 -18
- package/dist/loader.js +1 -1
- package/package.json +2 -2
- package/src/binding.ts +6 -8
- package/src/node-ops.ts +1 -1
- package/src/signal.ts +1 -1
- package/dist/chunk-4QGEN5SJ.cjs.map +0 -1
- package/dist/chunk-DIK33H5U.js.map +0 -1
- package/dist/chunk-WIHNVN6L.js.map +0 -1
- /package/dist/{chunk-2UR2UWE2.js.map → chunk-4GEXXASF.js.map} +0 -0
- /package/dist/{chunk-FESAXMHT.js.map → chunk-NPSPJGD4.js.map} +0 -0
- /package/dist/{chunk-S63VBIWN.js.map → chunk-VEBU7SMW.js.map} +0 -0
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
var
|
|
43
|
+
var _chunkR2WMNQGOcjs = require('./chunk-R2WMNQGO.cjs');
|
|
44
44
|
|
|
45
45
|
// src/transition.ts
|
|
46
46
|
function startTransition(fn) {
|
|
47
|
-
const prev =
|
|
47
|
+
const prev = _chunkR2WMNQGOcjs.setTransitionContext.call(void 0, true);
|
|
48
48
|
try {
|
|
49
49
|
fn();
|
|
50
50
|
} finally {
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
_chunkR2WMNQGOcjs.setTransitionContext.call(void 0, prev);
|
|
52
|
+
_chunkR2WMNQGOcjs.scheduleFlush.call(void 0, );
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
function useTransition() {
|
|
56
|
-
const pending =
|
|
56
|
+
const pending = _chunkR2WMNQGOcjs.signal.call(void 0, false);
|
|
57
57
|
let pendingCount = 0;
|
|
58
58
|
const beginPending = () => {
|
|
59
59
|
pendingCount += 1;
|
|
@@ -104,10 +104,10 @@ function useTransition() {
|
|
|
104
104
|
return [() => pending(), start];
|
|
105
105
|
}
|
|
106
106
|
function useDeferredValue(getValue) {
|
|
107
|
-
const deferredValue =
|
|
108
|
-
|
|
107
|
+
const deferredValue = _chunkR2WMNQGOcjs.signal.call(void 0, getValue());
|
|
108
|
+
_chunkR2WMNQGOcjs.createEffect.call(void 0, () => {
|
|
109
109
|
const newValue = getValue();
|
|
110
|
-
const currentDeferred =
|
|
110
|
+
const currentDeferred = _chunkR2WMNQGOcjs.untrack.call(void 0, () => deferredValue());
|
|
111
111
|
if (currentDeferred !== newValue) {
|
|
112
112
|
startTransition(() => {
|
|
113
113
|
deferredValue(newValue);
|
|
@@ -119,10 +119,10 @@ function useDeferredValue(getValue) {
|
|
|
119
119
|
|
|
120
120
|
// src/scheduler.ts
|
|
121
121
|
function batch2(fn) {
|
|
122
|
-
return
|
|
122
|
+
return _chunkR2WMNQGOcjs.batch.call(void 0, fn);
|
|
123
123
|
}
|
|
124
124
|
function untrack2(fn) {
|
|
125
|
-
return
|
|
125
|
+
return _chunkR2WMNQGOcjs.untrack.call(void 0, fn);
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
// src/jsx.ts
|
|
@@ -160,7 +160,7 @@ function toNodeArray(node, ownerDocument = document) {
|
|
|
160
160
|
} catch (e3) {
|
|
161
161
|
return [];
|
|
162
162
|
}
|
|
163
|
-
let isNode
|
|
163
|
+
let isNode;
|
|
164
164
|
try {
|
|
165
165
|
isNode = node instanceof Node;
|
|
166
166
|
} catch (e4) {
|
|
@@ -425,14 +425,14 @@ function isExplicitReactiveFn(value) {
|
|
|
425
425
|
function isReactive(value) {
|
|
426
426
|
if (typeof value !== "function") return false;
|
|
427
427
|
if (isNonReactiveFn(value)) return false;
|
|
428
|
-
if (
|
|
428
|
+
if (_chunkR2WMNQGOcjs.isSignal.call(void 0, value) || _chunkR2WMNQGOcjs.isComputed.call(void 0, value)) return true;
|
|
429
429
|
if (isExplicitReactiveFn(value)) return true;
|
|
430
|
-
if (
|
|
430
|
+
if (_chunkR2WMNQGOcjs.isEffect.call(void 0, value) || _chunkR2WMNQGOcjs.isEffectScope.call(void 0, value)) return false;
|
|
431
431
|
return value.length === 0;
|
|
432
432
|
}
|
|
433
433
|
function isStrictlyReactive(value) {
|
|
434
434
|
if (typeof value !== "function") return false;
|
|
435
|
-
return
|
|
435
|
+
return _chunkR2WMNQGOcjs.isSignal.call(void 0, value) || _chunkR2WMNQGOcjs.isComputed.call(void 0, value) || isPropGetterFn(value) || isExplicitReactiveFn(value);
|
|
436
436
|
}
|
|
437
437
|
var PROP_GETTER_MARKER = Symbol.for("fict:prop-getter");
|
|
438
438
|
function isPropGetterFn(value) {
|
|
@@ -496,7 +496,7 @@ function createTextBinding(value, owner) {
|
|
|
496
496
|
const textOwnerDocument = owner && "nodeType" in owner ? owner.nodeType === 9 ? owner : _nullishCoalesce(owner.ownerDocument, () => ( document)) : document;
|
|
497
497
|
const text = textOwnerDocument.createTextNode("");
|
|
498
498
|
if (isReactive(value)) {
|
|
499
|
-
|
|
499
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
500
500
|
setText(text, value());
|
|
501
501
|
});
|
|
502
502
|
} else {
|
|
@@ -505,7 +505,7 @@ function createTextBinding(value, owner) {
|
|
|
505
505
|
return text;
|
|
506
506
|
}
|
|
507
507
|
function bindText(textNode, getValue) {
|
|
508
|
-
return
|
|
508
|
+
return _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => setText(textNode, getValue()));
|
|
509
509
|
}
|
|
510
510
|
function setText(textNode, value) {
|
|
511
511
|
const next = formatTextValue(value);
|
|
@@ -525,7 +525,7 @@ function formatTextValue(value) {
|
|
|
525
525
|
}
|
|
526
526
|
function createAttributeBinding(el, key, value, setter) {
|
|
527
527
|
if (isReactive(value)) {
|
|
528
|
-
|
|
528
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
529
529
|
setter(el, key, value());
|
|
530
530
|
});
|
|
531
531
|
} else {
|
|
@@ -533,7 +533,7 @@ function createAttributeBinding(el, key, value, setter) {
|
|
|
533
533
|
}
|
|
534
534
|
}
|
|
535
535
|
function bindAttribute(el, key, getValue) {
|
|
536
|
-
return
|
|
536
|
+
return _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => setAttr(el, key, getValue()));
|
|
537
537
|
}
|
|
538
538
|
function setAttr(el, key, value) {
|
|
539
539
|
const cacheTarget = el;
|
|
@@ -549,7 +549,7 @@ function setAttr(el, key, value) {
|
|
|
549
549
|
}
|
|
550
550
|
}
|
|
551
551
|
function bindProperty(el, key, getValue) {
|
|
552
|
-
return
|
|
552
|
+
return _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => setProp(el, key, getValue()));
|
|
553
553
|
}
|
|
554
554
|
function setProp(el, key, value) {
|
|
555
555
|
const cacheTarget = el;
|
|
@@ -566,7 +566,7 @@ function setProp(el, key, value) {
|
|
|
566
566
|
}
|
|
567
567
|
function createStyleBinding(el, value) {
|
|
568
568
|
if (isReactive(value)) {
|
|
569
|
-
|
|
569
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
570
570
|
setStyle(el, value());
|
|
571
571
|
});
|
|
572
572
|
} else {
|
|
@@ -574,7 +574,7 @@ function createStyleBinding(el, value) {
|
|
|
574
574
|
}
|
|
575
575
|
}
|
|
576
576
|
function bindStyle(el, getValue) {
|
|
577
|
-
return
|
|
577
|
+
return _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => setStyle(el, getValue()));
|
|
578
578
|
}
|
|
579
579
|
function setStyle(el, value) {
|
|
580
580
|
const target = el;
|
|
@@ -629,7 +629,7 @@ function applyStyle(el, value, prev) {
|
|
|
629
629
|
}
|
|
630
630
|
}
|
|
631
631
|
}
|
|
632
|
-
var isUnitlessStyleProperty = isDev ? (prop2) =>
|
|
632
|
+
var isUnitlessStyleProperty = isDev ? (prop2) => _chunkR2WMNQGOcjs.UnitlessStyles.has(prop2) : (prop2) => prop2 === "opacity" || prop2 === "zIndex";
|
|
633
633
|
function normalizeStyleProperty(prop2) {
|
|
634
634
|
const cached = STYLE_PROP_CACHE.get(prop2);
|
|
635
635
|
if (cached) return cached;
|
|
@@ -639,7 +639,7 @@ function normalizeStyleProperty(prop2) {
|
|
|
639
639
|
}
|
|
640
640
|
function createClassBinding(el, value) {
|
|
641
641
|
if (isReactive(value)) {
|
|
642
|
-
|
|
642
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0,
|
|
643
643
|
() => setClass(el, value())
|
|
644
644
|
);
|
|
645
645
|
} else {
|
|
@@ -647,7 +647,7 @@ function createClassBinding(el, value) {
|
|
|
647
647
|
}
|
|
648
648
|
}
|
|
649
649
|
function bindClass(el, getValue) {
|
|
650
|
-
return
|
|
650
|
+
return _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => setClass(el, getValue()));
|
|
651
651
|
}
|
|
652
652
|
function setClass(el, value) {
|
|
653
653
|
const cache = el;
|
|
@@ -708,7 +708,7 @@ function classList(node, value, prev = {}) {
|
|
|
708
708
|
return applyClass(node, value, prev);
|
|
709
709
|
}
|
|
710
710
|
function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
711
|
-
const hostRoot =
|
|
711
|
+
const hostRoot = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
712
712
|
const parentOwnerDocument = _nullishCoalesce(parent.ownerDocument, () => ( document));
|
|
713
713
|
let marker;
|
|
714
714
|
let ownsMarker = false;
|
|
@@ -749,13 +749,13 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
|
749
749
|
insertNodesBefore(parentNode, [currentText], marker);
|
|
750
750
|
currentNodes = [currentText];
|
|
751
751
|
};
|
|
752
|
-
const dispose =
|
|
752
|
+
const dispose = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
753
753
|
const value = getValue();
|
|
754
754
|
const parentNode = marker.parentNode;
|
|
755
755
|
const isPrimitive = value == null || value === false || typeof value === "string" || typeof value === "number" || typeof value === "boolean";
|
|
756
756
|
if (isPrimitive) {
|
|
757
757
|
if (currentRoot) {
|
|
758
|
-
|
|
758
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
759
759
|
currentRoot = null;
|
|
760
760
|
}
|
|
761
761
|
if (!parentNode) {
|
|
@@ -768,13 +768,13 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
|
768
768
|
return;
|
|
769
769
|
}
|
|
770
770
|
if (currentRoot) {
|
|
771
|
-
|
|
771
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
772
772
|
currentRoot = null;
|
|
773
773
|
}
|
|
774
774
|
clearCurrentNodes();
|
|
775
|
-
const root =
|
|
776
|
-
const prev =
|
|
777
|
-
let nodes
|
|
775
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
776
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
777
|
+
let nodes;
|
|
778
778
|
let handledError = false;
|
|
779
779
|
try {
|
|
780
780
|
let newNode;
|
|
@@ -801,28 +801,28 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
|
801
801
|
nodes = toNodeArray(newNode, ownerDocument);
|
|
802
802
|
if (root.suspended) {
|
|
803
803
|
handledError = true;
|
|
804
|
-
|
|
804
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
805
805
|
return;
|
|
806
806
|
}
|
|
807
807
|
if (parentNode) {
|
|
808
808
|
insertNodesBefore(parentNode, nodes, marker);
|
|
809
809
|
}
|
|
810
810
|
} catch (err) {
|
|
811
|
-
if (
|
|
811
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root)) {
|
|
812
812
|
handledError = true;
|
|
813
|
-
|
|
813
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
814
814
|
return;
|
|
815
815
|
}
|
|
816
|
-
if (
|
|
816
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root)) {
|
|
817
817
|
handledError = true;
|
|
818
|
-
|
|
818
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
819
819
|
return;
|
|
820
820
|
}
|
|
821
821
|
throw err;
|
|
822
822
|
} finally {
|
|
823
|
-
|
|
823
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
824
824
|
if (!handledError) {
|
|
825
|
-
|
|
825
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
826
826
|
}
|
|
827
827
|
}
|
|
828
828
|
currentRoot = root;
|
|
@@ -831,7 +831,7 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
|
831
831
|
return () => {
|
|
832
832
|
dispose();
|
|
833
833
|
if (currentRoot) {
|
|
834
|
-
|
|
834
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
835
835
|
currentRoot = null;
|
|
836
836
|
}
|
|
837
837
|
clearCurrentNodes();
|
|
@@ -841,12 +841,12 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
|
|
|
841
841
|
};
|
|
842
842
|
}
|
|
843
843
|
function insertBetween(start, end, getValue, createElementFn) {
|
|
844
|
-
const hostRoot =
|
|
844
|
+
const hostRoot = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
845
845
|
const markerOwnerDocument = _nullishCoalesce(_nullishCoalesce(start.ownerDocument, () => ( end.ownerDocument)), () => ( document));
|
|
846
846
|
let currentNodes = [];
|
|
847
847
|
let currentText = null;
|
|
848
848
|
let currentRoot = null;
|
|
849
|
-
let initialHydrating =
|
|
849
|
+
let initialHydrating = _chunkR2WMNQGOcjs.__fictIsHydrating.call(void 0, );
|
|
850
850
|
const collectBetween = () => {
|
|
851
851
|
const nodes = [];
|
|
852
852
|
let cursor = start.nextSibling;
|
|
@@ -882,7 +882,7 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
882
882
|
currentNodes = [currentText];
|
|
883
883
|
}
|
|
884
884
|
};
|
|
885
|
-
const dispose =
|
|
885
|
+
const dispose = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
886
886
|
const value = getValue();
|
|
887
887
|
const parentNode = start.parentNode;
|
|
888
888
|
const isPrimitive = value == null || value === false || typeof value === "string" || typeof value === "number" || typeof value === "boolean";
|
|
@@ -896,7 +896,7 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
896
896
|
}
|
|
897
897
|
}
|
|
898
898
|
if (currentRoot) {
|
|
899
|
-
|
|
899
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
900
900
|
currentRoot = null;
|
|
901
901
|
}
|
|
902
902
|
if (!parentNode) {
|
|
@@ -910,13 +910,13 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
910
910
|
return;
|
|
911
911
|
}
|
|
912
912
|
if (currentRoot) {
|
|
913
|
-
|
|
913
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
914
914
|
currentRoot = null;
|
|
915
915
|
}
|
|
916
916
|
clearCurrentNodes();
|
|
917
|
-
const root =
|
|
918
|
-
const prev =
|
|
919
|
-
let nodes
|
|
917
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
918
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
919
|
+
let nodes;
|
|
920
920
|
let handledError = false;
|
|
921
921
|
try {
|
|
922
922
|
let newNode = void 0;
|
|
@@ -955,28 +955,28 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
955
955
|
nodes = toNodeArray(newNode, ownerDocument);
|
|
956
956
|
if (root.suspended) {
|
|
957
957
|
handledError = true;
|
|
958
|
-
|
|
958
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
959
959
|
return;
|
|
960
960
|
}
|
|
961
961
|
if (parentNode && !initialHydrating) {
|
|
962
962
|
insertNodesBefore(parentNode, nodes, end);
|
|
963
963
|
}
|
|
964
964
|
} catch (err) {
|
|
965
|
-
if (
|
|
965
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root)) {
|
|
966
966
|
handledError = true;
|
|
967
|
-
|
|
967
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
968
968
|
return;
|
|
969
969
|
}
|
|
970
|
-
if (
|
|
970
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root)) {
|
|
971
971
|
handledError = true;
|
|
972
|
-
|
|
972
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
973
973
|
return;
|
|
974
974
|
}
|
|
975
975
|
throw err;
|
|
976
976
|
} finally {
|
|
977
|
-
|
|
977
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
978
978
|
if (!handledError) {
|
|
979
|
-
|
|
979
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
980
980
|
}
|
|
981
981
|
}
|
|
982
982
|
currentRoot = root;
|
|
@@ -986,7 +986,7 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
986
986
|
return () => {
|
|
987
987
|
dispose();
|
|
988
988
|
if (currentRoot) {
|
|
989
|
-
|
|
989
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
990
990
|
currentRoot = null;
|
|
991
991
|
}
|
|
992
992
|
clearCurrentNodes();
|
|
@@ -995,10 +995,10 @@ function insertBetween(start, end, getValue, createElementFn) {
|
|
|
995
995
|
function createChildBinding(parent, getValue, createElementFn) {
|
|
996
996
|
const marker = (_nullishCoalesce(parent.ownerDocument, () => ( document))).createComment("fict:child");
|
|
997
997
|
parent.appendChild(marker);
|
|
998
|
-
const hostRoot =
|
|
999
|
-
const dispose =
|
|
1000
|
-
const root =
|
|
1001
|
-
const prev =
|
|
998
|
+
const hostRoot = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
999
|
+
const dispose = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1000
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
1001
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
1002
1002
|
let nodes = [];
|
|
1003
1003
|
let handledError = false;
|
|
1004
1004
|
try {
|
|
@@ -1013,25 +1013,25 @@ function createChildBinding(parent, getValue, createElementFn) {
|
|
|
1013
1013
|
insertNodesBefore(parentNode, nodes, marker);
|
|
1014
1014
|
}
|
|
1015
1015
|
return () => {
|
|
1016
|
-
|
|
1016
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1017
1017
|
removeNodes(nodes);
|
|
1018
1018
|
};
|
|
1019
1019
|
} catch (err) {
|
|
1020
|
-
if (
|
|
1020
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root)) {
|
|
1021
1021
|
handledError = true;
|
|
1022
|
-
|
|
1022
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1023
1023
|
return;
|
|
1024
1024
|
}
|
|
1025
|
-
if (
|
|
1025
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root)) {
|
|
1026
1026
|
handledError = true;
|
|
1027
|
-
|
|
1027
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1028
1028
|
return;
|
|
1029
1029
|
}
|
|
1030
1030
|
throw err;
|
|
1031
1031
|
} finally {
|
|
1032
|
-
|
|
1032
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
1033
1033
|
if (!handledError) {
|
|
1034
|
-
|
|
1034
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
1035
1035
|
}
|
|
1036
1036
|
}
|
|
1037
1037
|
});
|
|
@@ -1044,7 +1044,7 @@ function createChildBinding(parent, getValue, createElementFn) {
|
|
|
1044
1044
|
};
|
|
1045
1045
|
}
|
|
1046
1046
|
function delegateEvents(eventNames, doc = window.document) {
|
|
1047
|
-
const e = doc[
|
|
1047
|
+
const e = doc[_chunkR2WMNQGOcjs.$$EVENTS] || (doc[_chunkR2WMNQGOcjs.$$EVENTS] = /* @__PURE__ */ new Set());
|
|
1048
1048
|
for (let i = 0, l = eventNames.length; i < l; i++) {
|
|
1049
1049
|
const name = eventNames[i];
|
|
1050
1050
|
if (!e.has(name)) {
|
|
@@ -1054,12 +1054,12 @@ function delegateEvents(eventNames, doc = window.document) {
|
|
|
1054
1054
|
}
|
|
1055
1055
|
}
|
|
1056
1056
|
function clearDelegatedEvents(doc = window.document) {
|
|
1057
|
-
const e = doc[
|
|
1057
|
+
const e = doc[_chunkR2WMNQGOcjs.$$EVENTS];
|
|
1058
1058
|
if (e) {
|
|
1059
1059
|
for (const name of e.keys()) {
|
|
1060
1060
|
doc.removeEventListener(name, globalEventHandler);
|
|
1061
1061
|
}
|
|
1062
|
-
delete doc[
|
|
1062
|
+
delete doc[_chunkR2WMNQGOcjs.$$EVENTS];
|
|
1063
1063
|
}
|
|
1064
1064
|
}
|
|
1065
1065
|
function globalEventHandler(e) {
|
|
@@ -1172,8 +1172,8 @@ function addEventListener(node, name, handler, delegate) {
|
|
|
1172
1172
|
function bindEvent(el, eventName, handler, options) {
|
|
1173
1173
|
if (handler == null) return () => {
|
|
1174
1174
|
};
|
|
1175
|
-
const rootRef =
|
|
1176
|
-
const shouldDelegate = options == null &&
|
|
1175
|
+
const rootRef = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
1176
|
+
const shouldDelegate = options == null && _chunkR2WMNQGOcjs.DelegatedEvents.has(eventName);
|
|
1177
1177
|
if (shouldDelegate) {
|
|
1178
1178
|
const key = `$$${eventName}`;
|
|
1179
1179
|
delegateEvents([eventName]);
|
|
@@ -1183,7 +1183,7 @@ function bindEvent(el, eventName, handler, options) {
|
|
|
1183
1183
|
const fn = resolveHandler();
|
|
1184
1184
|
callEventHandler(fn, args[0], el);
|
|
1185
1185
|
} catch (err) {
|
|
1186
|
-
if (!
|
|
1186
|
+
if (!_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "event", eventName }, rootRef)) {
|
|
1187
1187
|
throw err;
|
|
1188
1188
|
}
|
|
1189
1189
|
}
|
|
@@ -1198,7 +1198,7 @@ function bindEvent(el, eventName, handler, options) {
|
|
|
1198
1198
|
const resolved = getHandler();
|
|
1199
1199
|
callEventHandler(resolved, event, el);
|
|
1200
1200
|
} catch (err) {
|
|
1201
|
-
if (
|
|
1201
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "event", eventName }, rootRef)) {
|
|
1202
1202
|
return;
|
|
1203
1203
|
}
|
|
1204
1204
|
throw err;
|
|
@@ -1206,7 +1206,7 @@ function bindEvent(el, eventName, handler, options) {
|
|
|
1206
1206
|
};
|
|
1207
1207
|
el.addEventListener(eventName, wrapped, options);
|
|
1208
1208
|
const cleanup = () => el.removeEventListener(eventName, wrapped, options);
|
|
1209
|
-
|
|
1209
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, cleanup);
|
|
1210
1210
|
return cleanup;
|
|
1211
1211
|
}
|
|
1212
1212
|
function bindRef(el, ref) {
|
|
@@ -1226,11 +1226,11 @@ function bindRef(el, ref) {
|
|
|
1226
1226
|
const initialRef = getRef();
|
|
1227
1227
|
applyRef2(initialRef);
|
|
1228
1228
|
if (isReactive(ref)) {
|
|
1229
|
-
const cleanup2 =
|
|
1229
|
+
const cleanup2 = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1230
1230
|
const currentRef = getRef();
|
|
1231
1231
|
applyRef2(currentRef);
|
|
1232
1232
|
});
|
|
1233
|
-
|
|
1233
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, cleanup2);
|
|
1234
1234
|
const nullifyCleanup = () => {
|
|
1235
1235
|
const currentRef = getRef();
|
|
1236
1236
|
if (currentRef && typeof currentRef === "object" && "current" in currentRef) {
|
|
@@ -1238,7 +1238,7 @@ function bindRef(el, ref) {
|
|
|
1238
1238
|
currentRef.current = null;
|
|
1239
1239
|
}
|
|
1240
1240
|
};
|
|
1241
|
-
|
|
1241
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, nullifyCleanup);
|
|
1242
1242
|
return () => {
|
|
1243
1243
|
cleanup2();
|
|
1244
1244
|
nullifyCleanup();
|
|
@@ -1251,23 +1251,23 @@ function bindRef(el, ref) {
|
|
|
1251
1251
|
refValue.current = null;
|
|
1252
1252
|
}
|
|
1253
1253
|
};
|
|
1254
|
-
|
|
1254
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, cleanup);
|
|
1255
1255
|
return cleanup;
|
|
1256
1256
|
}
|
|
1257
1257
|
function spread(node, props = {}, isSVG = false, skipChildren = false) {
|
|
1258
1258
|
const prevProps = {};
|
|
1259
1259
|
if (!skipChildren && "children" in props) {
|
|
1260
|
-
|
|
1260
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1261
1261
|
prevProps.children = props.children;
|
|
1262
1262
|
});
|
|
1263
1263
|
}
|
|
1264
|
-
|
|
1264
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1265
1265
|
if (typeof props.ref === "function") {
|
|
1266
1266
|
;
|
|
1267
1267
|
props.ref(node);
|
|
1268
1268
|
}
|
|
1269
1269
|
});
|
|
1270
|
-
|
|
1270
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1271
1271
|
assign(node, props, isSVG, true, prevProps, true);
|
|
1272
1272
|
});
|
|
1273
1273
|
return prevProps;
|
|
@@ -1325,7 +1325,7 @@ function assignProp(node, prop2, value, prev, isSVG, skipRef, props) {
|
|
|
1325
1325
|
}
|
|
1326
1326
|
if (prop2.slice(0, 2) === "on") {
|
|
1327
1327
|
const eventName = prop2.slice(2).toLowerCase();
|
|
1328
|
-
const shouldDelegate =
|
|
1328
|
+
const shouldDelegate = _chunkR2WMNQGOcjs.DelegatedEvents.has(eventName);
|
|
1329
1329
|
if (!shouldDelegate && prev) {
|
|
1330
1330
|
const handler = Array.isArray(prev) ? prev[0] : prev;
|
|
1331
1331
|
node.removeEventListener(eventName, handler);
|
|
@@ -1358,9 +1358,9 @@ function assignProp(node, prop2, value, prev, isSVG, skipRef, props) {
|
|
|
1358
1358
|
}
|
|
1359
1359
|
const isCE = node.nodeName.includes("-") || "is" in props;
|
|
1360
1360
|
if (!isSVG) {
|
|
1361
|
-
const propAlias = isDev ?
|
|
1362
|
-
const isProperty = isDev ?
|
|
1363
|
-
const isChildProp = isDev ?
|
|
1361
|
+
const propAlias = isDev ? _chunkR2WMNQGOcjs.getPropAlias.call(void 0, prop2, node.tagName) : void 0;
|
|
1362
|
+
const isProperty = isDev ? _chunkR2WMNQGOcjs.Properties.has(prop2) : prop2 in node;
|
|
1363
|
+
const isChildProp = isDev ? _chunkR2WMNQGOcjs.ChildProperties.has(prop2) : prop2 === "innerHTML" || prop2 === "textContent" || prop2 === "innerText" || prop2 === "children";
|
|
1364
1364
|
if (propAlias || isProperty || isChildProp || isCE) {
|
|
1365
1365
|
const propName = propAlias || prop2;
|
|
1366
1366
|
if (isCE && !isProperty && !isChildProp && !propAlias) {
|
|
@@ -1375,7 +1375,7 @@ function assignProp(node, prop2, value, prev, isSVG, skipRef, props) {
|
|
|
1375
1375
|
}
|
|
1376
1376
|
if (isSVG && prop2.indexOf(":") > -1) {
|
|
1377
1377
|
const [prefix, name] = prop2.split(":");
|
|
1378
|
-
const ns =
|
|
1378
|
+
const ns = _chunkR2WMNQGOcjs.SVGNamespace[prefix];
|
|
1379
1379
|
if (ns) {
|
|
1380
1380
|
if (value == null) node.removeAttributeNS(ns, name);
|
|
1381
1381
|
else node.setAttributeNS(ns, name, String(value));
|
|
@@ -1392,7 +1392,7 @@ function toPropertyName(name) {
|
|
|
1392
1392
|
}
|
|
1393
1393
|
function createConditional(condition, renderTrue, createElementFn, renderFalse, startOverride, endOverride, options) {
|
|
1394
1394
|
const trackBranchReads = _optionalChain([options, 'optionalAccess', _18 => _18.trackBranchReads]) === true;
|
|
1395
|
-
const hostRoot =
|
|
1395
|
+
const hostRoot = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
1396
1396
|
const useProvided = !!(startOverride && endOverride);
|
|
1397
1397
|
const markerOwnerDocument = _nullishCoalesce(_nullishCoalesce(_nullishCoalesce(_optionalChain([startOverride, 'optionalAccess', _19 => _19.ownerDocument]), () => ( _optionalChain([endOverride, 'optionalAccess', _20 => _20.ownerDocument]))), () => ( _optionalChain([hostRoot, 'optionalAccess', _21 => _21.ownerDocument]))), () => ( document));
|
|
1398
1398
|
const startMarker = useProvided ? startOverride : markerOwnerDocument.createComment("fict:cond:start");
|
|
@@ -1406,7 +1406,7 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1406
1406
|
let currentRoot = null;
|
|
1407
1407
|
let lastCondition = void 0;
|
|
1408
1408
|
let pendingRender = false;
|
|
1409
|
-
let initialHydrating =
|
|
1409
|
+
let initialHydrating = _chunkR2WMNQGOcjs.__fictIsHydrating.call(void 0, );
|
|
1410
1410
|
const collectBetween = () => {
|
|
1411
1411
|
const nodes = [];
|
|
1412
1412
|
let cursor = startMarker.nextSibling;
|
|
@@ -1416,7 +1416,7 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1416
1416
|
}
|
|
1417
1417
|
return nodes;
|
|
1418
1418
|
};
|
|
1419
|
-
const conditionMemo =
|
|
1419
|
+
const conditionMemo = _chunkR2WMNQGOcjs.computed.call(void 0, condition);
|
|
1420
1420
|
const runConditional = () => {
|
|
1421
1421
|
const cond = conditionMemo();
|
|
1422
1422
|
const parent = startMarker.parentNode;
|
|
@@ -1433,8 +1433,8 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1433
1433
|
currentNodes = collectBetween();
|
|
1434
1434
|
return;
|
|
1435
1435
|
}
|
|
1436
|
-
const root2 =
|
|
1437
|
-
const prev2 =
|
|
1436
|
+
const root2 = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
1437
|
+
const prev2 = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root2);
|
|
1438
1438
|
let handledError2 = false;
|
|
1439
1439
|
try {
|
|
1440
1440
|
withHydrationRange(
|
|
@@ -1442,7 +1442,7 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1442
1442
|
endMarker,
|
|
1443
1443
|
_nullishCoalesce(parent.ownerDocument, () => ( markerOwnerDocument)),
|
|
1444
1444
|
() => {
|
|
1445
|
-
const output = trackBranchReads ? render3() :
|
|
1445
|
+
const output = trackBranchReads ? render3() : _chunkR2WMNQGOcjs.untrack.call(void 0, render3);
|
|
1446
1446
|
if (output == null || output === false) {
|
|
1447
1447
|
return;
|
|
1448
1448
|
}
|
|
@@ -1451,21 +1451,21 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1451
1451
|
);
|
|
1452
1452
|
currentNodes = collectBetween();
|
|
1453
1453
|
} catch (err) {
|
|
1454
|
-
if (
|
|
1454
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root2)) {
|
|
1455
1455
|
handledError2 = true;
|
|
1456
|
-
|
|
1456
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root2);
|
|
1457
1457
|
return;
|
|
1458
1458
|
}
|
|
1459
|
-
if (
|
|
1459
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root2)) {
|
|
1460
1460
|
handledError2 = true;
|
|
1461
|
-
|
|
1461
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root2);
|
|
1462
1462
|
return;
|
|
1463
1463
|
}
|
|
1464
1464
|
throw err;
|
|
1465
1465
|
} finally {
|
|
1466
|
-
|
|
1466
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev2);
|
|
1467
1467
|
if (!handledError2) {
|
|
1468
|
-
|
|
1468
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root2);
|
|
1469
1469
|
currentRoot = root2;
|
|
1470
1470
|
} else {
|
|
1471
1471
|
currentRoot = null;
|
|
@@ -1486,10 +1486,10 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1486
1486
|
return;
|
|
1487
1487
|
}
|
|
1488
1488
|
let patched = false;
|
|
1489
|
-
const scratchRoot =
|
|
1490
|
-
const prevScratch =
|
|
1489
|
+
const scratchRoot = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
1490
|
+
const prevScratch = _chunkR2WMNQGOcjs.pushRoot.call(void 0, scratchRoot);
|
|
1491
1491
|
let handledPatchError = false;
|
|
1492
|
-
let scratchOutput
|
|
1492
|
+
let scratchOutput;
|
|
1493
1493
|
try {
|
|
1494
1494
|
const output = render3();
|
|
1495
1495
|
scratchOutput = output;
|
|
@@ -1505,34 +1505,32 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
1507
|
} catch (err) {
|
|
1508
|
-
if (
|
|
1508
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, scratchRoot)) {
|
|
1509
1509
|
handledPatchError = true;
|
|
1510
|
-
|
|
1511
|
-
}
|
|
1512
|
-
if (_chunkQNMYVXRLcjs.handleError.call(void 0, err, { source: "renderChild" }, scratchRoot)) {
|
|
1510
|
+
} else if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, scratchRoot)) {
|
|
1513
1511
|
handledPatchError = true;
|
|
1514
|
-
|
|
1512
|
+
} else {
|
|
1513
|
+
throw err;
|
|
1515
1514
|
}
|
|
1516
|
-
throw err;
|
|
1517
1515
|
} finally {
|
|
1518
|
-
|
|
1516
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prevScratch);
|
|
1519
1517
|
}
|
|
1520
1518
|
if (handledPatchError) {
|
|
1521
|
-
|
|
1519
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, scratchRoot);
|
|
1522
1520
|
return;
|
|
1523
1521
|
}
|
|
1524
1522
|
if (patched) {
|
|
1525
|
-
|
|
1523
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, scratchRoot);
|
|
1526
1524
|
return;
|
|
1527
1525
|
}
|
|
1528
1526
|
lastCondition = cond;
|
|
1529
1527
|
if (currentRoot) {
|
|
1530
|
-
|
|
1528
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
1531
1529
|
currentRoot = null;
|
|
1532
1530
|
}
|
|
1533
1531
|
removeNodes(currentNodes);
|
|
1534
1532
|
currentNodes = [];
|
|
1535
|
-
const prev2 =
|
|
1533
|
+
const prev2 = _chunkR2WMNQGOcjs.pushRoot.call(void 0, scratchRoot);
|
|
1536
1534
|
let handledError2 = false;
|
|
1537
1535
|
try {
|
|
1538
1536
|
if (scratchOutput == null || scratchOutput === false) {
|
|
@@ -1543,21 +1541,21 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1543
1541
|
insertNodesBefore(parent, nodes, endMarker);
|
|
1544
1542
|
currentNodes = nodes;
|
|
1545
1543
|
} catch (err) {
|
|
1546
|
-
if (
|
|
1544
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, scratchRoot)) {
|
|
1547
1545
|
handledError2 = true;
|
|
1548
|
-
|
|
1546
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, scratchRoot);
|
|
1549
1547
|
return;
|
|
1550
1548
|
}
|
|
1551
|
-
if (
|
|
1549
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, scratchRoot)) {
|
|
1552
1550
|
handledError2 = true;
|
|
1553
|
-
|
|
1551
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, scratchRoot);
|
|
1554
1552
|
return;
|
|
1555
1553
|
}
|
|
1556
1554
|
throw err;
|
|
1557
1555
|
} finally {
|
|
1558
|
-
|
|
1556
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev2);
|
|
1559
1557
|
if (!handledError2) {
|
|
1560
|
-
|
|
1558
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, scratchRoot);
|
|
1561
1559
|
currentRoot = scratchRoot;
|
|
1562
1560
|
} else {
|
|
1563
1561
|
currentRoot = null;
|
|
@@ -1567,7 +1565,7 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1567
1565
|
}
|
|
1568
1566
|
lastCondition = cond;
|
|
1569
1567
|
if (currentRoot) {
|
|
1570
|
-
|
|
1568
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
1571
1569
|
currentRoot = null;
|
|
1572
1570
|
}
|
|
1573
1571
|
removeNodes(currentNodes);
|
|
@@ -1576,11 +1574,11 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1576
1574
|
if (!render2) {
|
|
1577
1575
|
return;
|
|
1578
1576
|
}
|
|
1579
|
-
const root =
|
|
1580
|
-
const prev =
|
|
1577
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, hostRoot);
|
|
1578
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
1581
1579
|
let handledError = false;
|
|
1582
1580
|
try {
|
|
1583
|
-
const output = trackBranchReads ? render2() :
|
|
1581
|
+
const output = trackBranchReads ? render2() : _chunkR2WMNQGOcjs.untrack.call(void 0, render2);
|
|
1584
1582
|
if (output == null || output === false) {
|
|
1585
1583
|
return;
|
|
1586
1584
|
}
|
|
@@ -1589,28 +1587,28 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1589
1587
|
insertNodesBefore(parent, nodes, endMarker);
|
|
1590
1588
|
currentNodes = nodes;
|
|
1591
1589
|
} catch (err) {
|
|
1592
|
-
if (
|
|
1590
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root)) {
|
|
1593
1591
|
handledError = true;
|
|
1594
|
-
|
|
1592
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1595
1593
|
return;
|
|
1596
1594
|
}
|
|
1597
|
-
if (
|
|
1595
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root)) {
|
|
1598
1596
|
handledError = true;
|
|
1599
|
-
|
|
1597
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1600
1598
|
return;
|
|
1601
1599
|
}
|
|
1602
1600
|
throw err;
|
|
1603
1601
|
} finally {
|
|
1604
|
-
|
|
1602
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
1605
1603
|
if (!handledError) {
|
|
1606
|
-
|
|
1604
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
1607
1605
|
currentRoot = root;
|
|
1608
1606
|
} else {
|
|
1609
1607
|
currentRoot = null;
|
|
1610
1608
|
}
|
|
1611
1609
|
}
|
|
1612
1610
|
};
|
|
1613
|
-
const dispose =
|
|
1611
|
+
const dispose = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, runConditional);
|
|
1614
1612
|
return {
|
|
1615
1613
|
marker: fragment,
|
|
1616
1614
|
flush: () => {
|
|
@@ -1621,7 +1619,7 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1621
1619
|
dispose: () => {
|
|
1622
1620
|
dispose();
|
|
1623
1621
|
if (currentRoot) {
|
|
1624
|
-
|
|
1622
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
1625
1623
|
}
|
|
1626
1624
|
removeNodes(currentNodes);
|
|
1627
1625
|
currentNodes = [];
|
|
@@ -1632,29 +1630,29 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse,
|
|
|
1632
1630
|
}
|
|
1633
1631
|
function createShow(el, condition, displayValue) {
|
|
1634
1632
|
const originalDisplay = _nullishCoalesce(displayValue, () => ( el.style.display));
|
|
1635
|
-
|
|
1633
|
+
_chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1636
1634
|
el.style.display = condition() ? originalDisplay : "none";
|
|
1637
1635
|
});
|
|
1638
1636
|
}
|
|
1639
1637
|
function createPortal(container, render2, createElementFn) {
|
|
1640
|
-
const parentRoot =
|
|
1638
|
+
const parentRoot = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
1641
1639
|
const markerOwnerDocument = _nullishCoalesce(container.ownerDocument, () => ( document));
|
|
1642
1640
|
const marker = markerOwnerDocument.createComment("fict:portal");
|
|
1643
1641
|
container.appendChild(marker);
|
|
1644
1642
|
let currentNodes = [];
|
|
1645
1643
|
let currentRoot = null;
|
|
1646
|
-
const dispose =
|
|
1644
|
+
const dispose = _chunkR2WMNQGOcjs.createRenderEffect.call(void 0, () => {
|
|
1647
1645
|
if (currentRoot) {
|
|
1648
|
-
|
|
1646
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
1649
1647
|
currentRoot = null;
|
|
1650
1648
|
}
|
|
1651
1649
|
if (currentNodes.length > 0) {
|
|
1652
1650
|
removeNodes(currentNodes);
|
|
1653
1651
|
currentNodes = [];
|
|
1654
1652
|
}
|
|
1655
|
-
const root =
|
|
1653
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, parentRoot);
|
|
1656
1654
|
root.ownerDocument = _nullishCoalesce(_nullishCoalesce(container.ownerDocument, () => ( _optionalChain([parentRoot, 'optionalAccess', _30 => _30.ownerDocument]))), () => ( document));
|
|
1657
|
-
const prev =
|
|
1655
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
1658
1656
|
let handledError = false;
|
|
1659
1657
|
try {
|
|
1660
1658
|
const output = render2();
|
|
@@ -1667,23 +1665,23 @@ function createPortal(container, render2, createElementFn) {
|
|
|
1667
1665
|
currentNodes = nodes;
|
|
1668
1666
|
}
|
|
1669
1667
|
} catch (err) {
|
|
1670
|
-
if (
|
|
1668
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err, root)) {
|
|
1671
1669
|
handledError = true;
|
|
1672
|
-
|
|
1670
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1673
1671
|
currentNodes = [];
|
|
1674
1672
|
return;
|
|
1675
1673
|
}
|
|
1676
|
-
if (
|
|
1674
|
+
if (_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "renderChild" }, root)) {
|
|
1677
1675
|
handledError = true;
|
|
1678
|
-
|
|
1676
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
1679
1677
|
currentNodes = [];
|
|
1680
1678
|
return;
|
|
1681
1679
|
}
|
|
1682
1680
|
throw err;
|
|
1683
1681
|
} finally {
|
|
1684
|
-
|
|
1682
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
1685
1683
|
if (!handledError) {
|
|
1686
|
-
|
|
1684
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
1687
1685
|
currentRoot = root;
|
|
1688
1686
|
} else {
|
|
1689
1687
|
currentRoot = null;
|
|
@@ -1693,7 +1691,7 @@ function createPortal(container, render2, createElementFn) {
|
|
|
1693
1691
|
const portalDispose = () => {
|
|
1694
1692
|
dispose();
|
|
1695
1693
|
if (currentRoot) {
|
|
1696
|
-
|
|
1694
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, currentRoot);
|
|
1697
1695
|
}
|
|
1698
1696
|
if (currentNodes.length > 0) {
|
|
1699
1697
|
removeNodes(currentNodes);
|
|
@@ -1857,10 +1855,10 @@ function isExplicitReactiveFn2(value) {
|
|
|
1857
1855
|
function normalizePropsFunction(value) {
|
|
1858
1856
|
if (typeof value !== "function") return value;
|
|
1859
1857
|
if (value.length !== 0) return value;
|
|
1860
|
-
if (isPropGetter(value) ||
|
|
1858
|
+
if (isPropGetter(value) || _chunkR2WMNQGOcjs.isSignal.call(void 0, value) || _chunkR2WMNQGOcjs.isComputed.call(void 0, value) || isExplicitReactiveFn2(value)) {
|
|
1861
1859
|
return value;
|
|
1862
1860
|
}
|
|
1863
|
-
if (
|
|
1861
|
+
if (_chunkR2WMNQGOcjs.isEffect.call(void 0, value) || _chunkR2WMNQGOcjs.isEffectScope.call(void 0, value) || isNonReactiveFn2(value)) return value;
|
|
1864
1862
|
return markNonReactiveFn(value);
|
|
1865
1863
|
}
|
|
1866
1864
|
function createPropsProxy(props) {
|
|
@@ -1999,7 +1997,7 @@ function prop(getter, options) {
|
|
|
1999
1997
|
const fn = getter;
|
|
2000
1998
|
const unwrap2 = _optionalChain([options, 'optionalAccess', _38 => _38.unwrap]) !== false;
|
|
2001
1999
|
return __fictProp(
|
|
2002
|
-
|
|
2000
|
+
_chunkR2WMNQGOcjs.createMemo.call(void 0, () => {
|
|
2003
2001
|
const value = fn();
|
|
2004
2002
|
if (unwrap2 && isPropGetter(value)) {
|
|
2005
2003
|
return value();
|
|
@@ -2041,13 +2039,13 @@ function annotateComponentElements(elements, componentId, componentName) {
|
|
|
2041
2039
|
}
|
|
2042
2040
|
}
|
|
2043
2041
|
function render(view, container) {
|
|
2044
|
-
const root =
|
|
2042
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, );
|
|
2045
2043
|
root.ownerDocument = _nullishCoalesce(container.ownerDocument, () => ( document));
|
|
2046
|
-
const prev =
|
|
2044
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
2047
2045
|
let dom = void 0;
|
|
2048
2046
|
try {
|
|
2049
2047
|
const output = view();
|
|
2050
|
-
if (
|
|
2048
|
+
if (_chunkR2WMNQGOcjs.__fictIsHydrating.call(void 0, )) {
|
|
2051
2049
|
withHydration(container, () => {
|
|
2052
2050
|
dom = createElement(output);
|
|
2053
2051
|
});
|
|
@@ -2055,36 +2053,36 @@ function render(view, container) {
|
|
|
2055
2053
|
dom = createElement(output);
|
|
2056
2054
|
}
|
|
2057
2055
|
} finally {
|
|
2058
|
-
|
|
2056
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
2059
2057
|
}
|
|
2060
|
-
if (!
|
|
2058
|
+
if (!_chunkR2WMNQGOcjs.__fictIsHydrating.call(void 0, )) {
|
|
2061
2059
|
container.replaceChildren(dom);
|
|
2062
2060
|
}
|
|
2063
2061
|
container.setAttribute("data-fict-fine-grained", "1");
|
|
2064
|
-
|
|
2062
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
2065
2063
|
const teardown = () => {
|
|
2066
|
-
|
|
2064
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
2067
2065
|
container.innerHTML = "";
|
|
2068
2066
|
};
|
|
2069
2067
|
return teardown;
|
|
2070
2068
|
}
|
|
2071
2069
|
function hydrateComponent(view, container) {
|
|
2072
|
-
const root =
|
|
2070
|
+
const root = _chunkR2WMNQGOcjs.createRootContext.call(void 0, );
|
|
2073
2071
|
root.ownerDocument = _nullishCoalesce(container.ownerDocument, () => ( document));
|
|
2074
|
-
const prev =
|
|
2075
|
-
|
|
2072
|
+
const prev = _chunkR2WMNQGOcjs.pushRoot.call(void 0, root);
|
|
2073
|
+
_chunkR2WMNQGOcjs.__fictEnterHydration.call(void 0, );
|
|
2076
2074
|
try {
|
|
2077
2075
|
withHydration(container, () => {
|
|
2078
2076
|
view();
|
|
2079
2077
|
});
|
|
2080
2078
|
} finally {
|
|
2081
|
-
|
|
2082
|
-
|
|
2079
|
+
_chunkR2WMNQGOcjs.__fictExitHydration.call(void 0, );
|
|
2080
|
+
_chunkR2WMNQGOcjs.popRoot.call(void 0, prev);
|
|
2083
2081
|
}
|
|
2084
2082
|
container.setAttribute("data-fict-fine-grained", "1");
|
|
2085
|
-
|
|
2083
|
+
_chunkR2WMNQGOcjs.flushOnMount.call(void 0, root);
|
|
2086
2084
|
const teardown = () => {
|
|
2087
|
-
|
|
2085
|
+
_chunkR2WMNQGOcjs.destroyRoot.call(void 0, root);
|
|
2088
2086
|
};
|
|
2089
2087
|
return teardown;
|
|
2090
2088
|
}
|
|
@@ -2096,11 +2094,11 @@ function resolveNamespace(tagName, namespace) {
|
|
|
2096
2094
|
if (tagName === "math") return "mathml";
|
|
2097
2095
|
if (namespace === "mathml") return "mathml";
|
|
2098
2096
|
if (namespace === "svg") return "svg";
|
|
2099
|
-
if (isDev2 &&
|
|
2097
|
+
if (isDev2 && _chunkR2WMNQGOcjs.SVGElements.has(tagName)) return "svg";
|
|
2100
2098
|
return null;
|
|
2101
2099
|
}
|
|
2102
2100
|
function resolveOwnerDocument(ownerDocument) {
|
|
2103
|
-
return _nullishCoalesce(_nullishCoalesce(ownerDocument, () => ( _optionalChain([
|
|
2101
|
+
return _nullishCoalesce(_nullishCoalesce(ownerDocument, () => ( _optionalChain([_chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, ), 'optionalAccess', _41 => _41.ownerDocument]))), () => ( document));
|
|
2104
2102
|
}
|
|
2105
2103
|
function createElementWithContext(node, namespace, ownerDocument) {
|
|
2106
2104
|
if (node instanceof Node) {
|
|
@@ -2123,7 +2121,7 @@ function createElementWithContext(node, namespace, ownerDocument) {
|
|
|
2123
2121
|
if ("marker" in node) {
|
|
2124
2122
|
const handle = node;
|
|
2125
2123
|
if (typeof handle.dispose === "function") {
|
|
2126
|
-
|
|
2124
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, handle.dispose);
|
|
2127
2125
|
}
|
|
2128
2126
|
if (typeof handle.flush === "function") {
|
|
2129
2127
|
const runFlush = () => handle.flush && handle.flush();
|
|
@@ -2174,14 +2172,14 @@ function createElementWithContext(node, namespace, ownerDocument) {
|
|
|
2174
2172
|
}
|
|
2175
2173
|
});
|
|
2176
2174
|
const props = createPropsProxy(baseProps);
|
|
2177
|
-
const hook = isDev2 ?
|
|
2175
|
+
const hook = isDev2 ? _chunkR2WMNQGOcjs.getDevtoolsHook.call(void 0, ) : void 0;
|
|
2178
2176
|
const componentName = vnode.type.name || "Anonymous";
|
|
2179
|
-
const parentId = hook ?
|
|
2177
|
+
const parentId = hook ? _chunkR2WMNQGOcjs.__fictGetCurrentComponentId.call(void 0, ) : void 0;
|
|
2180
2178
|
const componentId = hook ? nextComponentId++ : void 0;
|
|
2181
2179
|
if (_optionalChain([hook, 'optionalAccess', _42 => _42.registerComponent]) && componentId !== void 0) {
|
|
2182
2180
|
hook.registerComponent(componentId, componentName, parentId);
|
|
2183
2181
|
}
|
|
2184
|
-
const ctx =
|
|
2182
|
+
const ctx = _chunkR2WMNQGOcjs.__fictPushContext.call(void 0, );
|
|
2185
2183
|
if (componentId !== void 0) {
|
|
2186
2184
|
ctx.componentId = componentId;
|
|
2187
2185
|
if (parentId !== void 0) {
|
|
@@ -2195,12 +2193,12 @@ function createElementWithContext(node, namespace, ownerDocument) {
|
|
|
2195
2193
|
_optionalChain([hook, 'access', _43 => _43.componentRender, 'optionalCall', _44 => _44(componentId)]);
|
|
2196
2194
|
}
|
|
2197
2195
|
if (hook && componentId !== void 0) {
|
|
2198
|
-
|
|
2196
|
+
_chunkR2WMNQGOcjs.onMount.call(void 0, () => {
|
|
2199
2197
|
_optionalChain([hook, 'access', _45 => _45.componentMount, 'optionalCall', _46 => _46(componentId, mountElements)]);
|
|
2200
2198
|
});
|
|
2201
|
-
|
|
2199
|
+
_chunkR2WMNQGOcjs.onCleanup.call(void 0, () => _optionalChain([hook, 'access', _47 => _47.componentUnmount, 'optionalCall', _48 => _48(componentId)]));
|
|
2202
2200
|
}
|
|
2203
|
-
if (
|
|
2201
|
+
if (_chunkR2WMNQGOcjs.__fictIsResumable.call(void 0, ) && !_chunkR2WMNQGOcjs.__fictIsHydrating.call(void 0, )) {
|
|
2204
2202
|
const content = createElementWithContext(rendered, namespace, ownerDocument);
|
|
2205
2203
|
const host = namespace === "svg" ? ownerDocument.createElementNS(SVG_NS, "fict-host") : namespace === "mathml" ? ownerDocument.createElementNS(MATHML_NS, "fict-host") : ownerDocument.createElement("fict-host");
|
|
2206
2204
|
host.setAttribute("data-fict-host", "");
|
|
@@ -2210,7 +2208,7 @@ function createElementWithContext(node, namespace, ownerDocument) {
|
|
|
2210
2208
|
}
|
|
2211
2209
|
const meta = vnode.type.__fictMeta;
|
|
2212
2210
|
const typeKey = (_nullishCoalesce(_optionalChain([meta, 'optionalAccess', _49 => _49.id]), () => ( vnode.type.name))) || "Anonymous";
|
|
2213
|
-
|
|
2211
|
+
_chunkR2WMNQGOcjs.__fictRegisterScope.call(void 0, ctx, host, typeKey, rawProps);
|
|
2214
2212
|
if (_optionalChain([meta, 'optionalAccess', _50 => _50.resume])) {
|
|
2215
2213
|
host.setAttribute("data-fict-h", meta.resume);
|
|
2216
2214
|
}
|
|
@@ -2232,13 +2230,13 @@ function createElementWithContext(node, namespace, ownerDocument) {
|
|
|
2232
2230
|
}
|
|
2233
2231
|
return componentRoot;
|
|
2234
2232
|
} catch (err) {
|
|
2235
|
-
if (
|
|
2233
|
+
if (_chunkR2WMNQGOcjs.handleSuspend.call(void 0, err)) {
|
|
2236
2234
|
return ownerDocument.createComment("fict:suspend");
|
|
2237
2235
|
}
|
|
2238
|
-
|
|
2236
|
+
_chunkR2WMNQGOcjs.handleError.call(void 0, err, { source: "render", componentName: vnode.type.name });
|
|
2239
2237
|
throw err;
|
|
2240
2238
|
} finally {
|
|
2241
|
-
|
|
2239
|
+
_chunkR2WMNQGOcjs.__fictPopContext.call(void 0, );
|
|
2242
2240
|
}
|
|
2243
2241
|
}
|
|
2244
2242
|
if (vnode.type === Fragment) {
|
|
@@ -2395,9 +2393,9 @@ function applyRef(el, value) {
|
|
|
2395
2393
|
if (typeof value === "function") {
|
|
2396
2394
|
const refFn = value;
|
|
2397
2395
|
refFn(el);
|
|
2398
|
-
const root =
|
|
2396
|
+
const root = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
2399
2397
|
if (root) {
|
|
2400
|
-
|
|
2398
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, () => {
|
|
2401
2399
|
refFn(null);
|
|
2402
2400
|
});
|
|
2403
2401
|
} else if (isDev2) {
|
|
@@ -2408,9 +2406,9 @@ function applyRef(el, value) {
|
|
|
2408
2406
|
} else if (value && typeof value === "object" && "current" in value) {
|
|
2409
2407
|
const refObj = value;
|
|
2410
2408
|
refObj.current = el;
|
|
2411
|
-
const root =
|
|
2409
|
+
const root = _chunkR2WMNQGOcjs.getCurrentRoot.call(void 0, );
|
|
2412
2410
|
if (root) {
|
|
2413
|
-
|
|
2411
|
+
_chunkR2WMNQGOcjs.registerRootCleanup.call(void 0, () => {
|
|
2414
2412
|
refObj.current = null;
|
|
2415
2413
|
});
|
|
2416
2414
|
} else if (isDev2) {
|
|
@@ -2484,7 +2482,7 @@ function applyProps(el, props, isSVG = false) {
|
|
|
2484
2482
|
}
|
|
2485
2483
|
continue;
|
|
2486
2484
|
}
|
|
2487
|
-
if (isDev2 &&
|
|
2485
|
+
if (isDev2 && _chunkR2WMNQGOcjs.ChildProperties.has(key) || key === "innerHTML" || key === "textContent" || key === "innerText" || key === "children") {
|
|
2488
2486
|
createAttributeBinding(el, key, value, setProperty);
|
|
2489
2487
|
continue;
|
|
2490
2488
|
}
|
|
@@ -2500,8 +2498,8 @@ function applyProps(el, props, isSVG = false) {
|
|
|
2500
2498
|
createAttributeBinding(el, key.slice(5), value, setProperty);
|
|
2501
2499
|
continue;
|
|
2502
2500
|
}
|
|
2503
|
-
const propAlias = !isSVG && isDev2 ?
|
|
2504
|
-
const isProperty = !isSVG ? isDev2 ?
|
|
2501
|
+
const propAlias = !isSVG && isDev2 ? _chunkR2WMNQGOcjs.getPropAlias.call(void 0, key, tagName) : void 0;
|
|
2502
|
+
const isProperty = !isSVG ? isDev2 ? _chunkR2WMNQGOcjs.Properties.has(key) : key in el : false;
|
|
2505
2503
|
if (propAlias || isProperty || isCE && !isSVG) {
|
|
2506
2504
|
const propName = propAlias || key;
|
|
2507
2505
|
if (isCE && !isProperty && !propAlias) {
|
|
@@ -2518,7 +2516,7 @@ function applyProps(el, props, isSVG = false) {
|
|
|
2518
2516
|
}
|
|
2519
2517
|
if (isSVG && key.indexOf(":") > -1) {
|
|
2520
2518
|
const [prefix, name] = key.split(":");
|
|
2521
|
-
const ns =
|
|
2519
|
+
const ns = _chunkR2WMNQGOcjs.SVGNamespace[prefix];
|
|
2522
2520
|
if (ns) {
|
|
2523
2521
|
createAttributeBinding(
|
|
2524
2522
|
el,
|
|
@@ -2661,4 +2659,4 @@ function eventNameFromProp(key) {
|
|
|
2661
2659
|
|
|
2662
2660
|
|
|
2663
2661
|
exports.startTransition = startTransition; exports.useTransition = useTransition; exports.useDeferredValue = useDeferredValue; exports.batch = batch2; exports.untrack = untrack2; exports.Fragment = Fragment; exports.withHydrationRange = withHydrationRange; exports.isHydratingActive = isHydratingActive; exports.toNodeArray = toNodeArray; exports.insertNodesBefore = insertNodesBefore; exports.removeNodes = removeNodes; exports.getSlotEnd = getSlotEnd; exports.resolvePath = resolvePath; exports.isReactive = isReactive; exports.nonReactive = nonReactive; exports.reactive = reactive; exports.unwrap = unwrap; exports.callEventHandler = callEventHandler; exports.createTextBinding = createTextBinding; exports.bindText = bindText; exports.setText = setText; exports.createAttributeBinding = createAttributeBinding; exports.bindAttribute = bindAttribute; exports.setAttr = setAttr; exports.bindProperty = bindProperty; exports.setProp = setProp; exports.createStyleBinding = createStyleBinding; exports.bindStyle = bindStyle; exports.setStyle = setStyle; exports.createClassBinding = createClassBinding; exports.bindClass = bindClass; exports.setClass = setClass; exports.classList = classList; exports.insert = insert; exports.insertBetween = insertBetween; exports.createChildBinding = createChildBinding; exports.delegateEvents = delegateEvents; exports.clearDelegatedEvents = clearDelegatedEvents; exports.addEventListener = addEventListener; exports.bindEvent = bindEvent; exports.bindRef = bindRef; exports.spread = spread; exports.assign = assign; exports.createConditional = createConditional; exports.createShow = createShow; exports.createPortal = createPortal; exports.__fictProp = __fictProp; exports.createPropsProxy = createPropsProxy; exports.__fictPropsRest = __fictPropsRest; exports.mergeProps = mergeProps; exports.keyed = keyed; exports.prop = prop; exports.render = render; exports.hydrateComponent = hydrateComponent; exports.createElement = createElement; exports.template = template;
|
|
2664
|
-
//# sourceMappingURL=chunk-
|
|
2662
|
+
//# sourceMappingURL=chunk-IEYESQRE.cjs.map
|