├── .appcast.xml ├── .babelrc ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── easing-gradient-assets.sketch ├── easing-gradient-demo.sketch ├── easing-gradient.jpg └── readme │ ├── banner.png │ ├── banner_big.png │ ├── banner_demo.png │ ├── banner_ease.png │ └── banner_steps.png ├── package.json ├── postcss.config.js ├── prettier.config.js ├── resources ├── App.vue ├── assets │ └── icons │ │ ├── runner.png │ │ └── sketch.png ├── components │ ├── easing-edit.vue │ ├── easing-preview.vue │ ├── helpers │ │ └── ease-map.js │ ├── mixins │ │ ├── misc.js │ │ └── mouse.js │ ├── select-chevrons.vue │ ├── select-color-space.vue │ ├── select-timing-advanced.vue │ ├── select-timing.vue │ ├── social-stuff.vue │ ├── step-edit.vue │ └── stop-edit.vue ├── index.html ├── main.js ├── store │ └── index.js └── styles │ ├── base.css │ ├── main.css │ ├── reset.css │ ├── settings.css │ └── utilities.css ├── src ├── lib │ └── helpers.js ├── main.js └── manifest.json ├── webpack.skpm.config.js └── yarn.lock /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "javascript.validate.enable": false 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/README.md -------------------------------------------------------------------------------- /docs/easing-gradient-assets.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/easing-gradient-assets.sketch -------------------------------------------------------------------------------- /docs/easing-gradient-demo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/easing-gradient-demo.sketch -------------------------------------------------------------------------------- /docs/easing-gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/easing-gradient.jpg -------------------------------------------------------------------------------- /docs/readme/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/readme/banner.png -------------------------------------------------------------------------------- /docs/readme/banner_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/readme/banner_big.png -------------------------------------------------------------------------------- /docs/readme/banner_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/readme/banner_demo.png -------------------------------------------------------------------------------- /docs/readme/banner_ease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/readme/banner_ease.png -------------------------------------------------------------------------------- /docs/readme/banner_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/docs/readme/banner_steps.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/prettier.config.js -------------------------------------------------------------------------------- /resources/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/App.vue -------------------------------------------------------------------------------- /resources/assets/icons/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/assets/icons/runner.png -------------------------------------------------------------------------------- /resources/assets/icons/sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/assets/icons/sketch.png -------------------------------------------------------------------------------- /resources/components/easing-edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/easing-edit.vue -------------------------------------------------------------------------------- /resources/components/easing-preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/easing-preview.vue -------------------------------------------------------------------------------- /resources/components/helpers/ease-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/helpers/ease-map.js -------------------------------------------------------------------------------- /resources/components/mixins/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/mixins/misc.js -------------------------------------------------------------------------------- /resources/components/mixins/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/mixins/mouse.js -------------------------------------------------------------------------------- /resources/components/select-chevrons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/select-chevrons.vue -------------------------------------------------------------------------------- /resources/components/select-color-space.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/select-color-space.vue -------------------------------------------------------------------------------- /resources/components/select-timing-advanced.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/select-timing-advanced.vue -------------------------------------------------------------------------------- /resources/components/select-timing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/select-timing.vue -------------------------------------------------------------------------------- /resources/components/social-stuff.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/social-stuff.vue -------------------------------------------------------------------------------- /resources/components/step-edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/step-edit.vue -------------------------------------------------------------------------------- /resources/components/stop-edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/components/stop-edit.vue -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/main.js -------------------------------------------------------------------------------- /resources/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/store/index.js -------------------------------------------------------------------------------- /resources/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/styles/base.css -------------------------------------------------------------------------------- /resources/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/styles/main.css -------------------------------------------------------------------------------- /resources/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/styles/reset.css -------------------------------------------------------------------------------- /resources/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/styles/settings.css -------------------------------------------------------------------------------- /resources/styles/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/resources/styles/utilities.css -------------------------------------------------------------------------------- /src/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/src/lib/helpers.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/src/main.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/src/manifest.json -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/webpack.skpm.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsenwork/sketch-easing-gradient/HEAD/yarn.lock --------------------------------------------------------------------------------