aico-image-editor
Version:
Combine multiple image into and create single combined image
41 lines (30 loc) • 1.27 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
imgCropEL: null, // element where all cropper is init
cropperPreviewEL: null, // element where cropper preview is init
fontUploadModalEl: null,
//uploadinputs
shapeUploadEL: null,
backgroundUploadEL: null,
fontUploadEL: null,
pictureUploadEL: null,
// aicanvas
aiCanvasResizeEL: null
})