@hitachivantara/uikit-react-core 6.9.2 → 6.10.1
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/LICENSE +1 -1
- package/dist/Footer/Footer.js +1 -1
- package/dist/themes/next.js +4 -0
- package/dist/themes/pentaho.js +5 -6
- package/package.json +6 -6
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Pentaho Canada Inc.
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/dist/Footer/Footer.js
CHANGED
|
@@ -10,7 +10,7 @@ import useMediaQuery from "@mui/material/useMediaQuery";
|
|
|
10
10
|
* A Footer is a way of providing extra information at the end of a page.
|
|
11
11
|
*/
|
|
12
12
|
var HvFooter = forwardRef(function HvFooter(props, ref) {
|
|
13
|
-
const { name
|
|
13
|
+
const { name, copyright, links, classes: classesProp, className, ...others } = useDefaultProps("HvFooter", props);
|
|
14
14
|
const muiTheme = useTheme$1();
|
|
15
15
|
const { classes, cx } = useClasses(classesProp);
|
|
16
16
|
const isSmDown = useMediaQuery(muiTheme.breakpoints.down("sm"));
|
package/dist/themes/next.js
CHANGED
|
@@ -78,6 +78,10 @@ var next$1 = mergeTheme(next, { components: {
|
|
|
78
78
|
borderBottomRightRadius: 0
|
|
79
79
|
}
|
|
80
80
|
} } },
|
|
81
|
+
HvFooter: {
|
|
82
|
+
name: "Hitachi Vantara",
|
|
83
|
+
copyright: `© Hitachi Vantara LLC ${(/* @__PURE__ */ new Date()).getFullYear()}. All Rights Reserved.`
|
|
84
|
+
},
|
|
81
85
|
HvMultiButton: { classes: {
|
|
82
86
|
multiple: {
|
|
83
87
|
borderRadius: theme.radii.round,
|
package/dist/themes/pentaho.js
CHANGED
|
@@ -483,11 +483,7 @@ var pentaho$1 = mergeTheme(pentaho, {
|
|
|
483
483
|
borderBottom: `1px solid ${theme.colors.borderSubtle}`,
|
|
484
484
|
boxShadow: "none"
|
|
485
485
|
} } },
|
|
486
|
-
HvHeaderBrand: { classes: { separator: {
|
|
487
|
-
backgroundColor: theme.colors.border,
|
|
488
|
-
margin: theme.spacing(0, "md"),
|
|
489
|
-
height: 32
|
|
490
|
-
} } },
|
|
486
|
+
HvHeaderBrand: { classes: { separator: { backgroundColor: theme.colors.border } } },
|
|
491
487
|
HvHeaderMenuBarBar: { classes: {
|
|
492
488
|
active: {
|
|
493
489
|
boxShadow: "none",
|
|
@@ -597,7 +593,10 @@ var pentaho$1 = mergeTheme(pentaho, {
|
|
|
597
593
|
paddingBottom: 0,
|
|
598
594
|
"&& + .HvCardMedia-root": { paddingTop: theme.space.xs }
|
|
599
595
|
} } },
|
|
600
|
-
HvFooter: {
|
|
596
|
+
HvFooter: {
|
|
597
|
+
name: "Pentaho",
|
|
598
|
+
copyright: `© Pentaho. All Rights Reserved.`
|
|
599
|
+
},
|
|
601
600
|
HvTableCell: { classes: { root: { borderColor: theme.colors.borderSubtle } } },
|
|
602
601
|
HvTableHeader: { classes: {
|
|
603
602
|
root: { borderColor: theme.colors.borderSubtle },
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "UI Kit Team",
|
|
7
7
|
"description": "UI Kit Core React components.",
|
|
8
8
|
"homepage": "https://github.com/pentaho/hv-uikit-react",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@emotion/cache": "^11.11.0",
|
|
42
42
|
"@emotion/serialize": "^1.1.2",
|
|
43
|
-
"@hitachivantara/uikit-react-shared": "^6.0.
|
|
44
|
-
"@hitachivantara/uikit-react-utils": "^6.2.
|
|
45
|
-
"@hitachivantara/uikit-styles": "^6.2.
|
|
43
|
+
"@hitachivantara/uikit-react-shared": "^6.0.9",
|
|
44
|
+
"@hitachivantara/uikit-react-utils": "^6.2.7",
|
|
45
|
+
"@hitachivantara/uikit-styles": "^6.2.2",
|
|
46
46
|
"@internationalized/date": "^3.2.0",
|
|
47
47
|
"@mui/base": "7.0.0-beta.4",
|
|
48
48
|
"@popperjs/core": "^2.11.8",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "30beb79a66adf6294beb2f1bc5d2849be584cdd2"
|
|
86
86
|
}
|