@react-three/fiber 8.7.0 → 8.7.3
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 +18 -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 -82
- 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-3b3bed95.esm.js → index-05f8627d.esm.js} +91 -87
- package/dist/{index-b3d1f4d2.cjs.dev.js → index-407f3d70.cjs.dev.js} +91 -86
- package/dist/{index-846c69c6.cjs.prod.js → index-5350eaac.cjs.prod.js} +91 -86
- package/dist/react-three-fiber.cjs.dev.js +7 -3
- package/dist/react-three-fiber.cjs.prod.js +7 -3
- package/dist/react-three-fiber.esm.js +8 -4
- 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
|
|
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>;
|
|
@@ -12,6 +12,7 @@ var threeTypes = /*#__PURE__*/Object.freeze({
|
|
|
12
12
|
|
|
13
13
|
var _window$document, _window$navigator;
|
|
14
14
|
const isOrthographicCamera = def => def && def.isOrthographicCamera;
|
|
15
|
+
const isRef = obj => obj && obj.hasOwnProperty('current');
|
|
15
16
|
/**
|
|
16
17
|
* An SSR-friendly useLayoutEffect.
|
|
17
18
|
*
|
|
@@ -476,9 +477,7 @@ function removeInteractivity(store, object) {
|
|
|
476
477
|
});
|
|
477
478
|
}
|
|
478
479
|
function createEvents(store) {
|
|
479
|
-
const temp = new THREE.Vector3();
|
|
480
480
|
/** Calculates delta */
|
|
481
|
-
|
|
482
481
|
function calculateDistance(event) {
|
|
483
482
|
const {
|
|
484
483
|
internal
|
|
@@ -578,108 +577,113 @@ function createEvents(store) {
|
|
|
578
577
|
|
|
579
578
|
|
|
580
579
|
function handleIntersects(intersections, event, delta, callback) {
|
|
581
|
-
|
|
582
|
-
raycaster,
|
|
583
|
-
pointer,
|
|
584
|
-
camera,
|
|
585
|
-
internal
|
|
586
|
-
} = store.getState(); // If anything has been found, forward it to the event listeners
|
|
587
|
-
|
|
580
|
+
// If anything has been found, forward it to the event listeners
|
|
588
581
|
if (intersections.length) {
|
|
589
|
-
const unprojectedPoint = temp.set(pointer.x, pointer.y, 0).unproject(camera);
|
|
590
582
|
const localState = {
|
|
591
583
|
stopped: false
|
|
592
584
|
};
|
|
593
585
|
|
|
594
586
|
for (const hit of intersections) {
|
|
595
|
-
const
|
|
596
|
-
var _internal$capturedMap, _internal$capturedMap2;
|
|
587
|
+
const state = getRootState(hit.object);
|
|
597
588
|
|
|
598
|
-
|
|
599
|
-
|
|
589
|
+
if (state) {
|
|
590
|
+
const {
|
|
591
|
+
raycaster,
|
|
592
|
+
pointer,
|
|
593
|
+
camera,
|
|
594
|
+
internal
|
|
595
|
+
} = state;
|
|
596
|
+
const unprojectedPoint = new THREE.Vector3(pointer.x, pointer.y, 0).unproject(camera);
|
|
600
597
|
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
598
|
+
const hasPointerCapture = id => {
|
|
599
|
+
var _internal$capturedMap, _internal$capturedMap2;
|
|
600
|
+
|
|
601
|
+
return (_internal$capturedMap = (_internal$capturedMap2 = internal.capturedMap.get(id)) == null ? void 0 : _internal$capturedMap2.has(hit.eventObject)) != null ? _internal$capturedMap : false;
|
|
605
602
|
};
|
|
606
603
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
604
|
+
const setPointerCapture = id => {
|
|
605
|
+
const captureData = {
|
|
606
|
+
intersection: hit,
|
|
607
|
+
target: event.target
|
|
608
|
+
};
|
|
609
|
+
|
|
610
|
+
if (internal.capturedMap.has(id)) {
|
|
611
|
+
// if the pointerId was previously captured, we add the hit to the
|
|
612
|
+
// event capturedMap.
|
|
613
|
+
internal.capturedMap.get(id).set(hit.eventObject, captureData);
|
|
614
|
+
} else {
|
|
615
|
+
// if the pointerId was not previously captured, we create a map
|
|
616
|
+
// containing the hitObject, and the hit. hitObject is used for
|
|
617
|
+
// faster access.
|
|
618
|
+
internal.capturedMap.set(id, new Map([[hit.eventObject, captureData]]));
|
|
619
|
+
} // Call the original event now
|
|
620
|
+
event.target.setPointerCapture(id);
|
|
621
|
+
};
|
|
619
622
|
|
|
620
|
-
|
|
621
|
-
|
|
623
|
+
const releasePointerCapture = id => {
|
|
624
|
+
const captures = internal.capturedMap.get(id);
|
|
622
625
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
626
|
+
if (captures) {
|
|
627
|
+
releaseInternalPointerCapture(internal.capturedMap, hit.eventObject, captures, id);
|
|
628
|
+
}
|
|
629
|
+
}; // Add native event props
|
|
627
630
|
|
|
628
631
|
|
|
629
|
-
|
|
632
|
+
let extractEventProps = {}; // This iterates over the event's properties including the inherited ones. Native PointerEvents have most of their props as getters which are inherited, but polyfilled PointerEvents have them all as their own properties (i.e. not inherited). We can't use Object.keys() or Object.entries() as they only return "own" properties; nor Object.getPrototypeOf(event) as that *doesn't* return "own" properties, only inherited ones.
|
|
630
633
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
+
for (let prop in event) {
|
|
635
|
+
let property = event[prop]; // Only copy over atomics, leave functions alone as these should be
|
|
636
|
+
// called as event.nativeEvent.fn()
|
|
634
637
|
|
|
635
|
-
|
|
636
|
-
|
|
638
|
+
if (typeof property !== 'function') extractEventProps[prop] = property;
|
|
639
|
+
}
|
|
637
640
|
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
641
|
+
let raycastEvent = { ...hit,
|
|
642
|
+
...extractEventProps,
|
|
643
|
+
pointer,
|
|
644
|
+
intersections,
|
|
645
|
+
stopped: localState.stopped,
|
|
646
|
+
delta,
|
|
647
|
+
unprojectedPoint,
|
|
648
|
+
ray: raycaster.ray,
|
|
649
|
+
camera: camera,
|
|
650
|
+
// Hijack stopPropagation, which just sets a flag
|
|
651
|
+
stopPropagation: () => {
|
|
652
|
+
// https://github.com/pmndrs/react-three-fiber/issues/596
|
|
653
|
+
// Events are not allowed to stop propagation if the pointer has been captured
|
|
654
|
+
const capturesForPointer = 'pointerId' in event && internal.capturedMap.get(event.pointerId); // We only authorize stopPropagation...
|
|
655
|
+
|
|
656
|
+
if ( // ...if this pointer hasn't been captured
|
|
657
|
+
!capturesForPointer || // ... or if the hit object is capturing the pointer
|
|
658
|
+
capturesForPointer.has(hit.eventObject)) {
|
|
659
|
+
raycastEvent.stopped = localState.stopped = true; // Propagation is stopped, remove all other hover records
|
|
660
|
+
// An event handler is only allowed to flush other handlers if it is hovered itself
|
|
661
|
+
|
|
662
|
+
if (internal.hovered.size && Array.from(internal.hovered.values()).find(i => i.eventObject === hit.eventObject)) {
|
|
663
|
+
// Objects cannot flush out higher up objects that have already caught the event
|
|
664
|
+
const higher = intersections.slice(0, intersections.indexOf(hit));
|
|
665
|
+
cancelPointer([...higher, hit]);
|
|
666
|
+
}
|
|
663
667
|
}
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
668
|
+
},
|
|
669
|
+
// there should be a distinction between target and currentTarget
|
|
670
|
+
target: {
|
|
671
|
+
hasPointerCapture,
|
|
672
|
+
setPointerCapture,
|
|
673
|
+
releasePointerCapture
|
|
674
|
+
},
|
|
675
|
+
currentTarget: {
|
|
676
|
+
hasPointerCapture,
|
|
677
|
+
setPointerCapture,
|
|
678
|
+
releasePointerCapture
|
|
679
|
+
},
|
|
680
|
+
nativeEvent: event
|
|
681
|
+
}; // Call subscribers
|
|
682
|
+
|
|
683
|
+
callback(raycastEvent); // Event bubbling may be interrupted by stopPropagation
|
|
684
|
+
|
|
685
|
+
if (localState.stopped === true) break;
|
|
686
|
+
}
|
|
683
687
|
}
|
|
684
688
|
}
|
|
685
689
|
|
|
@@ -2129,4 +2133,4 @@ reconciler.injectIntoDevTools({
|
|
|
2129
2133
|
});
|
|
2130
2134
|
const act = React.unstable_act;
|
|
2131
2135
|
|
|
2132
|
-
export {
|
|
2136
|
+
export { useGraph as A, Block as B, useLoader as C, ErrorBoundary as E, createRoot as a, useIsomorphicLayoutEffect as b, createEvents as c, unmountComponentAtNode as d, extend as e, context as f, createPortal as g, reconciler as h, isRef as i, applyProps as j, dispose as k, invalidate as l, advance as m, addEffect as n, addAfterEffect as o, addTail as p, getRootState as q, render as r, act as s, threeTypes as t, useMutableCallback as u, roots as v, useInstanceHandle as w, useStore as x, useThree as y, useFrame as z };
|
|
@@ -39,6 +39,7 @@ var threeTypes = /*#__PURE__*/Object.freeze({
|
|
|
39
39
|
|
|
40
40
|
var _window$document, _window$navigator;
|
|
41
41
|
const isOrthographicCamera = def => def && def.isOrthographicCamera;
|
|
42
|
+
const isRef = obj => obj && obj.hasOwnProperty('current');
|
|
42
43
|
/**
|
|
43
44
|
* An SSR-friendly useLayoutEffect.
|
|
44
45
|
*
|
|
@@ -503,9 +504,7 @@ function removeInteractivity(store, object) {
|
|
|
503
504
|
});
|
|
504
505
|
}
|
|
505
506
|
function createEvents(store) {
|
|
506
|
-
const temp = new THREE__namespace.Vector3();
|
|
507
507
|
/** Calculates delta */
|
|
508
|
-
|
|
509
508
|
function calculateDistance(event) {
|
|
510
509
|
const {
|
|
511
510
|
internal
|
|
@@ -605,108 +604,113 @@ function createEvents(store) {
|
|
|
605
604
|
|
|
606
605
|
|
|
607
606
|
function handleIntersects(intersections, event, delta, callback) {
|
|
608
|
-
|
|
609
|
-
raycaster,
|
|
610
|
-
pointer,
|
|
611
|
-
camera,
|
|
612
|
-
internal
|
|
613
|
-
} = store.getState(); // If anything has been found, forward it to the event listeners
|
|
614
|
-
|
|
607
|
+
// If anything has been found, forward it to the event listeners
|
|
615
608
|
if (intersections.length) {
|
|
616
|
-
const unprojectedPoint = temp.set(pointer.x, pointer.y, 0).unproject(camera);
|
|
617
609
|
const localState = {
|
|
618
610
|
stopped: false
|
|
619
611
|
};
|
|
620
612
|
|
|
621
613
|
for (const hit of intersections) {
|
|
622
|
-
const
|
|
623
|
-
var _internal$capturedMap, _internal$capturedMap2;
|
|
614
|
+
const state = getRootState(hit.object);
|
|
624
615
|
|
|
625
|
-
|
|
626
|
-
|
|
616
|
+
if (state) {
|
|
617
|
+
const {
|
|
618
|
+
raycaster,
|
|
619
|
+
pointer,
|
|
620
|
+
camera,
|
|
621
|
+
internal
|
|
622
|
+
} = state;
|
|
623
|
+
const unprojectedPoint = new THREE__namespace.Vector3(pointer.x, pointer.y, 0).unproject(camera);
|
|
627
624
|
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
625
|
+
const hasPointerCapture = id => {
|
|
626
|
+
var _internal$capturedMap, _internal$capturedMap2;
|
|
627
|
+
|
|
628
|
+
return (_internal$capturedMap = (_internal$capturedMap2 = internal.capturedMap.get(id)) == null ? void 0 : _internal$capturedMap2.has(hit.eventObject)) != null ? _internal$capturedMap : false;
|
|
632
629
|
};
|
|
633
630
|
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
631
|
+
const setPointerCapture = id => {
|
|
632
|
+
const captureData = {
|
|
633
|
+
intersection: hit,
|
|
634
|
+
target: event.target
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
if (internal.capturedMap.has(id)) {
|
|
638
|
+
// if the pointerId was previously captured, we add the hit to the
|
|
639
|
+
// event capturedMap.
|
|
640
|
+
internal.capturedMap.get(id).set(hit.eventObject, captureData);
|
|
641
|
+
} else {
|
|
642
|
+
// if the pointerId was not previously captured, we create a map
|
|
643
|
+
// containing the hitObject, and the hit. hitObject is used for
|
|
644
|
+
// faster access.
|
|
645
|
+
internal.capturedMap.set(id, new Map([[hit.eventObject, captureData]]));
|
|
646
|
+
} // Call the original event now
|
|
647
|
+
event.target.setPointerCapture(id);
|
|
648
|
+
};
|
|
646
649
|
|
|
647
|
-
|
|
648
|
-
|
|
650
|
+
const releasePointerCapture = id => {
|
|
651
|
+
const captures = internal.capturedMap.get(id);
|
|
649
652
|
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
653
|
+
if (captures) {
|
|
654
|
+
releaseInternalPointerCapture(internal.capturedMap, hit.eventObject, captures, id);
|
|
655
|
+
}
|
|
656
|
+
}; // Add native event props
|
|
654
657
|
|
|
655
658
|
|
|
656
|
-
|
|
659
|
+
let extractEventProps = {}; // This iterates over the event's properties including the inherited ones. Native PointerEvents have most of their props as getters which are inherited, but polyfilled PointerEvents have them all as their own properties (i.e. not inherited). We can't use Object.keys() or Object.entries() as they only return "own" properties; nor Object.getPrototypeOf(event) as that *doesn't* return "own" properties, only inherited ones.
|
|
657
660
|
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
+
for (let prop in event) {
|
|
662
|
+
let property = event[prop]; // Only copy over atomics, leave functions alone as these should be
|
|
663
|
+
// called as event.nativeEvent.fn()
|
|
661
664
|
|
|
662
|
-
|
|
663
|
-
|
|
665
|
+
if (typeof property !== 'function') extractEventProps[prop] = property;
|
|
666
|
+
}
|
|
664
667
|
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
668
|
+
let raycastEvent = { ...hit,
|
|
669
|
+
...extractEventProps,
|
|
670
|
+
pointer,
|
|
671
|
+
intersections,
|
|
672
|
+
stopped: localState.stopped,
|
|
673
|
+
delta,
|
|
674
|
+
unprojectedPoint,
|
|
675
|
+
ray: raycaster.ray,
|
|
676
|
+
camera: camera,
|
|
677
|
+
// Hijack stopPropagation, which just sets a flag
|
|
678
|
+
stopPropagation: () => {
|
|
679
|
+
// https://github.com/pmndrs/react-three-fiber/issues/596
|
|
680
|
+
// Events are not allowed to stop propagation if the pointer has been captured
|
|
681
|
+
const capturesForPointer = 'pointerId' in event && internal.capturedMap.get(event.pointerId); // We only authorize stopPropagation...
|
|
682
|
+
|
|
683
|
+
if ( // ...if this pointer hasn't been captured
|
|
684
|
+
!capturesForPointer || // ... or if the hit object is capturing the pointer
|
|
685
|
+
capturesForPointer.has(hit.eventObject)) {
|
|
686
|
+
raycastEvent.stopped = localState.stopped = true; // Propagation is stopped, remove all other hover records
|
|
687
|
+
// An event handler is only allowed to flush other handlers if it is hovered itself
|
|
688
|
+
|
|
689
|
+
if (internal.hovered.size && Array.from(internal.hovered.values()).find(i => i.eventObject === hit.eventObject)) {
|
|
690
|
+
// Objects cannot flush out higher up objects that have already caught the event
|
|
691
|
+
const higher = intersections.slice(0, intersections.indexOf(hit));
|
|
692
|
+
cancelPointer([...higher, hit]);
|
|
693
|
+
}
|
|
690
694
|
}
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
695
|
+
},
|
|
696
|
+
// there should be a distinction between target and currentTarget
|
|
697
|
+
target: {
|
|
698
|
+
hasPointerCapture,
|
|
699
|
+
setPointerCapture,
|
|
700
|
+
releasePointerCapture
|
|
701
|
+
},
|
|
702
|
+
currentTarget: {
|
|
703
|
+
hasPointerCapture,
|
|
704
|
+
setPointerCapture,
|
|
705
|
+
releasePointerCapture
|
|
706
|
+
},
|
|
707
|
+
nativeEvent: event
|
|
708
|
+
}; // Call subscribers
|
|
709
|
+
|
|
710
|
+
callback(raycastEvent); // Event bubbling may be interrupted by stopPropagation
|
|
711
|
+
|
|
712
|
+
if (localState.stopped === true) break;
|
|
713
|
+
}
|
|
710
714
|
}
|
|
711
715
|
}
|
|
712
716
|
|
|
@@ -2172,6 +2176,7 @@ exports.dispose = dispose;
|
|
|
2172
2176
|
exports.extend = extend;
|
|
2173
2177
|
exports.getRootState = getRootState;
|
|
2174
2178
|
exports.invalidate = invalidate;
|
|
2179
|
+
exports.isRef = isRef;
|
|
2175
2180
|
exports.reconciler = reconciler;
|
|
2176
2181
|
exports.render = render;
|
|
2177
2182
|
exports.roots = roots;
|