tuain-ng-forms-lib 17.1.21 → 17.1.23
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/classes/forms/table/table.mjs +6 -5
- package/esm2022/lib/components/elements/field.component.mjs +9 -7
- package/esm2022/lib/components/elements/tables/table.component.mjs +4 -6
- package/fesm2022/tuain-ng-forms-lib.mjs +16 -15
- package/fesm2022/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/elements/field.component.d.ts +2 -2
- package/lib/components/elements/tables/table.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -28,7 +28,7 @@ export declare class FieldComponent extends ElementComponent implements AfterVie
|
|
|
28
28
|
tooltip: any;
|
|
29
29
|
validateOnServer: any;
|
|
30
30
|
visibleLabel: any;
|
|
31
|
-
value: any
|
|
31
|
+
value: import("@angular/core").ModelSignal<any>;
|
|
32
32
|
field: FieldDescriptor | null;
|
|
33
33
|
updatePropagatedAttributes(): void;
|
|
34
34
|
ngAfterViewInit(): void;
|
|
@@ -41,5 +41,5 @@ export declare class FieldComponent extends ElementComponent implements AfterVie
|
|
|
41
41
|
inputChanged(): void;
|
|
42
42
|
inputTyped(): void;
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "lib-field", never, { "field": { "alias": "field"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldComponent, "lib-field", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "field": { "alias": "field"; "required": false; }; }, { "value": "valueChange"; }, never, ["*"], false, never>;
|
|
45
45
|
}
|
|
@@ -14,6 +14,7 @@ export declare class LibTableComponent extends ElementComponent implements OnIni
|
|
|
14
14
|
currentPage: any;
|
|
15
15
|
totalRecordsNumber: any;
|
|
16
16
|
visibleRecords: any;
|
|
17
|
+
waiting: any;
|
|
17
18
|
globalFilterString: string;
|
|
18
19
|
tableFieldStyles: any;
|
|
19
20
|
loaded: boolean;
|
|
@@ -23,7 +24,6 @@ export declare class LibTableComponent extends ElementComponent implements OnIni
|
|
|
23
24
|
globalActions: any;
|
|
24
25
|
selectionActions: any;
|
|
25
26
|
table: RecordTable | null;
|
|
26
|
-
waiting: boolean;
|
|
27
27
|
ngOnInit(): void;
|
|
28
28
|
updatePropagatedAttributes(): void;
|
|
29
29
|
updateTableData(): void;
|
|
@@ -38,5 +38,5 @@ export declare class LibTableComponent extends ElementComponent implements OnIni
|
|
|
38
38
|
globalFilterChanged(): void;
|
|
39
39
|
filterHasChanged(column: any, values: any): void;
|
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibTableComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibTableComponent, "lib-table", never, { "table": { "alias": "table"; "required": false; };
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibTableComponent, "lib-table", never, { "table": { "alias": "table"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
42
42
|
}
|