@fictjs/runtime 0.0.14 → 0.1.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.
Files changed (40) hide show
  1. package/dist/advanced.cjs +8 -8
  2. package/dist/advanced.js +3 -3
  3. package/dist/{chunk-PMF6MWEV.cjs → chunk-7WAGAQLT.cjs} +45 -24
  4. package/dist/chunk-7WAGAQLT.cjs.map +1 -0
  5. package/dist/{chunk-RY4WDS6R.js → chunk-BWZFJXUI.js} +32 -11
  6. package/dist/chunk-BWZFJXUI.js.map +1 -0
  7. package/dist/{chunk-F3AIYQB7.js → chunk-CF3OHML2.js} +3 -3
  8. package/dist/chunk-CF3OHML2.js.map +1 -0
  9. package/dist/{chunk-GJTYOFMO.cjs → chunk-Q4EN6BXV.cjs} +16 -16
  10. package/dist/{chunk-GJTYOFMO.cjs.map → chunk-Q4EN6BXV.cjs.map} +1 -1
  11. package/dist/{chunk-IUZXKAAY.js → chunk-V62XZLDU.js} +2 -2
  12. package/dist/{chunk-624QY53A.cjs → chunk-YQ4IB7NC.cjs} +7 -7
  13. package/dist/chunk-YQ4IB7NC.cjs.map +1 -0
  14. package/dist/index.cjs +44 -44
  15. package/dist/index.d.cts +1 -1
  16. package/dist/index.d.ts +1 -1
  17. package/dist/index.dev.js +30 -9
  18. package/dist/index.dev.js.map +1 -1
  19. package/dist/index.js +2 -2
  20. package/dist/internal.cjs +44 -35
  21. package/dist/internal.cjs.map +1 -1
  22. package/dist/internal.d.cts +6 -1
  23. package/dist/internal.d.ts +6 -1
  24. package/dist/internal.js +12 -3
  25. package/dist/internal.js.map +1 -1
  26. package/dist/{props-ES0Ag_Wd.d.ts → props-BBi8Tkks.d.ts} +9 -2
  27. package/dist/{props-CrOMYbLv.d.cts → props-BfmSLuyp.d.cts} +9 -2
  28. package/package.json +1 -1
  29. package/src/binding.ts +4 -3
  30. package/src/constants.ts +2 -3
  31. package/src/dev-entry.ts +22 -0
  32. package/src/lifecycle.ts +11 -3
  33. package/src/list-helpers.ts +14 -3
  34. package/src/props.ts +29 -3
  35. package/src/scope.ts +1 -1
  36. package/dist/chunk-624QY53A.cjs.map +0 -1
  37. package/dist/chunk-F3AIYQB7.js.map +0 -1
  38. package/dist/chunk-PMF6MWEV.cjs.map +0 -1
  39. package/dist/chunk-RY4WDS6R.js.map +0 -1
  40. /package/dist/{chunk-IUZXKAAY.js.map → chunk-V62XZLDU.js.map} +0 -0
package/dist/advanced.cjs CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkGJTYOFMOcjs = require('./chunk-GJTYOFMO.cjs');
5
+ var _chunkQ4EN6BXVcjs = require('./chunk-Q4EN6BXV.cjs');
6
6
 
7
7
 
8
8
 
9
- var _chunk624QY53Acjs = require('./chunk-624QY53A.cjs');
9
+ var _chunkYQ4IB7NCcjs = require('./chunk-YQ4IB7NC.cjs');
10
10
 
11
11
 
12
12
 
@@ -23,13 +23,13 @@ var _chunk624QY53Acjs = require('./chunk-624QY53A.cjs');
23
23
 
24
24
 
25
25
 
26
- var _chunkPMF6MWEVcjs = require('./chunk-PMF6MWEV.cjs');
26
+ var _chunk7WAGAQLTcjs = require('./chunk-7WAGAQLT.cjs');
27
27
 
28
28
  // src/versioned-signal.ts
29
29
  function createVersionedSignal(initialValue, options) {
30
30
  const equals = _nullishCoalesce(_optionalChain([options, 'optionalAccess', _ => _.equals]), () => ( Object.is));
31
- const value = _chunkPMF6MWEVcjs.signal.call(void 0, initialValue);
32
- const version = _chunkPMF6MWEVcjs.signal.call(void 0, 0);
31
+ const value = _chunk7WAGAQLTcjs.signal.call(void 0, initialValue);
32
+ const version = _chunk7WAGAQLTcjs.signal.call(void 0, 0);
33
33
  const bumpVersion = () => {
34
34
  const next = version() + 1;
35
35
  version(next);
@@ -50,8 +50,8 @@ function createVersionedSignal(initialValue, options) {
50
50
  force: () => {
51
51
  bumpVersion();
52
52
  },
53
- peekVersion: () => _chunkPMF6MWEVcjs.untrack.call(void 0, () => version()),
54
- peekValue: () => _chunkPMF6MWEVcjs.untrack.call(void 0, () => value())
53
+ peekVersion: () => _chunk7WAGAQLTcjs.untrack.call(void 0, () => version()),
54
+ peekValue: () => _chunk7WAGAQLTcjs.untrack.call(void 0, () => value())
55
55
  };
56
56
  }
57
57
 
@@ -75,5 +75,5 @@ function createVersionedSignal(initialValue, options) {
75
75
 
76
76
 
77
77
 
78
- exports.createAttributeBinding = _chunkPMF6MWEVcjs.createAttributeBinding; exports.createChildBinding = _chunkPMF6MWEVcjs.createChildBinding; exports.createClassBinding = _chunkPMF6MWEVcjs.createClassBinding; exports.createContext = _chunkGJTYOFMOcjs.createContext; exports.createRenderEffect = _chunkPMF6MWEVcjs.createRenderEffect; exports.createScope = _chunk624QY53Acjs.createScope; exports.createSelector = _chunkPMF6MWEVcjs.createSelector; exports.createShow = _chunkPMF6MWEVcjs.createShow; exports.createSignal = _chunkPMF6MWEVcjs.signal; exports.createStyleBinding = _chunkPMF6MWEVcjs.createStyleBinding; exports.createTextBinding = _chunkPMF6MWEVcjs.createTextBinding; exports.createVersionedSignal = createVersionedSignal; exports.effectScope = _chunkPMF6MWEVcjs.effectScope; exports.getDevtoolsHook = _chunkPMF6MWEVcjs.getDevtoolsHook; exports.hasContext = _chunkGJTYOFMOcjs.hasContext; exports.isReactive = _chunkPMF6MWEVcjs.isReactive; exports.runInScope = _chunk624QY53Acjs.runInScope; exports.setCycleProtectionOptions = _chunkPMF6MWEVcjs.setCycleProtectionOptions; exports.unwrap = _chunkPMF6MWEVcjs.unwrap; exports.useContext = _chunkGJTYOFMOcjs.useContext;
78
+ exports.createAttributeBinding = _chunk7WAGAQLTcjs.createAttributeBinding; exports.createChildBinding = _chunk7WAGAQLTcjs.createChildBinding; exports.createClassBinding = _chunk7WAGAQLTcjs.createClassBinding; exports.createContext = _chunkQ4EN6BXVcjs.createContext; exports.createRenderEffect = _chunk7WAGAQLTcjs.createRenderEffect; exports.createScope = _chunkYQ4IB7NCcjs.createScope; exports.createSelector = _chunk7WAGAQLTcjs.createSelector; exports.createShow = _chunk7WAGAQLTcjs.createShow; exports.createSignal = _chunk7WAGAQLTcjs.signal; exports.createStyleBinding = _chunk7WAGAQLTcjs.createStyleBinding; exports.createTextBinding = _chunk7WAGAQLTcjs.createTextBinding; exports.createVersionedSignal = createVersionedSignal; exports.effectScope = _chunk7WAGAQLTcjs.effectScope; exports.getDevtoolsHook = _chunk7WAGAQLTcjs.getDevtoolsHook; exports.hasContext = _chunkQ4EN6BXVcjs.hasContext; exports.isReactive = _chunk7WAGAQLTcjs.isReactive; exports.runInScope = _chunkYQ4IB7NCcjs.runInScope; exports.setCycleProtectionOptions = _chunk7WAGAQLTcjs.setCycleProtectionOptions; exports.unwrap = _chunk7WAGAQLTcjs.unwrap; exports.useContext = _chunkQ4EN6BXVcjs.useContext;
79
79
  //# sourceMappingURL=advanced.cjs.map
package/dist/advanced.js CHANGED
@@ -2,11 +2,11 @@ import {
2
2
  createContext,
3
3
  hasContext,
4
4
  useContext
5
- } from "./chunk-IUZXKAAY.js";
5
+ } from "./chunk-V62XZLDU.js";
6
6
  import {
7
7
  createScope,
8
8
  runInScope
9
- } from "./chunk-F3AIYQB7.js";
9
+ } from "./chunk-CF3OHML2.js";
10
10
  import {
11
11
  createAttributeBinding,
12
12
  createChildBinding,
@@ -23,7 +23,7 @@ import {
23
23
  signal,
24
24
  untrack,
25
25
  unwrap
26
- } from "./chunk-RY4WDS6R.js";
26
+ } from "./chunk-BWZFJXUI.js";
27
27
 
28
28
  // src/versioned-signal.ts
29
29
  function createVersionedSignal(initialValue, options) {
@@ -213,8 +213,7 @@ function getPropAlias(prop2, tagName) {
213
213
  return a;
214
214
  }
215
215
  var $$EVENTS = "_$FICT_DELEGATE";
216
- var delegatedEvents = isDev ? DelegatedEventNames : [];
217
- var DelegatedEvents = new Set(delegatedEvents);
216
+ var DelegatedEvents = new Set(DelegatedEventNames);
218
217
  var svgElements = isDev ? [
219
218
  "altGlyph",
220
219
  "altGlyphDef",
@@ -512,7 +511,7 @@ var currentRoot;
512
511
  var currentEffectCleanups;
513
512
  var globalErrorHandlers = /* @__PURE__ */ new WeakMap();
514
513
  var globalSuspenseHandlers = /* @__PURE__ */ new WeakMap();
515
- function createRootContext(parent = currentRoot) {
514
+ function createRootContext(parent) {
516
515
  return { parent, cleanups: [], destroyCallbacks: [] };
517
516
  }
518
517
  function pushRoot(root) {
@@ -588,8 +587,9 @@ function destroyRoot(root) {
588
587
  globalSuspenseHandlers.delete(root);
589
588
  }
590
589
  }
591
- function createRoot(fn) {
592
- const root = createRootContext();
590
+ function createRoot(fn, options) {
591
+ const parent = _optionalChain([options, 'optionalAccess', _10 => _10.inherit]) ? currentRoot : void 0;
592
+ const root = createRootContext(parent);
593
593
  const prev = pushRoot(root);
594
594
  let value;
595
595
  try {
@@ -737,7 +737,7 @@ function handleSuspend(token, startRoot) {
737
737
  }
738
738
 
739
739
  // src/signal.ts
740
- var isDev4 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _10 => _10.env, 'optionalAccess', _11 => _11.NODE_ENV]) !== "production";
740
+ var isDev4 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _11 => _11.env, 'optionalAccess', _12 => _12.NODE_ENV]) !== "production";
741
741
  var Mutable = 1;
742
742
  var Watching = 2;
743
743
  var Running = 4;
@@ -1621,7 +1621,7 @@ function insertNodesBefore(parent, nodes, anchor) {
1621
1621
  }
1622
1622
  function removeNodes(nodes) {
1623
1623
  for (const node of nodes) {
1624
- _optionalChain([node, 'access', _12 => _12.parentNode, 'optionalAccess', _13 => _13.removeChild, 'call', _14 => _14(node)]);
1624
+ _optionalChain([node, 'access', _13 => _13.parentNode, 'optionalAccess', _14 => _14.removeChild, 'call', _15 => _15(node)]);
1625
1625
  }
1626
1626
  }
1627
1627
 
@@ -1672,7 +1672,7 @@ function untrack2(fn) {
1672
1672
  }
1673
1673
 
1674
1674
  // src/binding.ts
1675
- var isDev5 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _15 => _15.env, 'optionalAccess', _16 => _16.NODE_ENV]) !== "production";
1675
+ var isDev5 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _16 => _16.env, 'optionalAccess', _17 => _17.NODE_ENV]) !== "production";
1676
1676
  function isReactive(value) {
1677
1677
  return typeof value === "function" && value.length === 0;
1678
1678
  }
@@ -2020,7 +2020,7 @@ function insert(parent, getValue, markerOrCreateElement, createElementFn) {
2020
2020
  }
2021
2021
  clearCurrentNodes();
2022
2022
  if (ownsMarker) {
2023
- _optionalChain([marker, 'access', _17 => _17.parentNode, 'optionalAccess', _18 => _18.removeChild, 'call', _19 => _19(marker)]);
2023
+ _optionalChain([marker, 'access', _18 => _18.parentNode, 'optionalAccess', _19 => _19.removeChild, 'call', _20 => _20(marker)]);
2024
2024
  }
2025
2025
  };
2026
2026
  }
@@ -2071,7 +2071,7 @@ function createChildBinding(parent, getValue, createElementFn) {
2071
2071
  marker,
2072
2072
  dispose: () => {
2073
2073
  dispose();
2074
- _optionalChain([marker, 'access', _20 => _20.parentNode, 'optionalAccess', _21 => _21.removeChild, 'call', _22 => _22(marker)]);
2074
+ _optionalChain([marker, 'access', _21 => _21.parentNode, 'optionalAccess', _22 => _22.removeChild, 'call', _23 => _23(marker)]);
2075
2075
  }
2076
2076
  };
2077
2077
  }
@@ -2205,7 +2205,8 @@ function bindEvent(el, eventName, handler, options) {
2205
2205
  if (handler == null) return () => {
2206
2206
  };
2207
2207
  const rootRef = getCurrentRoot();
2208
- if (isDev5 && DelegatedEvents.has(eventName) && !options) {
2208
+ const shouldDelegate = options == null && DelegatedEvents.has(eventName);
2209
+ if (shouldDelegate) {
2209
2210
  const key = `$$${eventName}`;
2210
2211
  delegateEvents([eventName]);
2211
2212
  const resolveHandler = isReactive(handler) ? handler : () => handler;
@@ -2352,7 +2353,7 @@ function assignProp(node, prop2, value, prev, isSVG, skipRef, props) {
2352
2353
  }
2353
2354
  if (prop2.slice(0, 2) === "on") {
2354
2355
  const eventName = prop2.slice(2).toLowerCase();
2355
- const shouldDelegate = isDev5 && DelegatedEvents.has(eventName);
2356
+ const shouldDelegate = DelegatedEvents.has(eventName);
2356
2357
  if (!shouldDelegate && prev) {
2357
2358
  const handler = Array.isArray(prev) ? prev[0] : prev;
2358
2359
  node.removeEventListener(eventName, handler);
@@ -2502,8 +2503,8 @@ function createConditional(condition, renderTrue, createElementFn, renderFalse)
2502
2503
  }
2503
2504
  removeNodes(currentNodes);
2504
2505
  currentNodes = [];
2505
- _optionalChain([startMarker, 'access', _23 => _23.parentNode, 'optionalAccess', _24 => _24.removeChild, 'call', _25 => _25(startMarker)]);
2506
- _optionalChain([endMarker, 'access', _26 => _26.parentNode, 'optionalAccess', _27 => _27.removeChild, 'call', _28 => _28(endMarker)]);
2506
+ _optionalChain([startMarker, 'access', _24 => _24.parentNode, 'optionalAccess', _25 => _25.removeChild, 'call', _26 => _26(startMarker)]);
2507
+ _optionalChain([endMarker, 'access', _27 => _27.parentNode, 'optionalAccess', _28 => _28.removeChild, 'call', _29 => _29(endMarker)]);
2507
2508
  }
2508
2509
  };
2509
2510
  }
@@ -2573,7 +2574,7 @@ function createPortal(container, render2, createElementFn) {
2573
2574
  if (currentNodes.length > 0) {
2574
2575
  removeNodes(currentNodes);
2575
2576
  }
2576
- _optionalChain([marker, 'access', _29 => _29.parentNode, 'optionalAccess', _30 => _30.removeChild, 'call', _31 => _31(marker)]);
2577
+ _optionalChain([marker, 'access', _30 => _30.parentNode, 'optionalAccess', _31 => _31.removeChild, 'call', _32 => _32(marker)]);
2577
2578
  };
2578
2579
  if (parentRoot) {
2579
2580
  parentRoot.destroyCallbacks.push(portalDispose);
@@ -2590,7 +2591,7 @@ function createMemo(fn) {
2590
2591
  }
2591
2592
 
2592
2593
  // src/hooks.ts
2593
- var isDev6 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _32 => _32.env, 'optionalAccess', _33 => _33.NODE_ENV]) !== "production";
2594
+ var isDev6 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _33 => _33.env, 'optionalAccess', _34 => _34.NODE_ENV]) !== "production";
2594
2595
  var ctxStack = [];
2595
2596
  function assertRenderContext(ctx, hookName) {
2596
2597
  if (!ctx.rendering) {
@@ -2656,17 +2657,27 @@ function __fictRender(ctx, fn) {
2656
2657
  }
2657
2658
 
2658
2659
  // src/props.ts
2660
+ var PROP_GETTER_MARKER = Symbol.for("fict:prop-getter");
2659
2661
  var propGetters = /* @__PURE__ */ new WeakSet();
2660
2662
  var rawToProxy = /* @__PURE__ */ new WeakMap();
2661
2663
  var proxyToRaw = /* @__PURE__ */ new WeakMap();
2662
2664
  function __fictProp(getter) {
2663
2665
  if (typeof getter === "function" && getter.length === 0) {
2664
2666
  propGetters.add(getter);
2667
+ if (Object.isExtensible(getter)) {
2668
+ try {
2669
+ ;
2670
+ getter[PROP_GETTER_MARKER] = true;
2671
+ } catch (e11) {
2672
+ }
2673
+ }
2665
2674
  }
2666
2675
  return getter;
2667
2676
  }
2668
2677
  function isPropGetter(value) {
2669
- return typeof value === "function" && propGetters.has(value);
2678
+ if (typeof value !== "function") return false;
2679
+ const fn = value;
2680
+ return propGetters.has(fn) || fn[PROP_GETTER_MARKER] === true;
2670
2681
  }
2671
2682
  function createPropsProxy(props) {
2672
2683
  if (!props || typeof props !== "object") {
@@ -2790,17 +2801,27 @@ function mergeProps(...sources) {
2790
2801
  }
2791
2802
  });
2792
2803
  }
2793
- function prop(getter) {
2804
+ function prop(getter, options) {
2794
2805
  if (isPropGetter(getter)) {
2795
2806
  return getter;
2796
2807
  }
2797
- return __fictProp(createMemo(getter));
2808
+ const fn = getter;
2809
+ const unwrap2 = _optionalChain([options, 'optionalAccess', _35 => _35.unwrap]) !== false;
2810
+ return __fictProp(
2811
+ createMemo(() => {
2812
+ const value = fn();
2813
+ if (unwrap2 && isPropGetter(value)) {
2814
+ return value();
2815
+ }
2816
+ return value;
2817
+ })
2818
+ );
2798
2819
  }
2799
2820
 
2800
2821
  // src/dom.ts
2801
2822
  var SVG_NS = "http://www.w3.org/2000/svg";
2802
2823
  var MATHML_NS = "http://www.w3.org/1998/Math/MathML";
2803
- var isDev7 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _34 => _34.env, 'optionalAccess', _35 => _35.NODE_ENV]) !== "production";
2824
+ var isDev7 = true ? false : typeof process === "undefined" || _optionalChain([process, 'access', _36 => _36.env, 'optionalAccess', _37 => _37.NODE_ENV]) !== "production";
2804
2825
  function render(view, container) {
2805
2826
  const root = createRootContext();
2806
2827
  const prev = pushRoot(root);
@@ -2909,7 +2930,7 @@ function createElementWithContext(node, namespace) {
2909
2930
  }
2910
2931
  if (vnode.type === Fragment) {
2911
2932
  const frag = document.createDocumentFragment();
2912
- const children = _optionalChain([vnode, 'access', _36 => _36.props, 'optionalAccess', _37 => _37.children]);
2933
+ const children = _optionalChain([vnode, 'access', _38 => _38.props, 'optionalAccess', _39 => _39.children]);
2913
2934
  appendChildren(frag, children, namespace);
2914
2935
  return frag;
2915
2936
  }
@@ -2919,7 +2940,7 @@ function createElementWithContext(node, namespace) {
2919
2940
  applyProps(el, _nullishCoalesce(vnode.props, () => ( {})), resolvedNamespace === "svg");
2920
2941
  appendChildren(
2921
2942
  el,
2922
- _optionalChain([vnode, 'access', _38 => _38.props, 'optionalAccess', _39 => _39.children]),
2943
+ _optionalChain([vnode, 'access', _40 => _40.props, 'optionalAccess', _41 => _41.children]),
2923
2944
  tagName === "foreignObject" ? null : resolvedNamespace
2924
2945
  );
2925
2946
  return el;
@@ -2950,7 +2971,7 @@ function appendChildNode(parent, child, namespace) {
2950
2971
  }
2951
2972
  if (isBindingHandle(child)) {
2952
2973
  appendChildNode(parent, child.marker, namespace);
2953
- _optionalChain([child, 'access', _40 => _40.flush, 'optionalCall', _41 => _41()]);
2974
+ _optionalChain([child, 'access', _42 => _42.flush, 'optionalCall', _43 => _43()]);
2954
2975
  return;
2955
2976
  }
2956
2977
  if (typeof child === "function" && child.length === 0) {
@@ -3298,4 +3319,4 @@ function eventNameFromProp(key) {
3298
3319
 
3299
3320
 
3300
3321
  exports.BooleanAttributes = BooleanAttributes; exports.Properties = Properties; exports.ChildProperties = ChildProperties; exports.Aliases = Aliases; exports.getPropAlias = getPropAlias; exports.DelegatedEvents = DelegatedEvents; exports.SVGElements = SVGElements; exports.SVGNamespace = SVGNamespace; exports.UnitlessStyles = UnitlessStyles; exports.getDevtoolsHook = getDevtoolsHook; exports.setCycleProtectionOptions = setCycleProtectionOptions; exports.createRootContext = createRootContext; exports.pushRoot = pushRoot; exports.getCurrentRoot = getCurrentRoot; exports.popRoot = popRoot; exports.onMount = onMount; exports.onDestroy = onDestroy; exports.onCleanup = onCleanup; exports.flushOnMount = flushOnMount; exports.registerRootCleanup = registerRootCleanup; exports.destroyRoot = destroyRoot; exports.createRoot = createRoot; exports.registerErrorHandler = registerErrorHandler; exports.registerSuspenseHandler = registerSuspenseHandler; exports.handleError = handleError; exports.flush = flush; exports.signal = signal; exports.effectScope = effectScope; exports.batch = batch; exports.setActiveSub = setActiveSub; exports.untrack = untrack; exports.createSelector = createSelector; exports.createEffect = createEffect; exports.createRenderEffect = createRenderEffect; exports.Fragment = Fragment; exports.toNodeArray = toNodeArray; exports.insertNodesBefore = insertNodesBefore; exports.removeNodes = removeNodes; exports.startTransition = startTransition; exports.useTransition = useTransition; exports.useDeferredValue = useDeferredValue; exports.batch2 = batch2; exports.untrack2 = untrack2; exports.isReactive = isReactive; exports.unwrap = unwrap; exports.callEventHandler = callEventHandler; exports.createTextBinding = createTextBinding; exports.bindText = bindText; exports.createAttributeBinding = createAttributeBinding; exports.bindAttribute = bindAttribute; exports.bindProperty = bindProperty; exports.createStyleBinding = createStyleBinding; exports.bindStyle = bindStyle; exports.createClassBinding = createClassBinding; exports.bindClass = bindClass; exports.classList = classList; exports.insert = insert; 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.createMemo = createMemo; exports.__fictUseContext = __fictUseContext; exports.__fictPushContext = __fictPushContext; exports.__fictPopContext = __fictPopContext; exports.__fictResetContext = __fictResetContext; exports.__fictUseSignal = __fictUseSignal; exports.__fictUseMemo = __fictUseMemo; exports.__fictUseEffect = __fictUseEffect; exports.__fictRender = __fictRender; exports.__fictProp = __fictProp; exports.createPropsProxy = createPropsProxy; exports.__fictPropsRest = __fictPropsRest; exports.mergeProps = mergeProps; exports.prop = prop; exports.render = render; exports.createElement = createElement; exports.template = template;
3301
- //# sourceMappingURL=chunk-PMF6MWEV.cjs.map
3322
+ //# sourceMappingURL=chunk-7WAGAQLT.cjs.map