@solidjs/web 2.0.0-experimental.13 → 2.0.0-experimental.14
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/server.cjs +6 -6
- package/dist/server.js +1 -1
- package/package.json +3 -3
package/dist/server.cjs
CHANGED
|
@@ -650,14 +650,18 @@ function Portal(props) {
|
|
|
650
650
|
throw new Error("Portal is not supported on the server");
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
-
Object.defineProperty(exports, "
|
|
653
|
+
Object.defineProperty(exports, "Errored", {
|
|
654
654
|
enumerable: true,
|
|
655
|
-
get: function () { return solidJs.
|
|
655
|
+
get: function () { return solidJs.Errored; }
|
|
656
656
|
});
|
|
657
657
|
Object.defineProperty(exports, "For", {
|
|
658
658
|
enumerable: true,
|
|
659
659
|
get: function () { return solidJs.For; }
|
|
660
660
|
});
|
|
661
|
+
Object.defineProperty(exports, "Loading", {
|
|
662
|
+
enumerable: true,
|
|
663
|
+
get: function () { return solidJs.Loading; }
|
|
664
|
+
});
|
|
661
665
|
Object.defineProperty(exports, "Match", {
|
|
662
666
|
enumerable: true,
|
|
663
667
|
get: function () { return solidJs.Match; }
|
|
@@ -670,10 +674,6 @@ Object.defineProperty(exports, "Show", {
|
|
|
670
674
|
enumerable: true,
|
|
671
675
|
get: function () { return solidJs.Show; }
|
|
672
676
|
});
|
|
673
|
-
Object.defineProperty(exports, "Suspense", {
|
|
674
|
-
enumerable: true,
|
|
675
|
-
get: function () { return solidJs.Suspense; }
|
|
676
|
-
});
|
|
677
677
|
Object.defineProperty(exports, "Switch", {
|
|
678
678
|
enumerable: true,
|
|
679
679
|
get: function () { return solidJs.Switch; }
|
package/dist/server.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createMemo, sharedConfig, createRoot, ssrHandleError, omit } from 'solid-js';
|
|
2
|
-
export {
|
|
2
|
+
export { Errored, For, Loading, Match, Repeat, Show, Switch, createComponent, createRenderEffect as effect, getOwner, ssrRunInScope, untrack } from 'solid-js';
|
|
3
3
|
import { Feature, Serializer, getCrossReferenceHeader } from 'seroval';
|
|
4
4
|
import { AbortSignalPlugin, CustomEventPlugin, DOMExceptionPlugin, EventPlugin, FormDataPlugin, HeadersPlugin, ReadableStreamPlugin, RequestPlugin, ResponsePlugin, URLSearchParamsPlugin, URLPlugin } from 'seroval-plugins/web';
|
|
5
5
|
|
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.14",
|
|
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.14"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"solid-js": "2.0.0-experimental.
|
|
81
|
+
"solid-js": "2.0.0-experimental.14"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"build": "npm-run-all -nl build:*",
|