@wandelbots/wandelbots-js-react-components 2.34.0 → 2.34.1-pr.feature-robot-precondition-list.372.a71f99a
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/AppHeader.d.ts +34 -0
- package/dist/components/AppHeader.d.ts.map +1 -0
- package/dist/components/CycleTimer.d.ts +21 -16
- package/dist/components/CycleTimer.d.ts.map +1 -1
- package/dist/components/DataGrid.d.ts +66 -0
- package/dist/components/DataGrid.d.ts.map +1 -0
- package/dist/components/LogPanel.d.ts +38 -0
- package/dist/components/LogPanel.d.ts.map +1 -0
- package/dist/components/LogStore.d.ts +12 -0
- package/dist/components/LogStore.d.ts.map +1 -0
- package/dist/components/LogViewer.d.ts +46 -0
- package/dist/components/LogViewer.d.ts.map +1 -0
- package/dist/components/ProgramControl.d.ts +8 -2
- package/dist/components/ProgramControl.d.ts.map +1 -1
- package/dist/components/ProgramStateIndicator.d.ts +1 -1
- package/dist/components/ProgramStateIndicator.d.ts.map +1 -1
- package/dist/components/RobotCard.d.ts +100 -0
- package/dist/components/RobotCard.d.ts.map +1 -0
- package/dist/components/RobotListItem.d.ts +34 -0
- package/dist/components/RobotListItem.d.ts.map +1 -0
- package/dist/components/RobotSetupReadinessIndicator.d.ts +31 -0
- package/dist/components/RobotSetupReadinessIndicator.d.ts.map +1 -0
- package/dist/components/RobotSetupReadinessIndicator.test.d.ts +2 -0
- package/dist/components/RobotSetupReadinessIndicator.test.d.ts.map +1 -0
- package/dist/components/TabBar.d.ts +30 -0
- package/dist/components/TabBar.d.ts.map +1 -0
- package/dist/components/robots/Robot.d.ts +3 -2
- package/dist/components/robots/Robot.d.ts.map +1 -1
- package/dist/components/robots/manufacturerHomePositions.d.ts +21 -0
- package/dist/components/robots/manufacturerHomePositions.d.ts.map +1 -0
- package/dist/icons/DropdownArrowIcon.d.ts +3 -0
- package/dist/icons/DropdownArrowIcon.d.ts.map +1 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/index.cjs +49 -49
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11166 -9377
- package/dist/index.js.map +1 -1
- package/dist/themes/createDarkTheme.d.ts.map +1 -1
- package/package.json +2 -1
- package/src/components/AppHeader.md +84 -0
- package/src/components/AppHeader.tsx +199 -0
- package/src/components/CycleTimer.tsx +229 -148
- package/src/components/DataGrid.tsx +659 -0
- package/src/components/LogPanel.tsx +69 -0
- package/src/components/LogStore.ts +44 -0
- package/src/components/LogViewer.tsx +370 -0
- package/src/components/ProgramControl.tsx +27 -12
- package/src/components/ProgramStateIndicator.tsx +25 -8
- package/src/components/RobotCard.tsx +559 -0
- package/src/components/RobotListItem.tsx +150 -0
- package/src/components/RobotSetupReadinessIndicator.test.tsx +60 -0
- package/src/components/RobotSetupReadinessIndicator.tsx +124 -0
- package/src/components/TabBar.tsx +144 -0
- package/src/components/robots/Robot.tsx +5 -2
- package/src/components/robots/manufacturerHomePositions.ts +76 -0
- package/src/i18n/locales/de/translations.json +7 -1
- package/src/i18n/locales/en/translations.json +7 -1
- package/src/icons/DropdownArrowIcon.tsx +13 -0
- package/src/icons/chevronDown.svg +3 -0
- package/src/icons/index.ts +1 -0
- package/src/index.ts +14 -0
- package/src/themes/createDarkTheme.ts +75 -1
package/src/index.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./components/3d-viewport/PresetEnvironment"
|
|
2
2
|
export * from "./components/3d-viewport/SafetyZonesRenderer"
|
|
3
3
|
export * from "./components/3d-viewport/TrajectoryRenderer"
|
|
4
|
+
export * from "./components/AppHeader"
|
|
4
5
|
export * from "./components/CycleTimer"
|
|
6
|
+
export * from "./components/DataGrid"
|
|
5
7
|
export * from "./components/jogging/JoggingCartesianAxisControl"
|
|
6
8
|
export * from "./components/jogging/JoggingJointRotationControl"
|
|
7
9
|
export * from "./components/jogging/JoggingPanel"
|
|
@@ -9,15 +11,27 @@ export { JoggingStore } from "./components/jogging/JoggingStore"
|
|
|
9
11
|
export * from "./components/jogging/PoseCartesianValues"
|
|
10
12
|
export * from "./components/jogging/PoseJointValues"
|
|
11
13
|
export * from "./components/LoadingCover"
|
|
14
|
+
export * from "./components/LogPanel"
|
|
15
|
+
export { LogStore } from "./components/LogStore"
|
|
16
|
+
export * from "./components/LogViewer"
|
|
12
17
|
export * from "./components/modal/NoMotionGroupModal"
|
|
13
18
|
export * from "./components/ProgramControl"
|
|
14
19
|
export * from "./components/ProgramStateIndicator"
|
|
20
|
+
export * from "./components/RobotCard"
|
|
21
|
+
export * from "./components/RobotListItem"
|
|
15
22
|
export * from "./components/robots/AxisConfig"
|
|
23
|
+
export {
|
|
24
|
+
extractManufacturer,
|
|
25
|
+
getDefaultHomeConfig,
|
|
26
|
+
MANUFACTURER_HOME_CONFIGS,
|
|
27
|
+
} from "./components/robots/manufacturerHomePositions"
|
|
16
28
|
export * from "./components/robots/Robot"
|
|
17
29
|
export { defaultGetModel } from "./components/robots/robotModelLogic"
|
|
18
30
|
export * from "./components/robots/SupportedRobot"
|
|
31
|
+
export * from "./components/RobotSetupReadinessIndicator"
|
|
19
32
|
export * from "./components/safetyBar/SafetyBar"
|
|
20
33
|
export * from "./components/SelectableFab"
|
|
34
|
+
export * from "./components/TabBar"
|
|
21
35
|
export * from "./components/utils/hooks"
|
|
22
36
|
export * from "./components/utils/interpolation"
|
|
23
37
|
export * from "./components/VelocitySlider"
|
|
@@ -109,6 +109,80 @@ export function createDarkTheme(): Theme {
|
|
|
109
109
|
scrollbarWidth: "thin",
|
|
110
110
|
scrollbarColor: `${baseTheme.palette.divider} transparent`,
|
|
111
111
|
},
|
|
112
|
+
|
|
113
|
+
// Global styles for DataGrid filter popup
|
|
114
|
+
".MuiDataGrid-panelContent": {
|
|
115
|
+
borderRadius: "16px !important",
|
|
116
|
+
"& .MuiPaper-root": {
|
|
117
|
+
borderRadius: "16px !important",
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
".MuiDataGrid-filterForm": {
|
|
121
|
+
borderRadius: "16px !important",
|
|
122
|
+
"& .MuiInputBase-root": {
|
|
123
|
+
borderRadius: "16px !important",
|
|
124
|
+
"& fieldset": {
|
|
125
|
+
borderRadius: "16px !important",
|
|
126
|
+
},
|
|
127
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
128
|
+
borderRadius: "16px !important",
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
"& .MuiTextField-root": {
|
|
132
|
+
"& .MuiInputBase-root": {
|
|
133
|
+
borderRadius: "16px !important",
|
|
134
|
+
"& fieldset": {
|
|
135
|
+
borderRadius: "16px !important",
|
|
136
|
+
},
|
|
137
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
138
|
+
borderRadius: "16px !important",
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
".MuiDataGrid-filterFormValueInput": {
|
|
144
|
+
"& .MuiInputBase-root": {
|
|
145
|
+
borderRadius: "16px !important",
|
|
146
|
+
"& fieldset": {
|
|
147
|
+
borderRadius: "16px !important",
|
|
148
|
+
},
|
|
149
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
150
|
+
borderRadius: "16px !important",
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
MuiDataGrid: {
|
|
157
|
+
styleOverrides: {
|
|
158
|
+
root: {
|
|
159
|
+
// Main DataGrid styling can go here if needed
|
|
160
|
+
},
|
|
161
|
+
panelContent: {
|
|
162
|
+
borderRadius: "16px !important",
|
|
163
|
+
},
|
|
164
|
+
filterForm: {
|
|
165
|
+
"& .MuiInputBase-root": {
|
|
166
|
+
borderRadius: "10px !important",
|
|
167
|
+
"& fieldset": {
|
|
168
|
+
borderRadius: "10px !important",
|
|
169
|
+
},
|
|
170
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
171
|
+
borderRadius: "10px !important",
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
},
|
|
175
|
+
filterFormValueInput: {
|
|
176
|
+
"& .MuiInputBase-root": {
|
|
177
|
+
borderRadius: "10px !important",
|
|
178
|
+
"& fieldset": {
|
|
179
|
+
borderRadius: "10px !important",
|
|
180
|
+
},
|
|
181
|
+
"& .MuiOutlinedInput-notchedOutline": {
|
|
182
|
+
borderRadius: "10px !important",
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
},
|
|
112
186
|
},
|
|
113
187
|
},
|
|
114
188
|
MuiButton: {
|
|
@@ -287,5 +361,5 @@ export function createDarkTheme(): Theme {
|
|
|
287
361
|
},
|
|
288
362
|
},
|
|
289
363
|
},
|
|
290
|
-
}
|
|
364
|
+
} as Theme
|
|
291
365
|
}
|