mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
Resource Deployment UX Refresh (#12173)
* adding new card to styles * renamed property, removed unnecessary css * Fixed to match new props * added horizontal class * merged from master
This commit is contained in:
@@ -119,6 +119,18 @@ export default class RadioCardGroup extends ComponentBase<azdata.RadioCardGroupC
|
||||
return this.getProperties().selectedCardId ?? undefined;
|
||||
}
|
||||
|
||||
public get iconPosition(): string {
|
||||
return this.getProperties().iconPosition ?? 'top';
|
||||
}
|
||||
|
||||
public isIconPositionTop(): boolean {
|
||||
return this.iconPosition === 'top';
|
||||
}
|
||||
|
||||
public isIconPositionLeft(): boolean {
|
||||
return this.iconPosition === 'left';
|
||||
}
|
||||
|
||||
public get orientation(): string {
|
||||
const x = this.getProperties().orientation ?? 'horizontal';
|
||||
return x;
|
||||
|
||||
Reference in New Issue
Block a user