├── .gitignore ├── LICENSE ├── README.md ├── Slinky.sketchplugin └── Contents │ ├── Resources │ ├── icons │ │ └── slinky.png │ └── slinky.html │ └── Sketch │ ├── Slinky.js │ └── manifest.json ├── appcast.xml ├── docs ├── assets │ ├── bg.svg │ ├── fb.png │ ├── slinky-left.svg │ ├── slinky-right.svg │ ├── slinky.svg │ ├── style.css │ └── tw.png ├── favicon.png └── index.html ├── source ├── README.md ├── package-lock.json ├── package.json ├── rollup.config.js ├── slinky │ ├── AppKit │ │ └── index.ts │ ├── Slinky.ts │ ├── convert.ts │ ├── helpers.ts │ ├── layout.ts │ └── sidebar.ts ├── tsconfig.json └── typings │ ├── NS.d.ts │ ├── README.md │ ├── Sketch.d.ts │ └── Slinky.d.ts └── templates ├── single-column.sketch └── two-columns.sketch /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/README.md -------------------------------------------------------------------------------- /Slinky.sketchplugin/Contents/Resources/icons/slinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/Slinky.sketchplugin/Contents/Resources/icons/slinky.png -------------------------------------------------------------------------------- /Slinky.sketchplugin/Contents/Resources/slinky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/Slinky.sketchplugin/Contents/Resources/slinky.html -------------------------------------------------------------------------------- /Slinky.sketchplugin/Contents/Sketch/Slinky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/Slinky.sketchplugin/Contents/Sketch/Slinky.js -------------------------------------------------------------------------------- /Slinky.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/Slinky.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/appcast.xml -------------------------------------------------------------------------------- /docs/assets/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/bg.svg -------------------------------------------------------------------------------- /docs/assets/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/fb.png -------------------------------------------------------------------------------- /docs/assets/slinky-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/slinky-left.svg -------------------------------------------------------------------------------- /docs/assets/slinky-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/slinky-right.svg -------------------------------------------------------------------------------- /docs/assets/slinky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/slinky.svg -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/assets/tw.png -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/docs/index.html -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/README.md -------------------------------------------------------------------------------- /source/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/package-lock.json -------------------------------------------------------------------------------- /source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/package.json -------------------------------------------------------------------------------- /source/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/rollup.config.js -------------------------------------------------------------------------------- /source/slinky/AppKit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/AppKit/index.ts -------------------------------------------------------------------------------- /source/slinky/Slinky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/Slinky.ts -------------------------------------------------------------------------------- /source/slinky/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/convert.ts -------------------------------------------------------------------------------- /source/slinky/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/helpers.ts -------------------------------------------------------------------------------- /source/slinky/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/layout.ts -------------------------------------------------------------------------------- /source/slinky/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/slinky/sidebar.ts -------------------------------------------------------------------------------- /source/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/tsconfig.json -------------------------------------------------------------------------------- /source/typings/NS.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/typings/NS.d.ts -------------------------------------------------------------------------------- /source/typings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/typings/README.md -------------------------------------------------------------------------------- /source/typings/Sketch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/typings/Sketch.d.ts -------------------------------------------------------------------------------- /source/typings/Slinky.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/source/typings/Slinky.d.ts -------------------------------------------------------------------------------- /templates/single-column.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/templates/single-column.sketch -------------------------------------------------------------------------------- /templates/two-columns.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finchalyzer/slinky/HEAD/templates/two-columns.sketch --------------------------------------------------------------------------------