@appquality/unguess-design-system 2.12.48 → 2.12.50
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,29 @@
|
|
|
1
|
+
# v2.12.50 (Mon Dec 12 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Minor change on sunburst story [#152](https://github.com/AppQuality/unguess-design-system/pull/152) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- fix(sunburst): remove tot state math random [#151](https://github.com/AppQuality/unguess-design-system/pull/151) ([@marcbon](https://github.com/marcbon))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
11
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v2.12.49 (Mon Dec 12 2022)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- Update Breadcrumb children type in order to support single children cases [#150](https://github.com/AppQuality/unguess-design-system/pull/150) ([@cannarocks](https://github.com/cannarocks))
|
|
20
|
+
|
|
21
|
+
#### Authors: 1
|
|
22
|
+
|
|
23
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v2.12.48 (Mon Dec 12 2022)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export interface BreadcrumbArgs extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
3
|
/** The breadcrumb items */
|
|
4
|
-
children:
|
|
4
|
+
children: React.ReactNode | React.ReactNode[];
|
|
5
5
|
/** Show/hide last arrow */
|
|
6
6
|
showLastArrow?: boolean;
|
|
7
7
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ComponentMeta, Story } from "@storybook/react";
|
|
2
|
+
import { AnchorArgs } from "../buttons/anchor/_types";
|
|
2
3
|
import { BreadcrumbArgs } from "./_types";
|
|
3
|
-
|
|
4
|
+
interface StoryArgs extends BreadcrumbArgs {
|
|
5
|
+
items: AnchorArgs & {
|
|
6
|
+
children: string;
|
|
7
|
+
onClick: () => void;
|
|
8
|
+
}[];
|
|
9
|
+
}
|
|
10
|
+
export declare const Default: Story<StoryArgs>;
|
|
4
11
|
declare const _default: ComponentMeta<({ children, showLastArrow, ...props }: BreadcrumbArgs) => JSX.Element>;
|
|
5
12
|
export default _default;
|