@volo/ngx-lepton-x.core 4.3.6 → 5.0.0-rc.2
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/volo-ngx-lepton-x.core.mjs +274 -144
- package/fesm2022/volo-ngx-lepton-x.core.mjs.map +1 -1
- package/index.d.ts +77 -68
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { OnInit, OnDestroy, InjectionToken, Provider, EnvironmentProviders, ModuleWithProviders, PipeTransform, EventEmitter, ElementRef, Injector, Type, TemplateRef, AfterViewChecked } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import { Location } from '@angular/common';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
|
-
import { Observable, BehaviorSubject
|
|
6
|
+
import { Subscription, Observable, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import * as i1$1 from '@angular/router';
|
|
8
8
|
import { Router, NavigationEnd } from '@angular/router';
|
|
9
9
|
import { Environment, RoutesService as RoutesService$1, LocalizationService } from '@abp/ng.core';
|
|
@@ -12,11 +12,34 @@ import * as i2 from '@angular/forms';
|
|
|
12
12
|
declare function createDirectionProvider(listenDirection: boolean): i0.EnvironmentProviders;
|
|
13
13
|
declare function listenDirectionChange(): Promise<unknown>;
|
|
14
14
|
|
|
15
|
+
declare class ResponsiveDirective implements OnInit, OnDestroy {
|
|
16
|
+
private templateRef;
|
|
17
|
+
private viewContainer;
|
|
18
|
+
private service;
|
|
19
|
+
private parentCdr;
|
|
20
|
+
hasRendered: boolean;
|
|
21
|
+
sub: Subscription;
|
|
22
|
+
query: string;
|
|
23
|
+
render: (shouldRender: boolean) => void;
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveDirective, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResponsiveDirective, "[lpxResponsive]", never, { "query": { "alias": "lpxResponsive"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
declare class LpxResponsiveModule {
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LpxResponsiveModule, never>;
|
|
32
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LpxResponsiveModule, never, [typeof i1.CommonModule, typeof ResponsiveDirective], [typeof ResponsiveDirective]>;
|
|
33
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LpxResponsiveModule>;
|
|
34
|
+
}
|
|
35
|
+
|
|
15
36
|
interface ResponsiveBreakpoints {
|
|
16
37
|
[key: string]: number;
|
|
17
38
|
}
|
|
18
39
|
declare const RESPONSIVE_BREAKPOINTS: InjectionToken<ResponsiveBreakpoints>;
|
|
19
40
|
|
|
41
|
+
declare const LPX_RESPONSIVE_BREAKPOINTS_DEFAULTS: ResponsiveBreakpoints;
|
|
42
|
+
|
|
20
43
|
declare const enum ResponsiveTokens {
|
|
21
44
|
none = "none",
|
|
22
45
|
all = "all",
|
|
@@ -28,7 +51,8 @@ interface ResponsiveBreakpoint {
|
|
|
28
51
|
}
|
|
29
52
|
declare class ResponsiveService {
|
|
30
53
|
protected providedBreakpoints: ResponsiveBreakpoints;
|
|
31
|
-
protected window:
|
|
54
|
+
protected window: Window;
|
|
55
|
+
private platformId;
|
|
32
56
|
currentResolution$: Observable<{
|
|
33
57
|
height: number;
|
|
34
58
|
width: number;
|
|
@@ -42,16 +66,16 @@ declare class ResponsiveService {
|
|
|
42
66
|
width: number;
|
|
43
67
|
}[];
|
|
44
68
|
protected getCurrentSize: () => {
|
|
45
|
-
height:
|
|
46
|
-
width:
|
|
69
|
+
height: number;
|
|
70
|
+
width: number;
|
|
47
71
|
};
|
|
48
72
|
protected mapSizeToBreakpoint: ({ width }?: {
|
|
49
|
-
height:
|
|
50
|
-
width:
|
|
73
|
+
height: number;
|
|
74
|
+
width: number;
|
|
51
75
|
}) => ResponsiveBreakpoint;
|
|
52
76
|
currentSize$: BehaviorSubject<ResponsiveBreakpoint>;
|
|
53
77
|
shouldRenderWithCurrentSize: (query: string) => boolean;
|
|
54
|
-
constructor(
|
|
78
|
+
constructor();
|
|
55
79
|
protected setupListener(): void;
|
|
56
80
|
protected buildBreakpoints(breakpoints: ResponsiveBreakpoints): {
|
|
57
81
|
name: string;
|
|
@@ -62,30 +86,6 @@ declare class ResponsiveService {
|
|
|
62
86
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResponsiveService>;
|
|
63
87
|
}
|
|
64
88
|
|
|
65
|
-
declare class ResponsiveDirective implements OnInit, OnDestroy {
|
|
66
|
-
private templateRef;
|
|
67
|
-
private viewContainer;
|
|
68
|
-
private service;
|
|
69
|
-
private parentCdr;
|
|
70
|
-
hasRendered: boolean;
|
|
71
|
-
sub: Subscription;
|
|
72
|
-
query: string;
|
|
73
|
-
render: (shouldRender: boolean) => void;
|
|
74
|
-
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, service: ResponsiveService, parentCdr: ChangeDetectorRef);
|
|
75
|
-
ngOnInit(): void;
|
|
76
|
-
ngOnDestroy(): void;
|
|
77
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResponsiveDirective, [null, null, null, { optional: true; skipSelf: true; }]>;
|
|
78
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ResponsiveDirective, "[lpxResponsive]", never, { "query": { "alias": "lpxResponsive"; "required": false; }; }, {}, never, never, true, never>;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
declare class LpxResponsiveModule {
|
|
82
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LpxResponsiveModule, never>;
|
|
83
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LpxResponsiveModule, never, [typeof i1.CommonModule, typeof ResponsiveDirective], [typeof ResponsiveDirective]>;
|
|
84
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LpxResponsiveModule>;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
declare const LPX_RESPONSIVE_BREAKPOINTS_DEFAULTS: ResponsiveBreakpoints;
|
|
88
|
-
|
|
89
89
|
declare function createResponsiveProvider(responsiveSettings: ResponsiveBreakpoints | undefined): Provider;
|
|
90
90
|
|
|
91
91
|
interface LpxStyle {
|
|
@@ -102,7 +102,6 @@ declare class StyleService {
|
|
|
102
102
|
private document;
|
|
103
103
|
lastInjectedStyle: HTMLLinkElement | null;
|
|
104
104
|
initialized$: BehaviorSubject<boolean>;
|
|
105
|
-
constructor(initialStyles: LpxStyles, document: Document);
|
|
106
105
|
initStyles(direction: 'rtl' | 'ltr'): Promise<void>;
|
|
107
106
|
loadStyle(style: LpxStyle, direction: 'ltr' | 'rtl'): Promise<HTMLStyleElement | void>;
|
|
108
107
|
replaceStyle<T extends LpxStyle>(style: T, direction: 'rtl' | 'ltr'): Promise<HTMLStyleElement | void>;
|
|
@@ -135,7 +134,13 @@ interface LpxLogoFeature<KindT extends LpxLogoFeatureKind> {
|
|
|
135
134
|
ɵkind: KindT;
|
|
136
135
|
ɵproviders: (Provider | EnvironmentProviders)[];
|
|
137
136
|
}
|
|
137
|
+
/***
|
|
138
|
+
* @deprecated please use the same `withEnvironmentOptions()` **function** that is imported from `@abp/ng.theme.shared` instead.
|
|
139
|
+
*/
|
|
138
140
|
declare function withEnvironmentOptions(options?: Environment): LpxLogoFeature<LpxLogoFeatureKind.Options>;
|
|
141
|
+
/***
|
|
142
|
+
* @deprecated please use the same`provideLogo()` **function** that is imported from `@abp/ng.theme.shared` instead.
|
|
143
|
+
*/
|
|
139
144
|
declare function provideLogo(...features: LpxLogoFeature<LpxLogoFeatureKind>[]): EnvironmentProviders;
|
|
140
145
|
|
|
141
146
|
interface Avatar {
|
|
@@ -438,7 +443,6 @@ declare class LayoutService {
|
|
|
438
443
|
|
|
439
444
|
declare class LogoPanelDirective {
|
|
440
445
|
template: TemplateRef<any>;
|
|
441
|
-
constructor(template: TemplateRef<any>);
|
|
442
446
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogoPanelDirective, never>;
|
|
443
447
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LogoPanelDirective, "ng-template[lpx-logo-panel]", never, {}, {}, never, never, true, never>;
|
|
444
448
|
}
|
|
@@ -521,7 +525,6 @@ declare class LpxVisibleDirective implements OnDestroy, OnInit {
|
|
|
521
525
|
isVisible: boolean | undefined;
|
|
522
526
|
set lpxVisible(value: boolean | Promise<boolean> | Observable<boolean> | undefined | null);
|
|
523
527
|
private condition$;
|
|
524
|
-
constructor(viewContainerRef: ViewContainerRef, templateRef: TemplateRef<unknown>);
|
|
525
528
|
ngOnInit(): void;
|
|
526
529
|
ngOnDestroy(): void;
|
|
527
530
|
private subscribeToCondition;
|
|
@@ -566,9 +569,11 @@ interface FooterLink {
|
|
|
566
569
|
text: string;
|
|
567
570
|
}
|
|
568
571
|
interface FooterNav {
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
+
brandName: string;
|
|
573
|
+
brandUrl: string;
|
|
574
|
+
authorName: string;
|
|
575
|
+
authorUrl: string;
|
|
576
|
+
links?: FooterLink[];
|
|
572
577
|
}
|
|
573
578
|
declare class FooterLinksService {
|
|
574
579
|
private store;
|
|
@@ -581,6 +586,7 @@ declare class FooterLinksService {
|
|
|
581
586
|
declare class FooterComponent {
|
|
582
587
|
private service;
|
|
583
588
|
footerValues$: rxjs.Observable<FooterNav>;
|
|
589
|
+
currentYear: number;
|
|
584
590
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
585
591
|
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lpx-footer", never, {}, {}, never, never, true, never>;
|
|
586
592
|
}
|
|
@@ -641,7 +647,7 @@ declare class LanguageService {
|
|
|
641
647
|
id: string;
|
|
642
648
|
children: LpxNavbarItem[];
|
|
643
649
|
}>;
|
|
644
|
-
constructor(
|
|
650
|
+
constructor();
|
|
645
651
|
setLanguages(languages: LpxLanguage[]): void;
|
|
646
652
|
init(languages: LpxLanguage[]): void;
|
|
647
653
|
setSelectedLanguage(lang: LpxLanguage): void;
|
|
@@ -712,6 +718,15 @@ declare class BodyService {
|
|
|
712
718
|
static ɵprov: i0.ɵɵInjectableDeclaration<BodyService>;
|
|
713
719
|
}
|
|
714
720
|
|
|
721
|
+
declare class LpxThemeTranslateService {
|
|
722
|
+
private translateValues;
|
|
723
|
+
private translateService;
|
|
724
|
+
private _content;
|
|
725
|
+
translate$(key: string, ...args: any[]): Observable<string>;
|
|
726
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LpxThemeTranslateService, never>;
|
|
727
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LpxThemeTranslateService>;
|
|
728
|
+
}
|
|
729
|
+
|
|
715
730
|
interface LpxTranslate {
|
|
716
731
|
[key: string]: string;
|
|
717
732
|
}
|
|
@@ -721,16 +736,6 @@ interface TranslateService {
|
|
|
721
736
|
}
|
|
722
737
|
type LpxTranslateContentMapFn = (values: Array<LpxTranslate[]>) => LpxTranslate;
|
|
723
738
|
|
|
724
|
-
declare class LpxThemeTranslateService {
|
|
725
|
-
private translateValues;
|
|
726
|
-
private translateService;
|
|
727
|
-
private _content;
|
|
728
|
-
constructor(translateValues: Array<LpxTranslate[]>, translateService: TranslateService);
|
|
729
|
-
translate$(key: string, ...args: any[]): Observable<string>;
|
|
730
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LpxThemeTranslateService, [{ optional: true; }, null]>;
|
|
731
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LpxThemeTranslateService>;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
739
|
declare class DefaultTranslateService implements TranslateService {
|
|
735
740
|
get$(key: string, defaultValue?: string): Observable<string>;
|
|
736
741
|
get(key: string, defaultValue?: string): string;
|
|
@@ -751,7 +756,6 @@ interface AuthService {
|
|
|
751
756
|
|
|
752
757
|
declare class DefaultAuthService implements AuthService {
|
|
753
758
|
private userProfileService;
|
|
754
|
-
constructor(userProfileService: UserProfileService);
|
|
755
759
|
isUserExists$: rxjs.Observable<boolean>;
|
|
756
760
|
navigateToLogin(): void;
|
|
757
761
|
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultAuthService, never>;
|
|
@@ -763,8 +767,9 @@ declare const LPX_AUTH_SERVICE_TOKEN: InjectionToken<AuthService>;
|
|
|
763
767
|
declare const LPX_AUTH_SERVICE_PROVIDER: Provider;
|
|
764
768
|
|
|
765
769
|
declare class LpxLocalStorageService implements Storage {
|
|
766
|
-
|
|
770
|
+
private platformId;
|
|
767
771
|
[name: string]: any;
|
|
772
|
+
get isBrowser(): boolean;
|
|
768
773
|
get length(): number;
|
|
769
774
|
clear(): void;
|
|
770
775
|
getItem(key: string): string | null;
|
|
@@ -775,6 +780,24 @@ declare class LpxLocalStorageService implements Storage {
|
|
|
775
780
|
static ɵprov: i0.ɵɵInjectableDeclaration<LpxLocalStorageService>;
|
|
776
781
|
}
|
|
777
782
|
|
|
783
|
+
declare class LpxCookieStorageService implements Storage {
|
|
784
|
+
private platformId;
|
|
785
|
+
private document;
|
|
786
|
+
private request;
|
|
787
|
+
get length(): number;
|
|
788
|
+
clear(): void;
|
|
789
|
+
getItem(key: string): string | null;
|
|
790
|
+
key(index: number): string | null;
|
|
791
|
+
removeItem(key: string): void;
|
|
792
|
+
setItem(key: string, value: string): void;
|
|
793
|
+
setItemWithExpiry(key: string, value: string, seconds: number): void;
|
|
794
|
+
private keys;
|
|
795
|
+
private setCookie;
|
|
796
|
+
private getCookiesFromRequest;
|
|
797
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LpxCookieStorageService, never>;
|
|
798
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LpxCookieStorageService>;
|
|
799
|
+
}
|
|
800
|
+
|
|
778
801
|
interface LpxIconSettings {
|
|
779
802
|
iconSet?: ICON_MAP_TYPE;
|
|
780
803
|
}
|
|
@@ -834,8 +857,8 @@ declare class SafeHtmlPipe implements PipeTransform {
|
|
|
834
857
|
|
|
835
858
|
declare const WINDOW: InjectionToken<Window>;
|
|
836
859
|
|
|
837
|
-
declare const
|
|
838
|
-
declare const
|
|
860
|
+
declare const LPX_SSR_FLAG: i0.StateKey<boolean>;
|
|
861
|
+
declare const LPX_APP_STARTED_WITH_SSR: InjectionToken<boolean>;
|
|
839
862
|
|
|
840
863
|
declare function sortItems<T extends {
|
|
841
864
|
order?: number;
|
|
@@ -857,98 +880,84 @@ type ItemPropPredicate<T> = (prop: T) => boolean | Promise<boolean> | Observable
|
|
|
857
880
|
|
|
858
881
|
declare class BreadcrumbPanelDirective {
|
|
859
882
|
template: TemplateRef<any>;
|
|
860
|
-
constructor(template: TemplateRef<any>);
|
|
861
883
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbPanelDirective, never>;
|
|
862
884
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbPanelDirective, "ng-template[lpx-breadcrumb-panel]", never, {}, {}, never, never, true, never>;
|
|
863
885
|
}
|
|
864
886
|
|
|
865
887
|
declare class ContentPanelDirective {
|
|
866
888
|
template: TemplateRef<any>;
|
|
867
|
-
constructor(template: TemplateRef<any>);
|
|
868
889
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelDirective, never>;
|
|
869
890
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ContentPanelDirective, "ng-template[lpx-content]", never, {}, {}, never, never, true, never>;
|
|
870
891
|
}
|
|
871
892
|
|
|
872
893
|
declare class CurrentUserImagePanelDirective {
|
|
873
894
|
template: TemplateRef<any>;
|
|
874
|
-
constructor(template: TemplateRef<any>);
|
|
875
895
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserImagePanelDirective, never>;
|
|
876
896
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CurrentUserImagePanelDirective, "ng-template[lpx-current-user-image-panel]", never, {}, {}, never, never, true, never>;
|
|
877
897
|
}
|
|
878
898
|
|
|
879
899
|
declare class CurrentUserPanelDirective {
|
|
880
900
|
template: TemplateRef<any>;
|
|
881
|
-
constructor(template: TemplateRef<any>);
|
|
882
901
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserPanelDirective, never>;
|
|
883
902
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CurrentUserPanelDirective, "ng-template[lpx-current-user-panel]", never, {}, {}, never, never, true, never>;
|
|
884
903
|
}
|
|
885
904
|
|
|
886
905
|
declare class FooterPanelDirective {
|
|
887
906
|
template: TemplateRef<any>;
|
|
888
|
-
constructor(template: TemplateRef<any>);
|
|
889
907
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterPanelDirective, never>;
|
|
890
908
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FooterPanelDirective, "ng-template[lpx-footer-panel]", never, {}, {}, never, never, true, never>;
|
|
891
909
|
}
|
|
892
910
|
|
|
893
911
|
declare class LanguagePanelDirective {
|
|
894
912
|
template: TemplateRef<any>;
|
|
895
|
-
constructor(template: TemplateRef<any>);
|
|
896
913
|
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePanelDirective, never>;
|
|
897
914
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LanguagePanelDirective, "ng-template[lpx-language-panel]", never, {}, {}, never, never, true, never>;
|
|
898
915
|
}
|
|
899
916
|
|
|
900
917
|
declare class MobileNavbarPanelDirective {
|
|
901
918
|
template: TemplateRef<any>;
|
|
902
|
-
constructor(template: TemplateRef<any>);
|
|
903
919
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarPanelDirective, never>;
|
|
904
920
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarPanelDirective, "ng-template[lpx-mobile-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
905
921
|
}
|
|
906
922
|
|
|
907
923
|
declare class MobileNavbarSettingsPanelDirective {
|
|
908
924
|
template: TemplateRef<any>;
|
|
909
|
-
constructor(template: TemplateRef<any>);
|
|
910
925
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarSettingsPanelDirective, never>;
|
|
911
926
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarSettingsPanelDirective, "ng-template[lpx-mobile-navbar-settings-panel]", never, {}, {}, never, never, true, never>;
|
|
912
927
|
}
|
|
913
928
|
|
|
914
929
|
declare class MobileNavbarProfilePanelDirective {
|
|
915
930
|
template: TemplateRef<any>;
|
|
916
|
-
constructor(template: TemplateRef<any>);
|
|
917
931
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarProfilePanelDirective, never>;
|
|
918
932
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarProfilePanelDirective, "ng-template[lpx-mobile-navbar-profile-panel]", never, {}, {}, never, never, true, never>;
|
|
919
933
|
}
|
|
920
934
|
|
|
921
935
|
declare class NavbarPanelDirective {
|
|
922
936
|
template: TemplateRef<any>;
|
|
923
|
-
constructor(template: TemplateRef<any>);
|
|
924
937
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarPanelDirective, never>;
|
|
925
938
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavbarPanelDirective, "ng-template[lpx-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
926
939
|
}
|
|
927
940
|
|
|
928
941
|
declare class NavitemPanelDirective {
|
|
929
942
|
template: TemplateRef<any>;
|
|
930
|
-
constructor(template: TemplateRef<any>);
|
|
931
943
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavitemPanelDirective, never>;
|
|
932
944
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavitemPanelDirective, "ng-template[lpx-navitem-panel]", never, {}, {}, never, never, true, never>;
|
|
933
945
|
}
|
|
934
946
|
|
|
935
947
|
declare class SettingsPanelDirective {
|
|
936
948
|
template: TemplateRef<any>;
|
|
937
|
-
constructor(template: TemplateRef<any>);
|
|
938
949
|
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsPanelDirective, never>;
|
|
939
950
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SettingsPanelDirective, "ng-template[lpx-settings-panel]", never, {}, {}, never, never, true, never>;
|
|
940
951
|
}
|
|
941
952
|
|
|
942
953
|
declare class TopNavbarPanelDirective {
|
|
943
954
|
template: TemplateRef<any>;
|
|
944
|
-
constructor(template: TemplateRef<any>);
|
|
945
955
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopNavbarPanelDirective, never>;
|
|
946
956
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TopNavbarPanelDirective, "ng-template[lpx-top-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
947
957
|
}
|
|
948
958
|
|
|
949
959
|
declare class ToolbarPanelDirective {
|
|
950
960
|
template: TemplateRef<any>;
|
|
951
|
-
constructor(template: TemplateRef<any>);
|
|
952
961
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarPanelDirective, never>;
|
|
953
962
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarPanelDirective, "ng-template[lpx-toolbar-panel]", never, {}, {}, never, never, true, never>;
|
|
954
963
|
}
|
|
@@ -970,5 +979,5 @@ declare class ToolbarService {
|
|
|
970
979
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarService>;
|
|
971
980
|
}
|
|
972
981
|
|
|
973
|
-
export { AvatarComponent, BodyService, BrandLogoComponent, BreadcrumbComponent, BreadcrumbPanelDirective, BreadcrumbRouteListenerService, BreadcrumbService, CONTENT_AFTER_ROUTES, CONTENT_BEFORE_ROUTES, ClickOutsideDirective, ContentPanelDirective, CurrentUserImagePanelDirective, CurrentUserPanelDirective, DataStore, DefaultAuthService, DefaultTranslateService, FooterComponent, FooterLinksService, FooterPanelDirective, ICON_MAP, IconComponent, LEPTON_X_ICON_SET,
|
|
982
|
+
export { AvatarComponent, BodyService, BrandLogoComponent, BreadcrumbComponent, BreadcrumbPanelDirective, BreadcrumbRouteListenerService, BreadcrumbService, CONTENT_AFTER_ROUTES, CONTENT_BEFORE_ROUTES, ClickOutsideDirective, ContentPanelDirective, CurrentUserImagePanelDirective, CurrentUserPanelDirective, DataStore, DefaultAuthService, DefaultTranslateService, FooterComponent, FooterLinksService, FooterPanelDirective, ICON_MAP, IconComponent, LEPTON_X_ICON_SET, LPX_APP_STARTED_WITH_SSR, LPX_AUTH_SERVICE_PROVIDER, LPX_AUTH_SERVICE_TOKEN, LPX_INITIAL_STYLES, LPX_LANGUAGE, LPX_LAYOUT_STYLE_FINAL, LPX_MENU_ITEMS, LPX_RESPONSIVE_BREAKPOINTS_DEFAULTS, LPX_SSR_FLAG, LPX_STYLE_FINAL, LPX_STYLE_PROVIDERS, LPX_TRANSLATE_PROVIDERS, LPX_TRANSLATE_SERVICE_PROVIDER, LPX_TRANSLATE_SERVICE_TOKEN, LPX_TRANSLATE_TOKEN, LanguagePanelDirective, LanguageService, LanguageTranslateDefaults, LanguageTranslateKeys, LayoutService, Layouts, LogoPanelDirective, LpxAvatarModule, LpxBrandLogoModule, LpxBreadcrumbModule, LpxClickOutsideModule, LpxCookieStorageService, LpxCoreFeatureKind, LpxCoreModule, LpxFooterModule, LpxIconModule, LpxLanguageModule, LpxLocalStorageService, LpxLogoFeatureKind, LpxNavbarModule, LpxResponsiveModule, LpxThemeTranslateService, LpxTranslateModule, LpxVisibleDirective, MobileNavbarPanelDirective, MobileNavbarProfilePanelDirective, MobileNavbarSettingsPanelDirective, NavbarComponent, NavbarPanelDirective, NavbarRoutesComponent, NavbarRoutesDirective, NavbarService, NavitemPanelDirective, OTHERS_GROUP_KEY, PanelsModule, RESPONSIVE_BREAKPOINTS, ResponsiveDirective, ResponsiveService, ResponsiveTokens, RoutesService, SKIP_DEFAULTS, SafeHtmlPipe, SettingsPanelDirective, StyleService, SubNavbarComponent, ToObservableModule, ToObservablePipe, ToolbarPanelDirective, ToolbarService, TopNavbarPanelDirective, TranslatePipe, UserProfileService, WINDOW, createDirectionProvider, createGroupMap, createResponsiveProvider, createStyleFactory, createWindowProvider, exportedDeclarations, flatArrayDeepToObject, getItemsFromGroup, getStream$, isArray, isNullOrUndefined, listenDirectionChange, loadInitialStyles, provideLogo, provideLpxBreadcrumb, provideLpxCore, sortItems, styleLoadFactory, withEnvironmentOptions, withIcon, withLanguage, withLpxCoreOptions, withNavbar, withNavbarChild };
|
|
974
983
|
export type { ArrayTypeDeep, AuthService, Avatar, Badge, BreadcrumbItem, FooterLink, FooterNav, GroupedNavbarItems, HasStyleFactory, ICON_MAP_TYPE, ItemPropPredicate, LanguageTranslateValues, LayoutSettings, LpxCoreFeature, LpxCoreOptions, LpxIconSettings, LpxLanguage, LpxLanguageModuleOptions, LpxLanguageState, LpxLogoFeature, LpxNavbarItem, LpxNavbarSettings, LpxStyle, LpxStyleFactory, LpxStyles, LpxTranslate, LpxTranslateContentMapFn, NavBarPropPredicate$1 as NavBarPropPredicate, NavbarGroupItemsType, NavbarItemsType, RecursiveArray, ResponsiveBreakpoint, ResponsiveBreakpoints, Tenant, ToolbarItem, TranslateService, UserActionGroup, UserProfile, VariantSource };
|