├── .eslintrc ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png ├── src ├── .vscode │ └── launch.json ├── App.test.js ├── App.tsx ├── appConstants.js ├── assets │ ├── adjust.svg │ ├── align-center.svg │ ├── align-left.svg │ ├── align-right.svg │ ├── arrow.svg │ ├── bold.svg │ ├── circle.svg │ ├── close.svg │ ├── crop.svg │ ├── filter.svg │ ├── flip.svg │ ├── flipX.svg │ ├── flipY.svg │ ├── italic.svg │ ├── left.svg │ ├── loader.svg │ ├── minus.svg │ ├── pencil.svg │ ├── plus.svg │ ├── redo.svg │ ├── refresh.svg │ ├── right.svg │ ├── save.svg │ ├── search.svg │ ├── search2.svg │ ├── shapes.svg │ ├── square.svg │ ├── text.svg │ ├── trash.svg │ ├── triangle.svg │ ├── underline.svg │ ├── undo.svg │ └── upload.svg ├── command │ ├── addObject.ts │ ├── commandHistory.ts │ ├── crop.ts │ ├── effect.ts │ ├── flip.ts │ ├── removeObject.ts │ └── rotation.ts ├── components │ ├── Canvas.tsx │ ├── ColorPicker.tsx │ ├── Header │ │ ├── Header.tsx │ │ ├── RedoButton.tsx │ │ ├── RefreshButton.tsx │ │ ├── SaveButton.tsx │ │ ├── UndoButton.tsx │ │ ├── UploadButton.tsx │ │ └── ZoomControl.tsx │ ├── Menu.tsx │ ├── Slider.tsx │ ├── ToggleButton.tsx │ ├── Toolbar │ │ ├── Toolbar.tsx │ │ ├── ToolbarCrop.tsx │ │ ├── ToolbarDrawing.tsx │ │ ├── ToolbarEffects.tsx │ │ ├── ToolbarRotate.tsx │ │ ├── ToolbarSearch.tsx │ │ └── ToolbarText.tsx │ ├── Tooltip.tsx │ └── TooltipElement.tsx ├── helpers │ ├── colorConverter.ts │ ├── decorators.ts │ ├── getCoords.tsx │ ├── setTooltipPosition.tsx │ └── storeProvider.ts ├── hooks │ ├── useStore.ts │ └── useUnsplashAPI.tsx ├── index.tsx ├── react-app-env.d.ts ├── serviceWorker.js ├── setupTests.js ├── stores │ ├── UIStore.ts │ ├── canvasStore.ts │ ├── cropperStore.ts │ ├── cropzoneStore.ts │ ├── drawingStore.ts │ ├── effectsStore.ts │ ├── imageStore.ts │ ├── objectManagerStore.ts │ ├── rootStore.ts │ ├── searchStore.ts │ └── textStore.ts └── styles │ ├── components │ ├── App.scss │ ├── Menu.scss │ ├── canvas.scss │ ├── header.scss │ ├── toolbar.scss │ ├── tooltip.scss │ └── unsplashGallery.scss │ ├── main.scss │ └── variables.scss └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/public/robots.txt -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/appConstants.js: -------------------------------------------------------------------------------- 1 | export const accessKey = ''; -------------------------------------------------------------------------------- /src/assets/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/adjust.svg -------------------------------------------------------------------------------- /src/assets/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/align-center.svg -------------------------------------------------------------------------------- /src/assets/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/align-left.svg -------------------------------------------------------------------------------- /src/assets/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/align-right.svg -------------------------------------------------------------------------------- /src/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/arrow.svg -------------------------------------------------------------------------------- /src/assets/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/bold.svg -------------------------------------------------------------------------------- /src/assets/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/circle.svg -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/crop.svg -------------------------------------------------------------------------------- /src/assets/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/filter.svg -------------------------------------------------------------------------------- /src/assets/flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/flip.svg -------------------------------------------------------------------------------- /src/assets/flipX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/flipX.svg -------------------------------------------------------------------------------- /src/assets/flipY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/flipY.svg -------------------------------------------------------------------------------- /src/assets/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/italic.svg -------------------------------------------------------------------------------- /src/assets/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/left.svg -------------------------------------------------------------------------------- /src/assets/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/loader.svg -------------------------------------------------------------------------------- /src/assets/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/minus.svg -------------------------------------------------------------------------------- /src/assets/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/pencil.svg -------------------------------------------------------------------------------- /src/assets/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/plus.svg -------------------------------------------------------------------------------- /src/assets/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/redo.svg -------------------------------------------------------------------------------- /src/assets/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/refresh.svg -------------------------------------------------------------------------------- /src/assets/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/right.svg -------------------------------------------------------------------------------- /src/assets/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/save.svg -------------------------------------------------------------------------------- /src/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/search.svg -------------------------------------------------------------------------------- /src/assets/search2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/search2.svg -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/assets/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/square.svg -------------------------------------------------------------------------------- /src/assets/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/text.svg -------------------------------------------------------------------------------- /src/assets/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/trash.svg -------------------------------------------------------------------------------- /src/assets/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/triangle.svg -------------------------------------------------------------------------------- /src/assets/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/underline.svg -------------------------------------------------------------------------------- /src/assets/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/undo.svg -------------------------------------------------------------------------------- /src/assets/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/assets/upload.svg -------------------------------------------------------------------------------- /src/command/addObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/addObject.ts -------------------------------------------------------------------------------- /src/command/commandHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/commandHistory.ts -------------------------------------------------------------------------------- /src/command/crop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/crop.ts -------------------------------------------------------------------------------- /src/command/effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/effect.ts -------------------------------------------------------------------------------- /src/command/flip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/flip.ts -------------------------------------------------------------------------------- /src/command/removeObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/removeObject.ts -------------------------------------------------------------------------------- /src/command/rotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/command/rotation.ts -------------------------------------------------------------------------------- /src/components/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Canvas.tsx -------------------------------------------------------------------------------- /src/components/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/ColorPicker.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/RedoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/RedoButton.tsx -------------------------------------------------------------------------------- /src/components/Header/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/RefreshButton.tsx -------------------------------------------------------------------------------- /src/components/Header/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/SaveButton.tsx -------------------------------------------------------------------------------- /src/components/Header/UndoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/UndoButton.tsx -------------------------------------------------------------------------------- /src/components/Header/UploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/UploadButton.tsx -------------------------------------------------------------------------------- /src/components/Header/ZoomControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Header/ZoomControl.tsx -------------------------------------------------------------------------------- /src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Menu.tsx -------------------------------------------------------------------------------- /src/components/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Slider.tsx -------------------------------------------------------------------------------- /src/components/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/ToggleButton.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarCrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarCrop.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarDrawing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarDrawing.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarEffects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarEffects.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarRotate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarRotate.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarSearch.tsx -------------------------------------------------------------------------------- /src/components/Toolbar/ToolbarText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Toolbar/ToolbarText.tsx -------------------------------------------------------------------------------- /src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/TooltipElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/components/TooltipElement.tsx -------------------------------------------------------------------------------- /src/helpers/colorConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/helpers/colorConverter.ts -------------------------------------------------------------------------------- /src/helpers/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/helpers/decorators.ts -------------------------------------------------------------------------------- /src/helpers/getCoords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/helpers/getCoords.tsx -------------------------------------------------------------------------------- /src/helpers/setTooltipPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/helpers/setTooltipPosition.tsx -------------------------------------------------------------------------------- /src/helpers/storeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/helpers/storeProvider.ts -------------------------------------------------------------------------------- /src/hooks/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/hooks/useStore.ts -------------------------------------------------------------------------------- /src/hooks/useUnsplashAPI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/hooks/useUnsplashAPI.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/stores/UIStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/UIStore.ts -------------------------------------------------------------------------------- /src/stores/canvasStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/canvasStore.ts -------------------------------------------------------------------------------- /src/stores/cropperStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/cropperStore.ts -------------------------------------------------------------------------------- /src/stores/cropzoneStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/cropzoneStore.ts -------------------------------------------------------------------------------- /src/stores/drawingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/drawingStore.ts -------------------------------------------------------------------------------- /src/stores/effectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/effectsStore.ts -------------------------------------------------------------------------------- /src/stores/imageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/imageStore.ts -------------------------------------------------------------------------------- /src/stores/objectManagerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/objectManagerStore.ts -------------------------------------------------------------------------------- /src/stores/rootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/rootStore.ts -------------------------------------------------------------------------------- /src/stores/searchStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/searchStore.ts -------------------------------------------------------------------------------- /src/stores/textStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/stores/textStore.ts -------------------------------------------------------------------------------- /src/styles/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/App.scss -------------------------------------------------------------------------------- /src/styles/components/Menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/Menu.scss -------------------------------------------------------------------------------- /src/styles/components/canvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/canvas.scss -------------------------------------------------------------------------------- /src/styles/components/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/header.scss -------------------------------------------------------------------------------- /src/styles/components/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/toolbar.scss -------------------------------------------------------------------------------- /src/styles/components/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/tooltip.scss -------------------------------------------------------------------------------- /src/styles/components/unsplashGallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/components/unsplashGallery.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrepv/image-editor/HEAD/tsconfig.json --------------------------------------------------------------------------------