1.134 release - #368
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 2 potential issues.
Reviewed by Cursor Bugbot for commit ed0be61. Configure here.
| */ | ||
| getCSSAsync(): Promise<{ | ||
| [key: string]: string | ||
| }> |
There was a problem hiding this comment.
getCSSAsync removed from node types
High Severity
getCSSAsync was dropped from BaseNodeMixin and is no longer declared anywhere in the typings. Existing codegen plugins that call it will fail typechecking, while official docs still describe this as the inspect-panel CSS API on nodes.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit ed0be61. Configure here.
There was a problem hiding this comment.
this is intentional, this was only a stub on the web side.
| * Absolute-space dimensions and position for connector label sublayers. | ||
| * @see https://developers.figma.com/docs/plugins/api/node-properties | ||
| */ | ||
| interface SublayerDimensionsMixin {} |
There was a problem hiding this comment.
Empty sublayer dimensions mixin
High Severity
SublayerDimensionsMixin is documented as exposing absolute-space size and position for connector label sublayers, but the interface is empty. Extending LabelSublayerNode and intersecting it onto ConnectorNode.text therefore adds no typed x, y, width, or height fields, so the new API is unusable from TypeScript.
Additional Locations (2)
Reviewed by Cursor Bugbot for commit ed0be61. Configure here.


No description provided.