barsa-novin-ray-core 2.3.93 → 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/fesm2022/barsa-novin-ray-core.mjs +176 -190
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/index.d.ts +18 -10
- package/package.json +1 -1
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;
|
|
@@ -2298,7 +2300,8 @@ declare abstract class ContainerComponent extends BaseComponent implements OnIni
|
|
|
2298
2300
|
protected _cdr: ChangeDetectorRef;
|
|
2299
2301
|
protected _renderer2: Renderer2;
|
|
2300
2302
|
protected _dialogService: string | null;
|
|
2301
|
-
protected
|
|
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>;
|
|
@@ -3805,11 +3809,14 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
3805
3809
|
protected _groupByService?: GroupByService | null | undefined;
|
|
3806
3810
|
protected _containerWidth: number;
|
|
3807
3811
|
protected _firstVisible: boolean;
|
|
3812
|
+
protected _onVisible$: Subject<void>;
|
|
3813
|
+
protected $resize: Subject<void>;
|
|
3814
|
+
protected _ro: ResizeObserver;
|
|
3808
3815
|
private _singleClicked;
|
|
3809
3816
|
get showViewButton(): boolean;
|
|
3810
3817
|
ngOnInit(): void;
|
|
3818
|
+
ngOnDestroy(): void;
|
|
3811
3819
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3812
|
-
onVisibilityChange(e: any, ..._args: any[]): void;
|
|
3813
3820
|
onDeselectAll(): void;
|
|
3814
3821
|
onRowCheck(e: {
|
|
3815
3822
|
mo: MetaobjectDataModel;
|
|
@@ -3856,6 +3863,9 @@ declare class ReportViewBaseComponent<T extends UiReportViewBaseSetting> extends
|
|
|
3856
3863
|
_trackBySelectedFn(index: any, record: any): void;
|
|
3857
3864
|
_trackByColumn(index: number, column: ReportViewColumn): string;
|
|
3858
3865
|
_trackByRow(index: number, row: MetaobjectDataModel): string;
|
|
3866
|
+
protected onVisible(): void;
|
|
3867
|
+
protected onResize(): void;
|
|
3868
|
+
protected _handleResize(): void;
|
|
3859
3869
|
protected onActionListClick(mo: MetaobjectDataModel, index: number, itemId: string): void;
|
|
3860
3870
|
protected _createActionButtons(): any[];
|
|
3861
3871
|
protected _containerWidthChanged(_: number): void;
|
|
@@ -3974,14 +3984,11 @@ declare class FormPageBaseComponent extends ContainerComponent implements OnInit
|
|
|
3974
3984
|
viewId: string;
|
|
3975
3985
|
};
|
|
3976
3986
|
formpanelCtrlrId: string;
|
|
3977
|
-
|
|
3978
|
-
protected _containerService: ContainerService | null;
|
|
3979
|
-
private _ro;
|
|
3987
|
+
protected _containerServiceParent: ContainerService | null;
|
|
3980
3988
|
ngOnInit(): void;
|
|
3981
3989
|
ngAfterViewInit(): void;
|
|
3982
3990
|
ngOnDestroy(): void;
|
|
3983
3991
|
_resize(): void;
|
|
3984
|
-
_handleResize(): void;
|
|
3985
3992
|
hideAllPageContent(): void;
|
|
3986
3993
|
removeLastHidePage(): void;
|
|
3987
3994
|
ShowFormPanelControl: (formpanelCtrlr: any) => void;
|
|
@@ -4045,6 +4052,7 @@ declare class FormPageComponent extends FormPageBaseComponent {
|
|
|
4045
4052
|
viewId: string;
|
|
4046
4053
|
formpanelCtrlrId: string;
|
|
4047
4054
|
ngOnInit(): void;
|
|
4055
|
+
ngAfterViewInit(): void;
|
|
4048
4056
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormPageComponent, never>;
|
|
4049
4057
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormPageComponent, "bnrc-form-page", never, { "formPanelCtrlr": { "alias": "formPanelCtrlr"; "required": false; }; }, {}, never, never, false, never>;
|
|
4050
4058
|
}
|