@react-three/fiber 9.4.2 → 10.0.0-alpha.0

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.
Files changed (52) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.cjs +14832 -0
  3. package/dist/index.d.cts +3350 -0
  4. package/dist/index.d.mts +3350 -0
  5. package/dist/index.d.ts +3350 -0
  6. package/dist/index.mjs +14747 -0
  7. package/dist/legacy.cjs +14820 -0
  8. package/dist/legacy.d.cts +3347 -0
  9. package/dist/legacy.d.mts +3347 -0
  10. package/dist/legacy.d.ts +3347 -0
  11. package/dist/legacy.mjs +14735 -0
  12. package/dist/webgpu/index.cjs +15274 -0
  13. package/dist/webgpu/index.d.cts +3470 -0
  14. package/dist/webgpu/index.d.mts +3470 -0
  15. package/dist/webgpu/index.d.ts +3470 -0
  16. package/dist/webgpu/index.mjs +15177 -0
  17. package/package.json +44 -44
  18. package/react-reconciler/constants.d.ts +7 -0
  19. package/react-reconciler/constants.js +9 -0
  20. package/react-reconciler/index.d.ts +1044 -0
  21. package/react-reconciler/index.js +224 -0
  22. package/readme.md +98 -33
  23. package/CHANGELOG.md +0 -1186
  24. package/dist/declarations/src/core/events.d.ts +0 -92
  25. package/dist/declarations/src/core/hooks.d.ts +0 -53
  26. package/dist/declarations/src/core/index.d.ts +0 -13
  27. package/dist/declarations/src/core/loop.d.ts +0 -31
  28. package/dist/declarations/src/core/reconciler.d.ts +0 -50
  29. package/dist/declarations/src/core/renderer.d.ts +0 -89
  30. package/dist/declarations/src/core/store.d.ts +0 -130
  31. package/dist/declarations/src/core/utils.d.ts +0 -191
  32. package/dist/declarations/src/index.d.ts +0 -6
  33. package/dist/declarations/src/native/Canvas.d.ts +0 -13
  34. package/dist/declarations/src/native/events.d.ts +0 -4
  35. package/dist/declarations/src/native.d.ts +0 -6
  36. package/dist/declarations/src/three-types.d.ts +0 -68
  37. package/dist/declarations/src/web/Canvas.d.ts +0 -23
  38. package/dist/declarations/src/web/events.d.ts +0 -4
  39. package/dist/events-1eccaf1c.esm.js +0 -2510
  40. package/dist/events-5c8d1731.cjs.prod.js +0 -2569
  41. package/dist/events-c80effae.cjs.dev.js +0 -2569
  42. package/dist/react-three-fiber.cjs.d.ts +0 -2
  43. package/dist/react-three-fiber.cjs.dev.js +0 -222
  44. package/dist/react-three-fiber.cjs.js +0 -7
  45. package/dist/react-three-fiber.cjs.prod.js +0 -222
  46. package/dist/react-three-fiber.esm.js +0 -167
  47. package/native/dist/react-three-fiber-native.cjs.d.ts +0 -2
  48. package/native/dist/react-three-fiber-native.cjs.dev.js +0 -569
  49. package/native/dist/react-three-fiber-native.cjs.js +0 -7
  50. package/native/dist/react-three-fiber-native.cjs.prod.js +0 -569
  51. package/native/dist/react-three-fiber-native.esm.js +0 -517
  52. package/native/package.json +0 -5
package/CHANGELOG.md DELETED
@@ -1,1186 +0,0 @@
1
- # @react-three/fiber
2
-
3
- ## 9.4.2
4
-
5
- ### Patch Changes
6
-
7
- - 3d445fd158b25eb380cd27bd2e01304016aa23e3: fix: Expo SDK 54 compatibility through workaround
8
-
9
- ## 9.4.1
10
-
11
- ### Patch Changes
12
-
13
- - 4f8cec0d79003a9ef6d1ca1e56de94aec4158714: fix: pass DevTools config through createReconciler to fix React DevTools
14
-
15
- ## 9.4.0
16
-
17
- ### Minor Changes
18
-
19
- - f0976dc14a2d3203af267d0e3524d45a07f3248a: feat: improve applyProps errors, harden pierced props setting
20
-
21
- ## 9.3.0
22
-
23
- ### Minor Changes
24
-
25
- - 7579c2d79ed60e5c93a259637b65c01971f39d82: feat: add flushSync example
26
- - 26e5d6e8b8b00b817ebb5242432000abe38bfc2c: fix: update flushSync for new reconciler
27
- - 0281b6bc4fcf041ed801e64f1876f70c214aa117: fix(native): update react-native deep imports for 0.79 compatibility
28
-
29
- ## 9.2.0
30
-
31
- ### Minor Changes
32
-
33
- - 94ece53e17a586465b10ec627cf4799cefa72b3a: Export flushSync
34
-
35
- ## 9.1.4
36
-
37
- ### Patch Changes
38
-
39
- - d491e46087508dff50c48768a99f87bd486b6910: Accept readonly arrays for vector props
40
-
41
- ## 9.1.3
42
-
43
- ### Patch Changes
44
-
45
- - efd28328f5e612b0592be7da316fad990fdf4675: fix(native) fix crash on rerendering GLView with new arch
46
-
47
- ## 9.1.2
48
-
49
- ### Patch Changes
50
-
51
- - 053757f45d2411f2929975add76a4c979713e616: fix: reference dev-only act with computed key for Webpack
52
-
53
- ## 9.1.1
54
-
55
- ### Patch Changes
56
-
57
- - 0deae3fb12b6d62ff083891e388ab09de51330d0: Fix failing builds for production when React.act is unavailable. This fixes issues found in React@19.1.0 and up.
58
-
59
- ## 9.1.0
60
-
61
- ### Minor Changes
62
-
63
- - cbc79507600b81f6a39de9f3f0ecb3aaf811233f: feat: add meshes to loader graph, misc internal fixes
64
-
65
- ## 9.0.4
66
-
67
- ### Patch Changes
68
-
69
- - 28ebfbf3e7f9e69dc62f5481965b7fd6a3e3a038: fix(types): exclude type conflicts in React runtime types
70
-
71
- ## 9.0.3
72
-
73
- ### Patch Changes
74
-
75
- - 01f0f1c8855325aae1c337d5443c846cc46007b0: fix(types): remove recursive references in JSX types
76
-
77
- ## 9.0.2
78
-
79
- ### Patch Changes
80
-
81
- - 14e133278c3cf1550a3b9aeaaadb624a2aae4781: fix(reconciler): prefer to resolve unprefixed instance types
82
-
83
- ## 9.0.1
84
-
85
- ### Patch Changes
86
-
87
- - 5d711d103b8d3833b93c3ab74707b2b6db5d274a: fix: add use-sync-external-store dep
88
-
89
- ## 9.0.0
90
-
91
- ### Major Changes
92
-
93
- - 226d2ec: feat: React 19 support
94
-
95
- ## 8.18.0
96
-
97
- ### Minor Changes
98
-
99
- - 54a3330f: feat: make children optional in Canvas
100
-
101
- ## 8.17.14
102
-
103
- ### Patch Changes
104
-
105
- - eeeed16b: fix: update use-measure
106
-
107
- ## 8.17.13
108
-
109
- ### Patch Changes
110
-
111
- - 0a0f2acd: fix: upstream use-measure
112
-
113
- ## 8.17.12
114
-
115
- ### Patch Changes
116
-
117
- - ff1a16f1: fix: narrow React peer dep range
118
-
119
- ## 8.17.11
120
-
121
- ### Patch Changes
122
-
123
- - 7461bf0c: fix: loosen instanceof checks for CSB issue
124
-
125
- ## 8.17.10
126
-
127
- ### Patch Changes
128
-
129
- - d1a072ac: fix: ThreeEvent should not include initMouseEvent
130
-
131
- ## 8.17.9
132
-
133
- ### Patch Changes
134
-
135
- - f34de655: fix: add orientation handling
136
-
137
- ## 8.17.8
138
-
139
- ### Patch Changes
140
-
141
- - 3c885807: fix(types): fix React typings, fault tolerant Node type
142
-
143
- ## 8.17.7
144
-
145
- ### Patch Changes
146
-
147
- - c20a7d73: fix(native): missing pointerId in pointer events
148
-
149
- ## 8.17.6
150
-
151
- ### Patch Changes
152
-
153
- - 66c3e9fe: fix(native): don't bind events to GLView
154
-
155
- ## 8.17.5
156
-
157
- ### Patch Changes
158
-
159
- - 162dbbdd: fix: npmignore ignored types"
160
-
161
- ## 8.17.4
162
-
163
- ### Patch Changes
164
-
165
- - 43866f4e: fix: rebuild with types
166
-
167
- ## 8.17.3
168
-
169
- ### Patch Changes
170
-
171
- - 8363eb7a: fix: rebuild with types
172
-
173
- ## 8.17.2
174
-
175
- ### Patch Changes
176
-
177
- - 6aa4eb28: fix: rebuild with types
178
-
179
- ## 8.17.1
180
-
181
- ### Patch Changes
182
-
183
- - e5f3f4f9: fix: rebuild with types
184
-
185
- ## 8.17.0
186
-
187
- ### Minor Changes
188
-
189
- - 3c22194d: feat: flushSync, native EventTarget
190
-
191
- ## 8.16.8
192
-
193
- ### Patch Changes
194
-
195
- - 4748b365: fix: update is.equ to compare booleans
196
-
197
- ## 8.16.7
198
-
199
- ### Patch Changes
200
-
201
- - 4d6408c7: fix(types): revert usage of future module JSX
202
-
203
- ## 8.16.6
204
-
205
- ### Patch Changes
206
-
207
- - 03ab82fe: fix(applyProps): null check indeterminate instances
208
-
209
- ## 8.16.5
210
-
211
- ### Patch Changes
212
-
213
- - cb913e01: fix: use fast JSX, future JSX types
214
-
215
- ## 8.16.4
216
-
217
- ### Patch Changes
218
-
219
- - 1270d24c: fix: missing dependency on inject function
220
-
221
- ## 8.16.3
222
-
223
- ### Patch Changes
224
-
225
- - 9c83502c: fix(Canvas): don't override camera frustum props
226
-
227
- ## 8.16.2
228
-
229
- ### Patch Changes
230
-
231
- - e0900489: fix(useLoader): don't dispose of memoized loader
232
-
233
- ## 8.16.1
234
-
235
- ### Patch Changes
236
-
237
- - 503efc2e: fix: prevent invalidate from piling up frames
238
-
239
- ## 8.16.0
240
-
241
- ### Minor Changes
242
-
243
- - 6b0ea6eb: feat: add childadded event dispatch
244
-
245
- ## 8.15.19
246
-
247
- ### Patch Changes
248
-
249
- - 74926b94: fix(types): avoid emitting THREE.XRFrame
250
-
251
- ## 8.15.18
252
-
253
- ### Patch Changes
254
-
255
- - 8c01939a: fix: correctly pass frames in invalidate
256
-
257
- ## 8.15.17
258
-
259
- ### Patch Changes
260
-
261
- - 16c2ee97: fix(types): support @types/three@0.162.0
262
-
263
- ## 8.15.16
264
-
265
- ### Patch Changes
266
-
267
- - 71cd8f96: fix: tonemapping config overwrites userland
268
- - 0bb12fd1: fix(types): remove usage of THREE.Vector
269
-
270
- ## 8.15.14
271
-
272
- ### Patch Changes
273
-
274
- - 0afc9c12: fix: portal events, update examples
275
-
276
- ## 8.15.13
277
-
278
- ### Patch Changes
279
-
280
- - 0a399f6d: fix(native): use MSAA for antialias on iOS
281
-
282
- ## 8.15.12
283
-
284
- ### Patch Changes
285
-
286
- - 496d6f0d: fix: useLoader and XRFrame type fixes
287
-
288
- ## 8.15.11
289
-
290
- ### Patch Changes
291
-
292
- - 3d9af04d: fix: update import from three examples
293
-
294
- ## 8.15.10
295
-
296
- ### Patch Changes
297
-
298
- - 49158164: fix: don't recursively dispose primitives
299
-
300
- ## 8.15.9
301
-
302
- ### Patch Changes
303
-
304
- - 4cbc5530: fix(native): deopt iOS blob URI path
305
-
306
- ## 8.15.8
307
-
308
- ### Patch Changes
309
-
310
- - 70680832: fix: revert stable sort
311
-
312
- ## 8.15.7
313
-
314
- ### Patch Changes
315
-
316
- - 07e39e2e: fix(types): remove use of Object3D generic
317
-
318
- ## 8.15.6
319
-
320
- ### Patch Changes
321
-
322
- - 7bb2950b: experiment: stable object sort
323
-
324
- ## 8.15.5
325
-
326
- ### Patch Changes
327
-
328
- - 0e44fd8b: fix(types): preserve deprecated JSX annotations
329
-
330
- ## 8.15.4
331
-
332
- ### Patch Changes
333
-
334
- - 634e5db5: fix(native): harden Blob URI check for Android
335
-
336
- ## 8.15.3
337
-
338
- ### Patch Changes
339
-
340
- - beab4344: fix(native): workaround Android content policy for Blob URI
341
-
342
- ## 8.15.2
343
-
344
- ### Patch Changes
345
-
346
- - 086d3932: fix: size check and raycaster camera
347
-
348
- ## 8.15.1
349
-
350
- ### Patch Changes
351
-
352
- - 2d39676d: fix: ignore deprecated types, use correct XRFrame definition
353
-
354
- ## 8.15.0
355
-
356
- ### Minor Changes
357
-
358
- - cca8b6bb: feat: export buildGraph
359
-
360
- ## 8.14.7
361
-
362
- ### Patch Changes
363
-
364
- - 0f63a287: fix(native): restore polyfill conversions, drop networking
365
-
366
- ## 8.14.6
367
-
368
- ### Patch Changes
369
-
370
- - 465fa0fb: fix(native): revert usage of networking stack
371
-
372
- ## 8.14.5
373
-
374
- ### Patch Changes
375
-
376
- - f372a5b5: fix(applyProps): loosen copy identity in dev
377
-
378
- ## 8.14.4
379
-
380
- ### Patch Changes
381
-
382
- - dc7e5739: fix(native): amend BlobManager over globals
383
-
384
- ## 8.14.3
385
-
386
- ### Patch Changes
387
-
388
- - d77b0990: fix(native): drop fsstat for react-native-web
389
-
390
- ## 8.14.2
391
-
392
- ### Patch Changes
393
-
394
- - 33e8baef: fix: native perf, loader types
395
-
396
- ## 8.14.1
397
-
398
- ### Patch Changes
399
-
400
- - c99907bf: fix(native): prefer local uri for fs
401
-
402
- ## 8.14.0
403
-
404
- ### Minor Changes
405
-
406
- - 89e96bf4: feat: react-native-web, native globals fixes
407
-
408
- ## 8.13.9
409
-
410
- ### Patch Changes
411
-
412
- - 44d57b3c: fix(native): TextureLoader should remain consistent with FileLoader
413
-
414
- ## 8.13.8
415
-
416
- ### Patch Changes
417
-
418
- - 5da26d52: fix(useLoader): dispose loaders
419
-
420
- ## 8.13.7
421
-
422
- ### Patch Changes
423
-
424
- - 37b9502a: fix(Canvas): pass scene prop
425
-
426
- ## 8.13.6
427
-
428
- ### Patch Changes
429
-
430
- - 0597495c: fix: harden XR init against Renderer shim
431
-
432
- ## 8.13.5
433
-
434
- ### Patch Changes
435
-
436
- - 7a3b543b: fix: three type regressions
437
-
438
- ## 8.13.4
439
-
440
- ### Patch Changes
441
-
442
- - 824ee0f7: fix: safely diff instances
443
-
444
- ## 8.13.3
445
-
446
- ### Patch Changes
447
-
448
- - ffdb5fc4: revert nested portals, up suspend-react
449
-
450
- ## 8.13.2
451
-
452
- ### Patch Changes
453
-
454
- - bbabdf07: update suspend-react
455
-
456
- ## 8.13.1
457
-
458
- ### Patch Changes
459
-
460
- - c9fe03ba: fix: primitive swap and reactive portals
461
-
462
- ## 8.13.0
463
-
464
- ### Minor Changes
465
-
466
- - ecfc48b7: feat: CanvasProps alias, respect r152 color management
467
-
468
- ## 8.12.2
469
-
470
- ### Patch Changes
471
-
472
- - c5193468: fix: safeguard window.devicePixelRatio
473
-
474
- ## 8.12.1
475
-
476
- ### Patch Changes
477
-
478
- - 571f07ac: fix: safeguard window.devicePixelRatio
479
-
480
- ## 8.12.0
481
-
482
- ### Minor Changes
483
-
484
- - 1928d095: feat: `scene` render prop for custom THREE.Scene
485
-
486
- ## 8.11.11
487
-
488
- ### Patch Changes
489
-
490
- - f03c6ef8: feat: `scene` render prop for custom THREE.Scene
491
-
492
- ## 8.11.10
493
-
494
- ### Patch Changes
495
-
496
- - 12907836: fix onpointerlostcapture which fired before pointerup
497
-
498
- ## 8.11.9
499
-
500
- ### Patch Changes
501
-
502
- - 6b5f572c: fix: treeshake THREE.ColorManagement
503
-
504
- ## 8.11.8
505
-
506
- ### Patch Changes
507
-
508
- - 350cd3f3: fix(Canvas): inline render-effect
509
-
510
- ## 8.11.7
511
-
512
- ### Patch Changes
513
-
514
- - 96af62d5: fix: don't overwrite public cameras
515
-
516
- ## 8.11.6
517
-
518
- ### Patch Changes
519
-
520
- - 7d319c18: Fix is.equ obj:shallow, allow it to test arrays 1 level deep, fix canvas.camera prop being stale
521
-
522
- ## 8.11.5
523
-
524
- ### Patch Changes
525
-
526
- - c658f763: fix: update canvas prop types
527
-
528
- ## 8.11.4
529
-
530
- ### Patch Changes
531
-
532
- - 970aa58b: fix: play nice with offscreencanvas
533
-
534
- ## 8.11.3
535
-
536
- ### Patch Changes
537
-
538
- - 2bce569c: fix: progressively set colormanagement
539
-
540
- ## 8.11.2
541
-
542
- ### Patch Changes
543
-
544
- - 41d655cd: fix: hmr, srgb encode
545
-
546
- ## 8.11.1
547
-
548
- ### Patch Changes
549
-
550
- - 58cadeff: fix: skip circular onUpdate calls
551
-
552
- ## 8.11.0
553
-
554
- ### Minor Changes
555
-
556
- - 2917a47b: events.update, allow raycast w/o user interaction
557
- - 521bfb07: events.update, allow raycast w/o user interaction
558
-
559
- ## 8.10.4
560
-
561
- ### Patch Changes
562
-
563
- - d9e6316d: fix: transpile class properties
564
-
565
- ## 8.10.3
566
-
567
- ### Patch Changes
568
-
569
- - d06d2879: fix: align useLoader type, public fields from builds
570
-
571
- ## 8.10.2
572
-
573
- ### Patch Changes
574
-
575
- - 564edbbb: fix port inject layers, it should allow root props to overwrite undefined portal props"
576
-
577
- ## 8.10.1
578
-
579
- ### Patch Changes
580
-
581
- - bfa0298f: fix memoized identity
582
-
583
- ## 8.10.0
584
-
585
- ### Minor Changes
586
-
587
- - 24c4dba4: shortcut for shadow type
588
-
589
- ## 8.9.2
590
-
591
- ### Patch Changes
592
-
593
- - 2aeb6500: fix: primitives are incorrectly swapped on key change in maps
594
-
595
- ## 8.9.1
596
-
597
- ### Patch Changes
598
-
599
- - 0cf11797: fix(events): type spread event props
600
-
601
- ## 8.9.0
602
-
603
- ### Minor Changes
604
-
605
- - a458b4dd: fix(loop): export flush methods and types
606
-
607
- ## 8.8.11
608
-
609
- ### Patch Changes
610
-
611
- - 2068f0cc: fix: events pointerlock, useLoader extension types
612
-
613
- ## 8.8.10
614
-
615
- ### Patch Changes
616
-
617
- - 00c24718: fix: invalidate pierced props
618
-
619
- ## 8.8.9
620
-
621
- ### Patch Changes
622
-
623
- - 4254400e: fix(createPortal): use correct JSX type
624
-
625
- ## 8.8.8
626
-
627
- ### Patch Changes
628
-
629
- - fcb183e3: fix: call onUpdate for attached children prop update
630
-
631
- ## 8.8.7
632
-
633
- ### Patch Changes
634
-
635
- - bedb16e7: fix: prefer named functions, for loops in hot paths
636
-
637
- ## 8.8.6
638
-
639
- ### Patch Changes
640
-
641
- - 02a558bb: fix: upgrade deps
642
-
643
- ## 8.8.5
644
-
645
- ### Patch Changes
646
-
647
- - 530a06d6: fix: upgrade deps to work-around CRA
648
-
649
- ## 8.8.4
650
-
651
- ### Patch Changes
652
-
653
- - 2f2dc9f9: chore: upgrade bridge to harden suspense behavior
654
-
655
- ## 8.8.3
656
-
657
- ### Patch Changes
658
-
659
- - 9f571239: fix #2506, events should fall back to rootstate"
660
-
661
- ## 8.8.2
662
-
663
- ### Patch Changes
664
-
665
- - dc389ed6: fix(Canvas): prevent remount on context update
666
-
667
- ## 8.8.1
668
-
669
- ### Patch Changes
670
-
671
- - 370d3ae5: refactor: pull context bridge from its-fine
672
-
673
- ## 8.8.0
674
-
675
- ### Minor Changes
676
-
677
- - 46d8b440: bridge cross-container context
678
-
679
- ## 8.7.4
680
-
681
- ### Patch Changes
682
-
683
- - 259c8895: fix: use self to get global context before window
684
-
685
- ## 8.7.3
686
-
687
- ### Patch Changes
688
-
689
- - eb5a3be4: fix: if there is an eventsource pointerevent will be set to none
690
-
691
- ## 8.7.2
692
-
693
- ### Patch Changes
694
-
695
- - 7f801e60: fix: events in portals carry the wrong raycaster, camera, etc
696
-
697
- ## 8.7.1
698
-
699
- ### Patch Changes
700
-
701
- - 962cc270: fix: allow canvas eventsource to be a ref
702
-
703
- ## 8.7.0
704
-
705
- ### Minor Changes
706
-
707
- - f5db1b78: feat: useInstanceHandle, flushGlobalEffects
708
-
709
- ## 8.6.2
710
-
711
- ### Patch Changes
712
-
713
- - 57c12e9c: fix(types): @react-three/drei declaration files
714
-
715
- ## 8.6.1
716
-
717
- ### Patch Changes
718
-
719
- - 7a0b5670: fix(core): don't append to unmounted containers
720
-
721
- ## 8.6.0
722
-
723
- ### Minor Changes
724
-
725
- - 85c80e70: eventsource and eventprefix on the canvas component
726
-
727
- ## 8.5.1
728
-
729
- ### Patch Changes
730
-
731
- - 87821d9: fix: null-check instance.children on reconstruct
732
-
733
- ## 8.5.0
734
-
735
- ### Minor Changes
736
-
737
- - edc8252: feat: handle primitive children, auto-attach via instanceof
738
-
739
- ## 8.3.1
740
-
741
- ### Patch Changes
742
-
743
- - aaeb2b8: fix(types): accept readonly arrays for vector props
744
-
745
- ## 8.3.0
746
-
747
- ### Minor Changes
748
-
749
- - 9c450ec: feat: improve errors
750
-
751
- ## 8.2.3
752
-
753
- ### Patch Changes
754
-
755
- - b8d2eab: fix: improve useLoader signature, initial size on createRoot
756
-
757
- ## 8.2.2
758
-
759
- ### Patch Changes
760
-
761
- - acd6f04: fix: warn on stray text
762
-
763
- ## 8.2.1
764
-
765
- ### Patch Changes
766
-
767
- - 25e35a1: fix: prefer useLayoutEffect in react-native
768
-
769
- ## 8.2.0
770
-
771
- ### Minor Changes
772
-
773
- - 9770d7d: feat: expose ThreeElements interface for JSX elements
774
-
775
- ## 8.1.0
776
-
777
- ### Minor Changes
778
-
779
- - 8d0f708c: Expose position information in state.size
780
-
781
- ## 8.0.27
782
-
783
- ### Patch Changes
784
-
785
- - 7940995: fix: resume on xrsession end, export internal events
786
-
787
- ## 8.0.26
788
-
789
- ### Patch Changes
790
-
791
- - 7b6df9df: fix: infinite loop updating cam viewport
792
-
793
- ## 8.0.25
794
-
795
- ### Patch Changes
796
-
797
- - b7cd0f42: update viewport on camera changes
798
-
799
- ## 8.0.24
800
-
801
- ### Patch Changes
802
-
803
- - ee8e785: fix: attach timings
804
-
805
- ## 8.0.23
806
-
807
- ### Patch Changes
808
-
809
- - 29d03c64: revert multi attach
810
-
811
- ## 8.0.22
812
-
813
- ### Patch Changes
814
-
815
- - 419e854: fix: always prepare primitives
816
-
817
- ## 8.0.21
818
-
819
- ### Patch Changes
820
-
821
- - 3098b9b: fix: resizing in worker contexts, copy over attachments on reconstruct
822
-
823
- ## 8.0.20
824
-
825
- ### Patch Changes
826
-
827
- - 4c87bce: fix: attach, devtools, and perf fixes
828
-
829
- ## 8.0.19
830
-
831
- ### Patch Changes
832
-
833
- - 360b45a: fix: handle attach on reconstruct
834
-
835
- ## 8.0.18
836
-
837
- ### Patch Changes
838
-
839
- - be567c1: fix: suspense attach and three compat in webpack
840
-
841
- ## 8.0.17
842
-
843
- ### Patch Changes
844
-
845
- - 9e3369e: fix dom resize, improve native tree shaking
846
-
847
- ## 8.0.16
848
-
849
- ### Patch Changes
850
-
851
- - 669c45c: correctly type useLoader results
852
-
853
- ## 8.0.15
854
-
855
- ### Patch Changes
856
-
857
- - c4715d5f: allow invalidate to preempt more than 1 frame
858
-
859
- ## 8.0.14
860
-
861
- ### Patch Changes
862
-
863
- - 5559a119: Add support for recoverable errors
864
-
865
- ## 8.0.13
866
-
867
- ### Patch Changes
868
-
869
- - 9d77d8e2: fix: detach attribute removal
870
-
871
- ## 8.0.12
872
-
873
- ### Patch Changes
874
-
875
- - 3d10413f: fix portal layers
876
-
877
- ## 8.0.11
878
-
879
- ### Patch Changes
880
-
881
- - 5167b1e4: memoized.args can be undefined
882
-
883
- ## 8.0.10
884
-
885
- ### Patch Changes
886
-
887
- - eb321afd: fix: remount bug, allow portals to inject custom size
888
-
889
- ## 8.0.9
890
-
891
- ### Patch Changes
892
-
893
- - 624df949: fix: canvas unmount race condition"
894
-
895
- ## 8.0.8
896
-
897
- ### Patch Changes
898
-
899
- - 952a566: fix: react SSR
900
-
901
- ## 8.0.7
902
-
903
- ### Patch Changes
904
-
905
- - f63806b: fix: react SSR
906
-
907
- ## 8.0.6
908
-
909
- ### Patch Changes
910
-
911
- - d4bafb9: fix re-parenting, useframe not working properly in portals, attach crash
912
-
913
- ## 8.0.5
914
-
915
- ### Patch Changes
916
-
917
- - 227c328: fix pointer for root and portals
918
-
919
- ## 8.0.4
920
-
921
- ### Patch Changes
922
-
923
- - e981a72: fix: mock three color management, loosen peer dep
924
-
925
- ## 8.0.3
926
-
927
- ### Patch Changes
928
-
929
- - 3252aed: setevents needs to spread and be mirrored in portals
930
-
931
- ## 8.0.2
932
-
933
- ### Patch Changes
934
-
935
- - 8035d1f: fix: legacy mode
936
-
937
- ## 8.0.1
938
-
939
- ### Patch Changes
940
-
941
- - 26db195: add legacy flag to turn of three.colormanagement
942
-
943
- ## 8.0.0
944
-
945
- ### Major Changes
946
-
947
- - 385ba9c: v8 major, react-18 compat
948
- - 04c07b8: v8 major, react-18 compat
949
-
950
- ### Patch Changes
951
-
952
- - 347ea79: new beta for library testing
953
-
954
- ## 8.0.0-beta.0
955
-
956
- ### Major Changes
957
-
958
- - 385ba9c: v8 major, react-18 compat
959
-
960
- ## 8.0.0-beta.0
961
-
962
- ### Patch Changes
963
-
964
- - cf6316c: new beta for library testing
965
-
966
- ## 7.0.25
967
-
968
- ### Patch Changes
969
-
970
- - 8698734: Release latest patches
971
-
972
- ## 7.0.24
973
-
974
- ### Patch Changes
975
-
976
- - 7f46ddf: cleanup captured pointers when released (#1914)
977
-
978
- ## 7.0.23
979
-
980
- ### Patch Changes
981
-
982
- - 30d38b1: remove logs
983
-
984
- ## 7.0.22
985
-
986
- ### Patch Changes
987
-
988
- - 259e1fa: add camera:manual
989
-
990
- ## 7.0.21
991
-
992
- ### Patch Changes
993
-
994
- - 65e4147: up usemeasure, add last event to internals"
995
-
996
- ## 7.0.20
997
-
998
- ### Patch Changes
999
-
1000
- - 54cb0fd: update react-use-measure, allow it to use the offsetSize
1001
-
1002
- ## 7.0.19
1003
-
1004
- ### Patch Changes
1005
-
1006
- - 7aa2eab: fix: remove zustand subscribe selector
1007
-
1008
- ## 7.0.18
1009
-
1010
- ### Patch Changes
1011
-
1012
- - 6780f58: fix unmount pointer capture
1013
-
1014
- ## 7.0.17
1015
-
1016
- ### Patch Changes
1017
-
1018
- - 894c550: fix: event count
1019
-
1020
- ## 7.0.16
1021
-
1022
- ### Patch Changes
1023
-
1024
- - c7a4220: patch: applyprops returns the same instance
1025
-
1026
- ## 7.0.15
1027
-
1028
- ### Patch Changes
1029
-
1030
- - c5645e8: fix primitive leftovers on switch
1031
-
1032
- ## 7.0.14
1033
-
1034
- ### Patch Changes
1035
-
1036
- - 05af996: fix: revert the is function
1037
-
1038
- ## 7.0.13
1039
-
1040
- ### Patch Changes
1041
-
1042
- - f256558: fix(core): don't overwrite camera rotation
1043
- - 51e6fc9: fix(core): safely handle external instances
1044
-
1045
- ## 7.0.12
1046
-
1047
- ### Patch Changes
1048
-
1049
- - 0df6073: fix: missed events
1050
-
1051
- ## 7.0.11
1052
-
1053
- ### Patch Changes
1054
-
1055
- - 62b0a3a: fix: event order of missed pointers
1056
-
1057
- ## 7.0.10
1058
-
1059
- ### Patch Changes
1060
-
1061
- - e019dd4: fixes
1062
-
1063
- ## 7.0.9
1064
-
1065
- ### Patch Changes
1066
-
1067
- - cd266e4: Fix diffProps dashed keys
1068
-
1069
- ## 7.0.8
1070
-
1071
- ### Patch Changes
1072
-
1073
- - 6f68406: Allow getCurrentViewport to receive an array
1074
-
1075
- ## 7.0.7
1076
-
1077
- ### Patch Changes
1078
-
1079
- - 0375896: Simplify useframe, support instanced event cancelation, silence disposal
1080
-
1081
- ## 7.0.6
1082
-
1083
- ### Patch Changes
1084
-
1085
- - fb052ad: Fix babel-env browserslist transpiling into old code"
1086
-
1087
- ## 7.0.5
1088
-
1089
- ### Patch Changes
1090
-
1091
- - c97794a: Add useLoader.clear(Loader, input)
1092
-
1093
- ## 7.0.4
1094
-
1095
- ### Patch Changes
1096
-
1097
- - 974ecfb: Allow elements to define attachFns for specific mount/unmount
1098
-
1099
- ## 7.0.2
1100
-
1101
- ### Patch Changes
1102
-
1103
- - a97aca3: Add controls state field
1104
- - 4c703d6: fix rttr didn't work with r130
1105
-
1106
- ## 7.0.0
1107
-
1108
- ### Major Changes
1109
-
1110
- - 96ae1ad: fix javascript interpreting negative renderpriority as positive
1111
-
1112
- This is a major breaking change that will fix an edge-case. It will only affect you if you used negative useFrame indices, for instance
1113
-
1114
- ```jsx
1115
- useFrame(..., -1)
1116
- ```
1117
-
1118
- Surprisingly this disabled auto-rendering although the documentation says positive numbers only. As of v7 this will not take over the render loop.
1119
-
1120
- ```jsx
1121
- function Render() {
1122
- // Takes over the render-loop, the user has the responsibility to render
1123
- useFrame(({ gl, scene, camera }) => {
1124
- gl.render(scene, camera)
1125
- }, 1)
1126
-
1127
- function RenderOnTop() {
1128
- // This will render on top of the previous call
1129
- useFrame(({ gl, ... }) => {
1130
- gl.render(...)
1131
- }, 2)
1132
-
1133
- function A() {
1134
- // Will *not* take over the render-loop, negative indices can still be useful for sorting
1135
- useFrame(() => ..., -1)
1136
-
1137
- function B() {
1138
- // B's useFrame will execute *after* A's
1139
- useFrame(() => ..., -2)
1140
- ```
1141
-
1142
- ## 6.2.3
1143
-
1144
- ### Patch Changes
1145
-
1146
- - 26bc7eb: typescript changes
1147
-
1148
- ## 6.2.2
1149
-
1150
- ### Patch Changes
1151
-
1152
- - 4f44a2c: use more helpful name with event handling in rttr
1153
-
1154
- ## 6.2.1
1155
-
1156
- ### Patch Changes
1157
-
1158
- - Fix stopPropagation logic
1159
-
1160
- ## 6.2.0
1161
-
1162
- ### Minor Changes
1163
-
1164
- - Allow object3d instances to be attached
1165
-
1166
- ## 6.1.5
1167
-
1168
- ### Patch Changes
1169
-
1170
- - fix(rttr): if children is undefined return an array to map with
1171
-
1172
- ## 6.1.4
1173
-
1174
- ### Patch Changes
1175
-
1176
- - 6faa090: Add shape to types, exclude event functions from event data
1177
-
1178
- ## 6.1.3
1179
-
1180
- ### Patch Changes
1181
-
1182
- - 71e72c0: Fix constructor args with attached children (#1348)
1183
- - 015fc03: Only set up pointer/wheel events as passive
1184
- - a160e08: Fix event setPointerCapture and stopPropagation.
1185
-
1186
- ## 6.1.2