aico-image-editor
Version:
Combine multiple image into and create single combined image
38 lines (29 loc) • 1.13 kB
JavaScript
// import Alpine from 'alpinejs';
Alpine.store('elements', {
canvasEL: null,
canvasResizeEL: null,
containerModalEL: null,
deleteObjectModalEL: null,
textareaEL: null,
historyUndo: null,
historyRedo: null,
//cropper elements
cropbgModalEL: null, // backgroundcrop modal's main element
imgBgCropEL: null, // image where background cropper is init
cropperBgPreviewEL: null, // image where background cropper's preview should be seen
cropShapeModalEL: null, // shapecrop modal's main element
imgCropEL: null, // image where shape cropper is init
cropperShapePreviewEL: null, // image where shape cropper's preview should be seen
cropPictureModalEL: null, // picturecrop modal's main element
pictureCropEL: null, // image where picture cropper is init
cropperPicturePreviewEL: null, // image where picture cropper's preview should be seen
fontUploadModalEl: null,
//uploadinputs
shapeUploadEL: null,
backgroundUploadEL: null,
fontUploadEL: null,
pictureUploadEL: null,
// aicanvas
aiModalEL: null,
aiCanvasResizeEL: null
})