xote 6.4.0 → 7.0.0-beta.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 +132 -33
- package/dist/RuntimeAttr.res-Cr5Qmz0i.js +1 -0
- package/dist/RuntimeAttr.res-DAZkL5CF.mjs +539 -0
- package/dist/RuntimeHydrationMarkers.res-C5-ieaOS.js +1 -0
- package/dist/RuntimeHydrationMarkers.res-DHikAvHr.mjs +6 -0
- package/dist/RuntimeJsxProp.res-A6N-qWoK.js +1 -0
- package/dist/RuntimeJsxProp.res-D3W5GXqT.mjs +64 -0
- package/dist/Stdlib_Array-1YCQzU_Y.mjs +22 -0
- package/dist/Stdlib_Array-BeBVUIuY.js +1 -0
- package/dist/View.res-C36--SJD.js +1 -0
- package/dist/View.res-SuqJrQPC.mjs +777 -0
- package/dist/client.cjs +1 -0
- package/dist/client.mjs +131 -0
- package/dist/hydration.cjs +1 -0
- package/dist/hydration.mjs +385 -0
- package/dist/mdx.cjs +1 -0
- package/dist/mdx.mjs +50 -0
- package/dist/router.cjs +1 -0
- package/dist/router.mjs +276 -0
- package/dist/ssr.cjs +17 -0
- package/dist/ssr.mjs +321 -0
- package/dist/xote.cjs +1 -17
- package/dist/xote.mjs +1456 -2467
- package/dist/xote.umd.js +1 -17
- package/package.json +42 -10
- package/rescript.json +2 -2
- package/src/Mdx.res +77 -0
- package/src/Mdx.res.mjs +93 -0
- package/src/Router.res +62 -8
- package/src/Router.res.mjs +60 -6
- package/src/RuntimeDom.res +7 -0
- package/src/RuntimeDom.res.mjs +8 -0
- package/src/RuntimeJsxProp.res +5 -8
- package/src/RuntimeJsxProp.res.mjs +9 -10
- package/src/RuntimeValue.res +35 -0
- package/src/RuntimeValue.res.mjs +67 -0
- package/src/SSRState.res +1 -4
- package/src/SSRState.res.mjs +4 -10
- package/src/View.res +224 -34
- package/src/View.res.mjs +306 -32
- package/src/jsx-dev-runtime.mjs +7 -0
- package/src/jsx-runtime.mjs +276 -0
- package/src/Node.res +0 -2
- package/src/Node.res.mjs +0 -82
- package/src/ReactiveProp.res +0 -2
- package/src/ReactiveProp.res.mjs +0 -19
package/src/Node.res
DELETED
package/src/Node.res.mjs
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
// Generated by ReScript, PLEASE EDIT WITH CARE
|
|
2
|
-
|
|
3
|
-
import * as View$Xote from "./View.res.mjs";
|
|
4
|
-
|
|
5
|
-
let DOM = View$Xote.DOM;
|
|
6
|
-
|
|
7
|
-
let Reactivity = View$Xote.Reactivity;
|
|
8
|
-
|
|
9
|
-
let Attributes = View$Xote.Attributes;
|
|
10
|
-
|
|
11
|
-
let attr = View$Xote.attr;
|
|
12
|
-
|
|
13
|
-
let signalAttr = View$Xote.signalAttr;
|
|
14
|
-
|
|
15
|
-
let computedAttr = View$Xote.computedAttr;
|
|
16
|
-
|
|
17
|
-
let Attr = View$Xote.Attr;
|
|
18
|
-
|
|
19
|
-
let Render = View$Xote.Render;
|
|
20
|
-
|
|
21
|
-
let text = View$Xote.text;
|
|
22
|
-
|
|
23
|
-
let signalText = View$Xote.signalText;
|
|
24
|
-
|
|
25
|
-
let signalInt = View$Xote.signalInt;
|
|
26
|
-
|
|
27
|
-
let signalFloat = View$Xote.signalFloat;
|
|
28
|
-
|
|
29
|
-
let int = View$Xote.int;
|
|
30
|
-
|
|
31
|
-
let float = View$Xote.float;
|
|
32
|
-
|
|
33
|
-
let fragment = View$Xote.fragment;
|
|
34
|
-
|
|
35
|
-
let signalFragment = View$Xote.signalFragment;
|
|
36
|
-
|
|
37
|
-
let each = View$Xote.each;
|
|
38
|
-
|
|
39
|
-
let list = View$Xote.list;
|
|
40
|
-
|
|
41
|
-
let eachWithKey = View$Xote.eachWithKey;
|
|
42
|
-
|
|
43
|
-
let keyedList = View$Xote.keyedList;
|
|
44
|
-
|
|
45
|
-
let element = View$Xote.element;
|
|
46
|
-
|
|
47
|
-
let $$null = View$Xote.$$null;
|
|
48
|
-
|
|
49
|
-
let empty = View$Xote.empty;
|
|
50
|
-
|
|
51
|
-
let mount = View$Xote.mount;
|
|
52
|
-
|
|
53
|
-
let mountById = View$Xote.mountById;
|
|
54
|
-
|
|
55
|
-
export {
|
|
56
|
-
DOM,
|
|
57
|
-
Reactivity,
|
|
58
|
-
Attributes,
|
|
59
|
-
attr,
|
|
60
|
-
signalAttr,
|
|
61
|
-
computedAttr,
|
|
62
|
-
Attr,
|
|
63
|
-
Render,
|
|
64
|
-
text,
|
|
65
|
-
signalText,
|
|
66
|
-
signalInt,
|
|
67
|
-
signalFloat,
|
|
68
|
-
int,
|
|
69
|
-
float,
|
|
70
|
-
fragment,
|
|
71
|
-
signalFragment,
|
|
72
|
-
each,
|
|
73
|
-
list,
|
|
74
|
-
eachWithKey,
|
|
75
|
-
keyedList,
|
|
76
|
-
element,
|
|
77
|
-
$$null,
|
|
78
|
-
empty,
|
|
79
|
-
mount,
|
|
80
|
-
mountById,
|
|
81
|
-
}
|
|
82
|
-
/* View-Xote Not a pure module */
|
package/src/ReactiveProp.res
DELETED
package/src/ReactiveProp.res.mjs
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
// Generated by ReScript, PLEASE EDIT WITH CARE
|
|
2
|
-
|
|
3
|
-
import * as Prop$Xote from "./Prop.res.mjs";
|
|
4
|
-
|
|
5
|
-
let get = Prop$Xote.get;
|
|
6
|
-
|
|
7
|
-
let $$static = Prop$Xote.$$static;
|
|
8
|
-
|
|
9
|
-
let reactive = Prop$Xote.reactive;
|
|
10
|
-
|
|
11
|
-
let signal = Prop$Xote.signal;
|
|
12
|
-
|
|
13
|
-
export {
|
|
14
|
-
get,
|
|
15
|
-
$$static,
|
|
16
|
-
reactive,
|
|
17
|
-
signal,
|
|
18
|
-
}
|
|
19
|
-
/* No side effect */
|