@db-ux/react-core-components 3.1.3 → 3.1.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.
@@ -38,7 +38,10 @@ function DBTooltipFn(props, component) {
38
38
  // This is a workaround for angular
39
39
  utilsDelay(() => {
40
40
  var _a;
41
- handleFixedPopover(_ref.current, parent, (_a = props.placement) !== null && _a !== void 0 ? _a : "bottom");
41
+ // Due to race conditions we need to check for _ref again
42
+ if (_ref.current) {
43
+ handleFixedPopover(_ref.current, parent, (_a = props.placement) !== null && _a !== void 0 ? _a : "bottom");
44
+ }
42
45
  }, 1);
43
46
  }
44
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/react-core-components",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "React components for @db-ux/core-components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
27
27
  "tsc": "tsc --project . --sourceMap false"
28
28
  },
29
29
  "devDependencies": {
30
- "@playwright/experimental-ct-react": "1.54.2",
30
+ "@playwright/experimental-ct-react": "1.55.0",
31
31
  "@types/react": "18.3.13",
32
32
  "react": "18.3.1",
33
33
  "react-dom": "18.3.1"
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "sideEffects": false,
40
40
  "dependencies": {
41
- "@db-ux/core-components": "3.1.3",
42
- "@db-ux/core-foundations": "3.1.3"
41
+ "@db-ux/core-components": "3.1.4",
42
+ "@db-ux/core-foundations": "3.1.4"
43
43
  }
44
44
  }