@solidjs/web 2.0.0-experimental.10 → 2.0.0-experimental.12
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 +6 -6
- package/dist/dev.js +1 -1
- package/dist/web.cjs +6 -6
- package/dist/web.js +1 -1
- package/package.json +3 -3
- package/types/index.d.ts +1 -1
package/dist/dev.cjs
CHANGED
|
@@ -613,14 +613,18 @@ function Dynamic(props) {
|
|
|
613
613
|
return createDynamic(() => props.component, others);
|
|
614
614
|
}
|
|
615
615
|
|
|
616
|
-
Object.defineProperty(exports, "
|
|
616
|
+
Object.defineProperty(exports, "Errored", {
|
|
617
617
|
enumerable: true,
|
|
618
|
-
get: function () { return solidJs.
|
|
618
|
+
get: function () { return solidJs.Errored; }
|
|
619
619
|
});
|
|
620
620
|
Object.defineProperty(exports, "For", {
|
|
621
621
|
enumerable: true,
|
|
622
622
|
get: function () { return solidJs.For; }
|
|
623
623
|
});
|
|
624
|
+
Object.defineProperty(exports, "Loading", {
|
|
625
|
+
enumerable: true,
|
|
626
|
+
get: function () { return solidJs.Loading; }
|
|
627
|
+
});
|
|
624
628
|
Object.defineProperty(exports, "Match", {
|
|
625
629
|
enumerable: true,
|
|
626
630
|
get: function () { return solidJs.Match; }
|
|
@@ -629,10 +633,6 @@ Object.defineProperty(exports, "Show", {
|
|
|
629
633
|
enumerable: true,
|
|
630
634
|
get: function () { return solidJs.Show; }
|
|
631
635
|
});
|
|
632
|
-
Object.defineProperty(exports, "Suspense", {
|
|
633
|
-
enumerable: true,
|
|
634
|
-
get: function () { return solidJs.Suspense; }
|
|
635
|
-
});
|
|
636
636
|
Object.defineProperty(exports, "Switch", {
|
|
637
637
|
enumerable: true,
|
|
638
638
|
get: function () { return solidJs.Switch; }
|
package/dist/dev.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createMemo, createRoot, flatten, untrack, createRenderEffect, sharedConfig, enableHydration, $DEVCOMP, omit } from 'solid-js';
|
|
2
|
-
export {
|
|
2
|
+
export { Errored, For, Loading, Match, Show, Switch, createComponent, createRenderEffect as effect, getOwner, merge as mergeProps, untrack } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const Properties = /*#__PURE__*/new Set([
|
|
5
5
|
"value", "checked", "selected", "muted"]);
|
package/dist/web.cjs
CHANGED
|
@@ -602,14 +602,18 @@ function Dynamic(props) {
|
|
|
602
602
|
return createDynamic(() => props.component, others);
|
|
603
603
|
}
|
|
604
604
|
|
|
605
|
-
Object.defineProperty(exports, "
|
|
605
|
+
Object.defineProperty(exports, "Errored", {
|
|
606
606
|
enumerable: true,
|
|
607
|
-
get: function () { return solidJs.
|
|
607
|
+
get: function () { return solidJs.Errored; }
|
|
608
608
|
});
|
|
609
609
|
Object.defineProperty(exports, "For", {
|
|
610
610
|
enumerable: true,
|
|
611
611
|
get: function () { return solidJs.For; }
|
|
612
612
|
});
|
|
613
|
+
Object.defineProperty(exports, "Loading", {
|
|
614
|
+
enumerable: true,
|
|
615
|
+
get: function () { return solidJs.Loading; }
|
|
616
|
+
});
|
|
613
617
|
Object.defineProperty(exports, "Match", {
|
|
614
618
|
enumerable: true,
|
|
615
619
|
get: function () { return solidJs.Match; }
|
|
@@ -618,10 +622,6 @@ Object.defineProperty(exports, "Show", {
|
|
|
618
622
|
enumerable: true,
|
|
619
623
|
get: function () { return solidJs.Show; }
|
|
620
624
|
});
|
|
621
|
-
Object.defineProperty(exports, "Suspense", {
|
|
622
|
-
enumerable: true,
|
|
623
|
-
get: function () { return solidJs.Suspense; }
|
|
624
|
-
});
|
|
625
625
|
Object.defineProperty(exports, "Switch", {
|
|
626
626
|
enumerable: true,
|
|
627
627
|
get: function () { return solidJs.Switch; }
|
package/dist/web.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createMemo, createRoot, flatten, untrack, createRenderEffect, sharedConfig, enableHydration, omit } from 'solid-js';
|
|
2
|
-
export {
|
|
2
|
+
export { Errored, For, Loading, Match, Show, Switch, createComponent, createRenderEffect as effect, getOwner, merge as mergeProps, untrack } from 'solid-js';
|
|
3
3
|
|
|
4
4
|
const Properties = /*#__PURE__*/new Set([
|
|
5
5
|
"value", "checked", "selected", "muted"]);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidjs/web",
|
|
3
3
|
"description": "Solid's web runtime for the browser and the server",
|
|
4
|
-
"version": "2.0.0-experimental.
|
|
4
|
+
"version": "2.0.0-experimental.12",
|
|
5
5
|
"author": "Ryan Carniato",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://solidjs.com",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"seroval-plugins": "^1.1.0"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"solid-js": "^2.0.0-experimental.
|
|
78
|
+
"solid-js": "^2.0.0-experimental.12"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"solid-js": "2.0.0-experimental.
|
|
81
|
+
"solid-js": "2.0.0-experimental.12"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"build": "npm-run-all -nl build:*",
|
package/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { hydrate as hydrateCore } from "./client.js";
|
|
2
2
|
import { JSX, ComponentProps, ValidComponent } from "solid-js";
|
|
3
3
|
export * from "./client.js";
|
|
4
|
-
export { For, Show,
|
|
4
|
+
export { For, Show, Switch, Match, Errored, Loading, merge as mergeProps } from "solid-js";
|
|
5
5
|
export * from "./server-mock.js";
|
|
6
6
|
export declare const isServer: boolean;
|
|
7
7
|
export declare const isDev: boolean;
|