@spiffcommerce/core 39.0.0 → 39.1.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 +9 -2
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +1154 -1147
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1430,6 +1430,10 @@ declare abstract class GlobalPropertyHandle {
|
|
|
1430
1430
|
* @returns Whether this aspect has been marked as `completed` for mandatory checks. Note that this function always returns `true` if the aspect has not been marked as mandatory.
|
|
1431
1431
|
*/
|
|
1432
1432
|
isMandatoryFulfilled(): boolean;
|
|
1433
|
+
/**
|
|
1434
|
+
* @returns Whether this aspect has been marked as silent and therefore should not be displayed to the user.
|
|
1435
|
+
*/
|
|
1436
|
+
isSilent(): boolean;
|
|
1433
1437
|
/**
|
|
1434
1438
|
* Applies the global state to all shared steps, if the state is set.
|
|
1435
1439
|
* @param targetExperiences Optionally filter the workflow experiences it should be applied to.
|
|
@@ -2967,6 +2971,7 @@ interface GlobalPropertyConfigurationAspect {
|
|
|
2967
2971
|
conditionMode?: GlobalPropertyConfigurationConditionMode;
|
|
2968
2972
|
data?: GlobalPropertyConfigurationAspectData;
|
|
2969
2973
|
mandatory?: boolean;
|
|
2974
|
+
silent?: boolean;
|
|
2970
2975
|
}
|
|
2971
2976
|
interface GlobalPropertyConfigurationAspectData {
|
|
2972
2977
|
fileUpload?: GlobalPropertyConfigurationAspectFileUploadData;
|