@wandelbots/wandelbots-js-react-components 2.54.5-pr.feat-upgrade-jogging-to-v2.404.8d3f7c5 → 2.54.5-pr.feat-upgrade-jogging-to-v2.404.6f841e7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/wandelbots-js-react-components",
3
- "version": "2.54.5-pr.feat-upgrade-jogging-to-v2.404.8d3f7c5",
3
+ "version": "2.54.5-pr.feat-upgrade-jogging-to-v2.404.6f841e7",
4
4
  "description": "React UI toolkit for building applications on top of the Wandelbots platform",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -1,6 +1,10 @@
1
1
  import { AxiosError } from "axios"
2
2
  import { tryStringifyJson } from "./converters"
3
3
 
4
+ // Please note: These helper functions also exist in nova.js
5
+ // (with slightly different formatting), and will be unified
6
+ // at some point in the future.
7
+
4
8
  export function delay(ms: number) {
5
9
  return new Promise((resolve) => setTimeout(resolve, ms))
6
10
  }