@shelf/global-renderer 0.27.21 → 0.27.24

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,18 @@
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.24](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.23...@shelf/global-renderer@0.27.24) (2023-05-11)
7
+
8
+ **Note:** Version bump only for package @shelf/global-renderer
9
+
10
+ ### [0.27.23](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.22...@shelf/global-renderer@0.27.23) (2023-05-11)
11
+
12
+ **Note:** Version bump only for package @shelf/global-renderer
13
+
14
+ ### [0.27.22](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.21...@shelf/global-renderer@0.27.22) (2023-05-11)
15
+
16
+ **Note:** Version bump only for package @shelf/global-renderer
17
+
6
18
  ### [0.27.21](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.20...@shelf/global-renderer@0.27.21) (2023-05-11)
7
19
 
8
20
  **Note:** Version bump only for package @shelf/global-renderer
@@ -25,9 +25,6 @@ export declare const AnswerNumber: import("styled-components").StyledComponent<"
25
25
  export declare const AssignmentIconBlock: import("styled-components").StyledComponent<"div", any, {}, never>;
26
26
  export declare const AssignmentIcon: import("styled-components").StyledComponent<"img", any, {}, never>;
27
27
  export declare const AnswerTitle: import("styled-components").StyledComponent<"a", any, {}, never>;
28
- export declare const AnswerVariable: import("styled-components").StyledComponent<"span", any, {
29
- isDeleted?: boolean | undefined;
30
- }, never>;
31
28
  export declare const Condition: import("styled-components").StyledComponent<"div", any, {}, never>;
32
29
  export declare const Rule: import("styled-components").StyledComponent<"div", any, {}, never>;
33
30
  export declare const StepLink: import("styled-components").StyledComponent<"a", any, {}, never>;
@@ -27,12 +27,9 @@ export declare const getTreeWithParentSteps: (tree: Omit<DTStep, 'parentSteps'>[
27
27
  textS3Key?: string | undefined;
28
28
  url?: string | undefined;
29
29
  settings?: import("@shelf/types-ddb/lib/decision-tree").StepSettings | undefined;
30
- defaultNextStep?: ({
30
+ defaultNextStep?: {
31
31
  id: string;
32
- } & {
33
- id: string;
34
- number?: string | undefined;
35
- }) | undefined;
32
+ } | undefined;
36
33
  conditions?: (import("@shelf/types-ddb/lib/decision-tree").Condition[] & import("./types").ConditionType[]) | undefined;
37
34
  content?: string | undefined;
38
35
  linkedSteps?: {
@@ -20,9 +20,6 @@ export declare const dtData: {
20
20
  };
21
21
  borderColor?: undefined;
22
22
  };
23
- defaultNextStep: {
24
- id: string;
25
- };
26
23
  conditions: ({
27
24
  id: string;
28
25
  nextStep: {
@@ -89,7 +86,6 @@ export declare const dtData: {
89
86
  }[];
90
87
  })[];
91
88
  };
92
- defaultNextStep?: undefined;
93
89
  conditions?: undefined;
94
90
  } | {
95
91
  id: string;
@@ -104,7 +100,6 @@ export declare const dtData: {
104
100
  };
105
101
  };
106
102
  question: null;
107
- defaultNextStep?: undefined;
108
103
  conditions?: undefined;
109
104
  content?: undefined;
110
105
  } | {
@@ -141,7 +136,6 @@ export declare const dtData: {
141
136
  })[];
142
137
  id?: undefined;
143
138
  };
144
- defaultNextStep?: undefined;
145
139
  conditions?: undefined;
146
140
  } | {
147
141
  id: string;
@@ -172,7 +166,6 @@ export declare const dtData: {
172
166
  nextStep: null;
173
167
  })[];
174
168
  };
175
- defaultNextStep?: undefined;
176
169
  conditions?: undefined;
177
170
  } | {
178
171
  id: string;
@@ -188,7 +181,6 @@ export declare const dtData: {
188
181
  };
189
182
  };
190
183
  question: null;
191
- defaultNextStep?: undefined;
192
184
  conditions?: undefined;
193
185
  })[];
194
186
  };
@@ -51,9 +51,5 @@ export declare type DTStep = Omit<DecisionTree.Step, 'question'> & {
51
51
  conditions?: ConditionType[];
52
52
  linkedSteps?: StepPointer[];
53
53
  parentSteps: StepPointer[];
54
- defaultNextStep?: {
55
- id: string;
56
- number?: string;
57
- };
58
54
  };
59
55
  export {};