@spiffcommerce/core 0.5.3 → 0.5.6
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 +2 -2
- package/dist/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -815,12 +815,12 @@ interface SnapPoint {
|
|
|
815
815
|
anchorPoint: number;
|
|
816
816
|
guidelineCoordinates?: Point[];
|
|
817
817
|
}
|
|
818
|
-
enum ElementEventType {
|
|
818
|
+
export enum ElementEventType {
|
|
819
819
|
Translate = "Translate",
|
|
820
820
|
Rotate = "Rotate",
|
|
821
821
|
Resize = "Resize"
|
|
822
822
|
}
|
|
823
|
-
enum KeyEvent {
|
|
823
|
+
export enum KeyEvent {
|
|
824
824
|
ControlLeft = "ControlLeft",
|
|
825
825
|
ControlRight = "ControlRight",
|
|
826
826
|
Equal = "Equal",
|
|
@@ -1045,7 +1045,7 @@ export interface WorkflowExperience {
|
|
|
1045
1045
|
/**
|
|
1046
1046
|
* State related to the design of the user.
|
|
1047
1047
|
*/
|
|
1048
|
-
getCommandContext():
|
|
1048
|
+
getCommandContext(): CommandContext;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* Returns true when the user may only view the design.
|
|
1051
1051
|
*/
|