@spiffcommerce/core 27.1.0 → 27.1.1-beta.f607f221-79ca-5443-b87b-133910316276
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 +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +119 -119
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +656 -575
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
## [27.1.1] - 23-07-2025
|
|
18
|
+
|
|
19
|
+
## Fixed
|
|
20
|
+
|
|
21
|
+
- Correctly the case of handle multiple text steps that are conditional and share a text aspect.
|
|
22
|
+
|
|
17
23
|
## [27.1.0] - 16-07-2025
|
|
18
24
|
|
|
19
25
|
## Changed
|
package/dist/index.d.ts
CHANGED
|
@@ -2657,6 +2657,7 @@ interface WorkflowManager {
|
|
|
2657
2657
|
* Returns the context object used for text templating.
|
|
2658
2658
|
*/
|
|
2659
2659
|
getTemplatingContext(): any;
|
|
2660
|
+
renderLayouts(): any;
|
|
2660
2661
|
}
|
|
2661
2662
|
|
|
2662
2663
|
declare enum AssetType {
|
|
@@ -4990,6 +4991,7 @@ declare class DigitalContentStepService implements StepService<DigitalContentSte
|
|
|
4990
4991
|
declare const digitalContentStepService: DigitalContentStepService;
|
|
4991
4992
|
|
|
4992
4993
|
declare class MockWorkflowManager implements WorkflowManager {
|
|
4994
|
+
renderLayouts(): void;
|
|
4993
4995
|
getTemplatingContext: () => void;
|
|
4994
4996
|
removeRecipientCallback: (callback: RecipientCallback) => void;
|
|
4995
4997
|
addRecipientCallback: (callback: RecipientCallback) => void;
|