@hitachivantara/uikit-react-pentaho 6.0.8 → 6.0.10

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.
@@ -15,22 +15,25 @@ const HvCanvasPanelTab = forwardRef(function HvCanvasPanelTab2(props, ref) {
15
15
  } = useDefaultProps("HvCanvasPanelTab", props);
16
16
  const tabRef = useRef(null);
17
17
  const { classes, cx } = useClasses(classesProp);
18
- return /* @__PURE__ */ jsxs(
19
- "div",
20
- {
21
- ref,
22
- style,
23
- className: cx(classes.root, className),
24
- onClick: (evt) => {
25
- if (evt.target === tabRef.current) return;
26
- tabRef.current?.click();
27
- },
28
- children: [
29
- startActions,
30
- /* @__PURE__ */ jsx(Tab, { ref: tabRef, className: classes.tab, ...others }),
31
- endActions
32
- ]
33
- }
18
+ return (
19
+ // oxlint-disable-next-line jsx_a11y/click-events-have-key-events jsx_a11y/no-static-element-interactions simulate tab click
20
+ /* @__PURE__ */ jsxs(
21
+ "div",
22
+ {
23
+ ref,
24
+ style,
25
+ className: cx(classes.root, className),
26
+ onClick: (evt) => {
27
+ if (evt.target === tabRef.current) return;
28
+ tabRef.current?.click();
29
+ },
30
+ children: [
31
+ startActions,
32
+ /* @__PURE__ */ jsx(Tab, { ref: tabRef, className: classes.tab, ...others }),
33
+ endActions
34
+ ]
35
+ }
36
+ )
34
37
  );
35
38
  });
36
39
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-pentaho",
3
- "version": "6.0.8",
3
+ "version": "6.0.10",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "Hitachi Vantara UI Kit Team",
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@emotion/css": "^11.11.0",
34
- "@hitachivantara/uikit-react-core": "^6.5.0",
35
- "@hitachivantara/uikit-react-icons": "^6.0.2",
36
- "@hitachivantara/uikit-react-utils": "^6.2.0",
34
+ "@hitachivantara/uikit-react-core": "^6.6.1",
35
+ "@hitachivantara/uikit-react-icons": "^6.0.3",
36
+ "@hitachivantara/uikit-react-utils": "^6.2.1",
37
37
  "@mui/base": "5.0.0-beta.68",
38
38
  "react-resize-detector": "^12.3.0"
39
39
  },
@@ -44,7 +44,7 @@
44
44
  "access": "public",
45
45
  "directory": "package"
46
46
  },
47
- "gitHead": "0985fa0fa2f1fdff7a57fced4fcb1385544cb457",
47
+ "gitHead": "a21dd82d491518df161ef2f5dc95fd90164836f1",
48
48
  "exports": {
49
49
  ".": {
50
50
  "types": "./dist/index.d.ts",