[AAE-10219] Add css to align according to alignment property in RadioField (#7750)

* [AAE-10219] Add css to align according to alignment property in RadioField

* [AAE-10219] Add css to align according to alignment property in RadioField

* trigger travis

* Fix nx build core

* reduce dependsOn config

* update demoshell cspell path

* [AAE-10460] fix storybook config (#7785)

* [AAE-10460] fix storybook config

* trigger travis

* trigger travis

Co-authored-by: Rafal Szmit <rafal.szmit@hyland.com>
Co-authored-by: Tomasz <tomasz.gnyp@hyland.com>
Co-authored-by: Tomasz Gnyp <49343696+tomgny@users.noreply.github.com>
This commit is contained in:
Sushmitha V
2022-08-26 04:09:01 +05:30
committed by GitHub
parent 76c98c53ed
commit 2ef40b150f
5 changed files with 30 additions and 29 deletions

View File

@@ -76,6 +76,7 @@ export class FormFieldModel extends FormWidgetModel {
currency: string = null;
dateDisplayFormat: string = this.defaultDateFormat;
selectionType: 'single' | 'multiple' = null;
alignmentType: 'vertical' | 'horizontal' = null;
rule?: FormFieldRule;
selectLoggedUser: boolean;
groupsRestriction: string[];
@@ -189,6 +190,7 @@ export class FormFieldModel extends FormWidgetModel {
this.validationSummary = new ErrorMessageModel();
this.tooltip = json.tooltip;
this.selectionType = json.selectionType;
this.alignmentType = json.alignmentType;
this.rule = json.rule;
this.selectLoggedUser = json.selectLoggedUser;
this.groupsRestriction = json.groupsRestriction?.groups;