barsa-novin-ray-core 2.0.77 → 2.0.79
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/abstract-classes/barsa-api.mjs +4 -1
- package/esm2022/lib/barsa-novin-ray-core.module.mjs +43 -51
- package/esm2022/lib/services/barsa-storage.service.mjs +1 -4
- package/esm2022/lib/services/portal.service.mjs +34 -25
- package/fesm2022/barsa-novin-ray-core.mjs +78 -77
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/abstract-classes/barsa-api.d.ts +2 -0
- package/lib/services/portal.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10,10 +10,12 @@ export declare const LoginFormUi: any;
|
|
|
10
10
|
export declare const LoginFormData: any;
|
|
11
11
|
export declare const LoginForm: any;
|
|
12
12
|
export declare const Ext: any;
|
|
13
|
+
export declare const Offline: any;
|
|
13
14
|
export declare const GanttChartHelper: any;
|
|
14
15
|
export declare class BarsaApi {
|
|
15
16
|
static idGenerator: number;
|
|
16
17
|
static get GanttChartHelper(): any;
|
|
18
|
+
static get Offline(): any;
|
|
17
19
|
static get Ext(): any;
|
|
18
20
|
static get Common(): any;
|
|
19
21
|
static get Util(): any;
|
|
@@ -138,6 +138,7 @@ export declare class PortalService {
|
|
|
138
138
|
ExecuteNotificationAction(id: string, actionTitle: string): void;
|
|
139
139
|
loadUserPortalSetting(): void;
|
|
140
140
|
loadServerStartupData(): Promise<Record<string, any>>;
|
|
141
|
+
_loadServerStartupData(resolve: any, reject: any): void;
|
|
141
142
|
ShowFormPanelControl(formpanelCtrlr: any, router: Router, activatedRoute: ActivatedRoute, dialogComponent: Type<any>, isPage: boolean, vcr: ViewContainerRef, isReload?: boolean): void;
|
|
142
143
|
loadSystem(id?: number): Promise<PortalDataModel>;
|
|
143
144
|
private _removePushAction;
|