solid-js 1.8.7 → 1.8.8
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/dist/dev.cjs +30 -20
- package/dist/dev.js +327 -552
- package/dist/server.js +75 -170
- package/dist/solid.cjs +30 -20
- package/dist/solid.js +285 -479
- package/h/dist/h.js +8 -34
- package/h/jsx-runtime/dist/jsx.js +1 -1
- package/h/jsx-runtime/types/index.d.ts +8 -11
- package/h/jsx-runtime/types/jsx.d.ts +15 -1
- package/h/types/hyperscript.d.ts +11 -11
- package/html/dist/html.js +94 -216
- package/html/types/lit.d.ts +33 -47
- package/package.json +2 -2
- package/store/dist/dev.cjs +3 -2
- package/store/dist/dev.js +44 -115
- package/store/dist/server.js +8 -19
- package/store/dist/store.cjs +3 -2
- package/store/dist/store.js +41 -106
- package/store/types/index.d.ts +7 -21
- package/store/types/modifiers.d.ts +3 -6
- package/store/types/mutable.d.ts +2 -5
- package/store/types/server.d.ts +4 -12
- package/store/types/store.d.ts +61 -218
- package/types/index.d.ts +10 -75
- package/types/jsx.d.ts +15 -1
- package/types/reactive/array.d.ts +4 -12
- package/types/reactive/observable.d.ts +17 -25
- package/types/reactive/scheduler.d.ts +6 -9
- package/types/reactive/signal.d.ts +142 -231
- package/types/render/Suspense.d.ts +5 -5
- package/types/render/component.d.ts +33 -62
- package/types/render/flow.d.ts +31 -43
- package/types/render/hydration.d.ts +13 -13
- package/types/server/index.d.ts +2 -57
- package/types/server/reactive.d.ts +42 -73
- package/types/server/rendering.d.ts +96 -167
- package/universal/dist/dev.js +12 -28
- package/universal/dist/universal.js +12 -28
- package/universal/types/index.d.ts +1 -3
- package/universal/types/universal.d.ts +1 -0
- package/web/dist/dev.js +81 -620
- package/web/dist/server.cjs +7 -2
- package/web/dist/server.js +102 -179
- package/web/dist/storage.js +3 -3
- package/web/dist/web.js +80 -614
- package/web/types/client.d.ts +2 -2
- package/web/types/core.d.ts +1 -10
- package/web/types/index.d.ts +10 -27
- package/web/types/server-mock.d.ts +32 -47
package/h/dist/h.js
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
spread,
|
|
3
|
-
assign,
|
|
4
|
-
insert,
|
|
5
|
-
createComponent,
|
|
6
|
-
dynamicProperty,
|
|
7
|
-
SVGElements
|
|
8
|
-
} from "solid-js/web";
|
|
1
|
+
import { spread, assign, insert, createComponent, dynamicProperty, SVGElements } from 'solid-js/web';
|
|
9
2
|
|
|
10
3
|
const $ELEMENT = Symbol("hyper-element");
|
|
11
4
|
function createHyperScript(r) {
|
|
@@ -24,16 +17,9 @@ function createHyperScript(r) {
|
|
|
24
17
|
return ret;
|
|
25
18
|
function item(l) {
|
|
26
19
|
const type = typeof l;
|
|
27
|
-
if (l == null);
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
else e.appendChild(document.createTextNode(l));
|
|
31
|
-
} else if (
|
|
32
|
-
"number" === type ||
|
|
33
|
-
"boolean" === type ||
|
|
34
|
-
l instanceof Date ||
|
|
35
|
-
l instanceof RegExp
|
|
36
|
-
) {
|
|
20
|
+
if (l == null) ;else if ("string" === type) {
|
|
21
|
+
if (!e) parseClass(l);else e.appendChild(document.createTextNode(l));
|
|
22
|
+
} else if ("number" === type || "boolean" === type || l instanceof Date || l instanceof RegExp) {
|
|
37
23
|
e.appendChild(document.createTextNode(l.toString()));
|
|
38
24
|
} else if (Array.isArray(l)) {
|
|
39
25
|
for (let i = 0; i < l.length; i++) item(l[i]);
|
|
@@ -48,18 +34,12 @@ function createHyperScript(r) {
|
|
|
48
34
|
dynamic = true;
|
|
49
35
|
} else if (d[k].get) dynamic = true;
|
|
50
36
|
}
|
|
51
|
-
dynamic
|
|
52
|
-
? r.spread(e, l, e instanceof SVGElement, !!args.length)
|
|
53
|
-
: r.assign(e, l, e instanceof SVGElement, !!args.length);
|
|
37
|
+
dynamic ? r.spread(e, l, e instanceof SVGElement, !!args.length) : r.assign(e, l, e instanceof SVGElement, !!args.length);
|
|
54
38
|
} else if ("function" === type) {
|
|
55
39
|
if (!e) {
|
|
56
40
|
let props,
|
|
57
41
|
next = args[0];
|
|
58
|
-
if (
|
|
59
|
-
next == null ||
|
|
60
|
-
(typeof next === "object" && !Array.isArray(next) && !(next instanceof Element))
|
|
61
|
-
)
|
|
62
|
-
props = args.shift();
|
|
42
|
+
if (next == null || typeof next === "object" && !Array.isArray(next) && !(next instanceof Element)) props = args.shift();
|
|
63
43
|
props || (props = {});
|
|
64
44
|
if (args.length) {
|
|
65
45
|
props.children = args.length > 1 ? args : args[0];
|
|
@@ -75,8 +55,7 @@ function createHyperScript(r) {
|
|
|
75
55
|
return list;
|
|
76
56
|
};
|
|
77
57
|
r.dynamicProperty(props, k);
|
|
78
|
-
} else if (typeof d[k].value === "function" && !d[k].value.length)
|
|
79
|
-
r.dynamicProperty(props, k);
|
|
58
|
+
} else if (typeof d[k].value === "function" && !d[k].value.length) r.dynamicProperty(props, k);
|
|
80
59
|
}
|
|
81
60
|
e = r.createComponent(l, props);
|
|
82
61
|
args = [];
|
|
@@ -93,12 +72,7 @@ function createHyperScript(r) {
|
|
|
93
72
|
const v = m[i],
|
|
94
73
|
s = v.substring(1, v.length);
|
|
95
74
|
if (!v) continue;
|
|
96
|
-
if (!e)
|
|
97
|
-
e = r.SVGElements.has(v)
|
|
98
|
-
? document.createElementNS("http://www.w3.org/2000/svg", v)
|
|
99
|
-
: document.createElement(v);
|
|
100
|
-
else if (v[0] === ".") e.classList.add(s);
|
|
101
|
-
else if (v[0] === "#") e.setAttribute("id", s);
|
|
75
|
+
if (!e) e = r.SVGElements.has(v) ? document.createElementNS("http://www.w3.org/2000/svg", v) : document.createElement(v);else if (v[0] === ".") e.classList.add(s);else if (v[0] === "#") e.setAttribute("id", s);
|
|
102
76
|
}
|
|
103
77
|
}
|
|
104
78
|
function detectMultiExpression(list) {
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
export type { JSX } from "./jsx";
|
|
2
2
|
import type { JSX } from "./jsx";
|
|
3
|
-
declare function Fragment(props: {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
| (Node & {
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
})[];
|
|
3
|
+
declare function Fragment(props: {
|
|
4
|
+
children: JSX.Element;
|
|
5
|
+
}): JSX.Element;
|
|
6
|
+
declare function jsx(type: any, props: any): () => (Node & {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}) | (Node & {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
})[];
|
|
14
11
|
export { jsx, jsx as jsxs, jsx as jsxDEV, Fragment };
|
|
@@ -656,6 +656,7 @@ export namespace JSX {
|
|
|
656
656
|
about?: FunctionMaybe<string>;
|
|
657
657
|
datatype?: FunctionMaybe<string>;
|
|
658
658
|
inlist?: FunctionMaybe<any>;
|
|
659
|
+
popover?: FunctionMaybe<boolean | "manual" | "auto">;
|
|
659
660
|
prefix?: FunctionMaybe<string>;
|
|
660
661
|
property?: FunctionMaybe<string>;
|
|
661
662
|
resource?: FunctionMaybe<string>;
|
|
@@ -730,6 +731,8 @@ export namespace JSX {
|
|
|
730
731
|
formmethod?: FunctionMaybe<HTMLFormMethod>;
|
|
731
732
|
formnovalidate?: FunctionMaybe<boolean>;
|
|
732
733
|
formtarget?: FunctionMaybe<string>;
|
|
734
|
+
popovertarget?: FunctionMaybe<string>;
|
|
735
|
+
popovertargetaction?: FunctionMaybe<"hide" | "show" | "toggle">;
|
|
733
736
|
name?: FunctionMaybe<string>;
|
|
734
737
|
type?: FunctionMaybe<"submit" | "reset" | "button">;
|
|
735
738
|
value?: FunctionMaybe<string>;
|
|
@@ -738,6 +741,8 @@ export namespace JSX {
|
|
|
738
741
|
formMethod?: FunctionMaybe<HTMLFormMethod>;
|
|
739
742
|
formNoValidate?: FunctionMaybe<boolean>;
|
|
740
743
|
formTarget?: FunctionMaybe<string>;
|
|
744
|
+
popoverTarget?: FunctionMaybe<string>;
|
|
745
|
+
popoverTargetAction?: FunctionMaybe<"hide" | "show" | "toggle">;
|
|
741
746
|
}
|
|
742
747
|
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
743
748
|
width?: FunctionMaybe<number | string>;
|
|
@@ -1828,7 +1833,16 @@ export namespace JSX {
|
|
|
1828
1833
|
NewViewportSVGAttributes<T>,
|
|
1829
1834
|
ExternalResourceSVGAttributes,
|
|
1830
1835
|
StylableSVGAttributes,
|
|
1831
|
-
FitToViewBoxSVGAttributes {
|
|
1836
|
+
FitToViewBoxSVGAttributes {
|
|
1837
|
+
width?: FunctionMaybe<number | string>;
|
|
1838
|
+
height?: FunctionMaybe<number | string>;
|
|
1839
|
+
preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio>;
|
|
1840
|
+
refX?: FunctionMaybe<number | string>;
|
|
1841
|
+
refY?: FunctionMaybe<number | string>;
|
|
1842
|
+
viewBox?: FunctionMaybe<string>;
|
|
1843
|
+
x?: FunctionMaybe<number | string>;
|
|
1844
|
+
y?: FunctionMaybe<number | string>;
|
|
1845
|
+
}
|
|
1832
1846
|
interface TextSVGAttributes<T>
|
|
1833
1847
|
extends TextContentElementSVGAttributes<T>,
|
|
1834
1848
|
GraphicsElementSVGAttributes<T>,
|
package/h/types/hyperscript.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
type MountableElement = Element | Document | ShadowRoot | DocumentFragment | Node;
|
|
2
2
|
interface Runtime {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
insert(parent: MountableElement, accessor: any, marker?: Node | null, init?: any): any;
|
|
4
|
+
spread(node: Element, accessor: any, isSVG?: Boolean, skipChildren?: Boolean): void;
|
|
5
|
+
assign(node: Element, props: any, isSVG?: Boolean, skipChildren?: Boolean): void;
|
|
6
|
+
createComponent(Comp: (props: any) => any, props: any): any;
|
|
7
|
+
dynamicProperty(props: any, key: string): any;
|
|
8
|
+
SVGElements: Set<string>;
|
|
9
9
|
}
|
|
10
10
|
type ExpandableNode = Node & {
|
|
11
|
-
|
|
11
|
+
[key: string]: any;
|
|
12
12
|
};
|
|
13
13
|
export type HyperScript = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
(...args: any[]): () => ExpandableNode | ExpandableNode[];
|
|
15
|
+
Fragment: (props: {
|
|
16
|
+
children: (() => ExpandableNode) | (() => ExpandableNode)[];
|
|
17
|
+
}) => ExpandableNode[];
|
|
18
18
|
};
|
|
19
19
|
export declare function createHyperScript(r: Runtime): HyperScript;
|
|
20
20
|
export {};
|