barsa-novin-ray-core 2.0.111 → 2.0.113
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/redirect-home-guard.mjs +10 -10
- package/esm2022/lib/services/form-panel.service.mjs +13 -1
- package/esm2022/lib/services/portal.service.mjs +14 -2
- package/fesm2022/barsa-novin-ray-core.mjs +34 -10
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/services/form-panel.service.d.ts +4 -0
- package/lib/services/portal.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ export declare class FormPanelService extends BaseComponent {
|
|
|
44
44
|
private _workflowPanelUiSource;
|
|
45
45
|
private _moSource;
|
|
46
46
|
private _viewSource;
|
|
47
|
+
private _sidebarState$;
|
|
47
48
|
private _toolbarItemsSource;
|
|
48
49
|
private _titleSource;
|
|
49
50
|
private _maxContentWidthSource;
|
|
@@ -64,6 +65,7 @@ export declare class FormPanelService extends BaseComponent {
|
|
|
64
65
|
formContainerDom: HTMLElement;
|
|
65
66
|
ColonInLabel: boolean;
|
|
66
67
|
constructor();
|
|
68
|
+
get sidebarState$(): Observable<'open' | 'close'>;
|
|
67
69
|
get hidePin$(): Observable<boolean>;
|
|
68
70
|
get hideClose$(): Observable<boolean>;
|
|
69
71
|
get hideTitle$(): Observable<boolean>;
|
|
@@ -74,6 +76,7 @@ export declare class FormPanelService extends BaseComponent {
|
|
|
74
76
|
destroy(): void;
|
|
75
77
|
toolbarClick(btn: any): void;
|
|
76
78
|
wfChoice(btn: any): void;
|
|
79
|
+
changeSidebarState(state: 'open' | 'close'): void;
|
|
77
80
|
protected _initialize(context: any): void;
|
|
78
81
|
protected _prepareView(view: any): void;
|
|
79
82
|
protected _filterToolbarItems(items: Array<any>): Array<any>;
|
|
@@ -91,6 +94,7 @@ export declare class FormPanelService extends BaseComponent {
|
|
|
91
94
|
protected _wizardNextStep(): void;
|
|
92
95
|
protected _wizardPreviousStep(): void;
|
|
93
96
|
protected _doLayout(context: any): void;
|
|
97
|
+
protected _closeSideNavigator(): void;
|
|
94
98
|
protected _groupBRuleChanged(groupItem: LayoutSetting): void;
|
|
95
99
|
protected _prepareContext(context: any): void;
|
|
96
100
|
}
|
|
@@ -145,6 +145,7 @@ export declare class PortalService {
|
|
|
145
145
|
ShowFormPanelControl(formpanelCtrlr: any, router: Router, activatedRoute: ActivatedRoute, dialogComponent: Type<any>, isPage: boolean, vcr: ViewContainerRef, isReload?: boolean): void;
|
|
146
146
|
loadSystem(id?: number): Promise<PortalDataModel>;
|
|
147
147
|
private _removePushAction;
|
|
148
|
+
private _checkLocalStoragePushAction;
|
|
148
149
|
private _initAfterLoginFormData;
|
|
149
150
|
private _initVisibilityChange;
|
|
150
151
|
private _initStandalone;
|