mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-03 05:10:13 -05:00
fix get component property definitions (#169)
This commit is contained in:
parent
14c9d02cc9
commit
5f884985b9
1 changed files with 20 additions and 16 deletions
|
@ -90,6 +90,7 @@ const getComponentTextPropertyOverrides = (
|
|||
node: InstanceNode,
|
||||
primaryComponent: ComponentNode | ComponentSetNode
|
||||
): ComponentTextPropertyOverride[] => {
|
||||
try {
|
||||
const componentPropertyDefinitions = Object.entries(
|
||||
primaryComponent.componentPropertyDefinitions
|
||||
).filter(([, value]) => value.type === 'TEXT');
|
||||
|
@ -108,6 +109,9 @@ const getComponentTextPropertyOverrides = (
|
|||
} as ComponentTextPropertyOverride;
|
||||
})
|
||||
.filter(({ value, defaultValue }) => value !== defaultValue);
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
};
|
||||
|
||||
const registerTextVariableOverrides = (
|
||||
|
|
Loading…
Reference in a new issue