├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── figma.d.ts ├── index.html ├── manifest.json ├── package.json ├── src ├── plugin.ts ├── types.ts └── ui │ ├── easy-shortcuts.ts │ ├── form-input.ts │ ├── form.ts │ └── index.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | plugin/ 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/README.md -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/figma.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/package.json -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui/easy-shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/ui/easy-shortcuts.ts -------------------------------------------------------------------------------- /src/ui/form-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/ui/form-input.ts -------------------------------------------------------------------------------- /src/ui/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/ui/form.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praneshr/guidemate/HEAD/yarn.lock --------------------------------------------------------------------------------