tuain-ng-forms-lib 17.1.22 → 17.1.24
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/components/elements/field.component.mjs +9 -7
- package/esm2022/lib/components/forms/basic-form.mjs +10 -10
- package/fesm2022/tuain-ng-forms-lib.mjs +16 -14
- package/fesm2022/tuain-ng-forms-lib.mjs.map +1 -1
- package/lib/components/elements/field.component.d.ts +2 -2
- package/lib/components/forms/basic-form.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
|
}
|
|
@@ -43,7 +43,7 @@ export declare class BasicFormComponent extends FormStructureAndData {
|
|
|
43
43
|
errorMessage: string;
|
|
44
44
|
errorDetail: string;
|
|
45
45
|
visible: boolean;
|
|
46
|
-
busy: boolean
|
|
46
|
+
busy: import("@angular/core").WritableSignal<boolean>;
|
|
47
47
|
constructor(formManagerService: LibFormManagerService, _eventManager: LibEventManagerService, fileMgmtServices: LibFileManagementService);
|
|
48
48
|
cleanStart(): void;
|
|
49
49
|
get formVisible(): boolean;
|
|
@@ -172,7 +172,7 @@ export declare class BasicFormComponent extends FormStructureAndData {
|
|
|
172
172
|
*/
|
|
173
173
|
set formCode(name: string);
|
|
174
174
|
/**
|
|
175
|
-
* @deprecated Use busy
|
|
175
|
+
* @deprecated Use busy signal
|
|
176
176
|
*/
|
|
177
177
|
get inServerProcess(): boolean;
|
|
178
178
|
/**
|