├── README.md ├── assets ├── SuperShapes_001_888.gif ├── SuperShapes_002_888.gif ├── SuperShapes_003_888.gif ├── SuperShapes_004_888.gif ├── logo.png ├── supershapes.xml ├── supershapes_01.jpg ├── supershapes_02.jpg ├── supershapes_03.jpg ├── supershapes_04.jpg └── supershapes_05.jpg └── super-shapes.sketchplugin └── Contents └── Sketch ├── manifest.json ├── md.sketchscript └── scripts ├── MochaJSDelegate.js ├── common.js └── panel ├── assets ├── css │ ├── index.css │ └── jquery-ui.min.css ├── img │ └── logo.png └── js │ ├── common.js │ ├── components │ ├── analytics.js │ └── table.js │ └── lib │ ├── jquery-2.2.4.min.js │ ├── jquery-ui.min.js │ └── store.js └── table.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/README.md -------------------------------------------------------------------------------- /assets/SuperShapes_001_888.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/SuperShapes_001_888.gif -------------------------------------------------------------------------------- /assets/SuperShapes_002_888.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/SuperShapes_002_888.gif -------------------------------------------------------------------------------- /assets/SuperShapes_003_888.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/SuperShapes_003_888.gif -------------------------------------------------------------------------------- /assets/SuperShapes_004_888.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/SuperShapes_004_888.gif -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/supershapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes.xml -------------------------------------------------------------------------------- /assets/supershapes_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes_01.jpg -------------------------------------------------------------------------------- /assets/supershapes_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes_02.jpg -------------------------------------------------------------------------------- /assets/supershapes_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes_03.jpg -------------------------------------------------------------------------------- /assets/supershapes_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes_04.jpg -------------------------------------------------------------------------------- /assets/supershapes_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/assets/supershapes_05.jpg -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/md.sketchscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/md.sketchscript -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/MochaJSDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/MochaJSDelegate.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/common.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/css/index.css -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/css/jquery-ui.min.css -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/img/logo.png -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/common.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/components/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/components/analytics.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/components/table.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/jquery-ui.min.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/assets/js/lib/store.js -------------------------------------------------------------------------------- /super-shapes.sketchplugin/Contents/Sketch/scripts/panel/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sureskumar/super-shapes/HEAD/super-shapes.sketchplugin/Contents/Sketch/scripts/panel/table.html --------------------------------------------------------------------------------