@tomorrowevening/hermes 0.0.106 → 0.0.108
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hermes.cjs.js +15 -15
- package/dist/hermes.es.js +2377 -2283
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/types/core/remote/RemoteTheatre.d.ts +1 -2
- package/types/core/remote/RemoteThree.d.ts +39 -39
- package/types/core/types.d.ts +35 -35
- package/types/editor/global.d.ts +26 -26
- package/types/editor/multiView/CameraWindow.d.ts +22 -22
- package/types/editor/multiView/MultiView.d.ts +115 -109
- package/types/editor/multiView/Toggle.d.ts +10 -10
- package/types/editor/sidePanel/DebugData.d.ts +24 -24
- package/types/editor/sidePanel/inspector/InspectorGroup.d.ts +23 -23
- package/types/editor/sidePanel/inspector/utils/InspectTransform.d.ts +27 -25
- package/types/editor/tools/Transform.d.ts +2 -0
- package/types/editor/tools/splineEditor/Spline.d.ts +52 -52
- package/types/editor/tools/splineEditor/index.d.ts +27 -27
- package/types/editor/utils.d.ts +31 -31
- package/types/index.d.ts +27 -27
package/types/index.d.ts
CHANGED
@@ -1,27 +1,27 @@
|
|
1
|
-
export * from './core/types';
|
2
|
-
export * from './editor/utils';
|
3
|
-
export { default as Application } from './core/Application';
|
4
|
-
export { debugDispatcher, ToolEvents } from './editor/global';
|
5
|
-
export { default as BaseRemote } from './core/remote/BaseRemote';
|
6
|
-
export { default as RemoteComponents } from './core/remote/RemoteComponents';
|
7
|
-
export * from './editor/theatreUtils';
|
8
|
-
export { default as RemoteTheatre } from './core/remote/RemoteTheatre';
|
9
|
-
export { default as RemoteThree } from './core/remote/RemoteThree';
|
10
|
-
export { default as NavButton } from './editor/components/NavButton';
|
11
|
-
export { default as DraggableItem } from './editor/components/DraggableItem';
|
12
|
-
export { default as Draggable } from './editor/components/Draggable';
|
13
|
-
export { default as DropdownItem } from './editor/components/DropdownItem';
|
14
|
-
export { default as Dropdown } from './editor/components/Dropdown';
|
15
|
-
export { default as RemoteController } from './core/RemoteController';
|
16
|
-
export { default as SidePanel } from './editor/sidePanel/SidePanel';
|
17
|
-
export { default as Accordion } from './editor/sidePanel/Accordion';
|
18
|
-
export { default as ChildObject } from './editor/sidePanel/ChildObject';
|
19
|
-
export { default as ContainerObject } from './editor/sidePanel/ContainerObject';
|
20
|
-
export { default as Inspector } from './editor/sidePanel/inspector/Inspector';
|
21
|
-
export { default as SceneInspector } from './editor/sidePanel/inspector/SceneInspector';
|
22
|
-
export { default as MultiView } from './editor/multiView/MultiView';
|
23
|
-
export { default as Editor } from './editor/Editor';
|
24
|
-
export { default as ThreeEditor } from './editor/ThreeEditor';
|
25
|
-
export { default as Transform } from './editor/tools/Transform';
|
26
|
-
export { default as Spline } from './editor/tools/splineEditor/Spline';
|
27
|
-
export { default as SplineEditor } from './editor/tools/splineEditor/index';
|
1
|
+
export * from './core/types';
|
2
|
+
export * from './editor/utils';
|
3
|
+
export { default as Application } from './core/Application';
|
4
|
+
export { debugDispatcher, ToolEvents } from './editor/global';
|
5
|
+
export { default as BaseRemote } from './core/remote/BaseRemote';
|
6
|
+
export { default as RemoteComponents } from './core/remote/RemoteComponents';
|
7
|
+
export * from './editor/theatreUtils';
|
8
|
+
export { default as RemoteTheatre } from './core/remote/RemoteTheatre';
|
9
|
+
export { default as RemoteThree } from './core/remote/RemoteThree';
|
10
|
+
export { default as NavButton } from './editor/components/NavButton';
|
11
|
+
export { default as DraggableItem } from './editor/components/DraggableItem';
|
12
|
+
export { default as Draggable } from './editor/components/Draggable';
|
13
|
+
export { default as DropdownItem } from './editor/components/DropdownItem';
|
14
|
+
export { default as Dropdown } from './editor/components/Dropdown';
|
15
|
+
export { default as RemoteController } from './core/RemoteController';
|
16
|
+
export { default as SidePanel } from './editor/sidePanel/SidePanel';
|
17
|
+
export { default as Accordion } from './editor/sidePanel/Accordion';
|
18
|
+
export { default as ChildObject } from './editor/sidePanel/ChildObject';
|
19
|
+
export { default as ContainerObject } from './editor/sidePanel/ContainerObject';
|
20
|
+
export { default as Inspector } from './editor/sidePanel/inspector/Inspector';
|
21
|
+
export { default as SceneInspector } from './editor/sidePanel/inspector/SceneInspector';
|
22
|
+
export { default as MultiView } from './editor/multiView/MultiView';
|
23
|
+
export { default as Editor } from './editor/Editor';
|
24
|
+
export { default as ThreeEditor } from './editor/ThreeEditor';
|
25
|
+
export { default as Transform } from './editor/tools/Transform';
|
26
|
+
export { default as Spline } from './editor/tools/splineEditor/Spline';
|
27
|
+
export { default as SplineEditor } from './editor/tools/splineEditor/index';
|