@availity/mui-breadcrumbs 0.1.1 → 0.1.3
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 +4 -0
- package/dist/index.d.ts +4 -1
- package/package.json +3 -3
- package/project.json +2 -1
- package/src/lib/Breadcrumbs.tsx +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.3](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@0.1.2...@availity/mui-breadcrumbs@0.1.3) (2023-08-23)
|
|
6
|
+
|
|
7
|
+
## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@0.1.1...@availity/mui-breadcrumbs@0.1.2) (2023-07-26)
|
|
8
|
+
|
|
5
9
|
## [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
10
|
|
|
7
11
|
## 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.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Availity MUI Breadcrumbs Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@availity/mui-icon": "^0.4.
|
|
51
|
-
"@availity/mui-link": "^0.1.
|
|
50
|
+
"@availity/mui-icon": "^0.4.1",
|
|
51
|
+
"@availity/mui-link": "^0.1.1"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/project.json
CHANGED
package/src/lib/Breadcrumbs.tsx
CHANGED
|
@@ -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 ... */
|