Socket
Socket
Sign inDemoInstall

@figspec/components

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@figspec/components

Unofficial Figma spec viewer: Live Embed Kit - Live + Guidelines + Inspector


Version published
Maintainers
1
Created
Source

@figspec/components

CustomElements renders given Figma API's result into a rich preview.

Installation

$ yarn add @figspec/components

# or

$ npm i @figspec/components

Usage

Import the entry script (import '@figspec/components') and it'll register our custom elements. Then you can now use these on your page.

// your script.js
import "@figspec/components";

// ...
<body>
  <figspec-frame-viewer nodes="..." rendered-image="..."></figspec-frame-viewer>
</body>

To display an entire Figma File, use <figspec-file-viewer> instead.

<body>
  <figspec-file-viewer
    document-node="..."
    rendered-images="..."
  ></figspec-file-viewer>
</body>

To see examples and API docs, please check out Storybook.

NOTE: We don't provide bundled scripts yet. If you want to put the script in head tag, please build the files at your own.

TypeScript support

This package ships with TypeScript definition file.

One of our "typing dependencies" is missing from package.json#dependencies, because it's not our "runtime dependency". So, you need to install that package in order to get full types (otherwise some properties turns into any).

# By installing this package, FileNode related properties will get correct types.
yarn add -D figma-js

Browser supports

Browsers supporting WebComponents v1 spec and ES2015 or later. The bundled codes are emitted under esm/es2015 and cjs/es2016.

Keywords

FAQs

Package last updated on 23 Sep 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc