@getforma/core 1.0.7 → 1.0.9
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 +4 -4
- package/dist/{chunk-OUVOAYIO.js → chunk-3G7ET4O5.js} +33 -9
- package/dist/chunk-3G7ET4O5.js.map +1 -0
- package/dist/{chunk-DCTOXHPF.cjs → chunk-6FW5E54W.cjs} +38 -12
- package/dist/chunk-6FW5E54W.cjs.map +1 -0
- package/dist/{chunk-FJGTMWKY.js → chunk-AFRFF7XL.js} +67 -23
- package/dist/chunk-AFRFF7XL.js.map +1 -0
- package/dist/{chunk-OZCHIVAZ.js → chunk-HLM5BZZQ.js} +2 -2
- package/dist/chunk-HLM5BZZQ.js.map +1 -0
- package/dist/{chunk-3U57L2TY.cjs → chunk-QLPCVK7C.cjs} +2 -2
- package/dist/chunk-QLPCVK7C.cjs.map +1 -0
- package/dist/{chunk-SZSKW57A.cjs → chunk-T33QUD2Y.cjs} +102 -58
- package/dist/chunk-T33QUD2Y.cjs.map +1 -0
- package/dist/formajs-runtime-hardened.global.js.map +1 -1
- package/dist/formajs-runtime.global.js.map +1 -1
- package/dist/formajs.global.js +102 -26
- package/dist/formajs.global.js.map +1 -1
- package/dist/http.cjs +11 -11
- package/dist/http.js +2 -2
- package/dist/index.cjs +72 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +166 -11
- package/dist/index.d.ts +166 -11
- package/dist/index.js +16 -9
- package/dist/index.js.map +1 -1
- package/dist/{resource-Cd0cGOxS.d.ts → resource-BHsgURy0.d.ts} +3 -1
- package/dist/{resource-DK98lW5e.d.cts → resource-DeEzxUz6.d.cts} +3 -1
- package/dist/runtime-hardened.cjs.map +1 -1
- package/dist/runtime-hardened.js.map +1 -1
- package/dist/runtime.cjs +29 -29
- package/dist/runtime.js +3 -3
- package/dist/server.cjs +7 -7
- package/dist/server.d.cts +2 -2
- package/dist/server.d.ts +2 -2
- package/dist/server.js +2 -2
- package/dist/{signal-YlS1kgfh.d.cts → signal-C9v4akyJ.d.cts} +2 -0
- package/dist/{signal-YlS1kgfh.d.ts → signal-C9v4akyJ.d.ts} +2 -0
- package/dist/tc39-compat.cjs +3 -3
- package/dist/tc39-compat.d.cts +1 -1
- package/dist/tc39-compat.d.ts +1 -1
- package/dist/tc39-compat.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-3U57L2TY.cjs.map +0 -1
- package/dist/chunk-DCTOXHPF.cjs.map +0 -1
- package/dist/chunk-FJGTMWKY.js.map +0 -1
- package/dist/chunk-OUVOAYIO.js.map +0 -1
- package/dist/chunk-OZCHIVAZ.js.map +0 -1
- package/dist/chunk-SZSKW57A.cjs.map +0 -1
package/dist/http.cjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var chunk6FW5E54W_cjs = require('./chunk-6FW5E54W.cjs');
|
|
4
|
+
var chunkQLPCVK7C_cjs = require('./chunk-QLPCVK7C.cjs');
|
|
5
5
|
|
|
6
6
|
// src/http/fetch.ts
|
|
7
7
|
function createFetch(url, options) {
|
|
8
|
-
const [data, setData] =
|
|
9
|
-
const [error, setError] =
|
|
10
|
-
const [loading, setLoading] =
|
|
8
|
+
const [data, setData] = chunkQLPCVK7C_cjs.createSignal(null);
|
|
9
|
+
const [error, setError] = chunkQLPCVK7C_cjs.createSignal(null);
|
|
10
|
+
const [loading, setLoading] = chunkQLPCVK7C_cjs.createSignal(false);
|
|
11
11
|
let currentController = null;
|
|
12
12
|
function resolveURL() {
|
|
13
13
|
const raw = typeof url === "function" ? url() : url;
|
|
@@ -57,7 +57,7 @@ function createFetch(url, options) {
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
if (typeof url === "function") {
|
|
60
|
-
|
|
60
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
61
61
|
url();
|
|
62
62
|
void execute();
|
|
63
63
|
});
|
|
@@ -86,9 +86,9 @@ async function fetchJSON(url, options) {
|
|
|
86
86
|
|
|
87
87
|
// src/http/sse.ts
|
|
88
88
|
function createSSE(url, options) {
|
|
89
|
-
const [data, setData] =
|
|
90
|
-
const [error, setError] =
|
|
91
|
-
const [connected, setConnected] =
|
|
89
|
+
const [data, setData] = chunkQLPCVK7C_cjs.createSignal(null);
|
|
90
|
+
const [error, setError] = chunkQLPCVK7C_cjs.createSignal(null);
|
|
91
|
+
const [connected, setConnected] = chunkQLPCVK7C_cjs.createSignal(false);
|
|
92
92
|
const source = new EventSource(url, {
|
|
93
93
|
withCredentials: options?.withCredentials ?? false
|
|
94
94
|
});
|
|
@@ -142,8 +142,8 @@ function createWebSocket(url, options) {
|
|
|
142
142
|
const shouldReconnect = options?.reconnect ?? true;
|
|
143
143
|
const baseInterval = options?.reconnectInterval ?? 1e3;
|
|
144
144
|
const maxReconnects = options?.maxReconnects ?? 5;
|
|
145
|
-
const [data, setData] =
|
|
146
|
-
const [status, setStatus] =
|
|
145
|
+
const [data, setData] = chunkQLPCVK7C_cjs.createSignal(null);
|
|
146
|
+
const [status, setStatus] = chunkQLPCVK7C_cjs.createSignal("connecting");
|
|
147
147
|
const handlers = /* @__PURE__ */ new Set();
|
|
148
148
|
let socket = null;
|
|
149
149
|
let reconnectCount = 0;
|
package/dist/http.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { internalEffect } from './chunk-
|
|
2
|
-
import { createSignal } from './chunk-
|
|
1
|
+
import { internalEffect } from './chunk-3G7ET4O5.js';
|
|
2
|
+
import { createSignal } from './chunk-HLM5BZZQ.js';
|
|
3
3
|
|
|
4
4
|
// src/http/fetch.ts
|
|
5
5
|
function createFetch(url, options) {
|
package/dist/index.cjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
3
|
+
var chunkT33QUD2Y_cjs = require('./chunk-T33QUD2Y.cjs');
|
|
4
|
+
var chunk6FW5E54W_cjs = require('./chunk-6FW5E54W.cjs');
|
|
5
|
+
var chunkQLPCVK7C_cjs = require('./chunk-QLPCVK7C.cjs');
|
|
6
6
|
|
|
7
7
|
// src/dom/text.ts
|
|
8
8
|
function createText(value) {
|
|
9
9
|
if (typeof value === "function") {
|
|
10
10
|
const node = new Text("");
|
|
11
|
-
|
|
11
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
12
12
|
node.data = value();
|
|
13
13
|
});
|
|
14
14
|
return node;
|
|
@@ -24,12 +24,12 @@ function mount(component, container) {
|
|
|
24
24
|
}
|
|
25
25
|
let disposeRoot;
|
|
26
26
|
if (target.hasAttribute("data-forma-ssr")) {
|
|
27
|
-
|
|
27
|
+
chunk6FW5E54W_cjs.createUnownedRoot((dispose) => {
|
|
28
28
|
disposeRoot = dispose;
|
|
29
|
-
|
|
29
|
+
chunkT33QUD2Y_cjs.hydrateIsland(component, target);
|
|
30
30
|
});
|
|
31
31
|
} else {
|
|
32
|
-
const dom =
|
|
32
|
+
const dom = chunk6FW5E54W_cjs.createUnownedRoot((dispose) => {
|
|
33
33
|
disposeRoot = dispose;
|
|
34
34
|
return component();
|
|
35
35
|
});
|
|
@@ -55,7 +55,7 @@ function createSwitch(value, cases, fallback) {
|
|
|
55
55
|
const cache2 = /* @__PURE__ */ new Map();
|
|
56
56
|
let currentNode = null;
|
|
57
57
|
let currentMatch = UNSET;
|
|
58
|
-
const switchDispose =
|
|
58
|
+
const switchDispose = chunk6FW5E54W_cjs.internalEffect(() => {
|
|
59
59
|
const val = value();
|
|
60
60
|
if (val === currentMatch) return;
|
|
61
61
|
const DEBUG = typeof globalThis.__FORMA_DEBUG__ !== "undefined";
|
|
@@ -90,9 +90,9 @@ function createSwitch(value, cases, fallback) {
|
|
|
90
90
|
let entry = cache2.get(val);
|
|
91
91
|
if (!entry) {
|
|
92
92
|
let branchDispose;
|
|
93
|
-
const node =
|
|
93
|
+
const node = chunk6FW5E54W_cjs.createRoot((dispose) => {
|
|
94
94
|
branchDispose = dispose;
|
|
95
|
-
return
|
|
95
|
+
return chunk6FW5E54W_cjs.untrack(() => matchedCase.render());
|
|
96
96
|
});
|
|
97
97
|
entry = { node, dispose: branchDispose };
|
|
98
98
|
cache2.set(val, entry);
|
|
@@ -110,6 +110,13 @@ function createSwitch(value, cases, fallback) {
|
|
|
110
110
|
if (DEBUG) console.log("[forma:switch] inserted", currentNode.nodeName, "before end marker");
|
|
111
111
|
}
|
|
112
112
|
});
|
|
113
|
+
chunk6FW5E54W_cjs.registerDisposer(() => {
|
|
114
|
+
for (const entry of cache2.values()) {
|
|
115
|
+
entry.dispose();
|
|
116
|
+
}
|
|
117
|
+
cache2.clear();
|
|
118
|
+
currentNode = null;
|
|
119
|
+
});
|
|
113
120
|
fragment2.__switchDispose = () => {
|
|
114
121
|
switchDispose();
|
|
115
122
|
for (const entry of cache2.values()) {
|
|
@@ -135,7 +142,7 @@ function createPortal(children2, target) {
|
|
|
135
142
|
}
|
|
136
143
|
mountedNode = null;
|
|
137
144
|
};
|
|
138
|
-
|
|
145
|
+
chunk6FW5E54W_cjs.createEffect(() => {
|
|
139
146
|
const node = children2();
|
|
140
147
|
removeMountedNode();
|
|
141
148
|
mountedNode = node;
|
|
@@ -154,9 +161,9 @@ function createErrorBoundary(tryFn, catchFn) {
|
|
|
154
161
|
const fragment2 = document.createDocumentFragment();
|
|
155
162
|
fragment2.appendChild(startMarker);
|
|
156
163
|
fragment2.appendChild(endMarker);
|
|
157
|
-
const [retryCount, setRetryCount] =
|
|
164
|
+
const [retryCount, setRetryCount] = chunkQLPCVK7C_cjs.createSignal(0);
|
|
158
165
|
let currentNode = null;
|
|
159
|
-
|
|
166
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
160
167
|
retryCount();
|
|
161
168
|
const parent2 = startMarker.parentNode;
|
|
162
169
|
if (!parent2) return;
|
|
@@ -184,7 +191,7 @@ function createSuspense(fallback, children2) {
|
|
|
184
191
|
const fragment2 = document.createDocumentFragment();
|
|
185
192
|
fragment2.appendChild(startMarker);
|
|
186
193
|
fragment2.appendChild(endMarker);
|
|
187
|
-
const [pending, setPending] =
|
|
194
|
+
const [pending, setPending] = chunkQLPCVK7C_cjs.createSignal(0);
|
|
188
195
|
let currentNode = null;
|
|
189
196
|
let resolvedNode = null;
|
|
190
197
|
let fallbackNode = null;
|
|
@@ -196,13 +203,13 @@ function createSuspense(fallback, children2) {
|
|
|
196
203
|
setPending((p) => Math.max(0, p - 1));
|
|
197
204
|
}
|
|
198
205
|
};
|
|
199
|
-
|
|
206
|
+
chunk6FW5E54W_cjs.pushSuspenseContext(ctx);
|
|
200
207
|
try {
|
|
201
208
|
resolvedNode = children2();
|
|
202
209
|
} finally {
|
|
203
|
-
|
|
210
|
+
chunk6FW5E54W_cjs.popSuspenseContext();
|
|
204
211
|
}
|
|
205
|
-
|
|
212
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
206
213
|
const parent2 = startMarker.parentNode;
|
|
207
214
|
if (!parent2) return;
|
|
208
215
|
const isPending = pending() > 0;
|
|
@@ -269,7 +276,7 @@ function activateIslands(registry) {
|
|
|
269
276
|
const componentName = root.getAttribute("data-forma-component");
|
|
270
277
|
const hydrateFn = registry[componentName];
|
|
271
278
|
if (!hydrateFn) {
|
|
272
|
-
if (
|
|
279
|
+
if (chunk6FW5E54W_cjs.__DEV__) console.warn(`[forma] No hydrate function for island "${componentName}" (id=${id})`);
|
|
273
280
|
root.setAttribute("data-forma-status", "error");
|
|
274
281
|
continue;
|
|
275
282
|
}
|
|
@@ -325,13 +332,13 @@ function hydrateIslandRoot(root, id, componentName, hydrateFn, sharedProps) {
|
|
|
325
332
|
const props = loadIslandProps(root, id, sharedProps);
|
|
326
333
|
root.setAttribute("data-forma-status", "hydrating");
|
|
327
334
|
let activeRoot = root;
|
|
328
|
-
|
|
329
|
-
activeRoot =
|
|
335
|
+
chunk6FW5E54W_cjs.createUnownedRoot((dispose) => {
|
|
336
|
+
activeRoot = chunkT33QUD2Y_cjs.hydrateIsland(() => hydrateFn(root, props), root);
|
|
330
337
|
activeRoot.__formaDispose = dispose;
|
|
331
338
|
});
|
|
332
339
|
activeRoot.setAttribute("data-forma-status", "active");
|
|
333
340
|
} catch (err) {
|
|
334
|
-
if (
|
|
341
|
+
if (chunk6FW5E54W_cjs.__DEV__) console.error(`[forma] Island "${componentName}" (id=${id}) failed:`, err);
|
|
335
342
|
root.setAttribute("data-forma-status", "error");
|
|
336
343
|
}
|
|
337
344
|
}
|
|
@@ -380,14 +387,14 @@ function defineComponent(setupOrDef) {
|
|
|
380
387
|
try {
|
|
381
388
|
cb();
|
|
382
389
|
} catch (e) {
|
|
383
|
-
|
|
390
|
+
chunk6FW5E54W_cjs.reportError(e, "onUnmount");
|
|
384
391
|
}
|
|
385
392
|
}
|
|
386
393
|
for (const d of ctx.disposers) {
|
|
387
394
|
try {
|
|
388
395
|
d();
|
|
389
396
|
} catch (e) {
|
|
390
|
-
|
|
397
|
+
chunk6FW5E54W_cjs.reportError(e, "component disposer");
|
|
391
398
|
}
|
|
392
399
|
}
|
|
393
400
|
ctx.disposers.length = 0;
|
|
@@ -402,7 +409,7 @@ function defineComponent(setupOrDef) {
|
|
|
402
409
|
ctx.unmountCallbacks.push(cleanup2);
|
|
403
410
|
}
|
|
404
411
|
} catch (e) {
|
|
405
|
-
|
|
412
|
+
chunk6FW5E54W_cjs.reportError(e, "onMount");
|
|
406
413
|
}
|
|
407
414
|
}
|
|
408
415
|
return dom;
|
|
@@ -505,7 +512,7 @@ function createStore(initial) {
|
|
|
505
512
|
function getSignal(path, initialValue) {
|
|
506
513
|
let pair = signals.get(path);
|
|
507
514
|
if (!pair) {
|
|
508
|
-
pair =
|
|
515
|
+
pair = chunkQLPCVK7C_cjs.createSignal(initialValue);
|
|
509
516
|
signals.set(path, pair);
|
|
510
517
|
registerChild(path);
|
|
511
518
|
}
|
|
@@ -545,7 +552,7 @@ function createStore(initial) {
|
|
|
545
552
|
if (isArr && ARRAY_MUTATORS.has(key)) {
|
|
546
553
|
return (...args) => {
|
|
547
554
|
let result;
|
|
548
|
-
|
|
555
|
+
chunk6FW5E54W_cjs.batch(() => {
|
|
549
556
|
const rawArgs = args.map(
|
|
550
557
|
(a) => a != null && typeof a === "object" && a[RAW] ? a[RAW] : a
|
|
551
558
|
);
|
|
@@ -659,11 +666,11 @@ function createStore(initial) {
|
|
|
659
666
|
}
|
|
660
667
|
const rootProxy = wrap(initial, "");
|
|
661
668
|
function getCurrentSnapshot() {
|
|
662
|
-
return
|
|
669
|
+
return chunk6FW5E54W_cjs.untrack(() => deepClone(initial));
|
|
663
670
|
}
|
|
664
671
|
const setter = (partial) => {
|
|
665
672
|
const updates = typeof partial === "function" ? partial(getCurrentSnapshot()) : partial;
|
|
666
|
-
|
|
673
|
+
chunk6FW5E54W_cjs.batch(() => {
|
|
667
674
|
for (const key of Object.keys(updates)) {
|
|
668
675
|
rootProxy[key] = updates[key];
|
|
669
676
|
}
|
|
@@ -678,11 +685,11 @@ function createHistory(source, options) {
|
|
|
678
685
|
const maxLength = options?.maxLength ?? 100;
|
|
679
686
|
let _stack = [sourceGet()];
|
|
680
687
|
let _cursor = 0;
|
|
681
|
-
const [stackSignal, setStackSignal] =
|
|
682
|
-
const [cursorSignal, setCursorSignal] =
|
|
683
|
-
const [stackLenSignal, setStackLenSignal] =
|
|
688
|
+
const [stackSignal, setStackSignal] = chunkQLPCVK7C_cjs.createSignal([..._stack]);
|
|
689
|
+
const [cursorSignal, setCursorSignal] = chunkQLPCVK7C_cjs.createSignal(_cursor);
|
|
690
|
+
const [stackLenSignal, setStackLenSignal] = chunkQLPCVK7C_cjs.createSignal(_stack.length);
|
|
684
691
|
function syncSignals() {
|
|
685
|
-
|
|
692
|
+
chunk6FW5E54W_cjs.batch(() => {
|
|
686
693
|
setStackSignal([..._stack]);
|
|
687
694
|
setCursorSignal(_cursor);
|
|
688
695
|
setStackLenSignal(_stack.length);
|
|
@@ -690,7 +697,7 @@ function createHistory(source, options) {
|
|
|
690
697
|
}
|
|
691
698
|
let ignoreNext = false;
|
|
692
699
|
let isFirstRun = true;
|
|
693
|
-
|
|
700
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
694
701
|
const value = sourceGet();
|
|
695
702
|
if (isFirstRun) {
|
|
696
703
|
isFirstRun = false;
|
|
@@ -758,7 +765,7 @@ function persist(source, key, options) {
|
|
|
758
765
|
}
|
|
759
766
|
} catch {
|
|
760
767
|
}
|
|
761
|
-
|
|
768
|
+
chunk6FW5E54W_cjs.internalEffect(() => {
|
|
762
769
|
const value = sourceGet();
|
|
763
770
|
try {
|
|
764
771
|
const serialized = serialize(value);
|
|
@@ -1016,111 +1023,115 @@ function onMutation(el, handler, options) {
|
|
|
1016
1023
|
|
|
1017
1024
|
Object.defineProperty(exports, "Fragment", {
|
|
1018
1025
|
enumerable: true,
|
|
1019
|
-
get: function () { return
|
|
1026
|
+
get: function () { return chunkT33QUD2Y_cjs.Fragment; }
|
|
1020
1027
|
});
|
|
1021
1028
|
Object.defineProperty(exports, "cleanup", {
|
|
1022
1029
|
enumerable: true,
|
|
1023
|
-
get: function () { return
|
|
1030
|
+
get: function () { return chunkT33QUD2Y_cjs.cleanup; }
|
|
1024
1031
|
});
|
|
1025
1032
|
Object.defineProperty(exports, "createList", {
|
|
1026
1033
|
enumerable: true,
|
|
1027
|
-
get: function () { return
|
|
1034
|
+
get: function () { return chunkT33QUD2Y_cjs.createList; }
|
|
1028
1035
|
});
|
|
1029
1036
|
Object.defineProperty(exports, "createShow", {
|
|
1030
1037
|
enumerable: true,
|
|
1031
|
-
get: function () { return
|
|
1038
|
+
get: function () { return chunkT33QUD2Y_cjs.createShow; }
|
|
1032
1039
|
});
|
|
1033
1040
|
Object.defineProperty(exports, "fragment", {
|
|
1034
1041
|
enumerable: true,
|
|
1035
|
-
get: function () { return
|
|
1042
|
+
get: function () { return chunkT33QUD2Y_cjs.fragment; }
|
|
1036
1043
|
});
|
|
1037
1044
|
Object.defineProperty(exports, "h", {
|
|
1038
1045
|
enumerable: true,
|
|
1039
|
-
get: function () { return
|
|
1046
|
+
get: function () { return chunkT33QUD2Y_cjs.h; }
|
|
1040
1047
|
});
|
|
1041
1048
|
Object.defineProperty(exports, "hydrateIsland", {
|
|
1042
1049
|
enumerable: true,
|
|
1043
|
-
get: function () { return
|
|
1050
|
+
get: function () { return chunkT33QUD2Y_cjs.hydrateIsland; }
|
|
1044
1051
|
});
|
|
1045
1052
|
Object.defineProperty(exports, "reconcileList", {
|
|
1046
1053
|
enumerable: true,
|
|
1047
|
-
get: function () { return
|
|
1054
|
+
get: function () { return chunkT33QUD2Y_cjs.reconcileList; }
|
|
1048
1055
|
});
|
|
1049
1056
|
Object.defineProperty(exports, "batch", {
|
|
1050
1057
|
enumerable: true,
|
|
1051
|
-
get: function () { return
|
|
1058
|
+
get: function () { return chunk6FW5E54W_cjs.batch; }
|
|
1052
1059
|
});
|
|
1053
1060
|
Object.defineProperty(exports, "createEffect", {
|
|
1054
1061
|
enumerable: true,
|
|
1055
|
-
get: function () { return
|
|
1062
|
+
get: function () { return chunk6FW5E54W_cjs.createEffect; }
|
|
1056
1063
|
});
|
|
1057
1064
|
Object.defineProperty(exports, "createMemo", {
|
|
1058
1065
|
enumerable: true,
|
|
1059
|
-
get: function () { return
|
|
1066
|
+
get: function () { return chunk6FW5E54W_cjs.createMemo; }
|
|
1060
1067
|
});
|
|
1061
1068
|
Object.defineProperty(exports, "createReducer", {
|
|
1062
1069
|
enumerable: true,
|
|
1063
|
-
get: function () { return
|
|
1070
|
+
get: function () { return chunk6FW5E54W_cjs.createReducer; }
|
|
1064
1071
|
});
|
|
1065
1072
|
Object.defineProperty(exports, "createRef", {
|
|
1066
1073
|
enumerable: true,
|
|
1067
|
-
get: function () { return
|
|
1074
|
+
get: function () { return chunk6FW5E54W_cjs.createRef; }
|
|
1068
1075
|
});
|
|
1069
1076
|
Object.defineProperty(exports, "createResource", {
|
|
1070
1077
|
enumerable: true,
|
|
1071
|
-
get: function () { return
|
|
1078
|
+
get: function () { return chunk6FW5E54W_cjs.createResource; }
|
|
1072
1079
|
});
|
|
1073
1080
|
Object.defineProperty(exports, "createRoot", {
|
|
1074
1081
|
enumerable: true,
|
|
1075
|
-
get: function () { return
|
|
1082
|
+
get: function () { return chunk6FW5E54W_cjs.createRoot; }
|
|
1083
|
+
});
|
|
1084
|
+
Object.defineProperty(exports, "createUnownedRoot", {
|
|
1085
|
+
enumerable: true,
|
|
1086
|
+
get: function () { return chunk6FW5E54W_cjs.createUnownedRoot; }
|
|
1076
1087
|
});
|
|
1077
1088
|
Object.defineProperty(exports, "getBatchDepth", {
|
|
1078
1089
|
enumerable: true,
|
|
1079
|
-
get: function () { return
|
|
1090
|
+
get: function () { return chunk6FW5E54W_cjs.getBatchDepth; }
|
|
1080
1091
|
});
|
|
1081
1092
|
Object.defineProperty(exports, "isComputed", {
|
|
1082
1093
|
enumerable: true,
|
|
1083
|
-
get: function () { return
|
|
1094
|
+
get: function () { return chunk6FW5E54W_cjs.isComputed; }
|
|
1084
1095
|
});
|
|
1085
1096
|
Object.defineProperty(exports, "isEffect", {
|
|
1086
1097
|
enumerable: true,
|
|
1087
|
-
get: function () { return
|
|
1098
|
+
get: function () { return chunk6FW5E54W_cjs.isEffect; }
|
|
1088
1099
|
});
|
|
1089
1100
|
Object.defineProperty(exports, "isEffectScope", {
|
|
1090
1101
|
enumerable: true,
|
|
1091
|
-
get: function () { return
|
|
1102
|
+
get: function () { return chunk6FW5E54W_cjs.isEffectScope; }
|
|
1092
1103
|
});
|
|
1093
1104
|
Object.defineProperty(exports, "isSignal", {
|
|
1094
1105
|
enumerable: true,
|
|
1095
|
-
get: function () { return
|
|
1106
|
+
get: function () { return chunk6FW5E54W_cjs.isSignal; }
|
|
1096
1107
|
});
|
|
1097
1108
|
Object.defineProperty(exports, "on", {
|
|
1098
1109
|
enumerable: true,
|
|
1099
|
-
get: function () { return
|
|
1110
|
+
get: function () { return chunk6FW5E54W_cjs.on; }
|
|
1100
1111
|
});
|
|
1101
1112
|
Object.defineProperty(exports, "onCleanup", {
|
|
1102
1113
|
enumerable: true,
|
|
1103
|
-
get: function () { return
|
|
1114
|
+
get: function () { return chunk6FW5E54W_cjs.onCleanup; }
|
|
1104
1115
|
});
|
|
1105
1116
|
Object.defineProperty(exports, "onError", {
|
|
1106
1117
|
enumerable: true,
|
|
1107
|
-
get: function () { return
|
|
1118
|
+
get: function () { return chunk6FW5E54W_cjs.onError; }
|
|
1108
1119
|
});
|
|
1109
1120
|
Object.defineProperty(exports, "trigger", {
|
|
1110
1121
|
enumerable: true,
|
|
1111
|
-
get: function () { return
|
|
1122
|
+
get: function () { return chunk6FW5E54W_cjs.trigger; }
|
|
1112
1123
|
});
|
|
1113
1124
|
Object.defineProperty(exports, "untrack", {
|
|
1114
1125
|
enumerable: true,
|
|
1115
|
-
get: function () { return
|
|
1126
|
+
get: function () { return chunk6FW5E54W_cjs.untrack; }
|
|
1116
1127
|
});
|
|
1117
1128
|
Object.defineProperty(exports, "createComputed", {
|
|
1118
1129
|
enumerable: true,
|
|
1119
|
-
get: function () { return
|
|
1130
|
+
get: function () { return chunkQLPCVK7C_cjs.createComputed; }
|
|
1120
1131
|
});
|
|
1121
1132
|
Object.defineProperty(exports, "createSignal", {
|
|
1122
1133
|
enumerable: true,
|
|
1123
|
-
get: function () { return
|
|
1134
|
+
get: function () { return chunkQLPCVK7C_cjs.createSignal; }
|
|
1124
1135
|
});
|
|
1125
1136
|
exports.$ = $;
|
|
1126
1137
|
exports.$$ = $$;
|