@shelf/global-renderer 0.27.176 → 0.27.178

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,14 @@
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.27.178](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.177...@shelf/global-renderer@0.27.178) (2023-07-20)
7
+
8
+ **Note:** Version bump only for package @shelf/global-renderer
9
+
10
+ ### [0.27.177](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.176...@shelf/global-renderer@0.27.177) (2023-07-19)
11
+
12
+ **Note:** Version bump only for package @shelf/global-renderer
13
+
6
14
  ### [0.27.176](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.175...@shelf/global-renderer@0.27.176) (2023-07-19)
7
15
 
8
16
  **Note:** Version bump only for package @shelf/global-renderer
@@ -1,9 +1,9 @@
1
1
  import type { DecisionTree } from '@shelf/types-ddb';
2
2
  import type { L10n } from '@shelf/types';
3
- export declare type DTStepFromApi = DecisionTree.Step & {
3
+ export type DTStepFromApi = DecisionTree.Step & {
4
4
  content?: string;
5
5
  };
6
- export declare type RenderDTContentData = {
6
+ export type RenderDTContentData = {
7
7
  tree: DTStepFromApi[];
8
8
  title: string;
9
9
  description: string;
@@ -17,11 +17,11 @@ export declare type RenderDTContentData = {
17
17
  }[];
18
18
  variables: Pick<DecisionTree.ContextualVariableDefaults, 'name' | 'id' | 'isDeleted'>[];
19
19
  };
20
- declare type StepPointer = {
20
+ type StepPointer = {
21
21
  id?: string;
22
22
  number?: number;
23
23
  };
24
- export declare type ConditionType = {
24
+ export type ConditionType = {
25
25
  id: string;
26
26
  expression: {
27
27
  joiner?: DecisionTree.Joiners;
@@ -34,7 +34,7 @@ export declare type ConditionType = {
34
34
  };
35
35
  nextStep?: StepPointer;
36
36
  };
37
- export declare type DTStep = Omit<DecisionTree.Step, 'question'> & {
37
+ export type DTStep = Omit<DecisionTree.Step, 'question'> & {
38
38
  number: number;
39
39
  content?: string;
40
40
  question: {