@spiffcommerce/core 31.2.1 → 31.2.2
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 +7 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +76 -76
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1546 -1547
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -14,6 +14,13 @@ 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
|
+
## [31.2.2] - 01-09-2025
|
18
|
+
|
19
|
+
## Fixed
|
20
|
+
|
21
|
+
- Text steps with templated input should have their font correctly resized in appropriate situations.
|
22
|
+
- The templating context for a WorkflowManager now correctly provides first/last name fields with a custom `uniqueIdentifier`.
|
23
|
+
|
17
24
|
## [30.2.1] - 01-09-2025
|
18
25
|
|
19
26
|
## Added
|
package/dist/index.d.ts
CHANGED
@@ -2750,9 +2750,9 @@ interface WorkflowManager {
|
|
2750
2750
|
/**
|
2751
2751
|
* Returns the context object used for text templating.
|
2752
2752
|
*/
|
2753
|
-
getTemplatingContext():
|
2753
|
+
getTemplatingContext(): {
|
2754
2754
|
[key: string]: any;
|
2755
|
-
}
|
2755
|
+
};
|
2756
2756
|
}
|
2757
2757
|
|
2758
2758
|
declare enum AssetType {
|