@hitachivantara/uikit-react-core 6.4.0 → 6.4.2

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.
Files changed (36) hide show
  1. package/dist/AvatarGroup/AvatarGroupContext.js +1 -1
  2. package/dist/BaseCheckBox/CheckBoxIcon.js +1 -1
  3. package/dist/BaseRadio/RadioIcon.js +1 -1
  4. package/dist/Calendar/SingleCalendar/CalendarCell.js +1 -2
  5. package/dist/Calendar/model.js +0 -1
  6. package/dist/ColorPicker/Swatch.js +1 -1
  7. package/dist/Controls/context/ControlsContext.js +1 -2
  8. package/dist/DatePicker/DatePicker.js +1 -1
  9. package/dist/DatePicker/utils.js +1 -1
  10. package/dist/Dialog/Content/Content.js +16 -25
  11. package/dist/Dialog/Content/Content.styles.js +1 -3
  12. package/dist/Dialog/Dialog.styles.js +1 -1
  13. package/dist/Dialog/context.js +1 -1
  14. package/dist/Dropdown/Dropdown.js +1 -1
  15. package/dist/Dropdown/List/List.js +1 -1
  16. package/dist/FilterGroup/FilterContent/FilterContent.js +22 -20
  17. package/dist/FilterGroup/FilterContent/FilterContent.styles.js +5 -3
  18. package/dist/Header/Header.styles.js +1 -0
  19. package/dist/IconContainer/IconContainer.js +1 -1
  20. package/dist/OverflowTooltip/OverflowTooltip.js +16 -26
  21. package/dist/QueryBuilder/utils/index.js +1 -1
  22. package/dist/Radio/Radio.js +1 -1
  23. package/dist/Select/OptionGroup.js +1 -1
  24. package/dist/SnackbarProvider/SnackbarProvider.js +2 -2
  25. package/dist/Switch/Switch.js +1 -1
  26. package/dist/Table/TableHeader/TableHeader.js +1 -1
  27. package/dist/Table/hooks/useHvRowSelection.js +1 -0
  28. package/dist/Table/renderers/renderers.js +2 -2
  29. package/dist/TextArea/TextArea.js +1 -1
  30. package/dist/TreeView/TreeItem/DefaultContent.js +1 -1
  31. package/dist/index.d.ts +55 -15
  32. package/dist/index.js +292 -292
  33. package/dist/themes/pentaho.js +8 -1
  34. package/dist/utils/Callout.js +1 -1
  35. package/dist/utils/focusableElementFinder.js +0 -1
  36. package/package.json +2 -2
@@ -668,7 +668,7 @@ const pentaho = mergeTheme(pentaho$1, {
668
668
  width: 280,
669
669
  color: theme.colors.textLight,
670
670
  backgroundColor: slate[900],
671
- borderRight: `1px solid ${slate[500]}`,
671
+ boxShadow: `inset -1px 0 0 0 ${slate[500]}`,
672
672
  "& > :not(nav:first-of-type)": {
673
673
  borderTop: `1px solid ${slate[500]}`
674
674
  },
@@ -1142,6 +1142,13 @@ const pentaho = mergeTheme(pentaho$1, {
1142
1142
  }
1143
1143
  },
1144
1144
  separator: "/"
1145
+ },
1146
+ HvFilterGroupContent: {
1147
+ classes: {
1148
+ actions: {
1149
+ flexDirection: "row-reverse"
1150
+ }
1151
+ }
1145
1152
  }
1146
1153
  }
1147
1154
  });
@@ -1,7 +1,7 @@
1
1
  import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
2
  import { forwardRef } from "react";
3
3
  import SnackbarContent from "@mui/material/SnackbarContent";
4
- import { useDefaultProps, createClasses, useTheme } from "@hitachivantara/uikit-react-utils";
4
+ import { useDefaultProps, useTheme, createClasses } from "@hitachivantara/uikit-react-utils";
5
5
  import { theme } from "@hitachivantara/uikit-styles";
6
6
  import { HvIcon } from "../icons.js";
7
7
  import { iconVariant } from "./iconVariant.js";
@@ -22,7 +22,6 @@ const getFirstAndLastFocus = (node) => {
22
22
  };
23
23
  };
24
24
  export {
25
- getPrevNextFocus as default,
26
25
  getFirstAndLastFocus,
27
26
  getFocusableList,
28
27
  getPrevNextFocus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-core",
3
- "version": "6.4.0",
3
+ "version": "6.4.2",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "Hitachi Vantara UI Kit Team",
@@ -61,7 +61,7 @@
61
61
  "access": "public",
62
62
  "directory": "package"
63
63
  },
64
- "gitHead": "bbf0a2a94a557f91676bfef658162b41019b924b",
64
+ "gitHead": "3f10053759d187946255aede1c25203f4fea7940",
65
65
  "exports": {
66
66
  ".": {
67
67
  "types": "./dist/index.d.ts",