barsa-novin-ray-core 2.2.72 → 2.2.73
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/directives/splide-slider.directive.mjs +16 -6
- package/esm2022/lib/root-portal/root-portal.component.mjs +25 -7
- package/esm2022/lib/services/portal.service.mjs +5 -1
- package/fesm2022/barsa-novin-ray-core.mjs +43 -11
- package/fesm2022/barsa-novin-ray-core.mjs.map +1 -1
- package/lib/directives/splide-slider.directive.d.ts +1 -0
- package/lib/root-portal/root-portal.component.d.ts +2 -0
- package/lib/services/portal.service.d.ts +3 -0
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ export declare class SplideSliderDirective extends BaseDirective {
|
|
|
29
29
|
ngAfterViewInit(): void;
|
|
30
30
|
ngOnChanges(changes: SimpleChanges): void;
|
|
31
31
|
onRefresh(): void;
|
|
32
|
+
_refreshSplide(): void;
|
|
32
33
|
_init(): void;
|
|
33
34
|
get _getCommonOptions(): Record<string, any>;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplideSliderDirective, never>;
|
|
@@ -9,7 +9,9 @@ export declare class RootPortalComponent extends PageBaseComponent implements On
|
|
|
9
9
|
modules: any;
|
|
10
10
|
isRoot: boolean;
|
|
11
11
|
inLocalMode: boolean;
|
|
12
|
+
hasOverlay: boolean;
|
|
12
13
|
imageUrl: string;
|
|
14
|
+
backgroundColor: string;
|
|
13
15
|
ngOnInit(): void;
|
|
14
16
|
protected onSendOfflineDataToServer(): void;
|
|
15
17
|
protected onRemoveOfflineDataAndReturnToOnline(): void;
|
|
@@ -22,6 +22,8 @@ export declare class PortalService {
|
|
|
22
22
|
private _document;
|
|
23
23
|
offsetTop: number;
|
|
24
24
|
loginLoading: BehaviorSubject<boolean>;
|
|
25
|
+
imageUrl: string;
|
|
26
|
+
backgroundColor: string;
|
|
25
27
|
loaded: boolean;
|
|
26
28
|
formPanels: any;
|
|
27
29
|
cachedImages: any;
|
|
@@ -93,6 +95,7 @@ export declare class PortalService {
|
|
|
93
95
|
get navigationEnd$(): Observable<NavigationEnd | null>;
|
|
94
96
|
get navigationStart$(): Observable<NavigationStart | null>;
|
|
95
97
|
loadMo(id: string, typedefId: string): Observable<any>;
|
|
98
|
+
setSiteImageUrl(backgroundColor: string, imageUrl: string): void;
|
|
96
99
|
pushActionNext(pushAction: {
|
|
97
100
|
notificationTag: any;
|
|
98
101
|
moid: any;
|