@shelf/global-renderer 0.10.5 → 0.11.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
@@ -3,6 +3,22 @@
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.11.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.10.6...@shelf/global-renderer@0.11.0) (2022-10-13)
7
+
8
+ ### Features
9
+
10
+ - REACT-333 set strict version for decision tree ([26f7a25](https://github.com/shelfio/libs-frontend/commit/26f7a25a3d0d426c5f69ec17d4457e17dda3f639))
11
+
12
+ ### [0.10.6](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.10.5...@shelf/global-renderer@0.10.6) (2022-10-13)
13
+
14
+ ### Bug Fixes
15
+
16
+ - REACT-333 fix mock path in test ([e1ebe79](https://github.com/shelfio/libs-frontend/commit/e1ebe7922ca761885fb0e04940b1060e3307c1c6))
17
+
18
+ ### Performance Improvements
19
+
20
+ - REACT-333 remove index entry point, import StatiTree directly ([c9b1e20](https://github.com/shelfio/libs-frontend/commit/c9b1e20406b1b6802165c0f21747a7ca3ca9636f))
21
+
6
22
  ### [0.10.5](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.10.4...@shelf/global-renderer@0.10.5) (2022-10-12)
7
23
 
8
24
  **Note:** Version bump only for package @shelf/global-renderer
@@ -8,10 +8,6 @@ export declare const getTreeWithParentSteps: (tree: Omit<DTStep, 'parentSteps'>[
8
8
  number: number;
9
9
  }[];
10
10
  number: number;
11
- url?: string | undefined;
12
- type?: import("@shelf/types-ddb/lib/decision-tree").StepType | undefined;
13
- id: string;
14
- title?: string | undefined;
15
11
  question: {
16
12
  id: string;
17
13
  title?: string | undefined;
@@ -25,7 +21,11 @@ export declare const getTreeWithParentSteps: (tree: Omit<DTStep, 'parentSteps'>[
25
21
  } | undefined;
26
22
  }[];
27
23
  };
24
+ id: string;
25
+ title?: string | undefined;
26
+ type?: import("@shelf/types-ddb/lib/decision-tree").StepType | undefined;
28
27
  textS3Key?: string | undefined;
28
+ url?: string | undefined;
29
29
  settings?: import("@shelf/types-ddb/lib/decision-tree").StepSettings | undefined;
30
30
  content?: string | undefined;
31
31
  linkedSteps?: {
package/lib/index.d.ts CHANGED
@@ -1,3 +1 @@
1
- export * from './DecisionTreeDiagram/renderStaticDTDiagram';
2
1
  export * from './DecisionTreeContent/types';
3
- export * from './DecisionTreeContent/renderDTContent';