@fluentui/react-breadcrumb 9.0.0
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 +494 -0
- package/LICENSE +15 -0
- package/README.md +45 -0
- package/dist/index.d.ts +259 -0
- package/lib/Breadcrumb.js +1 -0
- package/lib/Breadcrumb.js.map +1 -0
- package/lib/BreadcrumbButton.js +1 -0
- package/lib/BreadcrumbButton.js.map +1 -0
- package/lib/BreadcrumbDivider.js +1 -0
- package/lib/BreadcrumbDivider.js.map +1 -0
- package/lib/BreadcrumbItem.js +1 -0
- package/lib/BreadcrumbItem.js.map +1 -0
- package/lib/components/Breadcrumb/Breadcrumb.js +16 -0
- package/lib/components/Breadcrumb/Breadcrumb.js.map +1 -0
- package/lib/components/Breadcrumb/Breadcrumb.types.js +1 -0
- package/lib/components/Breadcrumb/Breadcrumb.types.js.map +1 -0
- package/lib/components/Breadcrumb/BreadcrumbContext.js +16 -0
- package/lib/components/Breadcrumb/BreadcrumbContext.js.map +1 -0
- package/lib/components/Breadcrumb/index.js +6 -0
- package/lib/components/Breadcrumb/index.js.map +1 -0
- package/lib/components/Breadcrumb/renderBreadcrumb.js +16 -0
- package/lib/components/Breadcrumb/renderBreadcrumb.js.map +1 -0
- package/lib/components/Breadcrumb/useBreadcrumb.js +42 -0
- package/lib/components/Breadcrumb/useBreadcrumb.js.map +1 -0
- package/lib/components/Breadcrumb/useBreadcrumbContextValue.js +9 -0
- package/lib/components/Breadcrumb/useBreadcrumbContextValue.js.map +1 -0
- package/lib/components/Breadcrumb/useBreadcrumbStyles.styles.js +18 -0
- package/lib/components/Breadcrumb/useBreadcrumbStyles.styles.js.map +1 -0
- package/lib/components/BreadcrumbButton/BreadcrumbButton.js +14 -0
- package/lib/components/BreadcrumbButton/BreadcrumbButton.js.map +1 -0
- package/lib/components/BreadcrumbButton/BreadcrumbButton.types.js +1 -0
- package/lib/components/BreadcrumbButton/BreadcrumbButton.types.js.map +1 -0
- package/lib/components/BreadcrumbButton/index.js +5 -0
- package/lib/components/BreadcrumbButton/index.js.map +1 -0
- package/lib/components/BreadcrumbButton/renderBreadcrumbButton.js +6 -0
- package/lib/components/BreadcrumbButton/renderBreadcrumbButton.js.map +1 -0
- package/lib/components/BreadcrumbButton/useBreadcrumbButton.js +31 -0
- package/lib/components/BreadcrumbButton/useBreadcrumbButton.js.map +1 -0
- package/lib/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js +161 -0
- package/lib/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js.map +1 -0
- package/lib/components/BreadcrumbDivider/BreadcrumbDivider.js +14 -0
- package/lib/components/BreadcrumbDivider/BreadcrumbDivider.js.map +1 -0
- package/lib/components/BreadcrumbDivider/BreadcrumbDivider.types.js +1 -0
- package/lib/components/BreadcrumbDivider/BreadcrumbDivider.types.js.map +1 -0
- package/lib/components/BreadcrumbDivider/index.js +5 -0
- package/lib/components/BreadcrumbDivider/index.js.map +1 -0
- package/lib/components/BreadcrumbDivider/renderBreadcrumbDivider.js +8 -0
- package/lib/components/BreadcrumbDivider/renderBreadcrumbDivider.js.map +1 -0
- package/lib/components/BreadcrumbDivider/useBreadcrumbDivider.js +57 -0
- package/lib/components/BreadcrumbDivider/useBreadcrumbDivider.js.map +1 -0
- package/lib/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js +23 -0
- package/lib/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js.map +1 -0
- package/lib/components/BreadcrumbItem/BreadcrumbItem.js +15 -0
- package/lib/components/BreadcrumbItem/BreadcrumbItem.js.map +1 -0
- package/lib/components/BreadcrumbItem/BreadcrumbItem.types.js +1 -0
- package/lib/components/BreadcrumbItem/BreadcrumbItem.types.js.map +1 -0
- package/lib/components/BreadcrumbItem/index.js +5 -0
- package/lib/components/BreadcrumbItem/index.js.map +1 -0
- package/lib/components/BreadcrumbItem/renderBreadcrumbItem.js +10 -0
- package/lib/components/BreadcrumbItem/renderBreadcrumbItem.js.map +1 -0
- package/lib/components/BreadcrumbItem/useBreadcrumbItem.js +26 -0
- package/lib/components/BreadcrumbItem/useBreadcrumbItem.js.map +1 -0
- package/lib/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js +15 -0
- package/lib/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/lib/utils/index.js +2 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/partitionBreadcrumbItems.js +35 -0
- package/lib/utils/partitionBreadcrumbItems.js.map +1 -0
- package/lib/utils/truncateBreadcrumb.js +16 -0
- package/lib/utils/truncateBreadcrumb.js.map +1 -0
- package/lib-commonjs/Breadcrumb.js +6 -0
- package/lib-commonjs/Breadcrumb.js.map +1 -0
- package/lib-commonjs/BreadcrumbButton.js +6 -0
- package/lib-commonjs/BreadcrumbButton.js.map +1 -0
- package/lib-commonjs/BreadcrumbDivider.js +6 -0
- package/lib-commonjs/BreadcrumbDivider.js.map +1 -0
- package/lib-commonjs/BreadcrumbItem.js +6 -0
- package/lib-commonjs/BreadcrumbItem.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/Breadcrumb.js +25 -0
- package/lib-commonjs/components/Breadcrumb/Breadcrumb.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/Breadcrumb.types.js +4 -0
- package/lib-commonjs/components/Breadcrumb/Breadcrumb.types.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/BreadcrumbContext.js +32 -0
- package/lib-commonjs/components/Breadcrumb/BreadcrumbContext.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/index.js +11 -0
- package/lib-commonjs/components/Breadcrumb/index.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/renderBreadcrumb.js +24 -0
- package/lib-commonjs/components/Breadcrumb/renderBreadcrumb.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumb.js +45 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumb.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumbContextValue.js +20 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumbContextValue.js.map +1 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumbStyles.styles.js +34 -0
- package/lib-commonjs/components/Breadcrumb/useBreadcrumbStyles.styles.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.js +23 -0
- package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.types.js +4 -0
- package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.types.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/index.js +10 -0
- package/lib-commonjs/components/BreadcrumbButton/index.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/renderBreadcrumbButton.js +14 -0
- package/lib-commonjs/components/BreadcrumbButton/renderBreadcrumbButton.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButton.js +34 -0
- package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButton.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js +257 -0
- package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.js +23 -0
- package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.types.js +4 -0
- package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.types.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/index.js +10 -0
- package/lib-commonjs/components/BreadcrumbDivider/index.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/renderBreadcrumbDivider.js +16 -0
- package/lib-commonjs/components/BreadcrumbDivider/renderBreadcrumbDivider.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDivider.js +60 -0
- package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDivider.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js +38 -0
- package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.js +23 -0
- package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.types.js +4 -0
- package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.types.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/index.js +10 -0
- package/lib-commonjs/components/BreadcrumbItem/index.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/renderBreadcrumbItem.js +18 -0
- package/lib-commonjs/components/BreadcrumbItem/renderBreadcrumbItem.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItem.js +29 -0
- package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItem.js.map +1 -0
- package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js +30 -0
- package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js.map +1 -0
- package/lib-commonjs/index.js +95 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/utils/index.js +26 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/partitionBreadcrumbItems.js +39 -0
- package/lib-commonjs/utils/partitionBreadcrumbItems.js.map +1 -0
- package/lib-commonjs/utils/truncateBreadcrumb.js +37 -0
- package/lib-commonjs/utils/truncateBreadcrumb.js.map +1 -0
- package/package.json +77 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
# Change Log - @fluentui/react-breadcrumb
|
|
2
|
+
|
|
3
|
+
This log was last generated on Tue, 14 Nov 2023 17:48:34 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
<!-- Start content -->
|
|
6
|
+
|
|
7
|
+
## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb_v9.0.0)
|
|
8
|
+
|
|
9
|
+
Tue, 14 Nov 2023 17:48:34 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.2..@fluentui/react-breadcrumb_v9.0.0)
|
|
11
|
+
|
|
12
|
+
### Minor changes
|
|
13
|
+
|
|
14
|
+
- feat: release stable ([PR #29826](https://github.com/microsoft/fluentui/pull/29826) by marcosvmmoura@gmail.com)
|
|
15
|
+
- Bump @fluentui/react-button to v9.3.55 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
|
|
16
|
+
- Bump @fluentui/react-link to v9.1.34 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
|
|
17
|
+
- Bump @fluentui/react-tabster to v9.14.5 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- docs(breadcrumb): removed preview from all the links ([PR #29838](https://github.com/microsoft/fluentui/pull/29838) by vkozlova@microsoft.com)
|
|
22
|
+
|
|
23
|
+
## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.2)
|
|
24
|
+
|
|
25
|
+
Fri, 10 Nov 2023 13:46:32 GMT
|
|
26
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.1..@fluentui/react-breadcrumb-preview_v2.1.2)
|
|
27
|
+
|
|
28
|
+
### Patches
|
|
29
|
+
|
|
30
|
+
- fix: use button when no href is defined ([PR #29803](https://github.com/microsoft/fluentui/pull/29803) by sarah.higley@microsoft.com)
|
|
31
|
+
|
|
32
|
+
## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.1)
|
|
33
|
+
|
|
34
|
+
Thu, 09 Nov 2023 17:29:50 GMT
|
|
35
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.0..@fluentui/react-breadcrumb-preview_v2.1.1)
|
|
36
|
+
|
|
37
|
+
### Patches
|
|
38
|
+
|
|
39
|
+
- chore: use package.json#files setup instead of npmignore for all v9 libraries ([PR #29734](https://github.com/microsoft/fluentui/pull/29734) by martinhochel@microsoft.com)
|
|
40
|
+
- Bump @fluentui/react-button to v9.3.54 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
41
|
+
- Bump @fluentui/react-link to v9.1.33 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
42
|
+
- Bump @fluentui/react-shared-contexts to v9.12.0 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
43
|
+
- Bump @fluentui/react-tabster to v9.14.4 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
44
|
+
- Bump @fluentui/react-theme to v9.1.16 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
45
|
+
- Bump @fluentui/react-utilities to v9.15.2 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
46
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.19 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
|
|
47
|
+
|
|
48
|
+
## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.0)
|
|
49
|
+
|
|
50
|
+
Wed, 01 Nov 2023 19:15:55 GMT
|
|
51
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.0.1..@fluentui/react-breadcrumb-preview_v2.1.0)
|
|
52
|
+
|
|
53
|
+
### Minor changes
|
|
54
|
+
|
|
55
|
+
- feat: made BreadcrumbButton semantically as a link ([PR #29679](https://github.com/microsoft/fluentui/pull/29679) by vkozlova@microsoft.com)
|
|
56
|
+
|
|
57
|
+
## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.0.1)
|
|
58
|
+
|
|
59
|
+
Wed, 01 Nov 2023 12:55:59 GMT
|
|
60
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.0.0..@fluentui/react-breadcrumb-preview_v2.0.1)
|
|
61
|
+
|
|
62
|
+
### Patches
|
|
63
|
+
|
|
64
|
+
- Bump @fluentui/react-button to v9.3.53 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
|
|
65
|
+
- Bump @fluentui/react-link to v9.1.32 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
|
|
66
|
+
- Bump @fluentui/react-shared-contexts to v9.11.1 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
|
|
67
|
+
- Bump @fluentui/react-tabster to v9.14.3 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
|
|
68
|
+
- Bump @fluentui/react-theme to v9.1.15 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
|
|
69
|
+
|
|
70
|
+
## [2.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.0.0)
|
|
71
|
+
|
|
72
|
+
Sat, 28 Oct 2023 23:35:54 GMT
|
|
73
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.5..@fluentui/react-breadcrumb-preview_v2.0.0)
|
|
74
|
+
|
|
75
|
+
### Major changes
|
|
76
|
+
|
|
77
|
+
- BREAKING CHANGE: Removed non-interactive item and `slash` divider ([PR #29623](https://github.com/microsoft/fluentui/pull/29623) by vkozlova@microsoft.com)
|
|
78
|
+
- BREAKING CHANGE: remove `appearance` prop and set `current` prop for BreadcrumbButton last item ([PR #29554](https://github.com/microsoft/fluentui/pull/29554) by vkozlova@microsoft.com)
|
|
79
|
+
- Bump @fluentui/react-button to v9.3.52 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
|
|
80
|
+
- Bump @fluentui/react-link to v9.1.31 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
|
|
81
|
+
- Bump @fluentui/react-shared-contexts to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
|
|
82
|
+
- Bump @fluentui/react-tabster to v9.14.2 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
|
|
83
|
+
|
|
84
|
+
## [1.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.5)
|
|
85
|
+
|
|
86
|
+
Mon, 23 Oct 2023 09:51:57 GMT
|
|
87
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.4..@fluentui/react-breadcrumb-preview_v1.2.5)
|
|
88
|
+
|
|
89
|
+
### Patches
|
|
90
|
+
|
|
91
|
+
- Bump @fluentui/react-button to v9.3.51 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
|
|
92
|
+
- Bump @fluentui/react-link to v9.1.30 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
|
|
93
|
+
- Bump @fluentui/react-tabster to v9.14.1 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
|
|
94
|
+
|
|
95
|
+
## [1.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.4)
|
|
96
|
+
|
|
97
|
+
Wed, 18 Oct 2023 17:54:08 GMT
|
|
98
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.3..@fluentui/react-breadcrumb-preview_v1.2.4)
|
|
99
|
+
|
|
100
|
+
### Patches
|
|
101
|
+
|
|
102
|
+
- Bump @fluentui/react-button to v9.3.50 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
|
|
103
|
+
- Bump @fluentui/react-link to v9.1.29 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
|
|
104
|
+
- Bump @fluentui/react-tabster to v9.14.0 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
|
|
105
|
+
- Bump @fluentui/react-utilities to v9.15.1 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
|
|
106
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.18 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
|
|
107
|
+
|
|
108
|
+
## [1.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.3)
|
|
109
|
+
|
|
110
|
+
Thu, 12 Oct 2023 14:55:42 GMT
|
|
111
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.2..@fluentui/react-breadcrumb-preview_v1.2.3)
|
|
112
|
+
|
|
113
|
+
### Patches
|
|
114
|
+
|
|
115
|
+
- chore: migrate from getNativeElementProps for getIntrinsicElementProps ([PR #29498](https://github.com/microsoft/fluentui/pull/29498) by bernardo.sunderhus@gmail.com)
|
|
116
|
+
- Bump @fluentui/react-button to v9.3.49 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
|
|
117
|
+
- Bump @fluentui/react-link to v9.1.28 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
|
|
118
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.17 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
|
|
119
|
+
|
|
120
|
+
## [1.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.2)
|
|
121
|
+
|
|
122
|
+
Wed, 11 Oct 2023 13:54:26 GMT
|
|
123
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.1..@fluentui/react-breadcrumb-preview_v1.2.2)
|
|
124
|
+
|
|
125
|
+
### Patches
|
|
126
|
+
|
|
127
|
+
- Bump @fluentui/react-button to v9.3.48 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
|
|
128
|
+
- Bump @fluentui/react-link to v9.1.27 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
|
|
129
|
+
- Bump @fluentui/react-tabster to v9.13.6 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
|
|
130
|
+
- Bump @fluentui/react-utilities to v9.15.0 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
|
|
131
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.16 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
|
|
132
|
+
|
|
133
|
+
## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.1)
|
|
134
|
+
|
|
135
|
+
Mon, 09 Oct 2023 20:45:44 GMT
|
|
136
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.0..@fluentui/react-breadcrumb-preview_v1.2.1)
|
|
137
|
+
|
|
138
|
+
### Patches
|
|
139
|
+
|
|
140
|
+
- Bump @fluentui/react-button to v9.3.47 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
141
|
+
- Bump @fluentui/react-link to v9.1.26 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
142
|
+
- Bump @fluentui/react-shared-contexts to v9.10.0 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
143
|
+
- Bump @fluentui/react-tabster to v9.13.5 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
144
|
+
- Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
145
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
|
|
146
|
+
|
|
147
|
+
## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.0)
|
|
148
|
+
|
|
149
|
+
Thu, 05 Oct 2023 15:25:29 GMT
|
|
150
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.1.1..@fluentui/react-breadcrumb-preview_v1.2.0)
|
|
151
|
+
|
|
152
|
+
### Minor changes
|
|
153
|
+
|
|
154
|
+
- feat: register items via context ([PR #29393](https://github.com/microsoft/fluentui/pull/29393) by vkozlova@microsoft.com)
|
|
155
|
+
- Bump @fluentui/react-button to v9.3.46 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
|
|
156
|
+
- Bump @fluentui/react-link to v9.1.25 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
|
|
157
|
+
- Bump @fluentui/react-tabster to v9.13.4 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
|
|
158
|
+
- Bump @fluentui/react-utilities to v9.14.1 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
|
|
159
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.14 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
|
|
160
|
+
|
|
161
|
+
## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.1.1)
|
|
162
|
+
|
|
163
|
+
Wed, 04 Oct 2023 08:45:47 GMT
|
|
164
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.1.0..@fluentui/react-breadcrumb-preview_v1.1.1)
|
|
165
|
+
|
|
166
|
+
### Patches
|
|
167
|
+
|
|
168
|
+
- Bump @fluentui/react-button to v9.3.45 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
|
|
169
|
+
- Bump @fluentui/react-link to v9.1.24 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
|
|
170
|
+
- Bump @fluentui/react-tabster to v9.13.3 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
|
|
171
|
+
- Bump @fluentui/react-utilities to v9.14.0 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
|
|
172
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.13 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
|
|
173
|
+
|
|
174
|
+
## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.1.0)
|
|
175
|
+
|
|
176
|
+
Mon, 02 Oct 2023 08:56:03 GMT
|
|
177
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.5..@fluentui/react-breadcrumb-preview_v1.1.0)
|
|
178
|
+
|
|
179
|
+
### Minor changes
|
|
180
|
+
|
|
181
|
+
- fix: exported BreadcrumbProvider and useBreadcrumbContext ([PR #29315](https://github.com/microsoft/fluentui/pull/29315) by vkozlova@microsoft.com)
|
|
182
|
+
- feat: add custom styling hooks for Breadcrumb component and its sub-components ([PR #29318](https://github.com/microsoft/fluentui/pull/29318) by vkozlova@microsoft.com)
|
|
183
|
+
- Bump @fluentui/react-button to v9.3.44 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
|
|
184
|
+
- Bump @fluentui/react-link to v9.1.23 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
|
|
185
|
+
- Bump @fluentui/react-shared-contexts to v9.9.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
|
|
186
|
+
- Bump @fluentui/react-tabster to v9.13.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
|
|
187
|
+
|
|
188
|
+
## [1.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.5)
|
|
189
|
+
|
|
190
|
+
Tue, 26 Sep 2023 17:49:03 GMT
|
|
191
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.4..@fluentui/react-breadcrumb-preview_v1.0.5)
|
|
192
|
+
|
|
193
|
+
### Patches
|
|
194
|
+
|
|
195
|
+
- chore: trigger manual version bump after broken release ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by yuanboxue@microsoft.com)
|
|
196
|
+
- Bump @fluentui/react-button to v9.3.43 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
197
|
+
- Bump @fluentui/react-link to v9.1.22 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
198
|
+
- Bump @fluentui/react-shared-contexts to v9.9.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
199
|
+
- Bump @fluentui/react-tabster to v9.13.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
200
|
+
- Bump @fluentui/react-theme to v9.1.14 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
201
|
+
- Bump @fluentui/react-utilities to v9.13.5 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
202
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.12 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
|
|
203
|
+
|
|
204
|
+
## [1.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.4)
|
|
205
|
+
|
|
206
|
+
Tue, 26 Sep 2023 15:32:04 GMT
|
|
207
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.3..@fluentui/react-breadcrumb-preview_v1.0.4)
|
|
208
|
+
|
|
209
|
+
### Patches
|
|
210
|
+
|
|
211
|
+
- fix: used makeResetStyles instead of makeStyles ([PR #29278](https://github.com/microsoft/fluentui/pull/29278) by vkozlova@microsoft.com)
|
|
212
|
+
- fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com)
|
|
213
|
+
- chore: Update react-icons version to pick up IconDirectionContextProvider updated export ([PR #29151](https://github.com/microsoft/fluentui/pull/29151) by ololubek@microsoft.com)
|
|
214
|
+
- Bump @fluentui/react-button to v9.3.42 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
215
|
+
- Bump @fluentui/react-link to v9.1.21 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
216
|
+
- Bump @fluentui/react-shared-contexts to v9.9.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
217
|
+
- Bump @fluentui/react-tabster to v9.13.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
218
|
+
- Bump @fluentui/react-theme to v9.1.13 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
219
|
+
- Bump @fluentui/react-utilities to v9.13.4 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
220
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.11 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
|
|
221
|
+
|
|
222
|
+
## [1.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.3)
|
|
223
|
+
|
|
224
|
+
Wed, 20 Sep 2023 17:47:35 GMT
|
|
225
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.2..@fluentui/react-breadcrumb-preview_v1.0.3)
|
|
226
|
+
|
|
227
|
+
### Patches
|
|
228
|
+
|
|
229
|
+
- chore: trigger manual version bump after broken release ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by martinhochel@microsoft.com)
|
|
230
|
+
- Bump @fluentui/react-button to v9.3.41 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
|
|
231
|
+
- Bump @fluentui/react-link to v9.1.20 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
|
|
232
|
+
- Bump @fluentui/react-shared-contexts to v9.8.1 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
|
|
233
|
+
- Bump @fluentui/react-tabster to v9.12.11 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
|
|
234
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.10 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
|
|
235
|
+
|
|
236
|
+
## [1.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.2)
|
|
237
|
+
|
|
238
|
+
Wed, 20 Sep 2023 14:59:53 GMT
|
|
239
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.1..@fluentui/react-breadcrumb-preview_v1.0.2)
|
|
240
|
+
|
|
241
|
+
### Patches
|
|
242
|
+
|
|
243
|
+
- fix/added CSS variables to BreadcrumbItem icon ([PR #29158](https://github.com/microsoft/fluentui/pull/29158) by vkozlova@microsoft.com)
|
|
244
|
+
- Bump @fluentui/react-button to v9.3.40 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
|
|
245
|
+
- Bump @fluentui/react-link to v9.1.19 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
|
|
246
|
+
- Bump @fluentui/react-shared-contexts to v9.8.0 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
|
|
247
|
+
- Bump @fluentui/react-tabster to v9.12.10 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
|
|
248
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.9 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
|
|
249
|
+
|
|
250
|
+
## [1.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.1)
|
|
251
|
+
|
|
252
|
+
Thu, 14 Sep 2023 16:44:47 GMT
|
|
253
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.0..@fluentui/react-breadcrumb-preview_v1.0.1)
|
|
254
|
+
|
|
255
|
+
### Patches
|
|
256
|
+
|
|
257
|
+
- Bump @fluentui/react-button to v9.3.39 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
|
|
258
|
+
- Bump @fluentui/react-link to v9.1.18 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
|
|
259
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.8 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
|
|
260
|
+
|
|
261
|
+
## [1.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.0)
|
|
262
|
+
|
|
263
|
+
Tue, 12 Sep 2023 08:51:31 GMT
|
|
264
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.8..@fluentui/react-breadcrumb-preview_v1.0.0)
|
|
265
|
+
|
|
266
|
+
### Major changes
|
|
267
|
+
|
|
268
|
+
- feat: removed breadcrumb-link component ([PR #29112](https://github.com/microsoft/fluentui/pull/29112) by vkozlova@microsoft.com)
|
|
269
|
+
- Bump @fluentui/react-button to v9.3.38 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
|
|
270
|
+
- Bump @fluentui/react-link to v9.1.17 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
|
|
271
|
+
- Bump @fluentui/react-tabster to v9.12.9 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
|
|
272
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.7 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
|
|
273
|
+
|
|
274
|
+
### Patches
|
|
275
|
+
|
|
276
|
+
- fix: icon spacing in Breadcrumb ([PR #29096](https://github.com/microsoft/fluentui/pull/29096) by vkozlova@microsoft.com)
|
|
277
|
+
|
|
278
|
+
## [0.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.8)
|
|
279
|
+
|
|
280
|
+
Wed, 06 Sep 2023 13:31:30 GMT
|
|
281
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.7..@fluentui/react-breadcrumb-preview_v0.3.8)
|
|
282
|
+
|
|
283
|
+
### Patches
|
|
284
|
+
|
|
285
|
+
- fix: styling for BreadcrumbItem ([PR #29059](https://github.com/microsoft/fluentui/pull/29059) by vkozlova@microsoft.com)
|
|
286
|
+
- Bump @fluentui/react-button to v9.3.37 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
|
|
287
|
+
- Bump @fluentui/react-link to v9.1.16 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
|
|
288
|
+
- Bump @fluentui/react-tabster to v9.12.8 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
|
|
289
|
+
- Bump @fluentui/react-utilities to v9.13.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
|
|
290
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.6 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
|
|
291
|
+
|
|
292
|
+
## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.7)
|
|
293
|
+
|
|
294
|
+
Tue, 05 Sep 2023 15:39:04 GMT
|
|
295
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.6..@fluentui/react-breadcrumb-preview_v0.3.7)
|
|
296
|
+
|
|
297
|
+
### Patches
|
|
298
|
+
|
|
299
|
+
- Bump @fluentui/react-button to v9.3.36 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
|
|
300
|
+
- Bump @fluentui/react-link to v9.1.15 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
|
|
301
|
+
- Bump @fluentui/react-tabster to v9.12.7 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
|
|
302
|
+
- Bump @fluentui/react-utilities to v9.13.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
|
|
303
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.5 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
|
|
304
|
+
|
|
305
|
+
## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.6)
|
|
306
|
+
|
|
307
|
+
Tue, 05 Sep 2023 13:29:16 GMT
|
|
308
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.5..@fluentui/react-breadcrumb-preview_v0.3.6)
|
|
309
|
+
|
|
310
|
+
### Patches
|
|
311
|
+
|
|
312
|
+
- bumps @swc/helpers version to 0.5.1 ([PR #28989](https://github.com/microsoft/fluentui/pull/28989) by bernardo.sunderhus@gmail.com)
|
|
313
|
+
- chore: migrate package to use JSX importSource ([PR #28959](https://github.com/microsoft/fluentui/pull/28959) by bernardo.sunderhus@gmail.com)
|
|
314
|
+
- Bump @fluentui/react-button to v9.3.35 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
315
|
+
- Bump @fluentui/react-link to v9.1.14 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
316
|
+
- Bump @fluentui/react-shared-contexts to v9.7.3 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
317
|
+
- Bump @fluentui/react-tabster to v9.12.6 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
318
|
+
- Bump @fluentui/react-theme to v9.1.12 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
319
|
+
- Bump @fluentui/react-utilities to v9.13.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
320
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.4 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
|
|
321
|
+
|
|
322
|
+
## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.5)
|
|
323
|
+
|
|
324
|
+
Tue, 29 Aug 2023 12:57:36 GMT
|
|
325
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.4..@fluentui/react-breadcrumb-preview_v0.3.5)
|
|
326
|
+
|
|
327
|
+
### Patches
|
|
328
|
+
|
|
329
|
+
- Bump @fluentui/react-button to v9.3.34 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
|
|
330
|
+
- Bump @fluentui/react-link to v9.1.13 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
|
|
331
|
+
- Bump @fluentui/react-tabster to v9.12.5 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
|
|
332
|
+
- Bump @fluentui/react-utilities to v9.13.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
|
|
333
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.3 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
|
|
334
|
+
|
|
335
|
+
## [0.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.4)
|
|
336
|
+
|
|
337
|
+
Thu, 24 Aug 2023 10:26:35 GMT
|
|
338
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.3..@fluentui/react-breadcrumb-preview_v0.3.4)
|
|
339
|
+
|
|
340
|
+
### Patches
|
|
341
|
+
|
|
342
|
+
- Bump @fluentui/react-button to v9.3.33 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
|
|
343
|
+
- Bump @fluentui/react-link to v9.1.12 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
|
|
344
|
+
- Bump @fluentui/react-tabster to v9.12.4 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
|
|
345
|
+
- Bump @fluentui/react-utilities to v9.12.0 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
|
|
346
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.2 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
|
|
347
|
+
|
|
348
|
+
## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.3)
|
|
349
|
+
|
|
350
|
+
Wed, 23 Aug 2023 12:01:49 GMT
|
|
351
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.2..@fluentui/react-breadcrumb-preview_v0.3.3)
|
|
352
|
+
|
|
353
|
+
### Patches
|
|
354
|
+
|
|
355
|
+
- Bump @fluentui/react-button to v9.3.32 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
|
|
356
|
+
- Bump @fluentui/react-link to v9.1.11 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
|
|
357
|
+
- Bump @fluentui/react-tabster to v9.12.3 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
|
|
358
|
+
- Bump @fluentui/react-utilities to v9.11.2 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
|
|
359
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.1 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
|
|
360
|
+
|
|
361
|
+
## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.2)
|
|
362
|
+
|
|
363
|
+
Mon, 21 Aug 2023 11:38:00 GMT
|
|
364
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.1..@fluentui/react-breadcrumb-preview_v0.3.2)
|
|
365
|
+
|
|
366
|
+
### Patches
|
|
367
|
+
|
|
368
|
+
- fix: breadcrumb spacing ([PR #28883](https://github.com/microsoft/fluentui/pull/28883) by vkozlova@microsoft.com)
|
|
369
|
+
|
|
370
|
+
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.1)
|
|
371
|
+
|
|
372
|
+
Wed, 16 Aug 2023 17:41:08 GMT
|
|
373
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.0..@fluentui/react-breadcrumb-preview_v0.3.1)
|
|
374
|
+
|
|
375
|
+
### Patches
|
|
376
|
+
|
|
377
|
+
- Bump @fluentui/react-button to v9.3.31 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
|
|
378
|
+
- Bump @fluentui/react-link to v9.1.10 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
|
|
379
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
|
|
380
|
+
|
|
381
|
+
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.0)
|
|
382
|
+
|
|
383
|
+
Wed, 16 Aug 2023 11:38:32 GMT
|
|
384
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.2..@fluentui/react-breadcrumb-preview_v0.3.0)
|
|
385
|
+
|
|
386
|
+
### Minor changes
|
|
387
|
+
|
|
388
|
+
- removed iconPosition prop from the Breadcrumb ([PR #28846](https://github.com/microsoft/fluentui/pull/28846) by vkozlova@microsoft.com)
|
|
389
|
+
- Bump @fluentui/react-button to v9.3.30 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
|
|
390
|
+
- Bump @fluentui/react-link to v9.1.9 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
|
|
391
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.16 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
|
|
392
|
+
|
|
393
|
+
### Patches
|
|
394
|
+
|
|
395
|
+
- Added CY tests for Breacrumb with Menu and Overflow ([PR #28790](https://github.com/microsoft/fluentui/pull/28790) by vkozlova@microsoft.com)
|
|
396
|
+
|
|
397
|
+
## [0.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.2)
|
|
398
|
+
|
|
399
|
+
Fri, 11 Aug 2023 12:14:26 GMT
|
|
400
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.1..@fluentui/react-breadcrumb-preview_v0.2.2)
|
|
401
|
+
|
|
402
|
+
### Patches
|
|
403
|
+
|
|
404
|
+
- Bump @fluentui/react-button to v9.3.29 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
|
|
405
|
+
- Bump @fluentui/react-link to v9.1.8 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
|
|
406
|
+
- Bump @fluentui/react-tabster to v9.12.2 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
|
|
407
|
+
- Bump @fluentui/react-utilities to v9.11.1 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
|
|
408
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.15 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
|
|
409
|
+
|
|
410
|
+
## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.1)
|
|
411
|
+
|
|
412
|
+
Wed, 09 Aug 2023 13:16:50 GMT
|
|
413
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.0..@fluentui/react-breadcrumb-preview_v0.2.1)
|
|
414
|
+
|
|
415
|
+
### Patches
|
|
416
|
+
|
|
417
|
+
- chore: Update Griffel to latest version ([PR #28684](https://github.com/microsoft/fluentui/pull/28684) by olfedias@microsoft.com)
|
|
418
|
+
- fix: disabled BreadcrumbLink shouldn't be focusable ([PR #28720](https://github.com/microsoft/fluentui/pull/28720) by vkozlova@microsoft.com)
|
|
419
|
+
- chore(cxe-prg): migrate to new slot API ([PR #28752](https://github.com/microsoft/fluentui/pull/28752) by bernardo.sunderhus@gmail.com)
|
|
420
|
+
- Bump @fluentui/react-button to v9.3.28 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
421
|
+
- Bump @fluentui/react-link to v9.1.7 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
422
|
+
- Bump @fluentui/react-shared-contexts to v9.7.2 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
423
|
+
- Bump @fluentui/react-tabster to v9.12.1 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
424
|
+
- Bump @fluentui/react-theme to v9.1.11 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
425
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.14 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
|
|
426
|
+
|
|
427
|
+
## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.0)
|
|
428
|
+
|
|
429
|
+
Fri, 04 Aug 2023 08:52:55 GMT
|
|
430
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.3..@fluentui/react-breadcrumb-preview_v0.2.0)
|
|
431
|
+
|
|
432
|
+
### Minor changes
|
|
433
|
+
|
|
434
|
+
- feat: Added an icon for BreadcrumbItem ([PR #28682](https://github.com/microsoft/fluentui/pull/28682) by vkozlova@microsoft.com)
|
|
435
|
+
- Bump @fluentui/react-button to v9.3.27 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
436
|
+
- Bump @fluentui/react-link to v9.1.6 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
437
|
+
- Bump @fluentui/react-shared-contexts to v9.7.1 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
438
|
+
- Bump @fluentui/react-tabster to v9.12.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
439
|
+
- Bump @fluentui/react-theme to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
440
|
+
- Bump @fluentui/react-utilities to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
441
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
|
|
442
|
+
|
|
443
|
+
### Patches
|
|
444
|
+
|
|
445
|
+
- fix: made BreadcrumbButton consistent with other items ([PR #28672](https://github.com/microsoft/fluentui/pull/28672) by vkozlova@microsoft.com)
|
|
446
|
+
|
|
447
|
+
## [0.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.3)
|
|
448
|
+
|
|
449
|
+
Tue, 01 Aug 2023 10:17:21 GMT
|
|
450
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.2..@fluentui/react-breadcrumb-preview_v0.1.3)
|
|
451
|
+
|
|
452
|
+
### Patches
|
|
453
|
+
|
|
454
|
+
- Bump @fluentui/react-button to v9.3.26 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
|
|
455
|
+
- Bump @fluentui/react-link to v9.1.5 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
|
|
456
|
+
- Bump @fluentui/react-shared-contexts to v9.7.0 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
|
|
457
|
+
- Bump @fluentui/react-tabster to v9.11.1 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
|
|
458
|
+
|
|
459
|
+
## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.2)
|
|
460
|
+
|
|
461
|
+
Tue, 25 Jul 2023 13:29:16 GMT
|
|
462
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.1..@fluentui/react-breadcrumb-preview_v0.1.2)
|
|
463
|
+
|
|
464
|
+
### Patches
|
|
465
|
+
|
|
466
|
+
- chore: Update react-icons version to pick up fowardref change. ([PR #28590](https://github.com/microsoft/fluentui/pull/28590) by ololubek@microsoft.com)
|
|
467
|
+
- fix: updated readme, replaced MenuItem with MenuItemLink ([PR #28626](https://github.com/microsoft/fluentui/pull/28626) by vkozlova@microsoft.com)
|
|
468
|
+
- fix: spacing in BreadcrumbButton and Link, added more examples to the stories ([PR #28578](https://github.com/microsoft/fluentui/pull/28578) by vkozlova@microsoft.com)
|
|
469
|
+
- Bump @fluentui/react-button to v9.3.25 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
|
|
470
|
+
- Bump @fluentui/react-link to v9.1.4 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
|
|
471
|
+
- Bump @fluentui/react-tabster to v9.11.0 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
|
|
472
|
+
|
|
473
|
+
## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.1)
|
|
474
|
+
|
|
475
|
+
Thu, 20 Jul 2023 18:27:36 GMT
|
|
476
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.0..@fluentui/react-breadcrumb-preview_v0.1.1)
|
|
477
|
+
|
|
478
|
+
### Patches
|
|
479
|
+
|
|
480
|
+
- Bump @fluentui/react-button to v9.3.24 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
|
|
481
|
+
- Bump @fluentui/react-link to v9.1.3 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
|
|
482
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.12 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
|
|
483
|
+
|
|
484
|
+
## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.0)
|
|
485
|
+
|
|
486
|
+
Mon, 17 Jul 2023 21:27:34 GMT
|
|
487
|
+
|
|
488
|
+
### Minor changes
|
|
489
|
+
|
|
490
|
+
- feat: release react-breadcrumb to unstable ([PR #28402](https://github.com/microsoft/fluentui/pull/28402) by vkozlova@microsoft.com)
|
|
491
|
+
|
|
492
|
+
### Patches
|
|
493
|
+
|
|
494
|
+
- made breadcrumb package public ([PR #28549](https://github.com/microsoft/fluentui/pull/28549) by vkozlova@microsoft.com)
|
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@fluentui/react-breadcrumb
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation
|
|
4
|
+
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
MIT License
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
14
|
+
|
|
15
|
+
Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
|
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# @fluentui/react-breadcrumb
|
|
2
|
+
|
|
3
|
+
**React Breadcrumb components for [Fluent UI React](https://react.fluentui.dev/)**
|
|
4
|
+
|
|
5
|
+
These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
|
|
6
|
+
|
|
7
|
+
Breadcrumbs should be used as a navigational aid in your app or site. They indicate the current page's location within a hierarchy and help the user understand where they are in relation to the rest of that hierarchy.
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
To import React Breadcrumb components:
|
|
12
|
+
|
|
13
|
+
```tsx
|
|
14
|
+
import {
|
|
15
|
+
Breadcrumb,
|
|
16
|
+
BreadcrumbItem,
|
|
17
|
+
BreadcrumbButton,
|
|
18
|
+
BreadcrumbDivider,
|
|
19
|
+
BreadcrumbProps
|
|
20
|
+
} from "@fluentui/react-components';
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Simple example of Breadcrumb Usage:
|
|
24
|
+
|
|
25
|
+
```tsx
|
|
26
|
+
import { Breadcrumb, BreadcrumbItem, BreadcrumbDivider } from '@fluentui/react-breadcrumb';
|
|
27
|
+
|
|
28
|
+
export const App = () => (
|
|
29
|
+
<Breadcrumb aria-label="breadcrumb">
|
|
30
|
+
<BreadcrumbItem>Item 1</BreadcrumbItem>
|
|
31
|
+
<BreadcrumbDivider />
|
|
32
|
+
<BreadcrumbItem>Item 2</BreadcrumbItem>
|
|
33
|
+
<BreadcrumbDivider />
|
|
34
|
+
<BreadcrumbItem current={true}>Item 3</BreadcrumbItem>
|
|
35
|
+
</Breadcrumb>
|
|
36
|
+
);
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Specification
|
|
40
|
+
|
|
41
|
+
See the [Spec.md](./docs/Spec.md) file for background information on the design/engineering decisions of the component.
|
|
42
|
+
|
|
43
|
+
## API
|
|
44
|
+
|
|
45
|
+
For information about the components, please refer to the [API documentation](https://react.fluentui.dev/?path=/docs/components-breadcrumb--default).
|