voodoojs 0.4.6
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 +77 -0
- package/dist/chunk-234ZLC6W.js +401 -0
- package/dist/chunk-4HQEOXTK.js +10271 -0
- package/dist/chunk-5777LJVW.js +64 -0
- package/dist/chunk-5CKGDARU.js +1845 -0
- package/dist/chunk-A2UOVQBP.js +82 -0
- package/dist/chunk-E27NRARW.js +16 -0
- package/dist/chunk-JZIYRIY6.js +1196 -0
- package/dist/chunk-NNU6WOOU.js +641 -0
- package/dist/chunk-PQZEVFVZ.js +448 -0
- package/dist/chunk-RJUNPXQF.js +946 -0
- package/dist/chunk-U76IRJKH.js +72 -0
- package/dist/essential.cjs +13889 -0
- package/dist/essential.d.cts +24 -0
- package/dist/essential.d.ts +24 -0
- package/dist/essential.js +51 -0
- package/dist/gpu.cjs +2008 -0
- package/dist/gpu.d.cts +68 -0
- package/dist/gpu.d.ts +68 -0
- package/dist/gpu.js +273 -0
- package/dist/http.cjs +467 -0
- package/dist/http.d.cts +148 -0
- package/dist/http.d.ts +148 -0
- package/dist/http.js +7 -0
- package/dist/index-CaLD-0oh.d.cts +608 -0
- package/dist/index-CaLD-0oh.d.ts +608 -0
- package/dist/index-DTllqUtj.d.cts +261 -0
- package/dist/index-DTllqUtj.d.ts +261 -0
- package/dist/index.cjs +23063 -0
- package/dist/index.d.cts +1603 -0
- package/dist/index.d.ts +1603 -0
- package/dist/index.js +6924 -0
- package/dist/query-CKJ4oSpG.d.cts +1595 -0
- package/dist/query-DQFRmu3u.d.ts +1595 -0
- package/dist/reactivity.cjs +676 -0
- package/dist/reactivity.d.cts +188 -0
- package/dist/reactivity.d.ts +188 -0
- package/dist/reactivity.js +4 -0
- package/dist/socket.cjs +2685 -0
- package/dist/socket.d.cts +167 -0
- package/dist/socket.d.ts +167 -0
- package/dist/socket.js +238 -0
- package/dist/style-XEUAGGJK.js +5 -0
- package/dist/utils.cjs +397 -0
- package/dist/utils.d.cts +111 -0
- package/dist/utils.d.ts +111 -0
- package/dist/utils.js +4 -0
- package/dist/voodoo.core.js +8213 -0
- package/dist/voodoo.core.min.js +146 -0
- package/dist/voodoo.full.js +21193 -0
- package/dist/voodoo.full.min.js +1784 -0
- package/dist/voodoo.js +14185 -0
- package/dist/voodoo.min.js +420 -0
- package/package.json +127 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { c as core, V as VoodooCollection } from './query-CKJ4oSpG.cjs';
|
|
2
|
+
import './http.cjs';
|
|
3
|
+
import './utils.cjs';
|
|
4
|
+
import './reactivity.cjs';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Essential build of Voodoo.js, served by default on the CDN.
|
|
8
|
+
*
|
|
9
|
+
* Includes everything most pages need: reactivity, directives, components,
|
|
10
|
+
* chainable DOM, declarative HTTP, forms with validation and masks, interface,
|
|
11
|
+
* and notifications.
|
|
12
|
+
*
|
|
13
|
+
* Excluded to keep the file small: charts, physics-based animations, router,
|
|
14
|
+
* internationalization, reactivity inspector, and the ready-to-use component
|
|
15
|
+
* library. For these, use `voodoo.full.min.js` or build a custom version with
|
|
16
|
+
* `npx voodoo build`.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
interface VoodooEssential extends Omit<typeof core, never> {
|
|
20
|
+
(input?: unknown, context?: unknown): VoodooCollection;
|
|
21
|
+
}
|
|
22
|
+
declare const V: VoodooEssential;
|
|
23
|
+
|
|
24
|
+
export { V, type VoodooEssential, V as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { c as core, V as VoodooCollection } from './query-DQFRmu3u.js';
|
|
2
|
+
import './http.js';
|
|
3
|
+
import './utils.js';
|
|
4
|
+
import './reactivity.js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Essential build of Voodoo.js, served by default on the CDN.
|
|
8
|
+
*
|
|
9
|
+
* Includes everything most pages need: reactivity, directives, components,
|
|
10
|
+
* chainable DOM, declarative HTTP, forms with validation and masks, interface,
|
|
11
|
+
* and notifications.
|
|
12
|
+
*
|
|
13
|
+
* Excluded to keep the file small: charts, physics-based animations, router,
|
|
14
|
+
* internationalization, reactivity inspector, and the ready-to-use component
|
|
15
|
+
* library. For these, use `voodoo.full.min.js` or build a custom version with
|
|
16
|
+
* `npx voodoo build`.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
interface VoodooEssential extends Omit<typeof core, never> {
|
|
20
|
+
(input?: unknown, context?: unknown): VoodooCollection;
|
|
21
|
+
}
|
|
22
|
+
declare const V: VoodooEssential;
|
|
23
|
+
|
|
24
|
+
export { V, type VoodooEssential, V as default };
|
|
@@ -0,0 +1,51 @@
|
|
|
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-4HQEOXTK.js';
|
|
2
|
+
import './chunk-PQZEVFVZ.js';
|
|
3
|
+
import { magic } from './chunk-5CKGDARU.js';
|
|
4
|
+
import './chunk-NNU6WOOU.js';
|
|
5
|
+
import './chunk-A2UOVQBP.js';
|
|
6
|
+
import './chunk-234ZLC6W.js';
|
|
7
|
+
import './chunk-U76IRJKH.js';
|
|
8
|
+
import './chunk-5777LJVW.js';
|
|
9
|
+
import './chunk-E27NRARW.js';
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Voodoo.js v0.4.6
|
|
13
|
+
* JavaScript feels like magic.
|
|
14
|
+
* (c) 2026 Voodoo.js contributors. MIT License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
// src/essential.ts
|
|
18
|
+
var V = ((input, context) => query(input, context));
|
|
19
|
+
Object.assign(V, core, {
|
|
20
|
+
query,
|
|
21
|
+
ready: ready2,
|
|
22
|
+
fromHtml,
|
|
23
|
+
Collection: VoodooCollection,
|
|
24
|
+
modal,
|
|
25
|
+
alert,
|
|
26
|
+
confirm,
|
|
27
|
+
prompt,
|
|
28
|
+
dialog,
|
|
29
|
+
validator,
|
|
30
|
+
validate,
|
|
31
|
+
validateForm: validate,
|
|
32
|
+
serializeForm,
|
|
33
|
+
messages,
|
|
34
|
+
showFormErrors,
|
|
35
|
+
showFieldError,
|
|
36
|
+
clearErrors,
|
|
37
|
+
mask,
|
|
38
|
+
masks,
|
|
39
|
+
applyMask,
|
|
40
|
+
unmask,
|
|
41
|
+
registerMask,
|
|
42
|
+
palette,
|
|
43
|
+
hotkey,
|
|
44
|
+
sound,
|
|
45
|
+
magic
|
|
46
|
+
});
|
|
47
|
+
var essential_default = V;
|
|
48
|
+
|
|
49
|
+
export { V, essential_default as default };
|
|
50
|
+
//# sourceMappingURL=essential.js.map
|
|
51
|
+
//# sourceMappingURL=essential.js.map
|