@wandelbots/wandelbots-js-react-components 2.32.0-pr.feature-robot-precondition-list.372.297bf4f → 2.32.0-pr.feature-robot-precondition-list.372.8ed54a6
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/components/CycleTimer.d.ts.map +1 -1
- package/dist/components/ProgramStateIndicator.d.ts.map +1 -1
- package/dist/components/RobotCard.d.ts +71 -0
- package/dist/components/RobotCard.d.ts.map +1 -0
- package/dist/components/RobotSetupReadinessIndicator.d.ts.map +1 -1
- package/dist/index.cjs +48 -48
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6247 -5876
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CycleTimer.tsx +43 -64
- package/src/components/ProgramStateIndicator.tsx +15 -3
- package/src/components/RobotCard.tsx +507 -0
- package/src/components/RobotSetupReadinessIndicator.tsx +2 -0
- package/src/i18n/locales/de/translations.json +3 -1
- package/src/i18n/locales/en/translations.json +3 -1
- package/src/index.ts +1 -0
|
@@ -64,5 +64,7 @@
|
|
|
64
64
|
"ProgramStateIndicator.ManualT2.lb": "Manuell T2",
|
|
65
65
|
"RobotSetupReadinessIndicator.Ready.lb": "Bereit",
|
|
66
66
|
"RobotSetupReadinessIndicator.RobotDisconnected.lb": "Roboter getrennt",
|
|
67
|
-
"RobotSetupReadinessIndicator.PreconditionNotFulfilled.lb": "Voraussetzung nicht erfüllt"
|
|
67
|
+
"RobotSetupReadinessIndicator.PreconditionNotFulfilled.lb": "Voraussetzung nicht erfüllt",
|
|
68
|
+
"RobotCard.Runtime.lb": "Laufzeit",
|
|
69
|
+
"RobotCard.DriveToHome.bt": "Zur Home-Position fahren"
|
|
68
70
|
}
|
|
@@ -65,5 +65,7 @@
|
|
|
65
65
|
"ProgramStateIndicator.ManualT2.lb": "Manual T2",
|
|
66
66
|
"RobotSetupReadinessIndicator.Ready.lb": "Ready",
|
|
67
67
|
"RobotSetupReadinessIndicator.RobotDisconnected.lb": "Robot disconnected",
|
|
68
|
-
"RobotSetupReadinessIndicator.PreconditionNotFulfilled.lb": "Precondition not fulfilled"
|
|
68
|
+
"RobotSetupReadinessIndicator.PreconditionNotFulfilled.lb": "Precondition not fulfilled",
|
|
69
|
+
"RobotCard.Runtime.lb": "Runtime",
|
|
70
|
+
"RobotCard.DriveToHome.bt": "Drive to Home"
|
|
69
71
|
}
|
package/src/index.ts
CHANGED
|
@@ -12,6 +12,7 @@ export * from "./components/LoadingCover"
|
|
|
12
12
|
export * from "./components/modal/NoMotionGroupModal"
|
|
13
13
|
export * from "./components/ProgramControl"
|
|
14
14
|
export * from "./components/ProgramStateIndicator"
|
|
15
|
+
export * from "./components/RobotCard"
|
|
15
16
|
export * from "./components/RobotListItem"
|
|
16
17
|
export * from "./components/robots/AxisConfig"
|
|
17
18
|
export * from "./components/robots/Robot"
|