@wandelbots/wandelbots-js-react-components 1.10.2 → 1.10.4
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/jogging/JoggingStore.d.ts.map +1 -1
- package/dist/index.cjs +30 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3976 -2950
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/src/components/ThemeSelect.tsx +1 -1
- package/src/components/VelocitySlider.tsx +1 -1
- package/src/components/jogging/JoggingJointLimitDetector.tsx +1 -1
- package/src/components/jogging/JoggingJointRotationControl.tsx +1 -1
- package/src/components/jogging/JoggingStore.tsx +2 -1
- package/src/themes/theming.ts +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wandelbots/wandelbots-js-react-components",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.4",
|
|
4
4
|
"description": "React UI toolkit for building applications on top of the Wandelbots platform",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
5
7
|
"files": [
|
|
6
8
|
"dist",
|
|
7
9
|
"src",
|
|
8
10
|
"README.md"
|
|
9
11
|
],
|
|
10
|
-
"type": "module",
|
|
11
12
|
"module": "./dist/index.js",
|
|
12
13
|
"main": "./dist/index.cjs",
|
|
13
14
|
"exports": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// TODO implement this as part of theme?
|
|
2
2
|
|
|
3
3
|
import { Select, useTheme, type SxProps } from "@mui/material"
|
|
4
|
-
import
|
|
4
|
+
import defaultsDeep from "lodash-es/defaultsDeep"
|
|
5
5
|
|
|
6
6
|
type ThemeSelectProps = {
|
|
7
7
|
kind: "filled" | "outlined" | "text"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Typography } from "@mui/material"
|
|
2
2
|
import { useTranslation } from "react-i18next"
|
|
3
3
|
import { useState } from "react"
|
|
4
|
-
import
|
|
4
|
+
import isEqual from "lodash-es/isEqual"
|
|
5
5
|
import { useAnimationFrame } from "../utils/hooks"
|
|
6
6
|
import type { JoggingStore } from "./JoggingStore"
|
|
7
7
|
|
|
@@ -5,7 +5,7 @@ import ChevronLeft from "@mui/icons-material/ChevronLeft"
|
|
|
5
5
|
import ChevronRight from "@mui/icons-material/ChevronRight"
|
|
6
6
|
import { useAnimationFrame } from "../utils/hooks"
|
|
7
7
|
import { useState } from "react"
|
|
8
|
-
import
|
|
8
|
+
import throttle from "lodash-es/throttle"
|
|
9
9
|
import { useTranslation } from "react-i18next"
|
|
10
10
|
|
|
11
11
|
type JoggingJointRotationControlProps = {
|
package/src/themes/theming.ts
CHANGED