diff --git a/src/prefabs/types/options.ts b/src/prefabs/types/options.ts index ea4ea402..cdb17710 100644 --- a/src/prefabs/types/options.ts +++ b/src/prefabs/types/options.ts @@ -67,7 +67,7 @@ export interface PrefabComponentOptionBase { }; placeholder?: string; showOnDrop?: boolean; - showThemeColor?: boolean; + showTextStyleColor?: boolean; }; } diff --git a/tests/prefabs/factories/component.test.ts b/tests/prefabs/factories/component.test.ts index e904c123..aa904695 100644 --- a/tests/prefabs/factories/component.test.ts +++ b/tests/prefabs/factories/component.test.ts @@ -229,7 +229,7 @@ test('component is a data table with "reconfigure" options', (t) => { value: 'New property', }, showOnDrop: true, - showThemeColor: true, + showTextStyleColor: true, allowedKinds: ['TEXT', 'URL'], }, showInReconfigure: true, @@ -267,7 +267,7 @@ test('component is a data table with "reconfigure" options', (t) => { type: 'TEXT', }, showOnDrop: true, - showThemeColor: true, + showTextStyleColor: true, allowedKinds: ['TEXT', 'URL'], }, showInReconfigure: true,