barsa-novin-ray-core 2.3.84 → 2.3.86
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
|
@@ -2268,6 +2268,8 @@ declare class ContainerService implements OnDestroy {
|
|
|
2268
2268
|
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
2269
2269
|
ngOnDestroy(): void;
|
|
2270
2270
|
setViewContainerRef(viewContainerRef: ViewContainerRef): void;
|
|
2271
|
+
hideFormPage(): void;
|
|
2272
|
+
showFormPage(): void;
|
|
2271
2273
|
navigate(navigation: any[], isRelative: any, queryParams: any, state: any): void;
|
|
2272
2274
|
navigateMasterDetails(navigation: any[], isRelative: any, queryParams: any, data: any): void;
|
|
2273
2275
|
private detach;
|
|
@@ -3975,9 +3977,14 @@ declare class FormPageBaseComponent extends ContainerComponent implements OnInit
|
|
|
3975
3977
|
viewId: string;
|
|
3976
3978
|
};
|
|
3977
3979
|
formpanelCtrlrId: string;
|
|
3980
|
+
$resize: Subject<void>;
|
|
3981
|
+
protected _containerService: ContainerService | null;
|
|
3982
|
+
private _ro;
|
|
3978
3983
|
ngOnInit(): void;
|
|
3979
3984
|
ngAfterViewInit(): void;
|
|
3980
3985
|
ngOnDestroy(): void;
|
|
3986
|
+
_resize(): void;
|
|
3987
|
+
_handleResize(): void;
|
|
3981
3988
|
hideAllPageContent(): void;
|
|
3982
3989
|
removeLastHidePage(): void;
|
|
3983
3990
|
ShowFormPanelControl: (formpanelCtrlr: any) => void;
|