@dataclouder/ngx-core 0.1.41 → 0.1.42
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
|
@@ -713,6 +713,7 @@ declare abstract class EntityBaseFormComponent<T extends {
|
|
|
713
713
|
protected router: Router;
|
|
714
714
|
toastService: _dataclouder_ngx_core.ToastAlertsAbstractService;
|
|
715
715
|
id: i0.InputSignal<string>;
|
|
716
|
+
entityInput: i0.InputSignal<T>;
|
|
716
717
|
entity: i0.WritableSignal<T>;
|
|
717
718
|
private entityIdFromUrl;
|
|
718
719
|
entityId: i0.Signal<string>;
|
|
@@ -725,8 +726,10 @@ declare abstract class EntityBaseFormComponent<T extends {
|
|
|
725
726
|
};
|
|
726
727
|
saveDirtyValues(): Promise<T>;
|
|
727
728
|
private loadEntityEffect;
|
|
729
|
+
private loadEntityById;
|
|
730
|
+
private createNewEntity;
|
|
728
731
|
static ɵfac: i0.ɵɵFactoryDeclaration<EntityBaseFormComponent<any>, never>;
|
|
729
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EntityBaseFormComponent<any>, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
732
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EntityBaseFormComponent<any>, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "entityInput": { "alias": "entity"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
730
733
|
}
|
|
731
734
|
|
|
732
735
|
declare enum EModelQuality {
|
|
@@ -931,7 +934,7 @@ declare class AudioNotificationService {
|
|
|
931
934
|
}
|
|
932
935
|
|
|
933
936
|
declare class MobileService {
|
|
934
|
-
|
|
937
|
+
protected router: Router;
|
|
935
938
|
eventInstall: any;
|
|
936
939
|
isMobileAgent: boolean;
|
|
937
940
|
hasReponsiveView: i0.WritableSignal<boolean>;
|