@spiffcommerce/core 24.0.0 → 24.0.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/dist/index.d.ts +2 -1
- package/dist/index.js +509 -513
- package/dist/index.umd.cjs +94 -94
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ declare class FrameService {
|
|
|
123
123
|
private offsets;
|
|
124
124
|
private thresholdSettings;
|
|
125
125
|
private forceImageCover?;
|
|
126
|
+
private initialZoom?;
|
|
126
127
|
private targetElements;
|
|
127
128
|
private imageData?;
|
|
128
129
|
private frameData?;
|
|
@@ -139,7 +140,7 @@ declare class FrameService {
|
|
|
139
140
|
private onZoomChangeListeners;
|
|
140
141
|
private workflowManager?;
|
|
141
142
|
private stepName?;
|
|
142
|
-
constructor(forceImageCover?: boolean);
|
|
143
|
+
constructor(forceImageCover?: boolean, initialZoom?: number);
|
|
143
144
|
/**
|
|
144
145
|
* When we want to connect a workflow manager to the state of the image cropper we
|
|
145
146
|
* can pass it to this function. Inside we'll attach any required event listeners.
|