@availity/mui-page-header 0.4.5 → 0.4.7

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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.4.7](https://github.com/Availity/element/compare/@availity/mui-page-header@0.4.6...@availity/mui-page-header@0.4.7) (2024-09-13)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-feedback` updated to version `0.4.6`
10
+ ## [0.4.6](https://github.com/Availity/element/compare/@availity/mui-page-header@0.4.5...@availity/mui-page-header@0.4.6) (2024-08-22)
11
+
12
+ ### Dependency Updates
13
+
14
+ * `mui-feedback` updated to version `0.4.5`
5
15
  ## [0.4.5](https://github.com/Availity/element/compare/@availity/mui-page-header@0.4.4...@availity/mui-page-header@0.4.5) (2024-08-16)
6
16
 
7
17
  ### Dependency Updates
package/dist/index.d.mts CHANGED
@@ -9,7 +9,7 @@ interface PageHeaderProps {
9
9
  breadcrumbs: BreadcrumbsProps;
10
10
  /** Renders buttons in the right side of the header */
11
11
  buttons?: ButtonsProps[];
12
- /** If true, the Give Feedback button displays
12
+ /** If true, the Feedback button displays
13
13
  * @default false
14
14
  */
15
15
  feedback?: boolean;
package/dist/index.d.ts CHANGED
@@ -9,7 +9,7 @@ interface PageHeaderProps {
9
9
  breadcrumbs: BreadcrumbsProps;
10
10
  /** Renders buttons in the right side of the header */
11
11
  buttons?: ButtonsProps[];
12
- /** If true, the Give Feedback button displays
12
+ /** If true, the Feedback button displays
13
13
  * @default false
14
14
  */
15
15
  feedback?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-page-header",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "description": "Availity MUI PageHeader Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -58,6 +58,6 @@
58
58
  "access": "public"
59
59
  },
60
60
  "dependencies": {
61
- "@availity/mui-feedback": "^0.2.6"
61
+ "@availity/mui-feedback": "^0.2.8"
62
62
  }
63
63
  }
@@ -15,7 +15,7 @@ export interface PageHeaderProps {
15
15
  breadcrumbs: BreadcrumbsProps;
16
16
  /** Renders buttons in the right side of the header */
17
17
  buttons?: ButtonsProps[];
18
- /** If true, the Give Feedback button displays
18
+ /** If true, the Feedback button displays
19
19
  * @default false
20
20
  */
21
21
  feedback?: boolean;
@@ -57,13 +57,13 @@ export const PageHeader = ({
57
57
  )}
58
58
  {helpLink && (
59
59
  <Grid marginLeft={2}>
60
- <Typography variant="body1">
61
- Need help?{' '}
62
- <Link href={helpLink} target="_blank" loadApp={false} >
63
- {helpAppName ? "Watch a demo" : "Learn More"}
64
- </Link>{' '}
65
- {helpAppName ? ` for ${helpAppName}` : null}
66
- </Typography>
60
+ <Typography variant="body1">
61
+ Need help?{' '}
62
+ <Link href={helpLink} target="_blank" loadApp={false}>
63
+ {helpAppName ? 'Watch a demo' : 'Learn More'}
64
+ </Link>{' '}
65
+ {helpAppName ? ` for ${helpAppName}` : null}
66
+ </Typography>
67
67
  </Grid>
68
68
  )}
69
69
  </Grid>