@react-three/fiber 10.0.0-alpha.1 → 10.0.0-canary.1b98c17
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/LICENSE +21 -21
- package/dist/index.cjs +1499 -614
- package/dist/index.d.cts +2130 -1274
- package/dist/index.d.mts +2130 -1274
- package/dist/index.d.ts +2130 -1274
- package/dist/index.mjs +1483 -618
- package/dist/legacy.cjs +1481 -621
- package/dist/legacy.d.cts +2131 -1275
- package/dist/legacy.d.mts +2131 -1275
- package/dist/legacy.d.ts +2131 -1275
- package/dist/legacy.mjs +1465 -625
- package/dist/webgpu/index.cjs +2098 -601
- package/dist/webgpu/index.d.cts +2391 -1300
- package/dist/webgpu/index.d.mts +2391 -1300
- package/dist/webgpu/index.d.ts +2391 -1300
- package/dist/webgpu/index.mjs +2074 -604
- package/package.json +7 -5
- package/react-reconciler/constants.js +1 -9
- package/react-reconciler/index.js +4 -20
- package/readme.md +244 -318
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-three/fiber",
|
|
3
|
-
"version": "10.0.0-
|
|
3
|
+
"version": "10.0.0-canary.1b98c17",
|
|
4
4
|
"description": "A React renderer for Threejs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -56,17 +56,18 @@
|
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@babel/runtime": "^7.
|
|
59
|
+
"@babel/runtime": "^7.28.6",
|
|
60
|
+
"@monogrid/gainmap-js": "^3.4.0",
|
|
60
61
|
"dequal": "^2.0.3",
|
|
61
62
|
"its-fine": "^2.0.0",
|
|
62
63
|
"react-use-measure": "^2.1.7",
|
|
63
64
|
"scheduler": "^0.27.0",
|
|
64
65
|
"suspend-react": "^0.1.3",
|
|
65
|
-
"use-sync-external-store": "^1.
|
|
66
|
-
"zustand": "^5.0.
|
|
66
|
+
"use-sync-external-store": "^1.6.0",
|
|
67
|
+
"zustand": "^5.0.10"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
|
-
"@types/react-reconciler": "^0.32.
|
|
70
|
+
"@types/react-reconciler": "^0.32.3",
|
|
70
71
|
"@types/three": "^0.181.0",
|
|
71
72
|
"@types/webxr": "*",
|
|
72
73
|
"react-reconciler": "^0.33.0"
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"scripts": {
|
|
85
86
|
"prebuild": "node -e \"require('fs').copyFileSync('../../readme.md', 'readme.md')\"",
|
|
86
87
|
"build": "unbuild",
|
|
88
|
+
"postbuild": "node ../../scripts/fix-three-types.js",
|
|
87
89
|
"stub": "unbuild --stub"
|
|
88
90
|
}
|
|
89
91
|
}
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
|
|
2
|
-
* @license React
|
|
3
|
-
* react-reconciler-constants.production.js
|
|
4
|
-
*
|
|
5
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
6
|
-
*
|
|
7
|
-
* This source code is licensed under the MIT license found in the
|
|
8
|
-
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/const t=1,o=8,r=32,e=2,i=268435456,n=0,s=0;export{t as ConcurrentRoot,o as ContinuousEventPriority,r as DefaultEventPriority,e as DiscreteEventPriority,i as IdleEventPriority,n as LegacyRoot,s as NoEventPriority};
|
|
1
|
+
const t=1,o=8,r=32,e=2,i=268435456,n=0,s=0;export{t as ConcurrentRoot,o as ContinuousEventPriority,r as DefaultEventPriority,e as DiscreteEventPriority,i as IdleEventPriority,n as LegacyRoot,s as NoEventPriority};
|