@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.
- package/dist/AvatarGroup/AvatarGroupContext.js +1 -1
- package/dist/BaseCheckBox/CheckBoxIcon.js +1 -1
- package/dist/BaseRadio/RadioIcon.js +1 -1
- package/dist/Calendar/SingleCalendar/CalendarCell.js +1 -2
- package/dist/Calendar/model.js +0 -1
- package/dist/ColorPicker/Swatch.js +1 -1
- package/dist/Controls/context/ControlsContext.js +1 -2
- package/dist/DatePicker/DatePicker.js +1 -1
- package/dist/DatePicker/utils.js +1 -1
- package/dist/Dialog/Content/Content.js +16 -25
- package/dist/Dialog/Content/Content.styles.js +1 -3
- package/dist/Dialog/Dialog.styles.js +1 -1
- package/dist/Dialog/context.js +1 -1
- package/dist/Dropdown/Dropdown.js +1 -1
- package/dist/Dropdown/List/List.js +1 -1
- package/dist/FilterGroup/FilterContent/FilterContent.js +22 -20
- package/dist/FilterGroup/FilterContent/FilterContent.styles.js +5 -3
- package/dist/Header/Header.styles.js +1 -0
- package/dist/IconContainer/IconContainer.js +1 -1
- package/dist/OverflowTooltip/OverflowTooltip.js +16 -26
- package/dist/QueryBuilder/utils/index.js +1 -1
- package/dist/Radio/Radio.js +1 -1
- package/dist/Select/OptionGroup.js +1 -1
- package/dist/SnackbarProvider/SnackbarProvider.js +2 -2
- package/dist/Switch/Switch.js +1 -1
- package/dist/Table/TableHeader/TableHeader.js +1 -1
- package/dist/Table/hooks/useHvRowSelection.js +1 -0
- package/dist/Table/renderers/renderers.js +2 -2
- package/dist/TextArea/TextArea.js +1 -1
- package/dist/TreeView/TreeItem/DefaultContent.js +1 -1
- package/dist/index.d.ts +55 -15
- package/dist/index.js +292 -292
- package/dist/themes/pentaho.js +8 -1
- package/dist/utils/Callout.js +1 -1
- package/dist/utils/focusableElementFinder.js +0 -1
- package/package.json +2 -2
package/dist/themes/pentaho.js
CHANGED
|
@@ -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
|
-
|
|
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
|
});
|
package/dist/utils/Callout.js
CHANGED
|
@@ -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,
|
|
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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "6.4.
|
|
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": "
|
|
64
|
+
"gitHead": "3f10053759d187946255aede1c25203f4fea7940",
|
|
65
65
|
"exports": {
|
|
66
66
|
".": {
|
|
67
67
|
"types": "./dist/index.d.ts",
|