@volo/ngx-lepton-x.core 4.3.5 → 5.0.0-rc.1
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
|
}
|
|
@@ -520,7 +524,6 @@ declare class LpxVisibleDirective implements OnDestroy, OnInit {
|
|
|
520
524
|
isVisible: boolean | undefined;
|
|
521
525
|
set lpxVisible(value: boolean | Promise<boolean> | Observable<boolean> | undefined | null);
|
|
522
526
|
private condition$;
|
|
523
|
-
constructor(viewContainerRef: ViewContainerRef, templateRef: TemplateRef<unknown>);
|
|
524
527
|
ngOnInit(): void;
|
|
525
528
|
ngOnDestroy(): void;
|
|
526
529
|
private subscribeToCondition;
|
|
@@ -565,9 +568,11 @@ interface FooterLink {
|
|
|
565
568
|
text: string;
|
|
566
569
|
}
|
|
567
570
|
interface FooterNav {
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
+
brandName: string;
|
|
572
|
+
brandUrl: string;
|
|
573
|
+
authorName: string;
|
|
574
|
+
authorUrl: string;
|
|
575
|
+
links?: FooterLink[];
|
|
571
576
|
}
|
|
572
577
|
declare class FooterLinksService {
|
|
573
578
|
private store;
|
|
@@ -580,6 +585,7 @@ declare class FooterLinksService {
|
|
|
580
585
|
declare class FooterComponent {
|
|
581
586
|
private service;
|
|
582
587
|
footerValues$: rxjs.Observable<FooterNav>;
|
|
588
|
+
currentYear: number;
|
|
583
589
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
584
590
|
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lpx-footer", never, {}, {}, never, never, true, never>;
|
|
585
591
|
}
|
|
@@ -640,7 +646,7 @@ declare class LanguageService {
|
|
|
640
646
|
id: string;
|
|
641
647
|
children: LpxNavbarItem[];
|
|
642
648
|
}>;
|
|
643
|
-
constructor(
|
|
649
|
+
constructor();
|
|
644
650
|
setLanguages(languages: LpxLanguage[]): void;
|
|
645
651
|
init(languages: LpxLanguage[]): void;
|
|
646
652
|
setSelectedLanguage(lang: LpxLanguage): void;
|
|
@@ -711,6 +717,15 @@ declare class BodyService {
|
|
|
711
717
|
static ɵprov: i0.ɵɵInjectableDeclaration<BodyService>;
|
|
712
718
|
}
|
|
713
719
|
|
|
720
|
+
declare class LpxThemeTranslateService {
|
|
721
|
+
private translateValues;
|
|
722
|
+
private translateService;
|
|
723
|
+
private _content;
|
|
724
|
+
translate$(key: string, ...args: any[]): Observable<string>;
|
|
725
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LpxThemeTranslateService, never>;
|
|
726
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LpxThemeTranslateService>;
|
|
727
|
+
}
|
|
728
|
+
|
|
714
729
|
interface LpxTranslate {
|
|
715
730
|
[key: string]: string;
|
|
716
731
|
}
|
|
@@ -720,16 +735,6 @@ interface TranslateService {
|
|
|
720
735
|
}
|
|
721
736
|
type LpxTranslateContentMapFn = (values: Array<LpxTranslate[]>) => LpxTranslate;
|
|
722
737
|
|
|
723
|
-
declare class LpxThemeTranslateService {
|
|
724
|
-
private translateValues;
|
|
725
|
-
private translateService;
|
|
726
|
-
private _content;
|
|
727
|
-
constructor(translateValues: Array<LpxTranslate[]>, translateService: TranslateService);
|
|
728
|
-
translate$(key: string, ...args: any[]): Observable<string>;
|
|
729
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LpxThemeTranslateService, [{ optional: true; }, null]>;
|
|
730
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LpxThemeTranslateService>;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
738
|
declare class DefaultTranslateService implements TranslateService {
|
|
734
739
|
get$(key: string, defaultValue?: string): Observable<string>;
|
|
735
740
|
get(key: string, defaultValue?: string): string;
|
|
@@ -750,7 +755,6 @@ interface AuthService {
|
|
|
750
755
|
|
|
751
756
|
declare class DefaultAuthService implements AuthService {
|
|
752
757
|
private userProfileService;
|
|
753
|
-
constructor(userProfileService: UserProfileService);
|
|
754
758
|
isUserExists$: rxjs.Observable<boolean>;
|
|
755
759
|
navigateToLogin(): void;
|
|
756
760
|
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultAuthService, never>;
|
|
@@ -762,8 +766,9 @@ declare const LPX_AUTH_SERVICE_TOKEN: InjectionToken<AuthService>;
|
|
|
762
766
|
declare const LPX_AUTH_SERVICE_PROVIDER: Provider;
|
|
763
767
|
|
|
764
768
|
declare class LpxLocalStorageService implements Storage {
|
|
765
|
-
|
|
769
|
+
private platformId;
|
|
766
770
|
[name: string]: any;
|
|
771
|
+
get isBrowser(): boolean;
|
|
767
772
|
get length(): number;
|
|
768
773
|
clear(): void;
|
|
769
774
|
getItem(key: string): string | null;
|
|
@@ -774,6 +779,24 @@ declare class LpxLocalStorageService implements Storage {
|
|
|
774
779
|
static ɵprov: i0.ɵɵInjectableDeclaration<LpxLocalStorageService>;
|
|
775
780
|
}
|
|
776
781
|
|
|
782
|
+
declare class LpxCookieStorageService implements Storage {
|
|
783
|
+
private platformId;
|
|
784
|
+
private document;
|
|
785
|
+
private request;
|
|
786
|
+
get length(): number;
|
|
787
|
+
clear(): void;
|
|
788
|
+
getItem(key: string): string | null;
|
|
789
|
+
key(index: number): string | null;
|
|
790
|
+
removeItem(key: string): void;
|
|
791
|
+
setItem(key: string, value: string): void;
|
|
792
|
+
setItemWithExpiry(key: string, value: string, seconds: number): void;
|
|
793
|
+
private keys;
|
|
794
|
+
private setCookie;
|
|
795
|
+
private getCookiesFromRequest;
|
|
796
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LpxCookieStorageService, never>;
|
|
797
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LpxCookieStorageService>;
|
|
798
|
+
}
|
|
799
|
+
|
|
777
800
|
interface LpxIconSettings {
|
|
778
801
|
iconSet?: ICON_MAP_TYPE;
|
|
779
802
|
}
|
|
@@ -833,8 +856,8 @@ declare class SafeHtmlPipe implements PipeTransform {
|
|
|
833
856
|
|
|
834
857
|
declare const WINDOW: InjectionToken<Window>;
|
|
835
858
|
|
|
836
|
-
declare const
|
|
837
|
-
declare const
|
|
859
|
+
declare const LPX_SSR_FLAG: i0.StateKey<boolean>;
|
|
860
|
+
declare const LPX_APP_STARTED_WITH_SSR: InjectionToken<boolean>;
|
|
838
861
|
|
|
839
862
|
declare function sortItems<T extends {
|
|
840
863
|
order?: number;
|
|
@@ -856,98 +879,84 @@ type ItemPropPredicate<T> = (prop: T) => boolean | Promise<boolean> | Observable
|
|
|
856
879
|
|
|
857
880
|
declare class BreadcrumbPanelDirective {
|
|
858
881
|
template: TemplateRef<any>;
|
|
859
|
-
constructor(template: TemplateRef<any>);
|
|
860
882
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbPanelDirective, never>;
|
|
861
883
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BreadcrumbPanelDirective, "ng-template[lpx-breadcrumb-panel]", never, {}, {}, never, never, true, never>;
|
|
862
884
|
}
|
|
863
885
|
|
|
864
886
|
declare class ContentPanelDirective {
|
|
865
887
|
template: TemplateRef<any>;
|
|
866
|
-
constructor(template: TemplateRef<any>);
|
|
867
888
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelDirective, never>;
|
|
868
889
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ContentPanelDirective, "ng-template[lpx-content]", never, {}, {}, never, never, true, never>;
|
|
869
890
|
}
|
|
870
891
|
|
|
871
892
|
declare class CurrentUserImagePanelDirective {
|
|
872
893
|
template: TemplateRef<any>;
|
|
873
|
-
constructor(template: TemplateRef<any>);
|
|
874
894
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserImagePanelDirective, never>;
|
|
875
895
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CurrentUserImagePanelDirective, "ng-template[lpx-current-user-image-panel]", never, {}, {}, never, never, true, never>;
|
|
876
896
|
}
|
|
877
897
|
|
|
878
898
|
declare class CurrentUserPanelDirective {
|
|
879
899
|
template: TemplateRef<any>;
|
|
880
|
-
constructor(template: TemplateRef<any>);
|
|
881
900
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserPanelDirective, never>;
|
|
882
901
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CurrentUserPanelDirective, "ng-template[lpx-current-user-panel]", never, {}, {}, never, never, true, never>;
|
|
883
902
|
}
|
|
884
903
|
|
|
885
904
|
declare class FooterPanelDirective {
|
|
886
905
|
template: TemplateRef<any>;
|
|
887
|
-
constructor(template: TemplateRef<any>);
|
|
888
906
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterPanelDirective, never>;
|
|
889
907
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FooterPanelDirective, "ng-template[lpx-footer-panel]", never, {}, {}, never, never, true, never>;
|
|
890
908
|
}
|
|
891
909
|
|
|
892
910
|
declare class LanguagePanelDirective {
|
|
893
911
|
template: TemplateRef<any>;
|
|
894
|
-
constructor(template: TemplateRef<any>);
|
|
895
912
|
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagePanelDirective, never>;
|
|
896
913
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LanguagePanelDirective, "ng-template[lpx-language-panel]", never, {}, {}, never, never, true, never>;
|
|
897
914
|
}
|
|
898
915
|
|
|
899
916
|
declare class MobileNavbarPanelDirective {
|
|
900
917
|
template: TemplateRef<any>;
|
|
901
|
-
constructor(template: TemplateRef<any>);
|
|
902
918
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarPanelDirective, never>;
|
|
903
919
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarPanelDirective, "ng-template[lpx-mobile-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
904
920
|
}
|
|
905
921
|
|
|
906
922
|
declare class MobileNavbarSettingsPanelDirective {
|
|
907
923
|
template: TemplateRef<any>;
|
|
908
|
-
constructor(template: TemplateRef<any>);
|
|
909
924
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarSettingsPanelDirective, never>;
|
|
910
925
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarSettingsPanelDirective, "ng-template[lpx-mobile-navbar-settings-panel]", never, {}, {}, never, never, true, never>;
|
|
911
926
|
}
|
|
912
927
|
|
|
913
928
|
declare class MobileNavbarProfilePanelDirective {
|
|
914
929
|
template: TemplateRef<any>;
|
|
915
|
-
constructor(template: TemplateRef<any>);
|
|
916
930
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileNavbarProfilePanelDirective, never>;
|
|
917
931
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MobileNavbarProfilePanelDirective, "ng-template[lpx-mobile-navbar-profile-panel]", never, {}, {}, never, never, true, never>;
|
|
918
932
|
}
|
|
919
933
|
|
|
920
934
|
declare class NavbarPanelDirective {
|
|
921
935
|
template: TemplateRef<any>;
|
|
922
|
-
constructor(template: TemplateRef<any>);
|
|
923
936
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarPanelDirective, never>;
|
|
924
937
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavbarPanelDirective, "ng-template[lpx-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
925
938
|
}
|
|
926
939
|
|
|
927
940
|
declare class NavitemPanelDirective {
|
|
928
941
|
template: TemplateRef<any>;
|
|
929
|
-
constructor(template: TemplateRef<any>);
|
|
930
942
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavitemPanelDirective, never>;
|
|
931
943
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NavitemPanelDirective, "ng-template[lpx-navitem-panel]", never, {}, {}, never, never, true, never>;
|
|
932
944
|
}
|
|
933
945
|
|
|
934
946
|
declare class SettingsPanelDirective {
|
|
935
947
|
template: TemplateRef<any>;
|
|
936
|
-
constructor(template: TemplateRef<any>);
|
|
937
948
|
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsPanelDirective, never>;
|
|
938
949
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SettingsPanelDirective, "ng-template[lpx-settings-panel]", never, {}, {}, never, never, true, never>;
|
|
939
950
|
}
|
|
940
951
|
|
|
941
952
|
declare class TopNavbarPanelDirective {
|
|
942
953
|
template: TemplateRef<any>;
|
|
943
|
-
constructor(template: TemplateRef<any>);
|
|
944
954
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopNavbarPanelDirective, never>;
|
|
945
955
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TopNavbarPanelDirective, "ng-template[lpx-top-navbar-panel]", never, {}, {}, never, never, true, never>;
|
|
946
956
|
}
|
|
947
957
|
|
|
948
958
|
declare class ToolbarPanelDirective {
|
|
949
959
|
template: TemplateRef<any>;
|
|
950
|
-
constructor(template: TemplateRef<any>);
|
|
951
960
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarPanelDirective, never>;
|
|
952
961
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarPanelDirective, "ng-template[lpx-toolbar-panel]", never, {}, {}, never, never, true, never>;
|
|
953
962
|
}
|
|
@@ -969,5 +978,5 @@ declare class ToolbarService {
|
|
|
969
978
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarService>;
|
|
970
979
|
}
|
|
971
980
|
|
|
972
|
-
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,
|
|
981
|
+
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 };
|
|
973
982
|
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 };
|