@wandelbots/wandelbots-js-react-components 4.0.3 → 4.1.0
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/3d.cjs.js +1 -1
- package/dist/3d.d.ts +3 -1
- package/dist/3d.d.ts.map +1 -1
- package/dist/3d.es.js +12 -10
- package/dist/auth0-spa-js.production.esm-D_IhPirK.cjs +5 -0
- package/dist/auth0-spa-js.production.esm-D_IhPirK.cjs.map +1 -0
- package/dist/{auth0-spa-js.production.esm-BMSlxZC5.js → auth0-spa-js.production.esm-mvPojIrB.js} +1526 -1360
- package/dist/auth0-spa-js.production.esm-mvPojIrB.js.map +1 -0
- package/dist/components/robots/DHLinearAxis.d.ts +3 -0
- package/dist/components/robots/DHLinearAxis.d.ts.map +1 -0
- package/dist/components/robots/LinearAxis.d.ts +25 -0
- package/dist/components/robots/LinearAxis.d.ts.map +1 -0
- package/dist/components/robots/LinearAxisAnimator.d.ts +12 -0
- package/dist/components/robots/LinearAxisAnimator.d.ts.map +1 -0
- package/dist/components/robots/SupportedLinearAxis.d.ts +18 -0
- package/dist/components/robots/SupportedLinearAxis.d.ts.map +1 -0
- package/dist/core.cjs.js +1 -1
- package/dist/core.es.js +2 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +63 -61
- package/dist/{interpolation-DAXKfoDS.cjs → interpolation-DZhBKo-u.cjs} +2 -2
- package/dist/{interpolation-DAXKfoDS.cjs.map → interpolation-DZhBKo-u.cjs.map} +1 -1
- package/dist/{interpolation-DcPbemBD.js → interpolation-baUmFLkh.js} +2 -2
- package/dist/{interpolation-DcPbemBD.js.map → interpolation-baUmFLkh.js.map} +1 -1
- package/dist/manufacturerHomePositions-BCgn-SCy.js +1262 -0
- package/dist/manufacturerHomePositions-BCgn-SCy.js.map +1 -0
- package/dist/manufacturerHomePositions-B_nLYNzG.cjs +2 -0
- package/dist/manufacturerHomePositions-B_nLYNzG.cjs.map +1 -0
- package/dist/{theming-Hr605E6v.js → theming-BTlS2afw.js} +2 -2
- package/dist/{theming-Hr605E6v.js.map → theming-BTlS2afw.js.map} +1 -1
- package/dist/{theming-CPShzNuV.cjs → theming-DPoEjzxv.cjs} +2 -2
- package/dist/{theming-CPShzNuV.cjs.map → theming-DPoEjzxv.cjs.map} +1 -1
- package/package.json +2 -2
- package/src/3d.ts +4 -2
- package/src/components/robots/DHLinearAxis.tsx +128 -0
- package/src/components/robots/LinearAxis.tsx +73 -0
- package/src/components/robots/LinearAxisAnimator.tsx +116 -0
- package/src/components/robots/SupportedLinearAxis.tsx +99 -0
- package/dist/auth0-spa-js.production.esm-BMSlxZC5.js.map +0 -1
- package/dist/auth0-spa-js.production.esm-DZ6lsBvD.cjs +0 -5
- package/dist/auth0-spa-js.production.esm-DZ6lsBvD.cjs.map +0 -1
- package/dist/manufacturerHomePositions-BD6C5qZJ.js +0 -1040
- package/dist/manufacturerHomePositions-BD6C5qZJ.js.map +0 -1
- package/dist/manufacturerHomePositions-DRNjU1pU.cjs +0 -2
- package/dist/manufacturerHomePositions-DRNjU1pU.cjs.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DHLinearAxis.d.ts","sourceRoot":"","sources":["../../../src/components/robots/DHLinearAxis.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAA;AAE9D,wBAAgB,YAAY,CAAC,EAC3B,0BAA0B,EAC1B,YAAY,EACZ,GAAG,KAAK,EACT,EAAE,iBAAiB,2CAmHnB"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { ThreeElements } from "@react-three/fiber";
|
|
2
|
+
import type { Group } from "three";
|
|
3
|
+
import type { ConnectedMotionGroup } from "../../lib/ConnectedMotionGroup";
|
|
4
|
+
import { defaultGetModel } from "./robotModelLogic";
|
|
5
|
+
export type LinearAxisProps = {
|
|
6
|
+
connectedMotionGroup: ConnectedMotionGroup;
|
|
7
|
+
getModel?: (modelFromController: string) => Promise<string>;
|
|
8
|
+
flangeRef?: React.Ref<Group>;
|
|
9
|
+
transparentColor?: string;
|
|
10
|
+
postModelRender?: () => void;
|
|
11
|
+
} & ThreeElements["group"];
|
|
12
|
+
/**
|
|
13
|
+
* The LinearAxis component is a wrapper that renders SupportedLinearAxis if a model is available,
|
|
14
|
+
* otherwise falls back to DHLinearAxis for usage with @wandelbots/nova-js ConnectedMotionGroup object.
|
|
15
|
+
*
|
|
16
|
+
* @param {LinearAxisProps} props - The properties for the LinearAxis component.
|
|
17
|
+
* @param {ConnectedMotionGroup} props.connectedMotionGroup - The connected motion group containing motion state and parameters.
|
|
18
|
+
* @param {Function} [props.getModel=defaultGetModel] - Optional function to get the model URL. Defaults to defaultGetModel.
|
|
19
|
+
* @param {Object} props - Additional properties passed to the underlying component.
|
|
20
|
+
*
|
|
21
|
+
* @returns {JSX.Element} The rendered SupportedLinearAxis or DHLinearAxis component.
|
|
22
|
+
*/
|
|
23
|
+
export declare function LinearAxis({ connectedMotionGroup, getModel, flangeRef, transparentColor, postModelRender, ...props }: LinearAxisProps): import("react/jsx-runtime").JSX.Element | null;
|
|
24
|
+
export { defaultGetModel };
|
|
25
|
+
//# sourceMappingURL=LinearAxis.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinearAxis.d.ts","sourceRoot":"","sources":["../../../src/components/robots/LinearAxis.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAEvD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAClC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAE1E,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD,MAAM,MAAM,eAAe,GAAG;IAC5B,oBAAoB,EAAE,oBAAoB,CAAA;IAC1C,QAAQ,CAAC,EAAE,CAAC,mBAAmB,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAA;IAC3D,SAAS,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,eAAe,CAAC,EAAE,MAAM,IAAI,CAAA;CAC7B,GAAG,aAAa,CAAC,OAAO,CAAC,CAAA;AAE1B;;;;;;;;;;GAUG;AACH,wBAAgB,UAAU,CAAC,EACzB,oBAAoB,EACpB,QAA0B,EAC1B,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,GAAG,KAAK,EACT,EAAE,eAAe,kDAmCjB;AAED,OAAO,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { DHParameter, MotionGroupState } from "@wandelbots/nova-js/v2";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import type { Object3D } from "three";
|
|
4
|
+
type LinearAxisAnimatorProps = {
|
|
5
|
+
rapidlyChangingMotionState: MotionGroupState;
|
|
6
|
+
dhParameters: DHParameter[];
|
|
7
|
+
onTranslationChanged?: (joints: Object3D[], jointValues: number[]) => void;
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
};
|
|
10
|
+
export default function LinearAxisAnimator({ rapidlyChangingMotionState, dhParameters, onTranslationChanged, children, }: LinearAxisAnimatorProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=LinearAxisAnimator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinearAxisAnimator.d.ts","sourceRoot":"","sources":["../../../src/components/robots/LinearAxisAnimator.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AAC3E,OAAO,KAAyC,MAAM,OAAO,CAAA;AAC7D,OAAO,KAAK,EAAS,QAAQ,EAAE,MAAM,OAAO,CAAA;AAK5C,KAAK,uBAAuB,GAAG;IAC7B,0BAA0B,EAAE,gBAAgB,CAAA;IAC5C,YAAY,EAAE,WAAW,EAAE,CAAA;IAC3B,oBAAoB,CAAC,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,EAAE,WAAW,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC1E,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAC1B,CAAA;AAED,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,EACzC,0BAA0B,EAC1B,YAAY,EACZ,oBAAoB,EACpB,QAAQ,GACT,EAAE,uBAAuB,2CA+FzB"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { ThreeElements } from "@react-three/fiber";
|
|
2
|
+
import type { DHParameter, MotionGroupState } from "@wandelbots/nova-js/v2";
|
|
3
|
+
import type * as THREE from "three";
|
|
4
|
+
export type DHLinearAxisProps = {
|
|
5
|
+
rapidlyChangingMotionState: MotionGroupState;
|
|
6
|
+
dhParameters: Array<DHParameter>;
|
|
7
|
+
} & ThreeElements["group"];
|
|
8
|
+
export type SupportedLinearAxisProps = {
|
|
9
|
+
rapidlyChangingMotionState: MotionGroupState;
|
|
10
|
+
modelFromController: string;
|
|
11
|
+
dhParameters: DHParameter[];
|
|
12
|
+
flangeRef?: React.Ref<THREE.Group>;
|
|
13
|
+
getModel?: (modelFromController: string) => Promise<string> | undefined;
|
|
14
|
+
postModelRender?: () => void;
|
|
15
|
+
transparentColor?: string;
|
|
16
|
+
} & ThreeElements["group"];
|
|
17
|
+
export declare const SupportedLinearAxis: ({ rapidlyChangingMotionState, modelFromController, dhParameters, getModel, flangeRef, postModelRender, transparentColor, ...props }: SupportedLinearAxisProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
//# sourceMappingURL=SupportedLinearAxis.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SupportedLinearAxis.d.ts","sourceRoot":"","sources":["../../../src/components/robots/SupportedLinearAxis.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AACvD,OAAO,KAAK,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AAG3E,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AASnC,MAAM,MAAM,iBAAiB,GAAG;IAC9B,0BAA0B,EAAE,gBAAgB,CAAA;IAC5C,YAAY,EAAE,KAAK,CAAC,WAAW,CAAC,CAAA;CACjC,GAAG,aAAa,CAAC,OAAO,CAAC,CAAA;AAE1B,MAAM,MAAM,wBAAwB,GAAG;IACrC,0BAA0B,EAAE,gBAAgB,CAAA;IAC5C,mBAAmB,EAAE,MAAM,CAAA;IAC3B,YAAY,EAAE,WAAW,EAAE,CAAA;IAC3B,SAAS,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;IAClC,QAAQ,CAAC,EAAE,CAAC,mBAAmB,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,GAAG,SAAS,CAAA;IACvE,eAAe,CAAC,EAAE,MAAM,IAAI,CAAA;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAC1B,GAAG,aAAa,CAAC,OAAO,CAAC,CAAA;AAE1B,eAAO,MAAM,mBAAmB,wIAU3B,wBAAwB,4CA4D5B,CAAA"}
|
package/dist/core.cjs.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./theming-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./theming-DPoEjzxv.cjs"),t=require("./LoadingCover-CukpS_aj.cjs"),o=require("./interpolation-DZhBKo-u.cjs"),a=require("./externalizeComponent-CkVWk2F_.cjs");exports.AppHeader=e.AppHeader;exports.ConnectedMotionGroup=e.ConnectedMotionGroup;exports.CycleTimer=e.CycleTimer;exports.JoggerConnection=e.JoggerConnection;exports.JoggingCartesianAxisControl=e.JoggingCartesianAxisControl;exports.JoggingJointRotationControl=e.JoggingJointRotationControl;exports.JoggingPanel=e.JoggingPanel;exports.JoggingStore=e.JoggingStore;exports.LogPanel=e.LogPanel;exports.LogStore=e.LogStore;exports.LogViewer=e.LogViewer;exports.MotionStreamConnection=e.MotionStreamConnection;exports.NoMotionGroupModal=e.NoMotionGroupModal;exports.PoseCartesianValues=e.PoseCartesianValues;exports.PoseJointValues=e.PoseJointValues;exports.RobotListItem=e.RobotListItem;exports.RobotSetupReadinessIndicator=e.RobotSetupReadinessIndicator;exports.RobotSetupReadinessState=e.RobotSetupReadinessState;exports.SafetyBar=e.SafetyBar;exports.SelectableFab=e.SelectableFab;exports.TabBar=e.TabBar;exports.Timer=e.Timer;exports.VelocitySlider=e.VelocitySlider;exports.VelocitySliderLabel=e.VelocitySliderLabel;exports.WandelbotsDataGrid=e.WandelbotsDataGrid;exports.createDebugMessage=e.createDebugMessage;exports.createErrorMessage=e.createErrorMessage;exports.createInfoMessage=e.createInfoMessage;exports.createLogMessage=e.createLogMessage;exports.createNovaMuiTheme=e.createNovaMuiTheme;exports.createWarningMessage=e.createWarningMessage;exports.jointValuesEqual=e.jointValuesEqual;exports.poseEqual=e.poseEqual;exports.tcpMotionEqual=e.tcpMotionEqual;exports.unwrapRotationVector=e.unwrapRotationVector;exports.LoadingCover=t.LoadingCover;exports.LoadingErrorMessage=t.LoadingErrorMessage;exports.ProgramControl=o.ProgramControl;exports.ProgramState=o.ProgramState;exports.ProgramStateIndicator=o.ProgramStateIndicator;exports.ValueInterpolator=o.ValueInterpolator;exports.useAnimationFrame=o.useAnimationFrame;exports.useAutorun=o.useAutorun;exports.useInterpolation=o.useInterpolation;exports.useMounted=o.useMounted;exports.useReaction=o.useReaction;exports.i18n=a.i18n;
|
|
2
2
|
//# sourceMappingURL=core.cjs.js.map
|
package/dist/core.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { A as o, C as s, a as t, J as r, b as n, c as i, d as g, e as l, L as u, f as c, g as d, M as p, N as m, P as M, h as S, R as b, i as C, j as L, S as V, k as P, T as R, l as f, V as J, m as I, W as x, n as A, o as E, p as T, q, r as y, s as v, t as w, u as G, v as N, w as W } from "./theming-
|
|
1
|
+
import { A as o, C as s, a as t, J as r, b as n, c as i, d as g, e as l, L as u, f as c, g as d, M as p, N as m, P as M, h as S, R as b, i as C, j as L, S as V, k as P, T as R, l as f, V as J, m as I, W as x, n as A, o as E, p as T, q, r as y, s as v, t as w, u as G, v as N, w as W } from "./theming-BTlS2afw.js";
|
|
2
2
|
import { L as j, a as B } from "./LoadingCover-6gWr11KP.js";
|
|
3
|
-
import { P as F, a as k, b as H, V as z, u as K, c as O, d as Q, e as U, f as X } from "./interpolation-
|
|
3
|
+
import { P as F, a as k, b as H, V as z, u as K, c as O, d as Q, e as U, f as X } from "./interpolation-baUmFLkh.js";
|
|
4
4
|
import { i as Z } from "./externalizeComponent-Dc3fViZA.js";
|
|
5
5
|
export {
|
|
6
6
|
o as AppHeader,
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./manufacturerHomePositions-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./manufacturerHomePositions-B_nLYNzG.cjs"),e=require("./theming-DPoEjzxv.cjs"),r=require("./LoadingCover-CukpS_aj.cjs"),t=require("./interpolation-DZhBKo-u.cjs"),a=require("./externalizeComponent-CkVWk2F_.cjs"),n=require("./WandelscriptEditor-D6_vS5Uk.cjs");exports.CollisionSceneRenderer=o.CollisionSceneRenderer;exports.LinearAxis=o.LinearAxis;exports.MANUFACTURER_HOME_CONFIGS=o.MANUFACTURER_HOME_CONFIGS;exports.PresetEnvironment=o.PresetEnvironment;exports.Robot=o.Robot;exports.RobotCard=o.RobotCard;exports.SafetyZonesRenderer=o.SafetyZonesRenderer;exports.SupportedLinearAxis=o.SupportedLinearAxis;exports.SupportedRobot=o.SupportedRobot;exports.TrajectoryRenderer=o.TrajectoryRenderer;exports.defaultAxisConfig=o.defaultAxisConfig;exports.defaultGetModel=o.defaultGetModel;exports.extractManufacturer=o.extractManufacturer;exports.getDefaultHomeConfig=o.getDefaultHomeConfig;exports.AppHeader=e.AppHeader;exports.ConnectedMotionGroup=e.ConnectedMotionGroup;exports.CycleTimer=e.CycleTimer;exports.JoggerConnection=e.JoggerConnection;exports.JoggingCartesianAxisControl=e.JoggingCartesianAxisControl;exports.JoggingJointRotationControl=e.JoggingJointRotationControl;exports.JoggingPanel=e.JoggingPanel;exports.JoggingStore=e.JoggingStore;exports.LogPanel=e.LogPanel;exports.LogStore=e.LogStore;exports.LogViewer=e.LogViewer;exports.MotionStreamConnection=e.MotionStreamConnection;exports.NoMotionGroupModal=e.NoMotionGroupModal;exports.PoseCartesianValues=e.PoseCartesianValues;exports.PoseJointValues=e.PoseJointValues;exports.RobotListItem=e.RobotListItem;exports.RobotSetupReadinessIndicator=e.RobotSetupReadinessIndicator;exports.RobotSetupReadinessState=e.RobotSetupReadinessState;exports.SafetyBar=e.SafetyBar;exports.SelectableFab=e.SelectableFab;exports.TabBar=e.TabBar;exports.Timer=e.Timer;exports.VelocitySlider=e.VelocitySlider;exports.VelocitySliderLabel=e.VelocitySliderLabel;exports.WandelbotsDataGrid=e.WandelbotsDataGrid;exports.createDebugMessage=e.createDebugMessage;exports.createErrorMessage=e.createErrorMessage;exports.createInfoMessage=e.createInfoMessage;exports.createLogMessage=e.createLogMessage;exports.createNovaMuiTheme=e.createNovaMuiTheme;exports.createWarningMessage=e.createWarningMessage;exports.jointValuesEqual=e.jointValuesEqual;exports.poseEqual=e.poseEqual;exports.tcpMotionEqual=e.tcpMotionEqual;exports.unwrapRotationVector=e.unwrapRotationVector;exports.LoadingCover=r.LoadingCover;exports.LoadingErrorMessage=r.LoadingErrorMessage;exports.ProgramControl=t.ProgramControl;exports.ProgramState=t.ProgramState;exports.ProgramStateIndicator=t.ProgramStateIndicator;exports.ValueInterpolator=t.ValueInterpolator;exports.useAnimationFrame=t.useAnimationFrame;exports.useAutorun=t.useAutorun;exports.useInterpolation=t.useInterpolation;exports.useMounted=t.useMounted;exports.useReaction=t.useReaction;exports.i18n=a.i18n;exports.WandelscriptEditor=n.WandelscriptEditor;
|
|
2
2
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.es.js
CHANGED
|
@@ -1,69 +1,71 @@
|
|
|
1
|
-
import { C as o,
|
|
2
|
-
import { A as
|
|
3
|
-
import { L as
|
|
4
|
-
import { P as
|
|
5
|
-
import { i as
|
|
6
|
-
import { W as
|
|
1
|
+
import { C as o, L as s, M as t, P as r, R as n, a as i, S as g, b as l, c as u, T as d, d as c, e as p, f as m, g as M } from "./manufacturerHomePositions-BCgn-SCy.js";
|
|
2
|
+
import { A as f, C, a as R, J as b, b as L, c as x, d as P, e as A, L as V, f as E, g as J, M as T, N as I, P as y, h as G, R as N, i as W, j as q, S as v, k as F, T as j, l as w, V as D, m as H, W as h, n as B, o as O, p as U, q as _, r as k, s as Z, t as z, u as K, v as Q, w as X } from "./theming-BTlS2afw.js";
|
|
3
|
+
import { L as $, a as aa } from "./LoadingCover-6gWr11KP.js";
|
|
4
|
+
import { P as oa, a as sa, b as ta, V as ra, u as na, c as ia, d as ga, e as la, f as ua } from "./interpolation-baUmFLkh.js";
|
|
5
|
+
import { i as ca } from "./externalizeComponent-Dc3fViZA.js";
|
|
6
|
+
import { W as ma } from "./WandelscriptEditor-7eN-Yw7m.js";
|
|
7
7
|
export {
|
|
8
|
-
|
|
8
|
+
f as AppHeader,
|
|
9
9
|
o as CollisionSceneRenderer,
|
|
10
10
|
C as ConnectedMotionGroup,
|
|
11
11
|
R as CycleTimer,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
b as JoggerConnection,
|
|
13
|
+
L as JoggingCartesianAxisControl,
|
|
14
|
+
x as JoggingJointRotationControl,
|
|
15
15
|
P as JoggingPanel,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
A as JoggingStore,
|
|
17
|
+
s as LinearAxis,
|
|
18
|
+
$ as LoadingCover,
|
|
19
|
+
aa as LoadingErrorMessage,
|
|
19
20
|
V as LogPanel,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
21
|
+
E as LogStore,
|
|
22
|
+
J as LogViewer,
|
|
23
|
+
t as MANUFACTURER_HOME_CONFIGS,
|
|
24
|
+
T as MotionStreamConnection,
|
|
25
|
+
I as NoMotionGroupModal,
|
|
26
|
+
y as PoseCartesianValues,
|
|
27
|
+
G as PoseJointValues,
|
|
28
|
+
r as PresetEnvironment,
|
|
29
|
+
oa as ProgramControl,
|
|
30
|
+
sa as ProgramState,
|
|
31
|
+
ta as ProgramStateIndicator,
|
|
32
|
+
n as Robot,
|
|
33
|
+
i as RobotCard,
|
|
34
|
+
N as RobotListItem,
|
|
35
|
+
W as RobotSetupReadinessIndicator,
|
|
36
|
+
q as RobotSetupReadinessState,
|
|
37
|
+
v as SafetyBar,
|
|
38
|
+
g as SafetyZonesRenderer,
|
|
39
|
+
F as SelectableFab,
|
|
40
|
+
l as SupportedLinearAxis,
|
|
41
|
+
u as SupportedRobot,
|
|
42
|
+
j as TabBar,
|
|
43
|
+
w as Timer,
|
|
44
|
+
d as TrajectoryRenderer,
|
|
45
|
+
ra as ValueInterpolator,
|
|
46
|
+
D as VelocitySlider,
|
|
47
|
+
H as VelocitySliderLabel,
|
|
48
|
+
h as WandelbotsDataGrid,
|
|
49
|
+
ma as WandelscriptEditor,
|
|
50
|
+
B as createDebugMessage,
|
|
51
|
+
O as createErrorMessage,
|
|
52
|
+
U as createInfoMessage,
|
|
53
|
+
_ as createLogMessage,
|
|
54
|
+
k as createNovaMuiTheme,
|
|
55
|
+
Z as createWarningMessage,
|
|
56
|
+
c as defaultAxisConfig,
|
|
57
|
+
p as defaultGetModel,
|
|
58
|
+
m as extractManufacturer,
|
|
59
|
+
M as getDefaultHomeConfig,
|
|
60
|
+
ca as i18n,
|
|
61
|
+
z as jointValuesEqual,
|
|
62
|
+
K as poseEqual,
|
|
63
|
+
Q as tcpMotionEqual,
|
|
64
|
+
X as unwrapRotationVector,
|
|
65
|
+
na as useAnimationFrame,
|
|
66
|
+
ia as useAutorun,
|
|
67
|
+
ga as useInterpolation,
|
|
68
|
+
la as useMounted,
|
|
69
|
+
ua as useReaction
|
|
68
70
|
};
|
|
69
71
|
//# sourceMappingURL=index.es.js.map
|