├── LICENSE ├── README.md ├── css └── styles.css ├── img ├── arrow.svg ├── favico │ ├── favicon-16x16.png │ └── favicon-32x32.png ├── figma-logo-s-bw.svg ├── figma-logo-s.svg ├── icons-m │ ├── select-JSON.svg │ ├── select-artboards.svg │ ├── select-by-flag.svg │ ├── select-pages&artboards.svg │ └── select-pages.svg └── project-logo.svg ├── index.html └── js ├── general-dist.js ├── jquery-3.3.1.min.js └── renderjson.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/css/styles.css -------------------------------------------------------------------------------- /img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/arrow.svg -------------------------------------------------------------------------------- /img/favico/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/favico/favicon-16x16.png -------------------------------------------------------------------------------- /img/favico/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/favico/favicon-32x32.png -------------------------------------------------------------------------------- /img/figma-logo-s-bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/figma-logo-s-bw.svg -------------------------------------------------------------------------------- /img/figma-logo-s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/figma-logo-s.svg -------------------------------------------------------------------------------- /img/icons-m/select-JSON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/icons-m/select-JSON.svg -------------------------------------------------------------------------------- /img/icons-m/select-artboards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/icons-m/select-artboards.svg -------------------------------------------------------------------------------- /img/icons-m/select-by-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/icons-m/select-by-flag.svg -------------------------------------------------------------------------------- /img/icons-m/select-pages&artboards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/icons-m/select-pages&artboards.svg -------------------------------------------------------------------------------- /img/icons-m/select-pages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/icons-m/select-pages.svg -------------------------------------------------------------------------------- /img/project-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/img/project-logo.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/index.html -------------------------------------------------------------------------------- /js/general-dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/js/general-dist.js -------------------------------------------------------------------------------- /js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /js/renderjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PavelLaptev/JSON-from-Figma/HEAD/js/renderjson.js --------------------------------------------------------------------------------