├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt ├── shaper-editing.gif ├── shot.png └── shot2.png ├── src ├── App.js ├── App.test.js ├── common.css ├── components │ ├── demo-email │ │ ├── demo-email.css │ │ └── demo-email.js │ ├── setting.js │ ├── settings.js │ └── specs │ │ ├── specs.css │ │ └── specs.js ├── demo.css ├── icons │ ├── frame-ratio.svg │ ├── frame-y.svg │ ├── space.svg │ ├── text-increment.svg │ └── unit.svg ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── settings.css ├── setupTests.js ├── slider.css ├── utilities.css ├── utilities.js └── variables.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/shaper-editing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/shaper-editing.gif -------------------------------------------------------------------------------- /public/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/shot.png -------------------------------------------------------------------------------- /public/shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/public/shot2.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/common.css -------------------------------------------------------------------------------- /src/components/demo-email/demo-email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/demo-email/demo-email.css -------------------------------------------------------------------------------- /src/components/demo-email/demo-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/demo-email/demo-email.js -------------------------------------------------------------------------------- /src/components/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/setting.js -------------------------------------------------------------------------------- /src/components/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/settings.js -------------------------------------------------------------------------------- /src/components/specs/specs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/specs/specs.css -------------------------------------------------------------------------------- /src/components/specs/specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/components/specs/specs.js -------------------------------------------------------------------------------- /src/demo.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/icons/frame-ratio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/icons/frame-ratio.svg -------------------------------------------------------------------------------- /src/icons/frame-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/icons/frame-y.svg -------------------------------------------------------------------------------- /src/icons/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/icons/space.svg -------------------------------------------------------------------------------- /src/icons/text-increment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/icons/text-increment.svg -------------------------------------------------------------------------------- /src/icons/unit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/icons/unit.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/settings.css -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/slider.css -------------------------------------------------------------------------------- /src/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/utilities.css -------------------------------------------------------------------------------- /src/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/utilities.js -------------------------------------------------------------------------------- /src/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/src/variables.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hihayk/shaper/HEAD/yarn.lock --------------------------------------------------------------------------------