voodoojs 0.7.0 → 0.10.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/README.md +1 -1
- package/dist/{chunk-4T2UIPWX.js → chunk-246ZC2JD.js} +4 -4
- package/dist/{chunk-YOZTHZS2.js → chunk-2UST7MKN.js} +3 -3
- package/dist/{chunk-II3XBOAP.js → chunk-4MJIS5RZ.js} +13 -13
- package/dist/{chunk-QO3I7VLJ.js → chunk-5D7TM3GL.js} +5 -5
- package/dist/{chunk-JB2YYNK6.js → chunk-5E3UZREN.js} +325 -64
- package/dist/{chunk-MMLUK37L.js → chunk-D4DNTWIS.js} +4 -3
- package/dist/{chunk-WSDB7K4X.js → chunk-DNIQLT66.js} +6 -6
- package/dist/{chunk-ZIWLQZZL.js → chunk-F3Z3HMZR.js} +4 -4
- package/dist/{chunk-GIWKGFGY.js → chunk-KQRWQPD6.js} +4 -4
- package/dist/{chunk-CYN6VLMD.js → chunk-RREZZ4FB.js} +4 -4
- package/dist/{chunk-E5T65CEI.js → chunk-WYSN4IOV.js} +5 -5
- package/dist/essential.cjs +317 -58
- package/dist/essential.d.cts +2 -2
- package/dist/essential.d.ts +2 -2
- package/dist/essential.js +10 -10
- package/dist/gpu.cjs +1 -1
- package/dist/gpu.js +10 -10
- package/dist/http.cjs +1 -1
- package/dist/http.js +5 -5
- package/dist/index.cjs +596 -76
- package/dist/index.d.cts +118 -4
- package/dist/index.d.ts +118 -4
- package/dist/index.js +282 -31
- package/dist/{query-CC-_z7v0.d.ts → query-Cf-7iibE.d.ts} +53 -2
- package/dist/{query-sEJXe_cO.d.cts → query-DiQAS73Q.d.cts} +53 -2
- package/dist/reactivity.cjs +1 -1
- package/dist/reactivity.js +2 -2
- package/dist/socket.cjs +303 -57
- package/dist/socket.js +9 -9
- package/dist/style-BSEVBI4K.js +5 -0
- package/dist/utils.cjs +1 -1
- package/dist/utils.js +2 -2
- package/dist/voodoo.core.js +322 -58
- package/dist/voodoo.core.min.js +18 -18
- package/dist/voodoo.full.js +599 -74
- package/dist/voodoo.full.min.js +61 -61
- package/dist/voodoo.js +322 -58
- package/dist/voodoo.min.js +25 -25
- package/package.json +127 -127
- package/dist/style-SLQ6PHZK.js +0 -5
package/dist/essential.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as core, V as VoodooCollection } from './query-
|
|
1
|
+
import { c as core, V as VoodooCollection } from './query-Cf-7iibE.js';
|
|
2
2
|
import './http.js';
|
|
3
3
|
import './utils.js';
|
|
4
4
|
import './reactivity.js';
|
|
@@ -13,7 +13,7 @@ import './reactivity.js';
|
|
|
13
13
|
* Excluded to keep the file small: charts, physics-based animations, router,
|
|
14
14
|
* internationalization, reactivity inspector, and the ready-to-use component
|
|
15
15
|
* library. For these, use `voodoo.full.min.js` or build a custom version with
|
|
16
|
-
* `npx
|
|
16
|
+
* `npx voodoojs-cli build`.
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
19
|
interface VoodooEssential extends Omit<typeof core, never> {
|
package/dist/essential.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { core, sound, hotkey, palette, registerMask, unmask, applyMask, masks, mask, clearErrors, showFieldError, showFormErrors, messages, serializeForm, validate, validator, dialog, prompt, confirm, alert, modal, VoodooCollection, fromHtml, ready2, query } from './chunk-
|
|
2
|
-
import './chunk-
|
|
3
|
-
import { magic } from './chunk-
|
|
4
|
-
import './chunk-
|
|
5
|
-
import './chunk-
|
|
6
|
-
import './chunk-
|
|
7
|
-
import './chunk-
|
|
8
|
-
import './chunk-
|
|
9
|
-
import './chunk-
|
|
1
|
+
import { core, sound, hotkey, palette, registerMask, unmask, applyMask, masks, mask, clearErrors, showFieldError, showFormErrors, messages, serializeForm, validate, validator, dialog, prompt, confirm, alert, modal, VoodooCollection, fromHtml, ready2, query } from './chunk-4MJIS5RZ.js';
|
|
2
|
+
import './chunk-DNIQLT66.js';
|
|
3
|
+
import { magic } from './chunk-5E3UZREN.js';
|
|
4
|
+
import './chunk-246ZC2JD.js';
|
|
5
|
+
import './chunk-RREZZ4FB.js';
|
|
6
|
+
import './chunk-F3Z3HMZR.js';
|
|
7
|
+
import './chunk-KQRWQPD6.js';
|
|
8
|
+
import './chunk-D4DNTWIS.js';
|
|
9
|
+
import './chunk-2UST7MKN.js';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* Voodoo.js v0.
|
|
12
|
+
* Voodoo.js v0.10.1
|
|
13
13
|
* JavaScript feels like magic.
|
|
14
14
|
* (c) 2026 Voodoo.js contributors. MIT License.
|
|
15
15
|
*/
|
package/dist/gpu.cjs
CHANGED
package/dist/gpu.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { supported, clock, shared, gpu, surface, effect, frameLoop, frame } from './chunk-
|
|
2
|
-
export { clock, compute, describeWgslType, destroy, effect, findEntry, flattenValue, frame, frameLoop, gpu, inferStruct, init, packStruct, reflectBindings, reflectEntries, reflectStructs, reflectWgsl, resetShared, shared, splitTopLevel, stripWgslComments, supported, surface, target, uniforms, writeField, writeStruct } from './chunk-
|
|
3
|
-
import { http } from './chunk-
|
|
4
|
-
import { originalAttributes, destroy } from './chunk-
|
|
5
|
-
import { handleError } from './chunk-
|
|
6
|
-
import { warn, describeElement } from './chunk-
|
|
7
|
-
import './chunk-
|
|
8
|
-
import { defineDirective } from './chunk-
|
|
9
|
-
import './chunk-
|
|
1
|
+
import { supported, clock, shared, gpu, surface, effect, frameLoop, frame } from './chunk-WYSN4IOV.js';
|
|
2
|
+
export { clock, compute, describeWgslType, destroy, effect, findEntry, flattenValue, frame, frameLoop, gpu, inferStruct, init, packStruct, reflectBindings, reflectEntries, reflectStructs, reflectWgsl, resetShared, shared, splitTopLevel, stripWgslComments, supported, surface, target, uniforms, writeField, writeStruct } from './chunk-WYSN4IOV.js';
|
|
3
|
+
import { http } from './chunk-DNIQLT66.js';
|
|
4
|
+
import { originalAttributes, destroy } from './chunk-5E3UZREN.js';
|
|
5
|
+
import { handleError } from './chunk-246ZC2JD.js';
|
|
6
|
+
import { warn, describeElement } from './chunk-RREZZ4FB.js';
|
|
7
|
+
import './chunk-F3Z3HMZR.js';
|
|
8
|
+
import { defineDirective } from './chunk-D4DNTWIS.js';
|
|
9
|
+
import './chunk-2UST7MKN.js';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* Voodoo.js v0.
|
|
12
|
+
* Voodoo.js v0.10.1
|
|
13
13
|
* JavaScript feels like magic.
|
|
14
14
|
* (c) 2026 Voodoo.js contributors. MIT License.
|
|
15
15
|
*/
|
package/dist/http.cjs
CHANGED
package/dist/http.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { HttpError, clearCache, flushOfflineQueue, http, request } from './chunk-
|
|
2
|
-
import './chunk-
|
|
3
|
-
import './chunk-
|
|
4
|
-
import './chunk-
|
|
5
|
-
import './chunk-
|
|
1
|
+
export { HttpError, clearCache, flushOfflineQueue, http, request } from './chunk-DNIQLT66.js';
|
|
2
|
+
import './chunk-RREZZ4FB.js';
|
|
3
|
+
import './chunk-F3Z3HMZR.js';
|
|
4
|
+
import './chunk-D4DNTWIS.js';
|
|
5
|
+
import './chunk-2UST7MKN.js';
|
|
6
6
|
//# sourceMappingURL=http.js.map
|
|
7
7
|
//# sourceMappingURL=http.js.map
|