@react-three/fiber 8.7.3 → 8.7.4
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/CHANGELOG.md +6 -0
- package/dist/declarations/src/core/events.d.ts +69 -69
- package/dist/declarations/src/core/hooks.d.ts +25 -25
- package/dist/declarations/src/core/index.d.ts +57 -57
- package/dist/declarations/src/core/loop.d.ts +15 -15
- package/dist/declarations/src/core/renderer.d.ts +51 -51
- package/dist/declarations/src/core/store.d.ts +95 -95
- package/dist/declarations/src/core/utils.d.ts +83 -83
- package/dist/declarations/src/index.d.ts +11 -11
- package/dist/declarations/src/native/Canvas.d.ts +8 -8
- package/dist/declarations/src/native/events.d.ts +4 -4
- package/dist/declarations/src/native/polyfills.d.ts +1 -1
- package/dist/declarations/src/native.d.ts +10 -10
- package/dist/declarations/src/three-types.d.ts +332 -332
- package/dist/declarations/src/web/Canvas.d.ts +11 -11
- package/dist/declarations/src/web/events.d.ts +4 -4
- package/dist/{index-407f3d70.cjs.dev.js → index-78501abd.cjs.dev.js} +8 -3
- package/dist/{index-05f8627d.esm.js → index-80784ca9.esm.js} +8 -3
- package/dist/{index-5350eaac.cjs.prod.js → index-e6292667.cjs.prod.js} +8 -3
- package/dist/react-three-fiber.cjs.dev.js +1 -1
- package/dist/react-three-fiber.cjs.prod.js +1 -1
- package/dist/react-three-fiber.esm.js +2 -2
- package/native/dist/react-three-fiber-native.cjs.dev.js +1 -1
- package/native/dist/react-three-fiber-native.cjs.prod.js +1 -1
- package/native/dist/react-three-fiber-native.esm.js +2 -2
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { Options as ResizeOptions } from 'react-use-measure';
|
|
3
|
-
import { RenderProps } from '../core';
|
|
4
|
-
export interface Props extends Omit<RenderProps<HTMLCanvasElement>, 'size'>, React.HTMLAttributes<HTMLDivElement> {
|
|
5
|
-
children: React.ReactNode;
|
|
6
|
-
fallback?: React.ReactNode;
|
|
7
|
-
resize?: ResizeOptions;
|
|
8
|
-
eventSource?: HTMLElement | React.MutableRefObject<HTMLElement>;
|
|
9
|
-
eventPrefix?: 'offset' | 'client' | 'page' | 'layer' | 'screen';
|
|
10
|
-
}
|
|
11
|
-
export declare const Canvas: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLCanvasElement>>;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { Options as ResizeOptions } from 'react-use-measure';
|
|
3
|
+
import { RenderProps } from '../core';
|
|
4
|
+
export interface Props extends Omit<RenderProps<HTMLCanvasElement>, 'size'>, React.HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
fallback?: React.ReactNode;
|
|
7
|
+
resize?: ResizeOptions;
|
|
8
|
+
eventSource?: HTMLElement | React.MutableRefObject<HTMLElement>;
|
|
9
|
+
eventPrefix?: 'offset' | 'client' | 'page' | 'layer' | 'screen';
|
|
10
|
+
}
|
|
11
|
+
export declare const Canvas: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLCanvasElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UseBoundStore } from 'zustand';
|
|
2
|
-
import { RootState } from '../core/store';
|
|
3
|
-
import { EventManager } from '../core/events';
|
|
4
|
-
export declare function createPointerEvents(store: UseBoundStore<RootState>): EventManager<HTMLElement>;
|
|
1
|
+
import { UseBoundStore } from 'zustand';
|
|
2
|
+
import { RootState } from '../core/store';
|
|
3
|
+
import { EventManager } from '../core/events';
|
|
4
|
+
export declare function createPointerEvents(store: UseBoundStore<RootState>): EventManager<HTMLElement>;
|
|
@@ -90,7 +90,8 @@ ErrorBoundary.getDerivedStateFromError = () => ({
|
|
|
90
90
|
const DEFAULT = '__default';
|
|
91
91
|
const isDiffSet = def => def && !!def.memoized && !!def.changes;
|
|
92
92
|
function calculateDpr(dpr) {
|
|
93
|
-
|
|
93
|
+
const target = typeof window !== 'undefined' ? window.devicePixelRatio : 1;
|
|
94
|
+
return Array.isArray(dpr) ? Math.min(Math.max(dpr[0], target), dpr[1]) : dpr;
|
|
94
95
|
}
|
|
95
96
|
/**
|
|
96
97
|
* Returns instance root state
|
|
@@ -443,9 +444,13 @@ function makeId(event) {
|
|
|
443
444
|
|
|
444
445
|
|
|
445
446
|
function getEventPriority() {
|
|
446
|
-
var
|
|
447
|
+
var _globalScope$event;
|
|
447
448
|
|
|
448
|
-
|
|
449
|
+
// Get a handle to the current global scope in window and worker contexts if able
|
|
450
|
+
// https://github.com/pmndrs/react-three-fiber/pull/2493
|
|
451
|
+
const globalScope = typeof self !== 'undefined' && self || typeof window !== 'undefined' && window;
|
|
452
|
+
if (!globalScope) return constants.DefaultEventPriority;
|
|
453
|
+
const name = (_globalScope$event = globalScope.event) == null ? void 0 : _globalScope$event.type;
|
|
449
454
|
|
|
450
455
|
switch (name) {
|
|
451
456
|
case 'click':
|
|
@@ -63,7 +63,8 @@ ErrorBoundary.getDerivedStateFromError = () => ({
|
|
|
63
63
|
const DEFAULT = '__default';
|
|
64
64
|
const isDiffSet = def => def && !!def.memoized && !!def.changes;
|
|
65
65
|
function calculateDpr(dpr) {
|
|
66
|
-
|
|
66
|
+
const target = typeof window !== 'undefined' ? window.devicePixelRatio : 1;
|
|
67
|
+
return Array.isArray(dpr) ? Math.min(Math.max(dpr[0], target), dpr[1]) : dpr;
|
|
67
68
|
}
|
|
68
69
|
/**
|
|
69
70
|
* Returns instance root state
|
|
@@ -416,9 +417,13 @@ function makeId(event) {
|
|
|
416
417
|
|
|
417
418
|
|
|
418
419
|
function getEventPriority() {
|
|
419
|
-
var
|
|
420
|
+
var _globalScope$event;
|
|
420
421
|
|
|
421
|
-
|
|
422
|
+
// Get a handle to the current global scope in window and worker contexts if able
|
|
423
|
+
// https://github.com/pmndrs/react-three-fiber/pull/2493
|
|
424
|
+
const globalScope = typeof self !== 'undefined' && self || typeof window !== 'undefined' && window;
|
|
425
|
+
if (!globalScope) return DefaultEventPriority;
|
|
426
|
+
const name = (_globalScope$event = globalScope.event) == null ? void 0 : _globalScope$event.type;
|
|
422
427
|
|
|
423
428
|
switch (name) {
|
|
424
429
|
case 'click':
|
|
@@ -90,7 +90,8 @@ ErrorBoundary.getDerivedStateFromError = () => ({
|
|
|
90
90
|
const DEFAULT = '__default';
|
|
91
91
|
const isDiffSet = def => def && !!def.memoized && !!def.changes;
|
|
92
92
|
function calculateDpr(dpr) {
|
|
93
|
-
|
|
93
|
+
const target = typeof window !== 'undefined' ? window.devicePixelRatio : 1;
|
|
94
|
+
return Array.isArray(dpr) ? Math.min(Math.max(dpr[0], target), dpr[1]) : dpr;
|
|
94
95
|
}
|
|
95
96
|
/**
|
|
96
97
|
* Returns instance root state
|
|
@@ -443,9 +444,13 @@ function makeId(event) {
|
|
|
443
444
|
|
|
444
445
|
|
|
445
446
|
function getEventPriority() {
|
|
446
|
-
var
|
|
447
|
+
var _globalScope$event;
|
|
447
448
|
|
|
448
|
-
|
|
449
|
+
// Get a handle to the current global scope in window and worker contexts if able
|
|
450
|
+
// https://github.com/pmndrs/react-three-fiber/pull/2493
|
|
451
|
+
const globalScope = typeof self !== 'undefined' && self || typeof window !== 'undefined' && window;
|
|
452
|
+
if (!globalScope) return constants.DefaultEventPriority;
|
|
453
|
+
const name = (_globalScope$event = globalScope.event) == null ? void 0 : _globalScope$event.type;
|
|
449
454
|
|
|
450
455
|
switch (name) {
|
|
451
456
|
case 'click':
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require('./index-
|
|
5
|
+
var index = require('./index-78501abd.cjs.dev.js');
|
|
6
6
|
var _extends = require('@babel/runtime/helpers/extends');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var THREE = require('three');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require('./index-
|
|
5
|
+
var index = require('./index-e6292667.cjs.prod.js');
|
|
6
6
|
var _extends = require('@babel/runtime/helpers/extends');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var THREE = require('three');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as createEvents, e as extend, u as useMutableCallback, a as createRoot, i as isRef, E as ErrorBoundary, B as Block, b as useIsomorphicLayoutEffect, d as unmountComponentAtNode } from './index-
|
|
2
|
-
export { t as ReactThreeFiber, v as _roots, s as act, o as addAfterEffect, n as addEffect, p as addTail, m as advance, j as applyProps, f as context, c as createEvents, g as createPortal, a as createRoot, k as dispose, e as extend, q as getRootState, l as invalidate, h as reconciler, r as render, d as unmountComponentAtNode, z as useFrame, A as useGraph, w as useInstanceHandle, C as useLoader, x as useStore, y as useThree } from './index-
|
|
1
|
+
import { c as createEvents, e as extend, u as useMutableCallback, a as createRoot, i as isRef, E as ErrorBoundary, B as Block, b as useIsomorphicLayoutEffect, d as unmountComponentAtNode } from './index-80784ca9.esm.js';
|
|
2
|
+
export { t as ReactThreeFiber, v as _roots, s as act, o as addAfterEffect, n as addEffect, p as addTail, m as advance, j as applyProps, f as context, c as createEvents, g as createPortal, a as createRoot, k as dispose, e as extend, q as getRootState, l as invalidate, h as reconciler, r as render, d as unmountComponentAtNode, z as useFrame, A as useGraph, w as useInstanceHandle, C as useLoader, x as useStore, y as useThree } from './index-80784ca9.esm.js';
|
|
3
3
|
import _extends from '@babel/runtime/helpers/esm/extends';
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import * as THREE from 'three';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require('../../dist/index-
|
|
5
|
+
var index = require('../../dist/index-78501abd.cjs.dev.js');
|
|
6
6
|
var _extends = require('@babel/runtime/helpers/extends');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var THREE = require('three');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var index = require('../../dist/index-
|
|
5
|
+
var index = require('../../dist/index-e6292667.cjs.prod.js');
|
|
6
6
|
var _extends = require('@babel/runtime/helpers/extends');
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var THREE = require('three');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c as createEvents, e as extend, u as useMutableCallback, a as createRoot, E as ErrorBoundary, B as Block, d as unmountComponentAtNode } from '../../dist/index-
|
|
2
|
-
export { t as ReactThreeFiber, v as _roots, s as act, o as addAfterEffect, n as addEffect, p as addTail, m as advance, j as applyProps, f as context, g as createPortal, a as createRoot, k as dispose, e as extend, q as getRootState, l as invalidate, h as reconciler, r as render, d as unmountComponentAtNode, z as useFrame, A as useGraph, w as useInstanceHandle, C as useLoader, x as useStore, y as useThree } from '../../dist/index-
|
|
1
|
+
import { c as createEvents, e as extend, u as useMutableCallback, a as createRoot, E as ErrorBoundary, B as Block, d as unmountComponentAtNode } from '../../dist/index-80784ca9.esm.js';
|
|
2
|
+
export { t as ReactThreeFiber, v as _roots, s as act, o as addAfterEffect, n as addEffect, p as addTail, m as advance, j as applyProps, f as context, g as createPortal, a as createRoot, k as dispose, e as extend, q as getRootState, l as invalidate, h as reconciler, r as render, d as unmountComponentAtNode, z as useFrame, A as useGraph, w as useInstanceHandle, C as useLoader, x as useStore, y as useThree } from '../../dist/index-80784ca9.esm.js';
|
|
3
3
|
import _extends from '@babel/runtime/helpers/esm/extends';
|
|
4
4
|
import * as React from 'react';
|
|
5
5
|
import * as THREE from 'three';
|