@muraai/mnl-form 0.0.1-alpha-f274a13 → 0.0.1-alpha-10829d9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/formly-lib/formly-lib.component.mjs +6 -3
- package/esm2022/lib/types/mu-helper-text.type.mjs +67 -21
- package/fesm2022/muraai-mnl-form.mjs +69 -20
- package/fesm2022/muraai-mnl-form.mjs.map +1 -1
- package/lib/formly-lib/formly-lib.component.d.ts +2 -1
- package/lib/types/mu-helper-text.type.d.ts +7 -2
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export declare class MnlFormLibComponent implements OnInit {
|
|
|
12
12
|
form: FormGroup;
|
|
13
13
|
fields: CustomFormlyFieldConfig[];
|
|
14
14
|
model: any;
|
|
15
|
+
helperModel: any;
|
|
15
16
|
options: FormlyFormOptions;
|
|
16
17
|
userRoles: string[];
|
|
17
18
|
userCountries: string[];
|
|
@@ -31,5 +32,5 @@ export declare class MnlFormLibComponent implements OnInit {
|
|
|
31
32
|
filterFieldGroupsByRolesAndCountries(fields: CustomFormlyFieldConfig[]): any[];
|
|
32
33
|
removeValidationsForFilteredFields(fields: any): void;
|
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnlFormLibComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MnlFormLibComponent, "mnl-form", never, { "readonly": { "alias": "readonly"; "required": false; }; "form": { "alias": "form"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "model": { "alias": "model"; "required": false; }; "options": { "alias": "options"; "required": false; }; "userRoles": { "alias": "userRoles"; "required": false; }; "userCountries": { "alias": "userCountries"; "required": false; }; "oldValues": { "alias": "oldValues"; "required": false; }; "showOldValues": { "alias": "showOldValues"; "required": false; }; }, { "noOfTabs": "noOfTabs"; "scoreChange": "scoreChange"; }, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnlFormLibComponent, "mnl-form", never, { "readonly": { "alias": "readonly"; "required": false; }; "form": { "alias": "form"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "model": { "alias": "model"; "required": false; }; "helperModel": { "alias": "helperModel"; "required": false; }; "options": { "alias": "options"; "required": false; }; "userRoles": { "alias": "userRoles"; "required": false; }; "userCountries": { "alias": "userCountries"; "required": false; }; "oldValues": { "alias": "oldValues"; "required": false; }; "showOldValues": { "alias": "showOldValues"; "required": false; }; }, { "noOfTabs": "noOfTabs"; "scoreChange": "scoreChange"; }, never, never, true, never>;
|
|
35
36
|
}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
2
3
|
import { FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core';
|
|
3
4
|
import { FieldType } from '@ngx-formly/material';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MnlFormHelperTextInputComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
6
7
|
private cdr;
|
|
7
8
|
checked: boolean;
|
|
9
|
+
helperFormControl: FormControl;
|
|
8
10
|
get helperLabel(): any;
|
|
9
11
|
get defaultHelperText(): any;
|
|
10
|
-
get
|
|
11
|
-
|
|
12
|
+
get originalValue(): any;
|
|
13
|
+
get helperModel(): any;
|
|
14
|
+
get helperKey(): any;
|
|
15
|
+
get currentHelperValue(): any;
|
|
16
|
+
set currentHelperValue(value: any);
|
|
12
17
|
defaultFieldConfig?: FormlyFieldConfig;
|
|
13
18
|
constructor(cdr: ChangeDetectorRef);
|
|
14
19
|
ngOnInit(): void;
|