@decaf-ts/for-angular 0.1.17 → 0.1.18
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/index.d.ts
CHANGED
|
@@ -8592,7 +8592,7 @@ declare class NgxRouterService {
|
|
|
8592
8592
|
}
|
|
8593
8593
|
|
|
8594
8594
|
declare class TableComponent extends ListComponent implements OnInit {
|
|
8595
|
-
filterModel: Model | string;
|
|
8595
|
+
filterModel: Model | FunctionLike | string;
|
|
8596
8596
|
filterOptions: SelectOption[];
|
|
8597
8597
|
filterLabel: string;
|
|
8598
8598
|
filterOptionsMapper: FunctionLike;
|
|
@@ -9468,6 +9468,8 @@ declare class NgxFormService {
|
|
|
9468
9468
|
* @static
|
|
9469
9469
|
*/
|
|
9470
9470
|
static getFormData(formGroup: FormGroup): Record<string, unknown>;
|
|
9471
|
+
static getFormArrayControlsValue(formArray: FormArray): unknown;
|
|
9472
|
+
static controlHasValue(control: AbstractControl): boolean;
|
|
9471
9473
|
/**
|
|
9472
9474
|
* @description Validates fields in a form control or form group.
|
|
9473
9475
|
* @summary Recursively validates all fields in a form control or form group, marking them as touched and dirty.
|