Skip to content

Latest commit

 

History

History
788 lines (507 loc) · 34.7 KB

CHANGELOG.md

File metadata and controls

788 lines (507 loc) · 34.7 KB

Changelog

2.3.0

  • @create-figma-plugin/[email protected]

    • Added utilities for image handling:
      • createCanvasElementFromBlobAsync
      • createCanvasElementFromBytesAsync
      • createCanvasElementFromImageElement
      • createImageElementFromBlobAsync
      • createImageElementFromBytesAsync
      • readBytesFromCanvasElementAsync

2.2.0

  • @create-figma-plugin/[email protected]

    • Pinned the build-figma-plugin CLI to typescript@>=4. (#139)
    • Added support for the new capabilities config to enable usage of the new text review API. (#140)
  • @create-figma-plugin/[email protected]

    • Renamed all CSS files to have a .module.css prefix.
    • Switched to using Vite to build the Storybook.
  • [email protected]

    • Pinned to preact@>=10 and typescript@>=4 in all plugin and widget templates.
  • Bumped dependencies in all packages.

  • Replaced lerna with @lerna-lite/cli and turbo.

  • Replaced ts-node with tsx.

  • Refactored all npm scripts.

  • Changed the minimum node version to v18 for all packages.

2.1.6

  • @create-figma-plugin/[email protected]

    • Added padding to the Textbox, TextboxAutocomplete, TextboxMultiline and TextboxNumeric components to prevent overflowing text from being clipped. (#136)
  • @create-figma-plugin/[email protected]

    • Fixed a bug with setAbsolutePosition incorrectly setting the node position for a node nested within a Section node. (#137)
    • Fixed a bug with Event utilities throwing an error when window.parent.postMessage is called. (#138)

2.1.5

2.1.4

  • @create-figma-plugin/[email protected]

    • Suppressed the Cannot redeclare block-scoped variable 'console'. type-check error when using @types/node. (#126)
  • [email protected]

    • Removed unnecessary imports in the plugin/react-editor template. (#126)
  • Bumped dependencies in all packages, and removed usage of untyped-dependencies.d.ts.

2.1.3

  • @create-figma-plugin/[email protected]

    • Made the build-figma-plugin CLI pick up changes in build-figma-plugin.(main|ui|manifest).json configuration files during --watch. (#119)
  • [email protected]

    • Updated the create-figma-plugin CLI terminal output to include commands for getting started.
    • Fixed usage of components from @create-figma-plugin/ui@2 (eg. removed use of the muted prop in the Text component).
    • Prettified all templates.
  • Bumped dependencies in all packages.

2.1.2

2.1.1

  • @create-figma-plugin/[email protected]

    • Rewrote the logic for recalculating the Dropdown component’s menu size and position. (#112)
    • Added the ability for TextboxMultiline to grow to fit its text contents, via the grow prop.
    • Fixed missing space prop in the widget/notepad template. (#115)

2.1.0

  • @create-figma-plugin/[email protected]

    • Added a RangeSlider component.
    • Added left and right padding to the underline variant of Dropdown, Textbox, TextboxAutocomplete, TextboxColor, and TextboxNumeric.
    • Added missing styles for the underline variant of TextboxMultiline.
  • Bumped dependencies in all packages.

2.0.1

  • [email protected]

    • Fix usage of the Container component in the plugin/preact-rectangles and plugin/react-editor templates.
    • Bump dependencies in the plugin/react-editor template.

2.0.0

  • Replaced yarn@1 with npm@8 for local development.

  • Bumped dependencies in all packages.

@create-figma-plugin/[email protected]

CSS

  • All CSS color variables (ie. variables with a --color prefix) have been removed. Use Figma’s official color tokens to style your custom components.

Components

  • All components now utilize Figma’s color tokens, and support dark mode out of the box. (#99)
Banner
  • Renamed the type prop to variant.
    • Use variant="success" to render a green banner.
Button
  • Renamed the destructive prop to danger.
Container
  • The space prop is now required rather than optional.
Disclosure, Modal
  • Renamed the isOpen prop to open.
Dropdown, Textbox, TextboxAutocomplete, TextboxColor, TextboxMultiline, TextboxNumeric
  • Removed the noBorder prop. The default behavior is to not show a gray border in the passive state.
  • Added a variant prop (string; optional).
    • Use variant="border" to show a gray border in the passive state.
    • Use variant="underline" to show a gray border only on the bottom side in the passive state.
  • Fixed a bug with Dropdown not truncating when embedded within a flex parent. (#101)
  • Skip validation of clipboard content when strict is false in TextboxAutocomplete. (#107)
LoadingIndicator, and all icon components
IconButton
  • This is a new, non-toggleable version of the IconToggleButton component. (#102)
IconToggleButton
  • This component was renamed from IconButton.
Layer
  • The focus state now shows a border.
  • Removed the color prop.
  • Added a component prop (boolean; optional) for rendering a component layer (ie. purple icon and text).
  • Made the icon prop mandatory.
  • Renamed the pageName prop to description.
SelectableItem
  • The focus state now shows a border.
Text
  • Removed the bold and muted props.
    • Styling inline text should be done via the new inline text components Bold, Code, Link, and Muted.
Toggle
  • Added a children prop (ComponentChildren; mandatory).

@create-figma-plugin/[email protected]

  • showUI now takes a themeColors option (boolean; optional), which defaults to true. (themeColors must be set to true if you’re using the components in @create-figma-plugin/ui.)

  • Fix a compilation problem caused by missing .js extensions in the import statements in set-relaunch-button.ts and unset-relaunch-button.ts. (#109)

1.9.2

  • @create-figma-plugin/[email protected]

    • Fix a bug with the Dropdown menu not re-calculating its height when value is null. (#100)

1.9.1

1.9.0

  • @create-figma-plugin/[email protected]

    • Fixed build error in Windows caused by exec call to tcm. (#96)
    • Suppressed the Cannot redeclare block-scoped variable 'fetch'. type-check error when using @figma/plugin-typings@^1.44.0. (#98)
  • @create-figma-plugin/[email protected]

    • Fixed a bug with scrollbars appearing in the Dropdown component. (#97)
    • Added a noTransition prop to the Modal component.
  • Bumped dependencies in all packages

1.8.4

  • @create-figma-plugin/[email protected]

    • Resolve paths to tcm and preact-compat starting from __dirname so that build-figma-plugin will work when used in a pnpm monorepo. (#84)

1.8.3

  • @create-figma-plugin/[email protected]

    • Fixed a bug with the Modal component incorrectly trapping focus on the first input it contains on subsequent renders. (#80)
  • @create-figma-plugin/[email protected]

    • Added a ensureMinimumTime utility.
    • Prevent modification of defaultSettings in loadSettingsAsync. (#79)
  • Bumped dependencies in all packages.

1.8.2

1.8.1

  • [email protected]

    • Fixed a bug to include the .gitignore file when bootstrapping from a template. (#76)

1.8.0

  • @create-figma-plugin/[email protected]

    • Added isLocked and isVisible utilities. (#75)
  • Added a recipe for disabling the automatic swapping of React imports using a build-figma-plugin.ui.js file.

1.7.3

1.7.2

  • @create-figma-plugin/[email protected]

    • Suppressed TypeScript error that occurs when the type definition of an imported package contains <reference types="node" />. (#71)
  • @create-figma-plugin/[email protected]

    • computeBoundingBox – Accounted for CodeBlock node which does not have a rotation property.
  • Bumped dependencies in all packages.

  • Replaced ts-node with tsm.

  • Use stylelint-config-idiomatic-order instead of stylelint-config-rational-order (via stylelint-config-yuanqing).

1.7.1

  • Documentation updates.

1.7.0

  • @create-figma-plugin/[email protected]

    • Added support for building FigJam widgets.
      • Added new configuration options widgetApi, containsWidget, and permissions.
    • Renamed the apiVersion configuration option to api, to be aligned with the plugin manifest.json API.
  • @create-figma-plugin/[email protected]

    • Added a FigJam theme. (#63)
      • Components will automatically render using the Figma theme if the UI is launched from a Figma plugin, and the FigJam theme if the UI is launched from a FigJam plugin/widget.
    • Fixed a bug with small custom increments in the TextboxNumeric component. (#70)
  • [email protected]

    • Refactored the create-figma-plugin CLI; a template can now be selected via an interactive interface.
    • Added a widget/notepad template, and reorganized existing templates.
  • Documentation updates.

1.6.2

1.6.1

  • Documentation updates.

1.6.0

  • @create-figma-plugin/[email protected]

    • Made build-figma-plugin --watch aware of changes to build-figma-plugin.*.js files.
  • @create-figma-plugin/[email protected]

    • Added a Modal component. (#47)
    • Added new components Disclosure, IconChevronDown32, IconChevronLeft32 IconChevronRight32, and IconChevronUp32.
    • Regenerated all icon components.
    • Added a useWindowResize hook. (#59)
    • Added a call to useEffect in the useFocusTrap hook.
    • Added CSS variables --box-shadow-menu, --box-shadow-modal, and --font-family-code.
    • Made computeBoundingBox compatible with @figma/[email protected].
  • [email protected]

    • Renamed the ui template to preact-rectangles.
    • Added new templates preact-resizable and react-editor.
    • Updated the @figma/plugin-typings version to 1.37.0.
  • Bumped dependencies in all packages.

1.5.1

  • @create-figma-plugin/[email protected]

    • Moved constants MIXED_NUMBER and MIXED_STRING from @create-figma-plugin/ui to @create-figma-plugin/utilities.

1.5.0

  • @create-figma-plugin/[email protected]

    • Restart the TypeScript watcher when changes are made to tsconfig.json. (#56)
    • Enabled usage of React components by swapping out react and react-dom imports with preact/compat.
    • Added the ability to import “global” CSS by adding a ! prefix before the CSS file path. (#60)
    • Accounted for the case where figma.command is undefined (eg. in a FigJam widget).
  • @create-figma-plugin/[email protected]

    • Added support for FigJam nodes in loadFontsAsync. (#57)
  • Improved documentation.

1.4.0

  • @create-figma-plugin/[email protected]

    • Suppressed the Cannot redeclare block-scoped variable 'console'. type-check error when using @figma/plugin-typings@^1.32.0. (#54)
    • Added an escape hatch for modifying the manifest.json file just before it gets written to disk.
  • @create-figma-plugin/[email protected]

    • computeBoundingBox – Accounted for FigJam-specific nodes (eg. Connector, Sticky) which do not have a rotation property.
  • [email protected]

    • Removed the --yes flag and the ability to customize the display name.
    • Removed the CLI interactive prompt.
    • Updated the plugin installation instructions in all templates.
  • Bumped dependencies in all packages.

1.3.4

  • [email protected]

    • Pinned to a specific version of @figma/plugin-typings in all plugin templates.
  • @create-figma-plugin/[email protected]

    • Returned variant data in validateGumroadLicenseKeyMainAsync and validateGumroadLicenseKeyUiAsync.

1.3.3

  • Added docs for editorType.

1.3.2

  • @create-figma-plugin/[email protected]

    • Fixed the building of CSS Module typings in Windows. (#51)
  • Improved documentation.

1.3.1

  • @create-figma-plugin/[email protected]

    • Updated the configuration JSON schema.
  • @create-figma-plugin/[email protected]

    • Added deduplicateArray.
  • Added docs for parameters and parameterOnly.

1.3.0

  • @create-figma-plugin/[email protected]

    • Added support for the new editorType, parameters and parameterOnly config.
  • @create-figma-plugin/[email protected]

    • This package is deprecated; all monetization-related utility functions have been moved into @create-figma-plugin/utilities.

1.2.4

  • @create-figma-plugin/[email protected]

    • Fixed a bug with the build-figma-plugin CLI throwing an error when the current working directory absolute path contains spaces. (#49)

1.2.3

1.2.2

  • Added a recipe for using image assets in the plugin UI. (#45)

1.2.1

  • [email protected]

    • Added a ui template.
    • Simplified the CLI; now, only a name, displayName and template are necessary.
    • Fixed a bug with CLI arguments parsing. (#41)
  • Added a recipe for customizing the underlying esbuild configuration.

1.2.0

  • @create-figma-plugin/[email protected]

    • Added the ability to override the esbuild configuration for the main bundle (via a build-figma-plugin.main.js file) and the UI bundle (via a build-figma-plugin.ui.js file). (#34)
    • Improved the UX of the build-figma-plugin --watch --typecheck terminal output. (#38)
      • Fixed a bug with watch mode terminating on error. (#40)
  • @create-figma-plugin/[email protected]

    • This is a new package that includes utilities for:
      • Tracking the number of plugin runs.
      • Verifying a Gumroad license key.
  • @create-figma-plugin/[email protected]

    • New features:
      • Added Banner and IconButton components.
      • Added a validateOnBlur prop to Textbox, TextboxNumeric, and TextboxMultiline.
    • Bug fixes:
      • Allow pressing Tab to hide the menu in the Dropdown component.
      • Fixed a bug for when the suffix prop is specified in TextboxNumeric.
      • Fixed UI bugs in the useFocusTrap and useScrollableMenu hooks.
      • Middle-aligned the icon relative to the height of the textbox in the Textbox, TextboxAutocomplete, TextboxNumeric components.
      • Adjusted the focused style (the height of the blue outlined box) and the selected style (the background color of the selected text) of all textboxes (ie. Textbox etc.) to be identical to that in the Figma editor.
      • Prevent menu items in Dropdown and TextboxAutocomplete from wrapping.
      • Dynamically adjust the horizontal menu position of Dropdown. (#37)
    • CSS:
      • Added colors --color-black-6-translucent, --color-black-3-translucent, and --color-blue-30-translucent to @create-figma-plugin/ui/lib/css/base.css.
  • @create-figma-plugin/[email protected]

    • New features:
      • convertHexColorToRgbColor
      • convertNamedColorToHexColor
      • convertRgbColorToHexColor
      • isValidHexColor
      • unsetRelaunchButton
    • Bug fixes:
      • When setRelaunchButton is called, any relaunch buttons (with a different relaunchButtonId) previously set by the plugin on the particular node will be retained rather than overriden.

1.1.1

  • @create-figma-plugin/[email protected]

    • New features:
      • TextboxColor – Added a new component for receiving a user input hex color with opacity.
      • Dropdown, TextboxAutocomplete – Allow individual menu options to be disabled.
      • SearchTextbox, Textbox, TextboxAutocomplete, TextboxMultiline, TextboxNumeric – Added a spellCheck prop that defaults to false to hide the red squiggly lines from the browser’s spellchecking.
    • Bug fixes:
      • Dropdown, TextboxAutocomplete – Fixed a z-index bug with the menu, hide the menu on clicking anywhere outside the plugin iframe (previously the menu only hides when clicking outside the menu but within the plugin iframe).
      • TextboxNumeric – Fixed a bug with revertOnEscapeKeyDown not working as expected when the suffix prop is also set.
      • Dropdown – Fixed dynamic positioning of the menu.
      • Button, SearchTextbox, Textbox, TextboxAutocomplete, TextboxMultiline, TextboxNumeric – Set the background-color of the root element to transparent.

1.0.2

  • [email protected]

    • Added src/**/*.tsx to the "include" key of the default template’s tsconfig.json.

1.0.1

  • @create-figma-plugin/[email protected]

    • Made the --box-shadow style identical to that in the Figma CSS.
    • Fixed the style of disabled options in the SegmentedControl component.
  • [email protected]

    • Included plugin-templates/*/.gitignore in the published package.
    • Added a ^ prefix to @create-figma-plugin/* version numbers in the default template.
  • Improved documentation.

1.0.0

Note: 1.0.0 requires Node.js v14.

@create-figma-plugin/[email protected]

  • The build-figma-plugin CLI is now powered by esbuild, replacing Webpack. esbuild is extremely fast, and building any non-trivial plugin should reliably take less than 1 second. (esbuild actually runs within a couple hundred milliseconds, but some parts of the build process – compiling and generating .d.ts files for CSS modules, generating the manifest.json file – still runs in Node.js-land.)

  • Given the move away from Webpack, the ability to override the build process via a figma-plugin.config.js file has also been removed.

  • Minification and type checking of your plugin code is now disabled by default in the build-figma-plugin CLI. The build and watch scripts in your package.json should be updated as follows:

      {
        ...
        "scripts": {
    -     "build": "build-figma-plugin",
    +     "build": "build-figma-plugin --typecheck --minify",
    -     "watch": "build-figma-plugin --watch",
    +     "watch": "build-figma-plugin --typecheck --watch",
          ...
        },
        ...
      }
  • The ability to use SCSS in CSS Modules has been removed. Now, only “vanilla” CSS Modules is supported. To migrate, use the sass CLI to do a one-off conversion of your .scss files to .css, then update your UI code to reference the generated .css files.

  • There’s now a JSON schema for validating the plugin configuration in your package.json file. To enable autocomplete and inline validation of your plugin configuration in Visual Studio Code, create a .vscode/settings.json file containing the following:

    {
      "json.schemas": [
        {
          "fileMatch": [
            "package.json"
          ],
          "url": "https://yuanqing.github.io/create-figma-plugin/figma-plugin.json"
        }
      ]
    }

@create-figma-plugin/[email protected]

  • The tsconfig.json file has changed significantly, given the move to esbuild.

    {
      "compilerOptions": {
        "esModuleInterop": true,
        "isolatedModules": true,
        "jsx": "react",
        "jsxFactory": "h",
        "lib": ["DOM", "ES2020"],
        "module": "ES2020",
        "moduleResolution": "Node",
        "strict": true
      }
    }
  • Either copy the above to your project’s tsconfig.json, or directly extend from @create-figma-plugin/tsconfig. You should at least ensure that the "isolatedModules" option is enabled in your tsconfig.json.

@create-figma-plugin/[email protected]

  • There are many breaking changes and new features. Your best bet for migrating to v1 might be to try to build your plugin using the build-figma-plugin --typecheck --watch command, and then incrementally fixing the errors surfaced by the TypeScript compiler. Otherwise, refer to usage examples of all the components in the Storybook, or see below for a detailed breakdown of all component changes.

  • One of the most significant changes is that the onChange prop of all components now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void. See the before and after, using the Checkbox component as an example:

    // Before `v1`
    
    const [state, setState] = useState({ foo: false })
    // ...
    <Checkbox name="foo" onChange={setState} value={state.foo}>
      Text
    </Checkbox>
    // `v1`
    
    const [value, setValue] = useState(false)
    function handleChange(event: JSX.TargetedEvent<HTMLInputElement>) {
      const newValue = event.currentTarget.checked
      console.log(newValue) //=> either `true` or `false`
      setValue(newValue)
    }
    // ...
    <Checkbox onChange={handleChange} value={value}>
      Text
    </Checkbox>
  • An alternative to using the onChange prop to listen to state changes is to use the new onValueChange prop. This prop is available on all components that also have an onChange prop. The onValueChange handler has the signature <Value, Name extends string>(newValue: Value, name?: Name) => void, and it is called on every DOM change event. The second name parameter passed to the handler is precisely the name prop that was set on the component. Again, using the Checkbox component as an example:

    const [value, setValue] = useState(false)
    function handleChange(newValue: boolean, name: undefined | string) {
      console.log(newValue) //=> either `true` or `false`
      console.log(name)     //=> 'foo'
      setValue(newValue)
    }
    // ...
    <Checkbox name="foo" onValueChange={handleValueChange} value={value}>
      Text
    </Checkbox>
  • The onChange prop has been removed from the SearchTextbox, Textbox, TextboxAutocomplete, and TextboxNumeric components. (This prop was inaccurately named for these components because the handler is actually called on every DOM input event.) Instead, use the onInput and onValueInput props to handle the DOM input event.

  • The DropdownMenu component has been removed. Use the new Dropdown component, which has an improved UI design and component API.

  • All component styles are now written as “vanilla” CSS modules rather than SCSS. The previous SCSS variables are now expressed as CSS variables on :root. Refer to the base.css file in @create-figma-plugin/ui for the list of CSS variables that are available for use in your custom CSS.

  • Added new components Dropdown, MiddleAlign, TextboxMultiline and Toggle, in addition to 175 icon components extracted from Figma’s official “UI2” design system file on Figma Community.

Detailed breakdown of component changes

Icons
  • All icons are now exported as Preact functional components. Refer to the following mapping to migrate existing icons to their equivalents in v1:

    • checkCircleIcon<IconCheckCircle32 />
    • checkIcon<IconMenuCheckmarkChecked16 />
    • componentIcon<IconLayerComponent16 />
    • crossIcon<IconCross32 />
    • frameIcon<IconLayerFrame16 />
    • imageIcon<IconLayerImage16 />
    • moveDownIcon<IconMoveDown16 />
    • moveRightIcon<IconMoveRight16 />
    • searchIcon<IconSearch32 />
    • spaceHorizontalIcon<IconSpacingHorizontal16 />
    • spaceVerticalIcon<IconSpacingVertical16 />

    Note that IconCheckCircle32, IconCross32 and IconSearch32 all have a dimension of 32px, which is double the size of the corresponding icons in versions of @create-figma-plugin/ui prior to v1.

  • All icons also now take a color prop for customizing the fill colour of the icon svg.

Button
  • The focused prop has been removed.
Checkbox
  • The focused prop has been removed.
  • The onChange prop now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueChange prop with the signature (newValue: boolean, name?: string) => void.
FileUploadButton
  • The focused and onClick props have been removed.
  • The onSelectedFiles prop now has the signature (files: Array<File>) => void.
FileUploadDropzone
  • The onSelectedFiles prop now has the signature (files: Array<File>) => void.
Layer
  • This component has an almost entirely new API. (The onClick, selected, and type props have been removed. New props include bold, onChange, onValueChange, icon, color, and value.)
LoadingIndicator
  • There’s a new color prop for customizing the fill colour of the svg representing the loading indicator.
RadioButtons
  • The value prop can now be null, or a boolean, number, or string.
  • The focused prop has been removed.
  • The onChange prop now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueChange prop with the signature (newValue: boolean | number | string, name?: string) => void.
  • For the RadioButtonsOption type:
    • The text key has been renamed to children.
    • value can now only be a boolean, number, or string.
SearchTextbox
  • The focused and onChange props have been removed.
  • There’s a new onInput prop with the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueInput prop with the signature (newValue: string, name?: string) => void.
SegmentedControl
  • The height of the component is now 24px (reduced from 36px) to be identical to the height of segmented controls in the Figma editor UI.
  • The style of the component’s focused state has been tweaked to follow that of segmented controls in the Figma editor UI.
  • The value prop cannot be null and can now only be a boolean, number, or string.
  • The focused prop has been removed.
  • The onChange prop now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueChange prop with the signature (newValue: boolean | number | string, name?: string) => void.
  • In the SegmentedControlOption type:
    • The text key has been renamed to children.
    • value cannot be null and can now only be a boolean, number, or string.
SelectableItem
  • The onKeyDown prop has been removed.
  • The onChange prop now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueChange prop with the signature (newValue: boolean, name?: string) => void.
Tabs
  • The focused prop has been removed.
  • The onChange prop now has the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueChange prop with the signature (newValue: string, name?: string) => void.
  • In the TabsOption type:
    • The disabled and text keys have been removed.
    • The view key has been renamed to children.
    • value can now only be a string.
Textbox
  • The height of the component is now 28px (reduced from 32px) to be identical to the height of textboxes in the Figma editor UI.
  • The value prop cannot be null and can now only be a string.
    • A “Mixed” value is represented by the MIXED_STRING constant from @create-figma-plugin/utilities.
  • The focused, onChange, and type props have been removed.
  • There’s a new onInput prop with the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueInput prop with the signature (newValue: string, name?: string) => void.
  • There’s a new password prop for changing the display to a password field. (Previously, you’d set the type prop to 'password'.)
  • There’s a new revertOnEscapeKeyDown prop to enable reverting the original value when the Esc key is pressed.
TextboxAutocomplete
  • The height of the component is now 28px (reduced from 32px) to be identical to the height of textboxes in the Figma editor UI.
  • The height of the autocomplete menu will dynamically expand (while still keeping within the dimensions of window) so as to fit as many items as possible in the menu.
  • The focused and onChange props have been removed.
  • There’s a new onInput prop with the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueInput prop with the signature (newValue: string, name?: string) => void.
  • There’s a new revertOnEscapeKeyDown prop to enable reverting the original value when the Esc key is pressed.
TextboxNumeric
  • The height of the component is now 28px (reduced from 32px) to be identical to the height of textboxes in the Figma editor UI.
  • The value prop cannot be null and can now only be a string.
    • A “Mixed” value is represented by the MIXED_STRING constant from @create-figma-plugin/utilities.
  • The focused, and onChange props have been removed.
  • There’s a new onInput prop with the signature (event: JSX.TargetedEvent<HTMLInputElement>) => void.
  • There’s a new onValueInput prop with the signature (newValue: string, name?: string) => void.
  • There’s a new onNumericValueInput prop with the signature (newValue: null | number, name?: string) => void, where newValue is the result of evaluating value as a numeric expression.
    • If value is the empty string, then newValue is null.
    • If value is the MIXED_STRING constant from @create-figma-plugin/utilities, then newValue will be the MIXED_NUMBER constant from the same.
  • There’s a new revertOnEscapeKeyDown prop to enable reverting the original value when the Esc key is pressed.
  • There’s a new suffix prop for automatically appending an arbitrary string to the numeric textbox.

@create-figma-plugin/[email protected]

  • compareArrays has been removed. Use compareObjects instead.
  • isWithinInstance has been renamed to isWithinInstanceNode.
  • computeSiblingNodes, deduplicateNodes, sortNodesByCanonicalOrder, and sortNodesByName all now take a type parameter <Node extends SceneNode>. This type parameter allows these functions to accept and return arrays of specific node types, rather than merely an array of SceneNode.
  • loadSettingsAsync and saveSettingsAsync both now take an optional second argument for customizing the key for loading from or saving to figma.clientStorage.
  • Added new utilities compareStringArrays, getParentNode, and getSceneNodeById.