Skip to main content

Version 1, Update 5

Released -
  • You can now create widgets in Figma Design!
    • Start by adding figma to the editorType array in your manifest.json file.
  • There are two new property menu options for usePropertyMenu: toggle and link
    • toggle lets you create a button in the property menu with an on and off state
    • link will let you create a button that opens a link in a new tab
  • We've added a new Span component that lets you style inline ranges of text inside of a Text component.
Span example
<Text
fill="#0F0"
fontSize={20}
fontFamily="Roboto"
fontWeight={400}
textCase="upper"
textDecoration="underline"
>
Hello{' '}
<Span
fontSize={50}
fontFamily="Poppins"
fontWeight={800}
textCase="original"
textDecoration="none"
>
World
<Span fontSize={30} fill="#F00" italic>
d
</Span>
</Span>
</Text>