@dataclouder/ngx-core 0.1.41 → 0.1.43
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,9 +713,12 @@ 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>;
|
|
720
|
+
useFakeSave: i0.InputSignal<boolean>;
|
|
721
|
+
fakeSaved: i0.OutputEmitterRef<T>;
|
|
719
722
|
abstract form: FormGroup;
|
|
720
723
|
protected abstract entityCommunicationService: EntityCommunicationService<T>;
|
|
721
724
|
protected abstract patchForm(entity: T): void;
|
|
@@ -725,8 +728,10 @@ declare abstract class EntityBaseFormComponent<T extends {
|
|
|
725
728
|
};
|
|
726
729
|
saveDirtyValues(): Promise<T>;
|
|
727
730
|
private loadEntityEffect;
|
|
731
|
+
private loadEntityById;
|
|
732
|
+
private createNewEntity;
|
|
728
733
|
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>;
|
|
734
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EntityBaseFormComponent<any>, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "entityInput": { "alias": "entity"; "required": false; "isSignal": true; }; "useFakeSave": { "alias": "useFakeSave"; "required": false; "isSignal": true; }; }, { "fakeSaved": "fakeSaved"; }, never, never, true, never>;
|
|
730
735
|
}
|
|
731
736
|
|
|
732
737
|
declare enum EModelQuality {
|
|
@@ -931,7 +936,7 @@ declare class AudioNotificationService {
|
|
|
931
936
|
}
|
|
932
937
|
|
|
933
938
|
declare class MobileService {
|
|
934
|
-
|
|
939
|
+
protected router: Router;
|
|
935
940
|
eventInstall: any;
|
|
936
941
|
isMobileAgent: boolean;
|
|
937
942
|
hasReponsiveView: i0.WritableSignal<boolean>;
|