@spiffcommerce/core 0.10.72 → 0.10.74
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 +1 -1
- package/dist/module.js +1 -1
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -256,6 +256,11 @@ declare class IllustrationStepService implements StepService<_IllustrationStepDa
|
|
|
256
256
|
changeColors(stepData: _Step1<_IllustrationStepData1>, elements: RegionElement[], workflowManager: WorkflowManager, getAllLayouts: () => _LayoutData1[], newFills: Map<string, string>): Promise<void>;
|
|
257
257
|
selectVariant(stepData: _Step1<_IllustrationStepData1>, variant: _VariantResource1, elements: RegionElement[], setIsUpdating: (isUpdating: boolean) => void, workflowManager: WorkflowManager): Promise<void>;
|
|
258
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* FIXME: This should be shifted to papyrus at some point
|
|
261
|
+
* @param svg The SVG to get an object URL for.
|
|
262
|
+
* @returns An object URL storing the cached image of this svg file.
|
|
263
|
+
*/
|
|
259
264
|
export const svgObjectURL: (svg: string) => Promise<string>;
|
|
260
265
|
export const illustrationStepService: IllustrationStepService;
|
|
261
266
|
declare class DigitalContentStepService implements StepService<_DigitalContentStepData1> {
|