Skip to content

Commit

Permalink
feat: change showThemeColor naming
Browse files Browse the repository at this point in the history
  • Loading branch information
BettyBrian committed Feb 17, 2023
1 parent 8074fbe commit 4632010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/prefabs/types/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface PrefabComponentOptionBase {
};
placeholder?: string;
showOnDrop?: boolean;
showThemeColor?: boolean;
showTextStyleColor?: boolean;
};
}

Expand Down
4 changes: 2 additions & 2 deletions tests/prefabs/factories/component.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 4632010

Please sign in to comment.