├── LICENSE ├── README.md ├── figma.d.ts ├── manifest.json ├── package.json ├── src ├── app │ ├── assets │ │ ├── arrow.svg │ │ ├── boolean_operation.svg │ │ ├── caret.svg │ │ ├── component.svg │ │ ├── component_set.svg │ │ ├── ellipse.svg │ │ ├── frame.svg │ │ ├── group.svg │ │ ├── instance.svg │ │ ├── line.svg │ │ ├── logo.svg │ │ ├── placeholder-image.png │ │ ├── placeholder.svg │ │ ├── polygon.svg │ │ ├── rectangle.svg │ │ ├── slice.svg │ │ ├── star.svg │ │ ├── text.svg │ │ └── vector.svg │ ├── components │ │ ├── App.tsx │ │ ├── Panel.tsx │ │ ├── Placeholder.tsx │ │ ├── PropertiesList.tsx │ │ └── StylesList.tsx │ ├── index.html │ ├── index.tsx │ └── styles │ │ ├── panel.css │ │ ├── placeholder.css │ │ ├── styles.css │ │ └── ui.css └── plugin │ └── controller.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/README.md -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/figma.d.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/package.json -------------------------------------------------------------------------------- /src/app/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/arrow.svg -------------------------------------------------------------------------------- /src/app/assets/boolean_operation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/boolean_operation.svg -------------------------------------------------------------------------------- /src/app/assets/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/caret.svg -------------------------------------------------------------------------------- /src/app/assets/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/component.svg -------------------------------------------------------------------------------- /src/app/assets/component_set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/component_set.svg -------------------------------------------------------------------------------- /src/app/assets/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/ellipse.svg -------------------------------------------------------------------------------- /src/app/assets/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/frame.svg -------------------------------------------------------------------------------- /src/app/assets/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/group.svg -------------------------------------------------------------------------------- /src/app/assets/instance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/instance.svg -------------------------------------------------------------------------------- /src/app/assets/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/line.svg -------------------------------------------------------------------------------- /src/app/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/logo.svg -------------------------------------------------------------------------------- /src/app/assets/placeholder-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/placeholder-image.png -------------------------------------------------------------------------------- /src/app/assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/placeholder.svg -------------------------------------------------------------------------------- /src/app/assets/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/polygon.svg -------------------------------------------------------------------------------- /src/app/assets/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/rectangle.svg -------------------------------------------------------------------------------- /src/app/assets/slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/slice.svg -------------------------------------------------------------------------------- /src/app/assets/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/star.svg -------------------------------------------------------------------------------- /src/app/assets/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/text.svg -------------------------------------------------------------------------------- /src/app/assets/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/assets/vector.svg -------------------------------------------------------------------------------- /src/app/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/components/App.tsx -------------------------------------------------------------------------------- /src/app/components/Panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/components/Panel.tsx -------------------------------------------------------------------------------- /src/app/components/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/components/Placeholder.tsx -------------------------------------------------------------------------------- /src/app/components/PropertiesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/components/PropertiesList.tsx -------------------------------------------------------------------------------- /src/app/components/StylesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/components/StylesList.tsx -------------------------------------------------------------------------------- /src/app/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/styles/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/styles/panel.css -------------------------------------------------------------------------------- /src/app/styles/placeholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/styles/placeholder.css -------------------------------------------------------------------------------- /src/app/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/styles/styles.css -------------------------------------------------------------------------------- /src/app/styles/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/app/styles/ui.css -------------------------------------------------------------------------------- /src/plugin/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/src/plugin/controller.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/destefanis/figma-style-inspector/HEAD/yarn.lock --------------------------------------------------------------------------------