@qwik.dev/react 2.0.0-alpha.9 → 2.0.0-beta.2
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 +1 -1
- package/lib/index.qwik.mjs +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -55,6 +55,6 @@ npm run build.server
|
|
|
55
55
|
- [@QwikDev](https://twitter.com/QwikDev)
|
|
56
56
|
- [Discord](https://qwik.dev/chat)
|
|
57
57
|
- [Vite](https://vitejs.dev/)
|
|
58
|
-
- [Partytown](https://partytown.
|
|
58
|
+
- [Partytown](https://partytown.qwik.dev/)
|
|
59
59
|
- [Mitosis](https://github.com/BuilderIO/mitosis)
|
|
60
60
|
- [Builder.io](https://www.builder.io/)
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -2,7 +2,7 @@ var __defProp = Object.defineProperty;
|
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
4
|
import { jsx, jsxs, Fragment } from "@qwik.dev/core/jsx-runtime";
|
|
5
|
-
import { useSignal, $, isServer, useOn, useOnDocument, Slot, component$, useStylesScoped$, useStore, useTask$, isBrowser, noSerialize, RenderOnce, SkipRender
|
|
5
|
+
import { useSignal, $, isServer, useOn, useOnDocument, Slot, implicit$FirstArg, component$, useStylesScoped$, useStore, useTask$, isBrowser, noSerialize, RenderOnce, SkipRender } from "@qwik.dev/core";
|
|
6
6
|
import { createRoot, hydrateRoot } from "react-dom/client";
|
|
7
7
|
import { flushSync } from "react-dom";
|
|
8
8
|
import { SSRStream, SSRComment, SSRRaw } from "@qwik.dev/core/internal";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwik.dev/react",
|
|
3
3
|
"description": "Qwik React allows adding React components into existing Qwik application",
|
|
4
|
-
"version": "2.0.0-
|
|
4
|
+
"version": "2.0.0-beta.2",
|
|
5
5
|
"bugs": "https://github.com/QwikDev/qwik/issues",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"@types/react": "18.3.3",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"react": "18.3.1",
|
|
10
10
|
"react-dom": "18.3.1",
|
|
11
11
|
"typescript": "5.8.2",
|
|
12
|
-
"vite": "
|
|
13
|
-
"@qwik.dev/core": "2.0.0-
|
|
12
|
+
"vite": "6.2.6",
|
|
13
|
+
"@qwik.dev/core": "2.0.0-beta.2"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@types/react-dom": "^18",
|
|
40
40
|
"react": "^18",
|
|
41
41
|
"react-dom": "^18",
|
|
42
|
-
"vite": "
|
|
43
|
-
"@qwik.dev/core": "^2.0.0-
|
|
42
|
+
"vite": ">=5 <7",
|
|
43
|
+
"@qwik.dev/core": "^2.0.0-beta.2"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"fmt": "prettier --write .",
|
|
65
65
|
"fmt.check": "prettier --check .",
|
|
66
66
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
67
|
+
"lint.fix": "eslint --fix \"src/**/*.ts*\"",
|
|
67
68
|
"release": "pnpm run -w build.local && pnpm publish",
|
|
68
69
|
"start": "npm run dev",
|
|
69
70
|
"typecheck": "tsc --noEmit"
|