cozy-ui 82.1.2 → 82.2.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [82.2.0](https://github.com/cozy/cozy-ui/compare/v82.1.2...v82.2.0) (2023-03-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * Export Breadcrumbs from MUI ([3bf0588](https://github.com/cozy/cozy-ui/commit/3bf0588))
7
+
1
8
  ## [82.1.2](https://github.com/cozy/cozy-ui/compare/v82.1.1...v82.1.2) (2023-03-24)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozy-ui",
3
- "version": "82.1.2",
3
+ "version": "82.2.0",
4
4
  "description": "Cozy apps UI SDK",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -0,0 +1,11 @@
1
+ See [Material UI documentation](https://v4.mui.com/components/breadcrumbs/#breadcrumbs) to learn more about Breadcrumbs.
2
+
3
+ ```jsx
4
+ import Typography from 'cozy-ui/transpiled/react/Typography';
5
+ import MuiBreadcrumbs from 'cozy-ui/transpiled/react/MuiCozyTheme/MuiBreadcrumbs';
6
+
7
+ <MuiBreadcrumbs aria-label="breadcrumb">
8
+ <Typography color="textPrimary">A</Typography>
9
+ <Typography color="textPrimary">B</Typography>
10
+ </MuiBreadcrumbs>
11
+ ```
@@ -0,0 +1,3 @@
1
+ import MuiBreadcrumbs from '@material-ui/core/Breadcrumbs'
2
+
3
+ export default MuiBreadcrumbs
package/react/index.js CHANGED
@@ -26,6 +26,7 @@ export { default as Spinner } from './Spinner'
26
26
  export { default as Accordion } from './MuiCozyTheme/Accordion'
27
27
  export { default as AccordionSummary } from './MuiCozyTheme/AccordionSummary'
28
28
  export { default as AccordionDetails } from './MuiCozyTheme/AccordionDetails'
29
+ export { default as MuiBreadcrumbs } from './MuiCozyTheme/MuiBreadcrumbs'
29
30
  export { default as Toggle } from './Toggle'
30
31
  export { default as withBreakpoints } from './helpers/withBreakpoints'
31
32
  export { default as useBreakpoints } from './hooks/useBreakpoints'
@@ -0,0 +1,2 @@
1
+ import MuiBreadcrumbs from '@material-ui/core/Breadcrumbs';
2
+ export default MuiBreadcrumbs;
@@ -19,6 +19,7 @@ export { default as Spinner } from './Spinner';
19
19
  export { default as Accordion } from './MuiCozyTheme/Accordion';
20
20
  export { default as AccordionSummary } from './MuiCozyTheme/AccordionSummary';
21
21
  export { default as AccordionDetails } from './MuiCozyTheme/AccordionDetails';
22
+ export { default as MuiBreadcrumbs } from './MuiCozyTheme/MuiBreadcrumbs';
22
23
  export { default as Toggle } from './Toggle';
23
24
  export { default as withBreakpoints } from './helpers/withBreakpoints';
24
25
  export { default as useBreakpoints } from './hooks/useBreakpoints';