@availity/mui-breadcrumbs 0.1.1 → 0.1.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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@0.1.1...@availity/mui-breadcrumbs@0.1.2) (2023-07-26)
6
+
5
7
  ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@0.1.0...@availity/mui-breadcrumbs@0.1.1) (2023-07-13)
6
8
 
7
9
  ## 0.1.0 (2023-07-13)
package/dist/index.d.ts CHANGED
@@ -10,7 +10,10 @@ interface BreadcrumbsProps extends Omit<BreadcrumbsProps$1, 'separator' | 'slotP
10
10
  /** The name of the active page (the page the user is currently on). */
11
11
  active?: string;
12
12
  children?: React.ReactNode;
13
- /** The ancestor pages. */
13
+ /** The ancestor pages.
14
+ * An array of objects containing the name and url
15
+ * { name: 'Page', url: '#' }
16
+ */
14
17
  crumbs?: Crumb[];
15
18
  /** The value to display when the active page or an ancestor does not have a value.
16
19
  * @default ... */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-breadcrumbs",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Availity MUI Breadcrumbs Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -13,7 +13,10 @@ export interface BreadcrumbsProps extends Omit<MuiBreadcrumbsProps, 'separator'
13
13
  /** The name of the active page (the page the user is currently on). */
14
14
  active?: string;
15
15
  children?: React.ReactNode;
16
- /** The ancestor pages. */
16
+ /** The ancestor pages.
17
+ * An array of objects containing the name and url
18
+ * { name: 'Page', url: '#' }
19
+ */
17
20
  crumbs?: Crumb[];
18
21
  /** The value to display when the active page or an ancestor does not have a value.
19
22
  * @default ... */