@shelf/global-renderer 0.4.1 → 0.5.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [0.5.1](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.5.0...@shelf/global-renderer@0.5.1) (2022-09-30)
7
+
8
+ **Note:** Version bump only for package @shelf/global-renderer
9
+
10
+ ## [0.5.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.4.1...@shelf/global-renderer@0.5.0) (2022-09-30)
11
+
12
+ ### Features
13
+
14
+ - REACT-338 Add table of content ([867e1ff](https://github.com/shelfio/libs-frontend/commit/867e1ff0d8d3fb106460c4886f927cc318dee505))
15
+
6
16
  ### [0.4.1](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.4.0...@shelf/global-renderer@0.4.1) (2022-09-30)
7
17
 
8
18
  **Note:** Version bump only for package @shelf/global-renderer
@@ -25,3 +25,8 @@ export declare const StepParents: import("styled-components").StyledComponent<"d
25
25
  export declare const ParentLink: import("styled-components").StyledComponent<"a", any, {}, never>;
26
26
  export declare const LinkUrl: import("styled-components").StyledComponent<"a", any, {}, never>;
27
27
  export declare const NoLinks: import("styled-components").StyledComponent<"div", any, {}, never>;
28
+ export declare const ContentList: import("styled-components").StyledComponent<"div", any, {}, never>;
29
+ export declare const ContentListItem: import("styled-components").StyledComponent<"div", any, {}, never>;
30
+ export declare const ContentListLink: import("styled-components").StyledComponent<"a", any, {}, never>;
31
+ export declare const ContentListNumber: import("styled-components").StyledComponent<"div", any, {}, never>;
32
+ export declare const ContentListIcon: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { DTStep } from '../types';
3
+ declare const _default: ({ tree }: {
4
+ tree: DTStep[];
5
+ }) => JSX.Element;
6
+ export default _default;