@fluentui/react-breadcrumb 0.0.0-nightly-20231115-0405.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.
Files changed (141) hide show
  1. package/CHANGELOG.md +513 -0
  2. package/LICENSE +15 -0
  3. package/README.md +45 -0
  4. package/dist/index.d.ts +259 -0
  5. package/lib/Breadcrumb.js +1 -0
  6. package/lib/Breadcrumb.js.map +1 -0
  7. package/lib/BreadcrumbButton.js +1 -0
  8. package/lib/BreadcrumbButton.js.map +1 -0
  9. package/lib/BreadcrumbDivider.js +1 -0
  10. package/lib/BreadcrumbDivider.js.map +1 -0
  11. package/lib/BreadcrumbItem.js +1 -0
  12. package/lib/BreadcrumbItem.js.map +1 -0
  13. package/lib/components/Breadcrumb/Breadcrumb.js +16 -0
  14. package/lib/components/Breadcrumb/Breadcrumb.js.map +1 -0
  15. package/lib/components/Breadcrumb/Breadcrumb.types.js +1 -0
  16. package/lib/components/Breadcrumb/Breadcrumb.types.js.map +1 -0
  17. package/lib/components/Breadcrumb/BreadcrumbContext.js +16 -0
  18. package/lib/components/Breadcrumb/BreadcrumbContext.js.map +1 -0
  19. package/lib/components/Breadcrumb/index.js +6 -0
  20. package/lib/components/Breadcrumb/index.js.map +1 -0
  21. package/lib/components/Breadcrumb/renderBreadcrumb.js +16 -0
  22. package/lib/components/Breadcrumb/renderBreadcrumb.js.map +1 -0
  23. package/lib/components/Breadcrumb/useBreadcrumb.js +42 -0
  24. package/lib/components/Breadcrumb/useBreadcrumb.js.map +1 -0
  25. package/lib/components/Breadcrumb/useBreadcrumbContextValue.js +9 -0
  26. package/lib/components/Breadcrumb/useBreadcrumbContextValue.js.map +1 -0
  27. package/lib/components/Breadcrumb/useBreadcrumbStyles.styles.js +18 -0
  28. package/lib/components/Breadcrumb/useBreadcrumbStyles.styles.js.map +1 -0
  29. package/lib/components/BreadcrumbButton/BreadcrumbButton.js +14 -0
  30. package/lib/components/BreadcrumbButton/BreadcrumbButton.js.map +1 -0
  31. package/lib/components/BreadcrumbButton/BreadcrumbButton.types.js +1 -0
  32. package/lib/components/BreadcrumbButton/BreadcrumbButton.types.js.map +1 -0
  33. package/lib/components/BreadcrumbButton/index.js +5 -0
  34. package/lib/components/BreadcrumbButton/index.js.map +1 -0
  35. package/lib/components/BreadcrumbButton/renderBreadcrumbButton.js +6 -0
  36. package/lib/components/BreadcrumbButton/renderBreadcrumbButton.js.map +1 -0
  37. package/lib/components/BreadcrumbButton/useBreadcrumbButton.js +31 -0
  38. package/lib/components/BreadcrumbButton/useBreadcrumbButton.js.map +1 -0
  39. package/lib/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js +161 -0
  40. package/lib/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js.map +1 -0
  41. package/lib/components/BreadcrumbDivider/BreadcrumbDivider.js +14 -0
  42. package/lib/components/BreadcrumbDivider/BreadcrumbDivider.js.map +1 -0
  43. package/lib/components/BreadcrumbDivider/BreadcrumbDivider.types.js +1 -0
  44. package/lib/components/BreadcrumbDivider/BreadcrumbDivider.types.js.map +1 -0
  45. package/lib/components/BreadcrumbDivider/index.js +5 -0
  46. package/lib/components/BreadcrumbDivider/index.js.map +1 -0
  47. package/lib/components/BreadcrumbDivider/renderBreadcrumbDivider.js +8 -0
  48. package/lib/components/BreadcrumbDivider/renderBreadcrumbDivider.js.map +1 -0
  49. package/lib/components/BreadcrumbDivider/useBreadcrumbDivider.js +57 -0
  50. package/lib/components/BreadcrumbDivider/useBreadcrumbDivider.js.map +1 -0
  51. package/lib/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js +23 -0
  52. package/lib/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js.map +1 -0
  53. package/lib/components/BreadcrumbItem/BreadcrumbItem.js +15 -0
  54. package/lib/components/BreadcrumbItem/BreadcrumbItem.js.map +1 -0
  55. package/lib/components/BreadcrumbItem/BreadcrumbItem.types.js +1 -0
  56. package/lib/components/BreadcrumbItem/BreadcrumbItem.types.js.map +1 -0
  57. package/lib/components/BreadcrumbItem/index.js +5 -0
  58. package/lib/components/BreadcrumbItem/index.js.map +1 -0
  59. package/lib/components/BreadcrumbItem/renderBreadcrumbItem.js +10 -0
  60. package/lib/components/BreadcrumbItem/renderBreadcrumbItem.js.map +1 -0
  61. package/lib/components/BreadcrumbItem/useBreadcrumbItem.js +26 -0
  62. package/lib/components/BreadcrumbItem/useBreadcrumbItem.js.map +1 -0
  63. package/lib/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js +15 -0
  64. package/lib/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js.map +1 -0
  65. package/lib/index.js +6 -0
  66. package/lib/index.js.map +1 -0
  67. package/lib/utils/index.js +2 -0
  68. package/lib/utils/index.js.map +1 -0
  69. package/lib/utils/partitionBreadcrumbItems.js +35 -0
  70. package/lib/utils/partitionBreadcrumbItems.js.map +1 -0
  71. package/lib/utils/truncateBreadcrumb.js +16 -0
  72. package/lib/utils/truncateBreadcrumb.js.map +1 -0
  73. package/lib-commonjs/Breadcrumb.js +6 -0
  74. package/lib-commonjs/Breadcrumb.js.map +1 -0
  75. package/lib-commonjs/BreadcrumbButton.js +6 -0
  76. package/lib-commonjs/BreadcrumbButton.js.map +1 -0
  77. package/lib-commonjs/BreadcrumbDivider.js +6 -0
  78. package/lib-commonjs/BreadcrumbDivider.js.map +1 -0
  79. package/lib-commonjs/BreadcrumbItem.js +6 -0
  80. package/lib-commonjs/BreadcrumbItem.js.map +1 -0
  81. package/lib-commonjs/components/Breadcrumb/Breadcrumb.js +25 -0
  82. package/lib-commonjs/components/Breadcrumb/Breadcrumb.js.map +1 -0
  83. package/lib-commonjs/components/Breadcrumb/Breadcrumb.types.js +4 -0
  84. package/lib-commonjs/components/Breadcrumb/Breadcrumb.types.js.map +1 -0
  85. package/lib-commonjs/components/Breadcrumb/BreadcrumbContext.js +32 -0
  86. package/lib-commonjs/components/Breadcrumb/BreadcrumbContext.js.map +1 -0
  87. package/lib-commonjs/components/Breadcrumb/index.js +11 -0
  88. package/lib-commonjs/components/Breadcrumb/index.js.map +1 -0
  89. package/lib-commonjs/components/Breadcrumb/renderBreadcrumb.js +24 -0
  90. package/lib-commonjs/components/Breadcrumb/renderBreadcrumb.js.map +1 -0
  91. package/lib-commonjs/components/Breadcrumb/useBreadcrumb.js +45 -0
  92. package/lib-commonjs/components/Breadcrumb/useBreadcrumb.js.map +1 -0
  93. package/lib-commonjs/components/Breadcrumb/useBreadcrumbContextValue.js +20 -0
  94. package/lib-commonjs/components/Breadcrumb/useBreadcrumbContextValue.js.map +1 -0
  95. package/lib-commonjs/components/Breadcrumb/useBreadcrumbStyles.styles.js +34 -0
  96. package/lib-commonjs/components/Breadcrumb/useBreadcrumbStyles.styles.js.map +1 -0
  97. package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.js +23 -0
  98. package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.js.map +1 -0
  99. package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.types.js +4 -0
  100. package/lib-commonjs/components/BreadcrumbButton/BreadcrumbButton.types.js.map +1 -0
  101. package/lib-commonjs/components/BreadcrumbButton/index.js +10 -0
  102. package/lib-commonjs/components/BreadcrumbButton/index.js.map +1 -0
  103. package/lib-commonjs/components/BreadcrumbButton/renderBreadcrumbButton.js +14 -0
  104. package/lib-commonjs/components/BreadcrumbButton/renderBreadcrumbButton.js.map +1 -0
  105. package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButton.js +34 -0
  106. package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButton.js.map +1 -0
  107. package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js +257 -0
  108. package/lib-commonjs/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.js.map +1 -0
  109. package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.js +23 -0
  110. package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.js.map +1 -0
  111. package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.types.js +4 -0
  112. package/lib-commonjs/components/BreadcrumbDivider/BreadcrumbDivider.types.js.map +1 -0
  113. package/lib-commonjs/components/BreadcrumbDivider/index.js +10 -0
  114. package/lib-commonjs/components/BreadcrumbDivider/index.js.map +1 -0
  115. package/lib-commonjs/components/BreadcrumbDivider/renderBreadcrumbDivider.js +16 -0
  116. package/lib-commonjs/components/BreadcrumbDivider/renderBreadcrumbDivider.js.map +1 -0
  117. package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDivider.js +60 -0
  118. package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDivider.js.map +1 -0
  119. package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js +38 -0
  120. package/lib-commonjs/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.js.map +1 -0
  121. package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.js +23 -0
  122. package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.js.map +1 -0
  123. package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.types.js +4 -0
  124. package/lib-commonjs/components/BreadcrumbItem/BreadcrumbItem.types.js.map +1 -0
  125. package/lib-commonjs/components/BreadcrumbItem/index.js +10 -0
  126. package/lib-commonjs/components/BreadcrumbItem/index.js.map +1 -0
  127. package/lib-commonjs/components/BreadcrumbItem/renderBreadcrumbItem.js +18 -0
  128. package/lib-commonjs/components/BreadcrumbItem/renderBreadcrumbItem.js.map +1 -0
  129. package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItem.js +29 -0
  130. package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItem.js.map +1 -0
  131. package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js +30 -0
  132. package/lib-commonjs/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.js.map +1 -0
  133. package/lib-commonjs/index.js +95 -0
  134. package/lib-commonjs/index.js.map +1 -0
  135. package/lib-commonjs/utils/index.js +26 -0
  136. package/lib-commonjs/utils/index.js.map +1 -0
  137. package/lib-commonjs/utils/partitionBreadcrumbItems.js +39 -0
  138. package/lib-commonjs/utils/partitionBreadcrumbItems.js.map +1 -0
  139. package/lib-commonjs/utils/truncateBreadcrumb.js +37 -0
  140. package/lib-commonjs/utils/truncateBreadcrumb.js.map +1 -0
  141. package/package.json +72 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,513 @@
1
+ # Change Log - @fluentui/react-breadcrumb
2
+
3
+ This log was last generated on Wed, 15 Nov 2023 04:20:05 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20231115-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb_v0.0.0-nightly-20231115-0405.1)
8
+
9
+ Wed, 15 Nov 2023 04:20:05 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb_v9.0.0..@fluentui/react-breadcrumb_v0.0.0-nightly-20231115-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/not available) by fluentui-internal@service.microsoft.com)
15
+ - Bump @fluentui/react-aria to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
16
+ - Bump @fluentui/react-button to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
17
+ - Bump @fluentui/react-link to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
18
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
19
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
20
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
21
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
22
+ - Bump @fluentui/react-jsx-runtime to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
23
+ - Bump @fluentui/react-conformance to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
24
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20231115-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/42922265215171f989de1d7eb8ca787def15d40e) by beachball)
25
+
26
+ ## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb_v9.0.0)
27
+
28
+ Tue, 14 Nov 2023 17:51:26 GMT
29
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.2..@fluentui/react-breadcrumb_v9.0.0)
30
+
31
+ ### Minor changes
32
+
33
+ - feat: release stable ([PR #29826](https://github.com/microsoft/fluentui/pull/29826) by marcosvmmoura@gmail.com)
34
+ - Bump @fluentui/react-button to v9.3.55 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
35
+ - Bump @fluentui/react-link to v9.1.34 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
36
+ - Bump @fluentui/react-tabster to v9.14.5 ([PR #29835](https://github.com/microsoft/fluentui/pull/29835) by beachball)
37
+
38
+ ### Patches
39
+
40
+ - docs(breadcrumb): removed preview from all the links ([PR #29838](https://github.com/microsoft/fluentui/pull/29838) by vkozlova@microsoft.com)
41
+
42
+ ## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.2)
43
+
44
+ Fri, 10 Nov 2023 13:46:32 GMT
45
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.1..@fluentui/react-breadcrumb-preview_v2.1.2)
46
+
47
+ ### Patches
48
+
49
+ - fix: use button when no href is defined ([PR #29803](https://github.com/microsoft/fluentui/pull/29803) by sarah.higley@microsoft.com)
50
+
51
+ ## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.1)
52
+
53
+ Thu, 09 Nov 2023 17:29:50 GMT
54
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.1.0..@fluentui/react-breadcrumb-preview_v2.1.1)
55
+
56
+ ### Patches
57
+
58
+ - 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)
59
+ - Bump @fluentui/react-button to v9.3.54 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
60
+ - Bump @fluentui/react-link to v9.1.33 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
61
+ - Bump @fluentui/react-shared-contexts to v9.12.0 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
62
+ - Bump @fluentui/react-tabster to v9.14.4 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
63
+ - Bump @fluentui/react-theme to v9.1.16 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
64
+ - Bump @fluentui/react-utilities to v9.15.2 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
65
+ - Bump @fluentui/react-jsx-runtime to v9.0.19 ([PR #29800](https://github.com/microsoft/fluentui/pull/29800) by beachball)
66
+
67
+ ## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.1.0)
68
+
69
+ Wed, 01 Nov 2023 19:15:55 GMT
70
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.0.1..@fluentui/react-breadcrumb-preview_v2.1.0)
71
+
72
+ ### Minor changes
73
+
74
+ - feat: made BreadcrumbButton semantically as a link ([PR #29679](https://github.com/microsoft/fluentui/pull/29679) by vkozlova@microsoft.com)
75
+
76
+ ## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.0.1)
77
+
78
+ Wed, 01 Nov 2023 12:55:59 GMT
79
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v2.0.0..@fluentui/react-breadcrumb-preview_v2.0.1)
80
+
81
+ ### Patches
82
+
83
+ - Bump @fluentui/react-button to v9.3.53 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
84
+ - Bump @fluentui/react-link to v9.1.32 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
85
+ - Bump @fluentui/react-shared-contexts to v9.11.1 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
86
+ - Bump @fluentui/react-tabster to v9.14.3 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
87
+ - Bump @fluentui/react-theme to v9.1.15 ([PR #29663](https://github.com/microsoft/fluentui/pull/29663) by beachball)
88
+
89
+ ## [2.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v2.0.0)
90
+
91
+ Sat, 28 Oct 2023 23:35:54 GMT
92
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.5..@fluentui/react-breadcrumb-preview_v2.0.0)
93
+
94
+ ### Major changes
95
+
96
+ - BREAKING CHANGE: Removed non-interactive item and `slash` divider ([PR #29623](https://github.com/microsoft/fluentui/pull/29623) by vkozlova@microsoft.com)
97
+ - 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)
98
+ - Bump @fluentui/react-button to v9.3.52 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
99
+ - Bump @fluentui/react-link to v9.1.31 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
100
+ - Bump @fluentui/react-shared-contexts to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
101
+ - Bump @fluentui/react-tabster to v9.14.2 ([commit](https://github.com/microsoft/fluentui/commit/555b0fae3ec7f052e765557ae243c58000514f92) by beachball)
102
+
103
+ ## [1.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.5)
104
+
105
+ Mon, 23 Oct 2023 09:51:57 GMT
106
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.4..@fluentui/react-breadcrumb-preview_v1.2.5)
107
+
108
+ ### Patches
109
+
110
+ - Bump @fluentui/react-button to v9.3.51 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
111
+ - Bump @fluentui/react-link to v9.1.30 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
112
+ - Bump @fluentui/react-tabster to v9.14.1 ([commit](https://github.com/microsoft/fluentui/commit/e4ef1febe8a185dddc10f8936944d177d50bc396) by beachball)
113
+
114
+ ## [1.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.4)
115
+
116
+ Wed, 18 Oct 2023 17:54:08 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.3..@fluentui/react-breadcrumb-preview_v1.2.4)
118
+
119
+ ### Patches
120
+
121
+ - Bump @fluentui/react-button to v9.3.50 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
122
+ - Bump @fluentui/react-link to v9.1.29 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
123
+ - Bump @fluentui/react-tabster to v9.14.0 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
124
+ - Bump @fluentui/react-utilities to v9.15.1 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
125
+ - Bump @fluentui/react-jsx-runtime to v9.0.18 ([PR #29560](https://github.com/microsoft/fluentui/pull/29560) by beachball)
126
+
127
+ ## [1.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.3)
128
+
129
+ Thu, 12 Oct 2023 14:55:42 GMT
130
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.2..@fluentui/react-breadcrumb-preview_v1.2.3)
131
+
132
+ ### Patches
133
+
134
+ - chore: migrate from getNativeElementProps for getIntrinsicElementProps ([PR #29498](https://github.com/microsoft/fluentui/pull/29498) by bernardo.sunderhus@gmail.com)
135
+ - Bump @fluentui/react-button to v9.3.49 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
136
+ - Bump @fluentui/react-link to v9.1.28 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
137
+ - Bump @fluentui/react-jsx-runtime to v9.0.17 ([PR #29513](https://github.com/microsoft/fluentui/pull/29513) by beachball)
138
+
139
+ ## [1.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.2)
140
+
141
+ Wed, 11 Oct 2023 13:54:26 GMT
142
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.1..@fluentui/react-breadcrumb-preview_v1.2.2)
143
+
144
+ ### Patches
145
+
146
+ - Bump @fluentui/react-button to v9.3.48 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
147
+ - Bump @fluentui/react-link to v9.1.27 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
148
+ - Bump @fluentui/react-tabster to v9.13.6 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
149
+ - Bump @fluentui/react-utilities to v9.15.0 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
150
+ - Bump @fluentui/react-jsx-runtime to v9.0.16 ([PR #29262](https://github.com/microsoft/fluentui/pull/29262) by beachball)
151
+
152
+ ## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.1)
153
+
154
+ Mon, 09 Oct 2023 20:45:44 GMT
155
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.2.0..@fluentui/react-breadcrumb-preview_v1.2.1)
156
+
157
+ ### Patches
158
+
159
+ - Bump @fluentui/react-button to v9.3.47 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
160
+ - Bump @fluentui/react-link to v9.1.26 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
161
+ - Bump @fluentui/react-shared-contexts to v9.10.0 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
162
+ - Bump @fluentui/react-tabster to v9.13.5 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
163
+ - Bump @fluentui/react-utilities to v9.14.2 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
164
+ - Bump @fluentui/react-jsx-runtime to v9.0.15 ([PR #29364](https://github.com/microsoft/fluentui/pull/29364) by beachball)
165
+
166
+ ## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.2.0)
167
+
168
+ Thu, 05 Oct 2023 15:25:29 GMT
169
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.1.1..@fluentui/react-breadcrumb-preview_v1.2.0)
170
+
171
+ ### Minor changes
172
+
173
+ - feat: register items via context ([PR #29393](https://github.com/microsoft/fluentui/pull/29393) by vkozlova@microsoft.com)
174
+ - Bump @fluentui/react-button to v9.3.46 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
175
+ - Bump @fluentui/react-link to v9.1.25 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
176
+ - Bump @fluentui/react-tabster to v9.13.4 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
177
+ - Bump @fluentui/react-utilities to v9.14.1 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
178
+ - Bump @fluentui/react-jsx-runtime to v9.0.14 ([PR #29412](https://github.com/microsoft/fluentui/pull/29412) by beachball)
179
+
180
+ ## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.1.1)
181
+
182
+ Wed, 04 Oct 2023 08:45:47 GMT
183
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.1.0..@fluentui/react-breadcrumb-preview_v1.1.1)
184
+
185
+ ### Patches
186
+
187
+ - Bump @fluentui/react-button to v9.3.45 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
188
+ - Bump @fluentui/react-link to v9.1.24 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
189
+ - Bump @fluentui/react-tabster to v9.13.3 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
190
+ - Bump @fluentui/react-utilities to v9.14.0 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
191
+ - Bump @fluentui/react-jsx-runtime to v9.0.13 ([commit](https://github.com/microsoft/fluentui/commit/67b6cc6534e684ed32704dc6c0faee632bb840dc) by beachball)
192
+
193
+ ## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.1.0)
194
+
195
+ Mon, 02 Oct 2023 08:56:03 GMT
196
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.5..@fluentui/react-breadcrumb-preview_v1.1.0)
197
+
198
+ ### Minor changes
199
+
200
+ - fix: exported BreadcrumbProvider and useBreadcrumbContext ([PR #29315](https://github.com/microsoft/fluentui/pull/29315) by vkozlova@microsoft.com)
201
+ - 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)
202
+ - Bump @fluentui/react-button to v9.3.44 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
203
+ - Bump @fluentui/react-link to v9.1.23 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
204
+ - Bump @fluentui/react-shared-contexts to v9.9.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
205
+ - Bump @fluentui/react-tabster to v9.13.2 ([PR #29301](https://github.com/microsoft/fluentui/pull/29301) by beachball)
206
+
207
+ ## [1.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.5)
208
+
209
+ Tue, 26 Sep 2023 17:49:03 GMT
210
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.4..@fluentui/react-breadcrumb-preview_v1.0.5)
211
+
212
+ ### Patches
213
+
214
+ - chore: trigger manual version bump after broken release ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by yuanboxue@microsoft.com)
215
+ - Bump @fluentui/react-button to v9.3.43 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
216
+ - Bump @fluentui/react-link to v9.1.22 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
217
+ - Bump @fluentui/react-shared-contexts to v9.9.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
218
+ - Bump @fluentui/react-tabster to v9.13.1 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
219
+ - Bump @fluentui/react-theme to v9.1.14 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
220
+ - Bump @fluentui/react-utilities to v9.13.5 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
221
+ - Bump @fluentui/react-jsx-runtime to v9.0.12 ([PR #29303](https://github.com/microsoft/fluentui/pull/29303) by beachball)
222
+
223
+ ## [1.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.4)
224
+
225
+ Tue, 26 Sep 2023 15:32:04 GMT
226
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.3..@fluentui/react-breadcrumb-preview_v1.0.4)
227
+
228
+ ### Patches
229
+
230
+ - fix: used makeResetStyles instead of makeStyles ([PR #29278](https://github.com/microsoft/fluentui/pull/29278) by vkozlova@microsoft.com)
231
+ - fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com)
232
+ - chore: Update react-icons version to pick up IconDirectionContextProvider updated export ([PR #29151](https://github.com/microsoft/fluentui/pull/29151) by ololubek@microsoft.com)
233
+ - Bump @fluentui/react-button to v9.3.42 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
234
+ - Bump @fluentui/react-link to v9.1.21 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
235
+ - Bump @fluentui/react-shared-contexts to v9.9.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
236
+ - Bump @fluentui/react-tabster to v9.13.0 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
237
+ - Bump @fluentui/react-theme to v9.1.13 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
238
+ - Bump @fluentui/react-utilities to v9.13.4 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
239
+ - Bump @fluentui/react-jsx-runtime to v9.0.11 ([PR #29300](https://github.com/microsoft/fluentui/pull/29300) by beachball)
240
+
241
+ ## [1.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.3)
242
+
243
+ Wed, 20 Sep 2023 17:47:35 GMT
244
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.2..@fluentui/react-breadcrumb-preview_v1.0.3)
245
+
246
+ ### Patches
247
+
248
+ - chore: trigger manual version bump after broken release ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by martinhochel@microsoft.com)
249
+ - Bump @fluentui/react-button to v9.3.41 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
250
+ - Bump @fluentui/react-link to v9.1.20 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
251
+ - Bump @fluentui/react-shared-contexts to v9.8.1 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
252
+ - Bump @fluentui/react-tabster to v9.12.11 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
253
+ - Bump @fluentui/react-jsx-runtime to v9.0.10 ([PR #29197](https://github.com/microsoft/fluentui/pull/29197) by beachball)
254
+
255
+ ## [1.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.2)
256
+
257
+ Wed, 20 Sep 2023 14:59:53 GMT
258
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.1..@fluentui/react-breadcrumb-preview_v1.0.2)
259
+
260
+ ### Patches
261
+
262
+ - fix/added CSS variables to BreadcrumbItem icon ([PR #29158](https://github.com/microsoft/fluentui/pull/29158) by vkozlova@microsoft.com)
263
+ - Bump @fluentui/react-button to v9.3.40 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
264
+ - Bump @fluentui/react-link to v9.1.19 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
265
+ - Bump @fluentui/react-shared-contexts to v9.8.0 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
266
+ - Bump @fluentui/react-tabster to v9.12.10 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
267
+ - Bump @fluentui/react-jsx-runtime to v9.0.9 ([PR #29193](https://github.com/microsoft/fluentui/pull/29193) by beachball)
268
+
269
+ ## [1.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.1)
270
+
271
+ Thu, 14 Sep 2023 16:44:47 GMT
272
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v1.0.0..@fluentui/react-breadcrumb-preview_v1.0.1)
273
+
274
+ ### Patches
275
+
276
+ - Bump @fluentui/react-button to v9.3.39 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
277
+ - Bump @fluentui/react-link to v9.1.18 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
278
+ - Bump @fluentui/react-jsx-runtime to v9.0.8 ([PR #29145](https://github.com/microsoft/fluentui/pull/29145) by beachball)
279
+
280
+ ## [1.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v1.0.0)
281
+
282
+ Tue, 12 Sep 2023 08:51:31 GMT
283
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.8..@fluentui/react-breadcrumb-preview_v1.0.0)
284
+
285
+ ### Major changes
286
+
287
+ - feat: removed breadcrumb-link component ([PR #29112](https://github.com/microsoft/fluentui/pull/29112) by vkozlova@microsoft.com)
288
+ - Bump @fluentui/react-button to v9.3.38 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
289
+ - Bump @fluentui/react-link to v9.1.17 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
290
+ - Bump @fluentui/react-tabster to v9.12.9 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
291
+ - Bump @fluentui/react-jsx-runtime to v9.0.7 ([PR #29129](https://github.com/microsoft/fluentui/pull/29129) by beachball)
292
+
293
+ ### Patches
294
+
295
+ - fix: icon spacing in Breadcrumb ([PR #29096](https://github.com/microsoft/fluentui/pull/29096) by vkozlova@microsoft.com)
296
+
297
+ ## [0.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.8)
298
+
299
+ Wed, 06 Sep 2023 13:31:30 GMT
300
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.7..@fluentui/react-breadcrumb-preview_v0.3.8)
301
+
302
+ ### Patches
303
+
304
+ - fix: styling for BreadcrumbItem ([PR #29059](https://github.com/microsoft/fluentui/pull/29059) by vkozlova@microsoft.com)
305
+ - Bump @fluentui/react-button to v9.3.37 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
306
+ - Bump @fluentui/react-link to v9.1.16 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
307
+ - Bump @fluentui/react-tabster to v9.12.8 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
308
+ - Bump @fluentui/react-utilities to v9.13.3 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
309
+ - Bump @fluentui/react-jsx-runtime to v9.0.6 ([PR #29080](https://github.com/microsoft/fluentui/pull/29080) by beachball)
310
+
311
+ ## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.7)
312
+
313
+ Tue, 05 Sep 2023 15:39:04 GMT
314
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.6..@fluentui/react-breadcrumb-preview_v0.3.7)
315
+
316
+ ### Patches
317
+
318
+ - Bump @fluentui/react-button to v9.3.36 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
319
+ - Bump @fluentui/react-link to v9.1.15 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
320
+ - Bump @fluentui/react-tabster to v9.12.7 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
321
+ - Bump @fluentui/react-utilities to v9.13.2 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
322
+ - Bump @fluentui/react-jsx-runtime to v9.0.5 ([PR #29055](https://github.com/microsoft/fluentui/pull/29055) by beachball)
323
+
324
+ ## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.6)
325
+
326
+ Tue, 05 Sep 2023 13:29:16 GMT
327
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.5..@fluentui/react-breadcrumb-preview_v0.3.6)
328
+
329
+ ### Patches
330
+
331
+ - bumps @swc/helpers version to 0.5.1 ([PR #28989](https://github.com/microsoft/fluentui/pull/28989) by bernardo.sunderhus@gmail.com)
332
+ - chore: migrate package to use JSX importSource ([PR #28959](https://github.com/microsoft/fluentui/pull/28959) by bernardo.sunderhus@gmail.com)
333
+ - Bump @fluentui/react-button to v9.3.35 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
334
+ - Bump @fluentui/react-link to v9.1.14 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
335
+ - Bump @fluentui/react-shared-contexts to v9.7.3 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
336
+ - Bump @fluentui/react-tabster to v9.12.6 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
337
+ - Bump @fluentui/react-theme to v9.1.12 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
338
+ - Bump @fluentui/react-utilities to v9.13.1 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
339
+ - Bump @fluentui/react-jsx-runtime to v9.0.4 ([PR #29056](https://github.com/microsoft/fluentui/pull/29056) by beachball)
340
+
341
+ ## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.5)
342
+
343
+ Tue, 29 Aug 2023 12:57:36 GMT
344
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.4..@fluentui/react-breadcrumb-preview_v0.3.5)
345
+
346
+ ### Patches
347
+
348
+ - Bump @fluentui/react-button to v9.3.34 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
349
+ - Bump @fluentui/react-link to v9.1.13 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
350
+ - Bump @fluentui/react-tabster to v9.12.5 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
351
+ - Bump @fluentui/react-utilities to v9.13.0 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
352
+ - Bump @fluentui/react-jsx-runtime to v9.0.3 ([PR #29005](https://github.com/microsoft/fluentui/pull/29005) by beachball)
353
+
354
+ ## [0.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.4)
355
+
356
+ Thu, 24 Aug 2023 10:26:35 GMT
357
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.3..@fluentui/react-breadcrumb-preview_v0.3.4)
358
+
359
+ ### Patches
360
+
361
+ - Bump @fluentui/react-button to v9.3.33 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
362
+ - Bump @fluentui/react-link to v9.1.12 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
363
+ - Bump @fluentui/react-tabster to v9.12.4 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
364
+ - Bump @fluentui/react-utilities to v9.12.0 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
365
+ - Bump @fluentui/react-jsx-runtime to v9.0.2 ([PR #28973](https://github.com/microsoft/fluentui/pull/28973) by beachball)
366
+
367
+ ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.3)
368
+
369
+ Wed, 23 Aug 2023 12:01:49 GMT
370
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.2..@fluentui/react-breadcrumb-preview_v0.3.3)
371
+
372
+ ### Patches
373
+
374
+ - Bump @fluentui/react-button to v9.3.32 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
375
+ - Bump @fluentui/react-link to v9.1.11 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
376
+ - Bump @fluentui/react-tabster to v9.12.3 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
377
+ - Bump @fluentui/react-utilities to v9.11.2 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
378
+ - Bump @fluentui/react-jsx-runtime to v9.0.1 ([PR #28957](https://github.com/microsoft/fluentui/pull/28957) by beachball)
379
+
380
+ ## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.2)
381
+
382
+ Mon, 21 Aug 2023 11:38:00 GMT
383
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.1..@fluentui/react-breadcrumb-preview_v0.3.2)
384
+
385
+ ### Patches
386
+
387
+ - fix: breadcrumb spacing ([PR #28883](https://github.com/microsoft/fluentui/pull/28883) by vkozlova@microsoft.com)
388
+
389
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.1)
390
+
391
+ Wed, 16 Aug 2023 17:41:08 GMT
392
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.3.0..@fluentui/react-breadcrumb-preview_v0.3.1)
393
+
394
+ ### Patches
395
+
396
+ - Bump @fluentui/react-button to v9.3.31 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
397
+ - Bump @fluentui/react-link to v9.1.10 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
398
+ - Bump @fluentui/react-jsx-runtime to v9.0.0 ([PR #28885](https://github.com/microsoft/fluentui/pull/28885) by beachball)
399
+
400
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.3.0)
401
+
402
+ Wed, 16 Aug 2023 11:38:32 GMT
403
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.2..@fluentui/react-breadcrumb-preview_v0.3.0)
404
+
405
+ ### Minor changes
406
+
407
+ - removed iconPosition prop from the Breadcrumb ([PR #28846](https://github.com/microsoft/fluentui/pull/28846) by vkozlova@microsoft.com)
408
+ - Bump @fluentui/react-button to v9.3.30 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
409
+ - Bump @fluentui/react-link to v9.1.9 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
410
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.16 ([PR #28791](https://github.com/microsoft/fluentui/pull/28791) by beachball)
411
+
412
+ ### Patches
413
+
414
+ - Added CY tests for Breacrumb with Menu and Overflow ([PR #28790](https://github.com/microsoft/fluentui/pull/28790) by vkozlova@microsoft.com)
415
+
416
+ ## [0.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.2)
417
+
418
+ Fri, 11 Aug 2023 12:14:26 GMT
419
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.1..@fluentui/react-breadcrumb-preview_v0.2.2)
420
+
421
+ ### Patches
422
+
423
+ - Bump @fluentui/react-button to v9.3.29 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
424
+ - Bump @fluentui/react-link to v9.1.8 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
425
+ - Bump @fluentui/react-tabster to v9.12.2 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
426
+ - Bump @fluentui/react-utilities to v9.11.1 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
427
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.15 ([PR #28808](https://github.com/microsoft/fluentui/pull/28808) by beachball)
428
+
429
+ ## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.1)
430
+
431
+ Wed, 09 Aug 2023 13:16:50 GMT
432
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.2.0..@fluentui/react-breadcrumb-preview_v0.2.1)
433
+
434
+ ### Patches
435
+
436
+ - chore: Update Griffel to latest version ([PR #28684](https://github.com/microsoft/fluentui/pull/28684) by olfedias@microsoft.com)
437
+ - fix: disabled BreadcrumbLink shouldn't be focusable ([PR #28720](https://github.com/microsoft/fluentui/pull/28720) by vkozlova@microsoft.com)
438
+ - chore(cxe-prg): migrate to new slot API ([PR #28752](https://github.com/microsoft/fluentui/pull/28752) by bernardo.sunderhus@gmail.com)
439
+ - Bump @fluentui/react-button to v9.3.28 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
440
+ - Bump @fluentui/react-link to v9.1.7 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
441
+ - Bump @fluentui/react-shared-contexts to v9.7.2 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
442
+ - Bump @fluentui/react-tabster to v9.12.1 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
443
+ - Bump @fluentui/react-theme to v9.1.11 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
444
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.14 ([PR #28775](https://github.com/microsoft/fluentui/pull/28775) by beachball)
445
+
446
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.2.0)
447
+
448
+ Fri, 04 Aug 2023 08:52:55 GMT
449
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.3..@fluentui/react-breadcrumb-preview_v0.2.0)
450
+
451
+ ### Minor changes
452
+
453
+ - feat: Added an icon for BreadcrumbItem ([PR #28682](https://github.com/microsoft/fluentui/pull/28682) by vkozlova@microsoft.com)
454
+ - Bump @fluentui/react-button to v9.3.27 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
455
+ - Bump @fluentui/react-link to v9.1.6 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
456
+ - Bump @fluentui/react-shared-contexts to v9.7.1 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
457
+ - Bump @fluentui/react-tabster to v9.12.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
458
+ - Bump @fluentui/react-theme to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
459
+ - Bump @fluentui/react-utilities to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
460
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.13 ([commit](https://github.com/microsoft/fluentui/commit/0bf7d9438c1d0ff90cd2b28bc4cceb4f807afbca) by beachball)
461
+
462
+ ### Patches
463
+
464
+ - fix: made BreadcrumbButton consistent with other items ([PR #28672](https://github.com/microsoft/fluentui/pull/28672) by vkozlova@microsoft.com)
465
+
466
+ ## [0.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.3)
467
+
468
+ Tue, 01 Aug 2023 10:17:21 GMT
469
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.2..@fluentui/react-breadcrumb-preview_v0.1.3)
470
+
471
+ ### Patches
472
+
473
+ - Bump @fluentui/react-button to v9.3.26 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
474
+ - Bump @fluentui/react-link to v9.1.5 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
475
+ - Bump @fluentui/react-shared-contexts to v9.7.0 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
476
+ - Bump @fluentui/react-tabster to v9.11.1 ([PR #28689](https://github.com/microsoft/fluentui/pull/28689) by beachball)
477
+
478
+ ## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.2)
479
+
480
+ Tue, 25 Jul 2023 13:29:16 GMT
481
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.1..@fluentui/react-breadcrumb-preview_v0.1.2)
482
+
483
+ ### Patches
484
+
485
+ - chore: Update react-icons version to pick up fowardref change. ([PR #28590](https://github.com/microsoft/fluentui/pull/28590) by ololubek@microsoft.com)
486
+ - fix: updated readme, replaced MenuItem with MenuItemLink ([PR #28626](https://github.com/microsoft/fluentui/pull/28626) by vkozlova@microsoft.com)
487
+ - 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)
488
+ - Bump @fluentui/react-button to v9.3.25 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
489
+ - Bump @fluentui/react-link to v9.1.4 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
490
+ - Bump @fluentui/react-tabster to v9.11.0 ([PR #28622](https://github.com/microsoft/fluentui/pull/28622) by beachball)
491
+
492
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.1)
493
+
494
+ Thu, 20 Jul 2023 18:27:36 GMT
495
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-breadcrumb-preview_v0.1.0..@fluentui/react-breadcrumb-preview_v0.1.1)
496
+
497
+ ### Patches
498
+
499
+ - Bump @fluentui/react-button to v9.3.24 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
500
+ - Bump @fluentui/react-link to v9.1.3 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
501
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.12 ([PR #26826](https://github.com/microsoft/fluentui/pull/26826) by beachball)
502
+
503
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-breadcrumb-preview_v0.1.0)
504
+
505
+ Mon, 17 Jul 2023 21:27:34 GMT
506
+
507
+ ### Minor changes
508
+
509
+ - feat: release react-breadcrumb to unstable ([PR #28402](https://github.com/microsoft/fluentui/pull/28402) by vkozlova@microsoft.com)
510
+
511
+ ### Patches
512
+
513
+ - 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).