@wandelbots/wandelbots-js-react-components 1.7.0 → 1.7.1
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/dist/index.cjs +24 -24
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -2
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -7,4 +7,5 @@ export * from "./components/3d-viewport/SafetyZonesRenderer";
|
|
|
7
7
|
export * from "./components/jogging/JoggingCartesianAxisControl";
|
|
8
8
|
export * from "./components/jogging/JoggingJointRotationControl";
|
|
9
9
|
export * from "./components/jogging/JoggingPanel";
|
|
10
|
+
export * from "./components/utils/hooks";
|
|
10
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAA;AACnE,cAAc,oCAAoC,CAAA;AAClD,cAAc,2BAA2B,CAAA;AACzC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,4CAA4C,CAAA;AAC1D,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,kDAAkD,CAAA;AAChE,cAAc,mCAAmC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAA;AACnE,cAAc,oCAAoC,CAAA;AAClD,cAAc,2BAA2B,CAAA;AACzC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,4CAA4C,CAAA;AAC1D,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,kDAAkD,CAAA;AAChE,cAAc,mCAAmC,CAAA;AACjD,cAAc,0BAA0B,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { useTheme as Os, Button as ca, Typography as et, IconButton as ua, Slide
|
|
|
7
7
|
import { Globals as _l, useSpring as vl, animated as S } from "@react-spring/three";
|
|
8
8
|
import { useGLTF as De, Line as xl, Environment as Sl, Lightformer as Nt } from "@react-three/drei";
|
|
9
9
|
import { useThree as wl } from "@react-three/fiber";
|
|
10
|
-
import {
|
|
10
|
+
import { autorun as Ts, reaction as Rl, makeAutoObservable as jl, runInAction as Cl } from "mobx";
|
|
11
11
|
import * as xt from "three";
|
|
12
12
|
import { Matrix4 as _r, Vector3 as ha, Quaternion as Pl } from "three";
|
|
13
13
|
import { ErrorBoundary as El } from "react-error-boundary";
|
|
@@ -15371,6 +15371,10 @@ export {
|
|
|
15371
15371
|
pc as SupportedRobot,
|
|
15372
15372
|
mp as WandelscriptEditor,
|
|
15373
15373
|
gp as defaultAxisConfig,
|
|
15374
|
-
Ls as defaultGetModel
|
|
15374
|
+
Ls as defaultGetModel,
|
|
15375
|
+
Lr as useAnimationFrame,
|
|
15376
|
+
Xl as useAutorun,
|
|
15377
|
+
Wo as useMounted,
|
|
15378
|
+
Yl as useReaction
|
|
15375
15379
|
};
|
|
15376
15380
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -7,3 +7,4 @@ export * from "./components/3d-viewport/SafetyZonesRenderer"
|
|
|
7
7
|
export * from "./components/jogging/JoggingCartesianAxisControl"
|
|
8
8
|
export * from "./components/jogging/JoggingJointRotationControl"
|
|
9
9
|
export * from "./components/jogging/JoggingPanel"
|
|
10
|
+
export * from "./components/utils/hooks"
|