barsa-novin-ray-core 2.3.94 → 2.3.95
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
|
@@ -2250,10 +2250,12 @@ declare class ContainerService implements OnDestroy {
|
|
|
2250
2250
|
oldActiveSystem: any | null;
|
|
2251
2251
|
detachParent: boolean;
|
|
2252
2252
|
masterDetails: boolean;
|
|
2253
|
+
state: 'attach' | 'detach';
|
|
2253
2254
|
paramId$: Observable<ParamMap>;
|
|
2254
2255
|
routeEvents$: Observable<Event>;
|
|
2255
2256
|
isMobile: boolean;
|
|
2256
2257
|
FormPanelCtrlr: any;
|
|
2258
|
+
addModules: Subject<void>;
|
|
2257
2259
|
protected readonly _activatedRoute: ActivatedRoute;
|
|
2258
2260
|
protected readonly _router: Router;
|
|
2259
2261
|
protected readonly _portalService: PortalService;
|
|
@@ -2299,6 +2301,7 @@ declare abstract class ContainerComponent extends BaseComponent implements OnIni
|
|
|
2299
2301
|
protected _renderer2: Renderer2;
|
|
2300
2302
|
protected _dialogService: string | null;
|
|
2301
2303
|
protected _containerServiceParent: ContainerService | null;
|
|
2304
|
+
protected _containerService: ContainerService;
|
|
2302
2305
|
protected _formDialogComponent: Type<any> | null;
|
|
2303
2306
|
private _viewRef;
|
|
2304
2307
|
constructor();
|
|
@@ -2904,18 +2907,18 @@ interface UserNotificationSetting extends MetaobjectDataModel {
|
|
|
2904
2907
|
}
|
|
2905
2908
|
|
|
2906
2909
|
declare class ServiceWorkerNotificationService {
|
|
2907
|
-
hasRegistration: boolean;
|
|
2908
2910
|
private _logService;
|
|
2909
2911
|
private _swPush;
|
|
2910
2912
|
private _portalService;
|
|
2911
2913
|
private _notificationPermissionAllowed;
|
|
2914
|
+
private _hasRegistration;
|
|
2912
2915
|
constructor();
|
|
2913
2916
|
get isEnabled(): boolean;
|
|
2914
2917
|
closeNotifications(tags: string[]): Promise<void>;
|
|
2915
2918
|
showNotification(payload: ExNotificationPayload): Promise<void>;
|
|
2916
|
-
private
|
|
2917
|
-
private
|
|
2918
|
-
private
|
|
2919
|
+
private init;
|
|
2920
|
+
private requestPermission;
|
|
2921
|
+
private registerServiceWorker;
|
|
2919
2922
|
private getSw;
|
|
2920
2923
|
private _isSupported;
|
|
2921
2924
|
private _isActionsSupported;
|
|
@@ -3564,6 +3567,7 @@ declare class PageBaseComponent extends ContainerComponent implements AfterViewI
|
|
|
3564
3567
|
hasRoute: boolean;
|
|
3565
3568
|
fullscreen: boolean;
|
|
3566
3569
|
pageData: PageDataModel | null;
|
|
3570
|
+
componentsAddedToPage: boolean;
|
|
3567
3571
|
ngAfterViewInit(): void;
|
|
3568
3572
|
protected addModulesToDom(): void;
|
|
3569
3573
|
protected getData$(): Observable<PortalDataModel | null>;
|