@spiffcommerce/core 0.10.105 → 0.10.107
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 +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1130,6 +1130,7 @@ export const useEditorInteraction: (editorRef: RefObject<SVGRectElement>, intera
|
|
|
1130
1130
|
};
|
|
1131
1131
|
export const useShortcutCombination: (shortcutKeys: string[], callback: () => void) => void;
|
|
1132
1132
|
export const EditorCore: FunctionComponent<{
|
|
1133
|
+
isMobile: boolean;
|
|
1133
1134
|
color?: string;
|
|
1134
1135
|
editorRef: RefObject<SVGRectElement>;
|
|
1135
1136
|
zoomableElementRef: RefObject<HTMLDivElement>;
|
|
@@ -1164,6 +1165,7 @@ export const EditorCore: FunctionComponent<{
|
|
|
1164
1165
|
* with more granular control such as toolbars, direct element manipulation, and more.
|
|
1165
1166
|
*/
|
|
1166
1167
|
export const AdvancedEditor: FunctionComponent<{
|
|
1168
|
+
isMobile: boolean;
|
|
1167
1169
|
color?: string;
|
|
1168
1170
|
guidelineColor?: string;
|
|
1169
1171
|
borderRadius?: number;
|