ichec-angular-core 0.3.13 → 1.0.0
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/package.json
CHANGED
|
@@ -489,8 +489,10 @@ declare class FormService {
|
|
|
489
489
|
createItem(form: FormGroup, input: IFormDetail): IPopulatedFormCreate;
|
|
490
490
|
getValueId(field_id: number, populated: IPopulatedFormDetail): number;
|
|
491
491
|
getFiles(form: FormGroup, input: IFormDetail, populated: IPopulatedFormDetail): IFieldFile[];
|
|
492
|
+
hasRequiredFiles(form: FormGroup, input: IFormDetail): boolean;
|
|
492
493
|
updateFieldValue(control: FormControl, item: IFormFieldValueDetail): IFormFieldValueUpdate;
|
|
493
494
|
getType(key: string, input: IFormDetail): string;
|
|
495
|
+
isRequired(key: string, input: IFormDetail): boolean;
|
|
494
496
|
getValue(key: string, item: IPopulatedFormDetail): IFormFieldValueDetail | null;
|
|
495
497
|
updateItem(form: FormGroup, item: IPopulatedFormDetail): IPopulatedFormUpdate;
|
|
496
498
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormService, never>;
|