mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user