@tomorrowevening/hermes 0.0.110 → 0.0.112
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
"module": "./dist/hermes.esm.js",
|
8
8
|
"types": "./types/index.d.ts",
|
9
9
|
"type": "module",
|
10
|
-
"version": "0.0.
|
10
|
+
"version": "0.0.112",
|
11
11
|
"homepage": "https://github.com/tomorrowevening/hermes#readme",
|
12
12
|
"bugs": {
|
13
13
|
"url": "https://github.com/tomorrowevening/hermes/issues"
|
@@ -90,6 +90,7 @@ export default class MultiView extends Component<MultiViewProps, MultiViewState>
|
|
90
90
|
private onClick;
|
91
91
|
private onKey;
|
92
92
|
private onSetSelectedItem;
|
93
|
+
private updateSelectedItemHelper;
|
93
94
|
private onUpdateTransform;
|
94
95
|
private clearLightHelpers;
|
95
96
|
private addLightHelpers;
|
@@ -1,3 +1,8 @@
|
|
1
|
-
import RemoteThree from '@/core/remote/RemoteThree';
|
2
|
-
import { RemoteObject } from '../../types';
|
3
|
-
|
1
|
+
import RemoteThree from '@/core/remote/RemoteThree';
|
2
|
+
import { RemoteObject } from '../../types';
|
3
|
+
type InspectAnimationProps = {
|
4
|
+
object: RemoteObject;
|
5
|
+
three: RemoteThree;
|
6
|
+
};
|
7
|
+
export default function InspectAnimation(props: InspectAnimationProps): import("react/jsx-runtime").JSX.Element;
|
8
|
+
export {};
|