@spiffcommerce/core 0.10.89 → 0.10.90
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/dist/main.js +2 -2
- package/dist/module.js +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1253,6 +1253,10 @@ export class IllustrationStepHandle extends StepHandle<_IllustrationStepData1> {
|
|
|
1253
1253
|
getColors(): {
|
|
1254
1254
|
[key: string]: import("@spiffcommerce/papyrus").ColorDefinition;
|
|
1255
1255
|
} | undefined;
|
|
1256
|
+
/**
|
|
1257
|
+
* Set color for the illustration.
|
|
1258
|
+
*/
|
|
1259
|
+
setColor(key: string, value: string): Promise<void>;
|
|
1256
1260
|
}
|
|
1257
1261
|
export class PictureStepHandle extends StepHandle<_PictureStepData1> {
|
|
1258
1262
|
constructor(manager: WorkflowManager, step: _Step1<_PictureStepData1>);
|