create-figma-plugin icon indicating copy to clipboard operation
create-figma-plugin copied to clipboard

:battery: The comprehensive toolkit for developing plugins and widgets for Figma and FigJam

Results 42 create-figma-plugin issues
Sort by recently updated
recently updated
newest added

I'd like to have a modal which will take the full width and height of the plugin. Right now I'm solving this with `position="left"` and some extra styles: ```jsx {/*...

enhancement

Figma are releasing new support for dynamic pages - this needs to be supported in the manifest creation stage. more information can be found here: https://www.figma.com/plugin-docs/migrating-to-dynamic-loading/ so i guess it...

I think this is #77 all over again. The `build-figma-plugin.ui.cjs` file is just this: ```js module.exports = (buildOptions) => ({ ...buildOptions, keepNames: true, }); ``` When it's in the main...

bug
windows

When I configure the menu entry according to this reference: https://www.figma.com/plugin-docs/manifest/ the watch and build scripts do only copy the menu names to the manifest. Why does the create-figma-plugin config...

Hello, I'm developing a plugin to export content from a figma design and I'm using the traverseNode function. One problem I have with it is the depth first, is it...

![image](https://github.com/yuanqing/create-figma-plugin/assets/18431596/73a1396a-67d9-4539-aca7-f1fe4c5487b9) main.ts: ```typescript import { showUI } from '@create-figma-plugin/utilities' export default function () { figma.codegen.on('preferenceschange', (event: CodegenPreferencesEvent) => { console.log("preferenceschange", event); if (event.propertyName === 'editor') { showUI({ height: 240, width:...

I wanted to use Tailwind CSS [arbitrary values](https://tailwindcss.com/docs/adding-custom-styles#using-arbitrary-values) and it did not work correctly with current `create-figma-plugin` implementation. The problem is that Tailwind outputs properly escaped `[`/`]` signs in css,...

converted and used react instead of preact.

Hi! I tried getting started with create-figma-plugin but have troubles getting it to work. My goal is it to create a figma **widget**, rather than a plugin. These were my...

Adding `!important` to an inline style seems to cause it to be stripped from the style object and not applied to the component. For example: ```jsx this is not red...

bug