@fictjs/runtime 0.5.0 → 0.5.1
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/advanced.cjs +9 -9
- package/dist/advanced.js +4 -4
- package/dist/{chunk-GHUV2FLD.cjs → chunk-4ZPZM5IG.cjs} +8 -8
- package/dist/{chunk-GHUV2FLD.cjs.map → chunk-4ZPZM5IG.cjs.map} +1 -1
- package/dist/{chunk-KKKYW54Z.js → chunk-5OYBRKE4.js} +3 -3
- package/dist/{chunk-6SOPF5LZ.cjs → chunk-6RCEIWZL.cjs} +36 -19
- package/dist/chunk-6RCEIWZL.cjs.map +1 -0
- package/dist/{chunk-FKDMDAUR.js → chunk-7BO6P2KP.js} +36 -19
- package/dist/chunk-7BO6P2KP.js.map +1 -0
- package/dist/{chunk-5AA7HP4S.js → chunk-AR6NSCZM.js} +3 -3
- package/dist/{chunk-KYLNC4CD.cjs → chunk-LFMXNQZC.cjs} +17 -17
- package/dist/{chunk-KYLNC4CD.cjs.map → chunk-LFMXNQZC.cjs.map} +1 -1
- package/dist/{chunk-BQG7VEBY.js → chunk-RY5CY4CI.js} +2 -2
- package/dist/{chunk-TKWN42TA.cjs → chunk-WJHXPF7M.cjs} +156 -156
- package/dist/{chunk-TKWN42TA.cjs.map → chunk-WJHXPF7M.cjs.map} +1 -1
- package/dist/index.cjs +39 -39
- package/dist/index.dev.js +33 -18
- package/dist/index.dev.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/internal.cjs +54 -42
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +15 -3
- package/dist/internal.js.map +1 -1
- package/dist/loader.cjs +8 -8
- package/dist/loader.js +1 -1
- package/package.json +1 -1
- package/src/cycle-guard.ts +1 -1
- package/src/list-helpers.ts +19 -4
- package/src/signal.ts +47 -22
- package/dist/chunk-6SOPF5LZ.cjs.map +0 -1
- package/dist/chunk-FKDMDAUR.js.map +0 -1
- /package/dist/{chunk-KKKYW54Z.js.map → chunk-5OYBRKE4.js.map} +0 -0
- /package/dist/{chunk-5AA7HP4S.js.map → chunk-AR6NSCZM.js.map} +0 -0
- /package/dist/{chunk-BQG7VEBY.js.map → chunk-RY5CY4CI.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
createContext,
|
|
3
3
|
hasContext,
|
|
4
4
|
useContext
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-5OYBRKE4.js";
|
|
6
6
|
import {
|
|
7
7
|
Fragment,
|
|
8
8
|
batch,
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
untrack,
|
|
20
20
|
useDeferredValue,
|
|
21
21
|
useTransition
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-RY5CY4CI.js";
|
|
23
23
|
import {
|
|
24
24
|
createEffect,
|
|
25
25
|
createMemo,
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
registerErrorHandler,
|
|
38
38
|
registerSuspenseHandler,
|
|
39
39
|
signal
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-7BO6P2KP.js";
|
|
41
41
|
|
|
42
42
|
// src/ref.ts
|
|
43
43
|
function createRef() {
|
package/dist/internal.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk4ZPZM5IGcjs = require('./chunk-4ZPZM5IG.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -41,7 +41,7 @@ var _chunkGHUV2FLDcjs = require('./chunk-GHUV2FLD.cjs');
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
var
|
|
44
|
+
var _chunkWJHXPF7Mcjs = require('./chunk-WJHXPF7M.cjs');
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
|
|
@@ -102,7 +102,7 @@ var _chunkTKWN42TAcjs = require('./chunk-TKWN42TA.cjs');
|
|
|
102
102
|
|
|
103
103
|
|
|
104
104
|
|
|
105
|
-
var
|
|
105
|
+
var _chunk6RCEIWZLcjs = require('./chunk-6RCEIWZL.cjs');
|
|
106
106
|
|
|
107
107
|
// src/reconcile.ts
|
|
108
108
|
function reconcileArrays(parentNode, a, b) {
|
|
@@ -192,6 +192,7 @@ function reconcileArrays(parentNode, a, b) {
|
|
|
192
192
|
|
|
193
193
|
// src/list-helpers.ts
|
|
194
194
|
var isDev = typeof __DEV__ !== "undefined" ? __DEV__ : typeof process === "undefined" || _optionalChain([process, 'access', _7 => _7.env, 'optionalAccess', _8 => _8.NODE_ENV]) !== "production";
|
|
195
|
+
var isShadowRoot = (node) => typeof ShadowRoot !== "undefined" && node instanceof ShadowRoot;
|
|
195
196
|
function moveNodesBefore(parent, nodes, anchor) {
|
|
196
197
|
for (let i = nodes.length - 1; i >= 0; i--) {
|
|
197
198
|
const node = nodes[i];
|
|
@@ -231,7 +232,7 @@ var MAX_SAFE_VERSION = 9007199254740991;
|
|
|
231
232
|
function createVersionedSignalAccessor(initialValue) {
|
|
232
233
|
let current = initialValue;
|
|
233
234
|
let version = 0;
|
|
234
|
-
const track =
|
|
235
|
+
const track = _chunk6RCEIWZLcjs.signal.call(void 0, version);
|
|
235
236
|
function accessor(value) {
|
|
236
237
|
if (arguments.length === 0) {
|
|
237
238
|
track();
|
|
@@ -248,7 +249,7 @@ function createKeyedListContainer(startOverride, endOverride) {
|
|
|
248
249
|
const endMarker = _nullishCoalesce(endOverride, () => ( document.createComment("fict:list:end")));
|
|
249
250
|
const dispose = () => {
|
|
250
251
|
for (const block of container.blocks.values()) {
|
|
251
|
-
|
|
252
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, block.root);
|
|
252
253
|
}
|
|
253
254
|
container.blocks.clear();
|
|
254
255
|
container.nextBlocks.clear();
|
|
@@ -287,32 +288,32 @@ function createKeyedListContainer(startOverride, endOverride) {
|
|
|
287
288
|
}
|
|
288
289
|
function createKeyedBlock(key, item, index, render2, needsIndex = true, hostRoot) {
|
|
289
290
|
const itemSig = createVersionedSignalAccessor(item);
|
|
290
|
-
const indexSig = needsIndex ?
|
|
291
|
+
const indexSig = needsIndex ? _chunk6RCEIWZLcjs.signal.call(void 0, index) : ((next) => {
|
|
291
292
|
if (arguments.length === 0) return index;
|
|
292
293
|
index = next;
|
|
293
294
|
return index;
|
|
294
295
|
});
|
|
295
|
-
const root =
|
|
296
|
-
const prevRoot =
|
|
296
|
+
const root = _chunk6RCEIWZLcjs.createRootContext.call(void 0, hostRoot);
|
|
297
|
+
const prevRoot = _chunk6RCEIWZLcjs.pushRoot.call(void 0, root);
|
|
297
298
|
let nodes = [];
|
|
298
299
|
let scopeDispose;
|
|
299
|
-
const prevSub =
|
|
300
|
+
const prevSub = _chunk6RCEIWZLcjs.setActiveSub.call(void 0, void 0);
|
|
300
301
|
try {
|
|
301
|
-
scopeDispose =
|
|
302
|
+
scopeDispose = _chunk6RCEIWZLcjs.effectScope.call(void 0, () => {
|
|
302
303
|
const rendered = render2(itemSig, indexSig, key);
|
|
303
304
|
if (rendered instanceof Node || Array.isArray(rendered) && rendered.every((n) => n instanceof Node)) {
|
|
304
|
-
nodes =
|
|
305
|
+
nodes = _chunkWJHXPF7Mcjs.toNodeArray.call(void 0, rendered);
|
|
305
306
|
} else {
|
|
306
|
-
const element =
|
|
307
|
-
nodes =
|
|
307
|
+
const element = _chunkWJHXPF7Mcjs.createElement.call(void 0, rendered);
|
|
308
|
+
nodes = _chunkWJHXPF7Mcjs.toNodeArray.call(void 0, element);
|
|
308
309
|
}
|
|
309
310
|
});
|
|
310
311
|
if (scopeDispose) {
|
|
311
312
|
root.cleanups.push(scopeDispose);
|
|
312
313
|
}
|
|
313
314
|
} finally {
|
|
314
|
-
|
|
315
|
-
|
|
315
|
+
_chunk6RCEIWZLcjs.setActiveSub.call(void 0, prevSub);
|
|
316
|
+
_chunk6RCEIWZLcjs.popRoot.call(void 0, prevRoot);
|
|
316
317
|
}
|
|
317
318
|
return {
|
|
318
319
|
key,
|
|
@@ -425,7 +426,7 @@ function createKeyedList(getItems, keyFn, renderItem, needsIndex, startMarker, e
|
|
|
425
426
|
}
|
|
426
427
|
function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, startOverride, endOverride) {
|
|
427
428
|
const container = createKeyedListContainer(startOverride, endOverride);
|
|
428
|
-
const hostRoot =
|
|
429
|
+
const hostRoot = _chunk6RCEIWZLcjs.getCurrentRoot.call(void 0, );
|
|
429
430
|
const useProvided = !!(startOverride && endOverride);
|
|
430
431
|
const fragment = useProvided ? container.startMarker : document.createDocumentFragment();
|
|
431
432
|
if (!useProvided) {
|
|
@@ -437,7 +438,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
437
438
|
let connectObserver = null;
|
|
438
439
|
let effectStarted = false;
|
|
439
440
|
let startScheduled = false;
|
|
440
|
-
let initialHydrating =
|
|
441
|
+
let initialHydrating = _chunk6RCEIWZLcjs.__fictIsHydrating.call(void 0, );
|
|
441
442
|
const collectBetween = () => {
|
|
442
443
|
const nodes = [];
|
|
443
444
|
let cursor = container.startMarker.nextSibling;
|
|
@@ -455,21 +456,27 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
455
456
|
if ("isConnected" in parentNode && !parentNode.isConnected) return null;
|
|
456
457
|
return parentNode;
|
|
457
458
|
}
|
|
459
|
+
if (endParent && startParent && endParent === startParent && isShadowRoot(endParent)) {
|
|
460
|
+
const shadowRoot = endParent;
|
|
461
|
+
const host = shadowRoot.host;
|
|
462
|
+
if ("isConnected" in host && !host.isConnected) return null;
|
|
463
|
+
return shadowRoot;
|
|
464
|
+
}
|
|
458
465
|
return null;
|
|
459
466
|
};
|
|
460
467
|
const performDiff = () => {
|
|
461
468
|
if (disposed) return;
|
|
462
|
-
const isSSR =
|
|
469
|
+
const isSSR = _chunk6RCEIWZLcjs.__fictIsSSR.call(void 0, );
|
|
463
470
|
const parent = isSSR ? container.startMarker.parentNode : getConnectedParent();
|
|
464
471
|
if (!parent) return;
|
|
465
|
-
|
|
472
|
+
_chunkWJHXPF7Mcjs.batch.call(void 0, () => {
|
|
466
473
|
const oldBlocks = container.blocks;
|
|
467
474
|
const newBlocks = container.nextBlocks;
|
|
468
475
|
const prevOrderedBlocks = container.orderedBlocks;
|
|
469
476
|
const nextOrderedBlocks = container.nextOrderedBlocks;
|
|
470
477
|
const orderedIndexByKey = container.orderedIndexByKey;
|
|
471
478
|
const newItems = getItems();
|
|
472
|
-
if (initialHydrating &&
|
|
479
|
+
if (initialHydrating && _chunkWJHXPF7Mcjs.isHydratingActive.call(void 0, )) {
|
|
473
480
|
initialHydrating = false;
|
|
474
481
|
newBlocks.clear();
|
|
475
482
|
nextOrderedBlocks.length = 0;
|
|
@@ -482,7 +489,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
482
489
|
return;
|
|
483
490
|
}
|
|
484
491
|
const createdBlocks2 = [];
|
|
485
|
-
|
|
492
|
+
_chunkWJHXPF7Mcjs.withHydrationRange.call(void 0,
|
|
486
493
|
container.startMarker.nextSibling,
|
|
487
494
|
container.endMarker,
|
|
488
495
|
_nullishCoalesce(parent.ownerDocument, () => ( document)),
|
|
@@ -498,8 +505,8 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
498
505
|
}
|
|
499
506
|
const existing = newBlocks.get(key);
|
|
500
507
|
if (existing) {
|
|
501
|
-
|
|
502
|
-
|
|
508
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, existing.root);
|
|
509
|
+
_chunkWJHXPF7Mcjs.removeNodes.call(void 0, existing.nodes);
|
|
503
510
|
}
|
|
504
511
|
}
|
|
505
512
|
const block = createKeyedBlock(key, item, index, renderItem, needsIndex, hostRoot);
|
|
@@ -520,7 +527,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
520
527
|
container.nextNodes.length = 0;
|
|
521
528
|
for (const block of createdBlocks2) {
|
|
522
529
|
if (newBlocks.get(block.key) === block) {
|
|
523
|
-
|
|
530
|
+
_chunk6RCEIWZLcjs.flushOnMount.call(void 0, block.root);
|
|
524
531
|
}
|
|
525
532
|
}
|
|
526
533
|
return;
|
|
@@ -528,7 +535,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
528
535
|
if (newItems.length === 0) {
|
|
529
536
|
if (oldBlocks.size > 0) {
|
|
530
537
|
for (const block of oldBlocks.values()) {
|
|
531
|
-
|
|
538
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, block.root);
|
|
532
539
|
}
|
|
533
540
|
const range = document.createRange();
|
|
534
541
|
range.setStartAfter(container.startMarker);
|
|
@@ -609,8 +616,8 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
609
616
|
`[fict] Duplicate key "${String(key)}" detected in list rendering. Each item should have a unique key. The previous item with this key will be replaced.`
|
|
610
617
|
);
|
|
611
618
|
}
|
|
612
|
-
|
|
613
|
-
|
|
619
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, existingBlock.root);
|
|
620
|
+
_chunkWJHXPF7Mcjs.removeNodes.call(void 0, existingBlock.nodes);
|
|
614
621
|
}
|
|
615
622
|
block = createKeyedBlock(key, item, index, renderItem, needsIndex, hostRoot);
|
|
616
623
|
createdBlocks.push(block);
|
|
@@ -623,8 +630,8 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
623
630
|
hasDuplicateKey = true;
|
|
624
631
|
const prior = nextOrderedBlocks[position];
|
|
625
632
|
if (prior && prior !== resolvedBlock) {
|
|
626
|
-
|
|
627
|
-
|
|
633
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, prior.root);
|
|
634
|
+
_chunkWJHXPF7Mcjs.removeNodes.call(void 0, prior.nodes);
|
|
628
635
|
}
|
|
629
636
|
nextOrderedBlocks[position] = resolvedBlock;
|
|
630
637
|
} else {
|
|
@@ -662,7 +669,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
662
669
|
}
|
|
663
670
|
}
|
|
664
671
|
if (appendedNodes.length > 0) {
|
|
665
|
-
|
|
672
|
+
_chunkWJHXPF7Mcjs.insertNodesBefore.call(void 0, parent, appendedNodes, container.endMarker);
|
|
666
673
|
const currentNodes = container.currentNodes;
|
|
667
674
|
currentNodes.pop();
|
|
668
675
|
for (let i = 0; i < appendedNodes.length; i++) {
|
|
@@ -676,15 +683,15 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
676
683
|
container.nextOrderedBlocks = prevOrderedBlocks;
|
|
677
684
|
for (const block of createdBlocks) {
|
|
678
685
|
if (newBlocks.get(block.key) === block) {
|
|
679
|
-
|
|
686
|
+
_chunk6RCEIWZLcjs.flushOnMount.call(void 0, block.root);
|
|
680
687
|
}
|
|
681
688
|
}
|
|
682
689
|
return;
|
|
683
690
|
}
|
|
684
691
|
if (oldBlocks.size > 0) {
|
|
685
692
|
for (const block of oldBlocks.values()) {
|
|
686
|
-
|
|
687
|
-
|
|
693
|
+
_chunk6RCEIWZLcjs.destroyRoot.call(void 0, block.root);
|
|
694
|
+
_chunkWJHXPF7Mcjs.removeNodes.call(void 0, block.nodes);
|
|
688
695
|
}
|
|
689
696
|
oldBlocks.clear();
|
|
690
697
|
}
|
|
@@ -743,7 +750,7 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
743
750
|
container.nextOrderedBlocks = prevOrderedBlocks;
|
|
744
751
|
for (const block of createdBlocks) {
|
|
745
752
|
if (newBlocks.get(block.key) === block) {
|
|
746
|
-
|
|
753
|
+
_chunk6RCEIWZLcjs.flushOnMount.call(void 0, block.root);
|
|
747
754
|
}
|
|
748
755
|
}
|
|
749
756
|
});
|
|
@@ -754,19 +761,19 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
754
761
|
};
|
|
755
762
|
const ensureEffectStarted = () => {
|
|
756
763
|
if (disposed || effectStarted) return effectStarted;
|
|
757
|
-
const isSSR =
|
|
764
|
+
const isSSR = _chunk6RCEIWZLcjs.__fictIsSSR.call(void 0, );
|
|
758
765
|
const parent = isSSR ? container.startMarker.parentNode : getConnectedParent();
|
|
759
766
|
if (!parent) return false;
|
|
760
767
|
const start = () => {
|
|
761
|
-
effectDispose =
|
|
768
|
+
effectDispose = _chunk6RCEIWZLcjs.createRenderEffect.call(void 0, performDiff);
|
|
762
769
|
effectStarted = true;
|
|
763
770
|
};
|
|
764
771
|
if (hostRoot) {
|
|
765
|
-
const prev =
|
|
772
|
+
const prev = _chunk6RCEIWZLcjs.pushRoot.call(void 0, hostRoot);
|
|
766
773
|
try {
|
|
767
774
|
start();
|
|
768
775
|
} finally {
|
|
769
|
-
|
|
776
|
+
_chunk6RCEIWZLcjs.popRoot.call(void 0, prev);
|
|
770
777
|
}
|
|
771
778
|
} else {
|
|
772
779
|
start();
|
|
@@ -775,16 +782,21 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
775
782
|
};
|
|
776
783
|
const waitForConnection = () => {
|
|
777
784
|
if (connectObserver || typeof MutationObserver === "undefined") return;
|
|
785
|
+
const root = _nullishCoalesce(_optionalChain([container, 'access', _11 => _11.startMarker, 'access', _12 => _12.getRootNode, 'optionalCall', _13 => _13()]), () => ( document));
|
|
786
|
+
const shadowRoot = root && root.nodeType === 11 && isShadowRoot(root) ? root : null;
|
|
778
787
|
connectObserver = new MutationObserver(() => {
|
|
779
788
|
if (disposed) return;
|
|
780
789
|
if (getConnectedParent()) {
|
|
781
790
|
disconnectObserver();
|
|
782
791
|
if (ensureEffectStarted()) {
|
|
783
|
-
|
|
792
|
+
_chunk6RCEIWZLcjs.flush.call(void 0, );
|
|
784
793
|
}
|
|
785
794
|
}
|
|
786
795
|
});
|
|
787
796
|
connectObserver.observe(document, { childList: true, subtree: true });
|
|
797
|
+
if (shadowRoot) {
|
|
798
|
+
connectObserver.observe(shadowRoot, { childList: true, subtree: true });
|
|
799
|
+
}
|
|
788
800
|
};
|
|
789
801
|
const scheduleStart = () => {
|
|
790
802
|
if (startScheduled || disposed || effectStarted) return;
|
|
@@ -814,14 +826,14 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
814
826
|
if (disposed) return;
|
|
815
827
|
scheduleStart();
|
|
816
828
|
if (ensureEffectStarted()) {
|
|
817
|
-
|
|
829
|
+
_chunk6RCEIWZLcjs.flush.call(void 0, );
|
|
818
830
|
} else {
|
|
819
831
|
waitForConnection();
|
|
820
832
|
}
|
|
821
833
|
},
|
|
822
834
|
dispose: () => {
|
|
823
835
|
disposed = true;
|
|
824
|
-
_optionalChain([effectDispose, 'optionalCall',
|
|
836
|
+
_optionalChain([effectDispose, 'optionalCall', _14 => _14()]);
|
|
825
837
|
disconnectObserver();
|
|
826
838
|
container.dispose();
|
|
827
839
|
}
|
|
@@ -919,5 +931,5 @@ function createFineGrainedKeyedList(getItems, keyFn, renderItem, needsIndex, sta
|
|
|
919
931
|
|
|
920
932
|
|
|
921
933
|
|
|
922
|
-
exports.Aliases =
|
|
934
|
+
exports.Aliases = _chunk6RCEIWZLcjs.Aliases; exports.BooleanAttributes = _chunk6RCEIWZLcjs.BooleanAttributes; exports.ChildProperties = _chunk6RCEIWZLcjs.ChildProperties; exports.DelegatedEvents = _chunk6RCEIWZLcjs.DelegatedEvents; exports.Fragment = _chunkWJHXPF7Mcjs.Fragment; exports.Properties = _chunk6RCEIWZLcjs.Properties; exports.SVGElements = _chunk6RCEIWZLcjs.SVGElements; exports.SVGNamespace = _chunk6RCEIWZLcjs.SVGNamespace; exports.UnitlessStyles = _chunk6RCEIWZLcjs.UnitlessStyles; exports.__fictDisableResumable = _chunk6RCEIWZLcjs.__fictDisableResumable; exports.__fictDisableSSR = _chunk6RCEIWZLcjs.__fictDisableSSR; exports.__fictEnableResumable = _chunk6RCEIWZLcjs.__fictEnableResumable; exports.__fictEnableSSR = _chunk6RCEIWZLcjs.__fictEnableSSR; exports.__fictEnsureScope = _chunk6RCEIWZLcjs.__fictEnsureScope; exports.__fictEnterHydration = _chunk6RCEIWZLcjs.__fictEnterHydration; exports.__fictExitHydration = _chunk6RCEIWZLcjs.__fictExitHydration; exports.__fictGetResume = _chunk6RCEIWZLcjs.__fictGetResume; exports.__fictGetSSRScope = _chunk6RCEIWZLcjs.__fictGetSSRScope; exports.__fictGetScopeProps = _chunk6RCEIWZLcjs.__fictGetScopeProps; exports.__fictGetScopeRegistry = _chunk6RCEIWZLcjs.__fictGetScopeRegistry; exports.__fictIsHydrating = _chunk6RCEIWZLcjs.__fictIsHydrating; exports.__fictIsResumable = _chunk6RCEIWZLcjs.__fictIsResumable; exports.__fictIsSSR = _chunk6RCEIWZLcjs.__fictIsSSR; exports.__fictPopContext = _chunk6RCEIWZLcjs.__fictPopContext; exports.__fictPrepareContext = _chunk6RCEIWZLcjs.__fictPrepareContext; exports.__fictProp = _chunkWJHXPF7Mcjs.__fictProp; exports.__fictPropsRest = _chunkWJHXPF7Mcjs.__fictPropsRest; exports.__fictPushContext = _chunk6RCEIWZLcjs.__fictPushContext; exports.__fictQrl = _chunk6RCEIWZLcjs.__fictQrl; exports.__fictRegisterResume = _chunk6RCEIWZLcjs.__fictRegisterResume; exports.__fictRegisterScope = _chunk6RCEIWZLcjs.__fictRegisterScope; exports.__fictRender = _chunk6RCEIWZLcjs.__fictRender; exports.__fictResetContext = _chunk6RCEIWZLcjs.__fictResetContext; exports.__fictSerializeSSRState = _chunk6RCEIWZLcjs.__fictSerializeSSRState; exports.__fictSetSSRState = _chunk6RCEIWZLcjs.__fictSetSSRState; exports.__fictUseContext = _chunk6RCEIWZLcjs.__fictUseContext; exports.__fictUseEffect = _chunk6RCEIWZLcjs.__fictUseEffect; exports.__fictUseLexicalScope = _chunk6RCEIWZLcjs.__fictUseLexicalScope; exports.__fictUseMemo = _chunk6RCEIWZLcjs.__fictUseMemo; exports.__fictUseSignal = _chunk6RCEIWZLcjs.__fictUseSignal; exports.__resetReactiveState = _chunk6RCEIWZLcjs.__resetReactiveState; exports.addEventListener = _chunkWJHXPF7Mcjs.addEventListener; exports.assign = _chunkWJHXPF7Mcjs.assign; exports.bindAttribute = _chunkWJHXPF7Mcjs.bindAttribute; exports.bindClass = _chunkWJHXPF7Mcjs.bindClass; exports.bindEvent = _chunkWJHXPF7Mcjs.bindEvent; exports.bindProperty = _chunkWJHXPF7Mcjs.bindProperty; exports.bindRef = _chunkWJHXPF7Mcjs.bindRef; exports.bindStyle = _chunkWJHXPF7Mcjs.bindStyle; exports.bindText = _chunkWJHXPF7Mcjs.bindText; exports.callEventHandler = _chunkWJHXPF7Mcjs.callEventHandler; exports.classList = _chunkWJHXPF7Mcjs.classList; exports.clearDelegatedEvents = _chunkWJHXPF7Mcjs.clearDelegatedEvents; exports.createConditional = _chunkWJHXPF7Mcjs.createConditional; exports.createEffect = _chunk6RCEIWZLcjs.createEffect; exports.createElement = _chunkWJHXPF7Mcjs.createElement; exports.createKeyedList = createKeyedList; exports.createMemo = _chunk6RCEIWZLcjs.createMemo; exports.createPortal = _chunkWJHXPF7Mcjs.createPortal; exports.createPropsProxy = _chunkWJHXPF7Mcjs.createPropsProxy; exports.createRenderEffect = _chunk6RCEIWZLcjs.createRenderEffect; exports.createSelector = _chunk6RCEIWZLcjs.createSelector; exports.createSignal = _chunk6RCEIWZLcjs.signal; exports.createStore = _chunk6RCEIWZLcjs.createStore; exports.delegateEvents = _chunkWJHXPF7Mcjs.delegateEvents; exports.deserializeValue = _chunk6RCEIWZLcjs.deserializeValue; exports.getPropAlias = _chunk6RCEIWZLcjs.getPropAlias; exports.getSlotEnd = _chunkWJHXPF7Mcjs.getSlotEnd; exports.hydrateComponent = _chunkWJHXPF7Mcjs.hydrateComponent; exports.insert = _chunkWJHXPF7Mcjs.insert; exports.insertBetween = _chunkWJHXPF7Mcjs.insertBetween; exports.insertNodesBefore = _chunkWJHXPF7Mcjs.insertNodesBefore; exports.isNodeBetweenMarkers = isNodeBetweenMarkers; exports.isReactive = _chunkWJHXPF7Mcjs.isReactive; exports.isStoreProxy = _chunk6RCEIWZLcjs.isStoreProxy; exports.keyed = _chunkWJHXPF7Mcjs.keyed; exports.mergeProps = _chunkWJHXPF7Mcjs.mergeProps; exports.moveNodesBefore = moveNodesBefore; exports.onDestroy = _chunk6RCEIWZLcjs.onDestroy; exports.prop = _chunkWJHXPF7Mcjs.prop; exports.reconcileArrays = reconcileArrays; exports.removeNodes = _chunkWJHXPF7Mcjs.removeNodes; exports.render = _chunkWJHXPF7Mcjs.render; exports.resolvePath = _chunkWJHXPF7Mcjs.resolvePath; exports.runInScope = _chunk4ZPZM5IGcjs.runInScope; exports.serializeValue = _chunk6RCEIWZLcjs.serializeValue; exports.spread = _chunkWJHXPF7Mcjs.spread; exports.template = _chunkWJHXPF7Mcjs.template; exports.toNodeArray = _chunkWJHXPF7Mcjs.toNodeArray; exports.unwrap = _chunkWJHXPF7Mcjs.unwrap; exports.unwrapStore = _chunk6RCEIWZLcjs.unwrapStore;
|
|
923
935
|
//# sourceMappingURL=internal.cjs.map
|