@volo/ngx-lepton-x.core 1.0.0 → 2.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/esm2020/index.mjs +2 -1
- package/esm2020/lib/components/breadcrumb/breadcrumb-route-listener.service.mjs +5 -2
- package/esm2020/lib/components/footer/footer-links.service.mjs +21 -0
- package/esm2020/lib/components/footer/footer.component.mjs +20 -0
- package/esm2020/lib/components/footer/footer.module.mjs +25 -0
- package/esm2020/lib/components/footer/index.mjs +4 -0
- package/esm2020/lib/components/index.mjs +2 -1
- package/esm2020/lib/panels/breadcrumb-panel.directive.mjs +16 -0
- package/esm2020/lib/panels/footer-panel.directive.mjs +16 -0
- package/esm2020/lib/panels/index.mjs +8 -0
- package/esm2020/lib/panels/mobile-navbar-panel.directive.mjs +16 -0
- package/esm2020/lib/panels/navbar-panel.directive.mjs +16 -0
- package/esm2020/lib/panels/panels.module.mjs +41 -0
- package/esm2020/lib/panels/toolbar-panel.directive.mjs +16 -0
- package/esm2020/lib/panels/top-navbar-panel.directive.mjs +16 -0
- package/fesm2015/volo-ngx-lepton-x.core.mjs +173 -2
- package/fesm2015/volo-ngx-lepton-x.core.mjs.map +1 -1
- package/fesm2020/volo-ngx-lepton-x.core.mjs +173 -2
- package/fesm2020/volo-ngx-lepton-x.core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/components/footer/footer-links.service.d.ts +17 -0
- package/lib/components/footer/footer.component.d.ts +10 -0
- package/lib/components/footer/footer.module.d.ts +11 -0
- package/lib/components/footer/index.d.ts +3 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/panels/breadcrumb-panel.directive.d.ts +8 -0
- package/lib/panels/footer-panel.directive.d.ts +8 -0
- package/lib/panels/index.d.ts +7 -0
- package/lib/panels/mobile-navbar-panel.directive.d.ts +8 -0
- package/lib/panels/navbar-panel.directive.d.ts +8 -0
- package/lib/panels/panels.module.d.ts +13 -0
- package/lib/panels/toolbar-panel.directive.d.ts +8 -0
- package/lib/panels/top-navbar-panel.directive.d.ts +8 -0
- package/package.json +3 -2
|
@@ -925,7 +925,10 @@ class BreadcrumbRouteListenerService {
|
|
|
925
925
|
this.router.events.pipe(filter((event) => event instanceof NavigationEnd)),
|
|
926
926
|
this.navbarService.navbarItems$.pipe(filter((items) => !!items.length)),
|
|
927
927
|
]).subscribe(([event, items]) => {
|
|
928
|
-
|
|
928
|
+
let activeItem = this.navbarService.findByLink(event.url);
|
|
929
|
+
if (!activeItem.item) {
|
|
930
|
+
activeItem = this.navbarService.findByLink('/');
|
|
931
|
+
}
|
|
929
932
|
const breadCrumbItems = activeItem.location.reduce((acc, itemIndex) => {
|
|
930
933
|
const parent = acc[acc.length - 1]?.children || items;
|
|
931
934
|
const item = parent[itemIndex];
|
|
@@ -1341,9 +1344,177 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
1341
1344
|
}]
|
|
1342
1345
|
}] });
|
|
1343
1346
|
|
|
1347
|
+
class FooterLinksService {
|
|
1348
|
+
constructor() {
|
|
1349
|
+
this.store = new DataStore({});
|
|
1350
|
+
this.footerInfo$ = this.store.sliceState((state) => state);
|
|
1351
|
+
}
|
|
1352
|
+
setFooterInfo(links) {
|
|
1353
|
+
this.store.set(links);
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
FooterLinksService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterLinksService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1357
|
+
FooterLinksService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterLinksService, providedIn: 'root' });
|
|
1358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterLinksService, decorators: [{
|
|
1359
|
+
type: Injectable,
|
|
1360
|
+
args: [{
|
|
1361
|
+
providedIn: 'root',
|
|
1362
|
+
}]
|
|
1363
|
+
}] });
|
|
1364
|
+
|
|
1365
|
+
class FooterComponent {
|
|
1366
|
+
constructor(service) {
|
|
1367
|
+
this.service = service;
|
|
1368
|
+
this.footerValues$ = this.service.footerInfo$;
|
|
1369
|
+
this.currentYear = new Date().getFullYear();
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
FooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterComponent, deps: [{ token: FooterLinksService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1373
|
+
FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: FooterComponent, selector: "lpx-footer", ngImport: i0, template: "<ng-container *ngIf=\"footerValues$ | async as footerValues\">\r\n <div class=\"lpx-footbar-container\">\r\n <div class=\"lpx-footbar\">\r\n <div class=\"lpx-footbar-copyright\">\r\n <span>{{ currentYear }} \u00A9</span>\r\n <a\r\n *ngIf=\"footerValues.descUrl; else footerDesc\"\r\n [routerLink]=\"[footerValues.descUrl]\"\r\n >\r\n {{ footerValues.desc }}</a\r\n >\r\n <ng-template #footerDesc>\r\n <a> {{ footerValues.desc }}</a>\r\n </ng-template>\r\n </div>\r\n <div class=\"lpx-footbar-solo-links\">\r\n <ng-container *ngFor=\"let footerLink of footerValues.footerLinks\">\r\n <a *ngIf=\"footerLink\" [routerLink]=\"[footerLink.link]\">{{\r\n footerLink.text\r\n }}</a>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
1374
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterComponent, decorators: [{
|
|
1375
|
+
type: Component,
|
|
1376
|
+
args: [{ selector: 'lpx-footer', template: "<ng-container *ngIf=\"footerValues$ | async as footerValues\">\r\n <div class=\"lpx-footbar-container\">\r\n <div class=\"lpx-footbar\">\r\n <div class=\"lpx-footbar-copyright\">\r\n <span>{{ currentYear }} \u00A9</span>\r\n <a\r\n *ngIf=\"footerValues.descUrl; else footerDesc\"\r\n [routerLink]=\"[footerValues.descUrl]\"\r\n >\r\n {{ footerValues.desc }}</a\r\n >\r\n <ng-template #footerDesc>\r\n <a> {{ footerValues.desc }}</a>\r\n </ng-template>\r\n </div>\r\n <div class=\"lpx-footbar-solo-links\">\r\n <ng-container *ngFor=\"let footerLink of footerValues.footerLinks\">\r\n <a *ngIf=\"footerLink\" [routerLink]=\"[footerLink.link]\">{{\r\n footerLink.text\r\n }}</a>\r\n </ng-container>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n" }]
|
|
1377
|
+
}], ctorParameters: function () { return [{ type: FooterLinksService }]; } });
|
|
1378
|
+
|
|
1379
|
+
class LpxFooterModule {
|
|
1380
|
+
static forRoot() {
|
|
1381
|
+
return {
|
|
1382
|
+
ngModule: LpxFooterModule,
|
|
1383
|
+
providers: [],
|
|
1384
|
+
};
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1387
|
+
LpxFooterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: LpxFooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1388
|
+
LpxFooterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: LpxFooterModule, declarations: [FooterComponent], imports: [CommonModule, RouterModule], exports: [FooterComponent] });
|
|
1389
|
+
LpxFooterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: LpxFooterModule, imports: [CommonModule, RouterModule] });
|
|
1390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: LpxFooterModule, decorators: [{
|
|
1391
|
+
type: NgModule,
|
|
1392
|
+
args: [{
|
|
1393
|
+
declarations: [FooterComponent],
|
|
1394
|
+
exports: [FooterComponent],
|
|
1395
|
+
imports: [CommonModule, RouterModule],
|
|
1396
|
+
}]
|
|
1397
|
+
}] });
|
|
1398
|
+
|
|
1399
|
+
class NavbarPanelDirective {
|
|
1400
|
+
constructor(template) {
|
|
1401
|
+
this.template = template;
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
NavbarPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: NavbarPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1405
|
+
NavbarPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: NavbarPanelDirective, selector: "ng-template[lpx-navbar-panel]", ngImport: i0 });
|
|
1406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: NavbarPanelDirective, decorators: [{
|
|
1407
|
+
type: Directive,
|
|
1408
|
+
args: [{
|
|
1409
|
+
selector: 'ng-template[lpx-navbar-panel]',
|
|
1410
|
+
}]
|
|
1411
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1412
|
+
|
|
1413
|
+
class BreadcrumbPanelDirective {
|
|
1414
|
+
constructor(template) {
|
|
1415
|
+
this.template = template;
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
BreadcrumbPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: BreadcrumbPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1419
|
+
BreadcrumbPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: BreadcrumbPanelDirective, selector: "ng-template[lpx-breadcrumb-panel]", ngImport: i0 });
|
|
1420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: BreadcrumbPanelDirective, decorators: [{
|
|
1421
|
+
type: Directive,
|
|
1422
|
+
args: [{
|
|
1423
|
+
selector: 'ng-template[lpx-breadcrumb-panel]',
|
|
1424
|
+
}]
|
|
1425
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1426
|
+
|
|
1427
|
+
class FooterPanelDirective {
|
|
1428
|
+
constructor(template) {
|
|
1429
|
+
this.template = template;
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
FooterPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1433
|
+
FooterPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: FooterPanelDirective, selector: "ng-template[lpx-footer-panel]", ngImport: i0 });
|
|
1434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: FooterPanelDirective, decorators: [{
|
|
1435
|
+
type: Directive,
|
|
1436
|
+
args: [{
|
|
1437
|
+
selector: 'ng-template[lpx-footer-panel]',
|
|
1438
|
+
}]
|
|
1439
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1440
|
+
|
|
1441
|
+
class MobileNavbarPanelDirective {
|
|
1442
|
+
constructor(template) {
|
|
1443
|
+
this.template = template;
|
|
1444
|
+
}
|
|
1445
|
+
}
|
|
1446
|
+
MobileNavbarPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MobileNavbarPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1447
|
+
MobileNavbarPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: MobileNavbarPanelDirective, selector: "ng-template[lpx-mobile-navbar-panel]", ngImport: i0 });
|
|
1448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: MobileNavbarPanelDirective, decorators: [{
|
|
1449
|
+
type: Directive,
|
|
1450
|
+
args: [{
|
|
1451
|
+
selector: 'ng-template[lpx-mobile-navbar-panel]',
|
|
1452
|
+
}]
|
|
1453
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1454
|
+
|
|
1455
|
+
class ToolbarPanelDirective {
|
|
1456
|
+
constructor(template) {
|
|
1457
|
+
this.template = template;
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
ToolbarPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ToolbarPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1461
|
+
ToolbarPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: ToolbarPanelDirective, selector: "ng-template[lpx-toolbar-panel]", ngImport: i0 });
|
|
1462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ToolbarPanelDirective, decorators: [{
|
|
1463
|
+
type: Directive,
|
|
1464
|
+
args: [{
|
|
1465
|
+
selector: 'ng-template[lpx-toolbar-panel]',
|
|
1466
|
+
}]
|
|
1467
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1468
|
+
|
|
1469
|
+
class TopNavbarPanelDirective {
|
|
1470
|
+
constructor(template) {
|
|
1471
|
+
this.template = template;
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
TopNavbarPanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopNavbarPanelDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1475
|
+
TopNavbarPanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: TopNavbarPanelDirective, selector: "ng-template[lpx-top-navbar-panel]", ngImport: i0 });
|
|
1476
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopNavbarPanelDirective, decorators: [{
|
|
1477
|
+
type: Directive,
|
|
1478
|
+
args: [{
|
|
1479
|
+
selector: 'ng-template[lpx-top-navbar-panel]',
|
|
1480
|
+
}]
|
|
1481
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
1482
|
+
|
|
1483
|
+
const declarationsAndExports = [
|
|
1484
|
+
BreadcrumbPanelDirective,
|
|
1485
|
+
NavbarPanelDirective,
|
|
1486
|
+
FooterPanelDirective,
|
|
1487
|
+
MobileNavbarPanelDirective,
|
|
1488
|
+
ToolbarPanelDirective,
|
|
1489
|
+
TopNavbarPanelDirective,
|
|
1490
|
+
];
|
|
1491
|
+
class PanelsModule {
|
|
1492
|
+
}
|
|
1493
|
+
PanelsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PanelsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1494
|
+
PanelsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: PanelsModule, declarations: [BreadcrumbPanelDirective,
|
|
1495
|
+
NavbarPanelDirective,
|
|
1496
|
+
FooterPanelDirective,
|
|
1497
|
+
MobileNavbarPanelDirective,
|
|
1498
|
+
ToolbarPanelDirective,
|
|
1499
|
+
TopNavbarPanelDirective], imports: [CommonModule], exports: [BreadcrumbPanelDirective,
|
|
1500
|
+
NavbarPanelDirective,
|
|
1501
|
+
FooterPanelDirective,
|
|
1502
|
+
MobileNavbarPanelDirective,
|
|
1503
|
+
ToolbarPanelDirective,
|
|
1504
|
+
TopNavbarPanelDirective] });
|
|
1505
|
+
PanelsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PanelsModule, imports: [CommonModule] });
|
|
1506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: PanelsModule, decorators: [{
|
|
1507
|
+
type: NgModule,
|
|
1508
|
+
args: [{
|
|
1509
|
+
declarations: [...declarationsAndExports],
|
|
1510
|
+
imports: [CommonModule],
|
|
1511
|
+
exports: [...declarationsAndExports],
|
|
1512
|
+
}]
|
|
1513
|
+
}] });
|
|
1514
|
+
|
|
1344
1515
|
/**
|
|
1345
1516
|
* Generated bundle index. Do not edit.
|
|
1346
1517
|
*/
|
|
1347
1518
|
|
|
1348
|
-
export { AvatarComponent, BodyService, BrandLogoComponent, BreadcrumbComponent, BreadcrumbRouteListenerService, BreadcrumbService, CONTENT_AFTER_ROUTES, CONTENT_BEFORE_ROUTES, ClickOutsideDirective, DataStore, DefaultAuthService, DefaultTranslateService, ICON_MAP, IconComponent, LEPTON_X_ICON_SET, 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_STYLE_FINAL, LPX_STYLE_PROVIDERS, LPX_TRANSLATE_SERVICE_TOKEN, LPX_TRANSLATE_TOKEN, LanguageService, LanguageTranslateDefaults, LanguageTranslateKeys, LayoutService, LpxAvatarModule, LpxBrandLogoModule, LpxBreadcrumbModule, LpxClickOutsideModule, LpxCoreModule, LpxIconModule, LpxLanguageModule, LpxNavbarModule, LpxResponsiveModule, LpxThemeTranslateService, LpxTranslateModule, NavbarComponent, NavbarRoutesComponent, NavbarRoutesDirective, NavbarService, RESPONSIVE_BREAKPOINTS, ResponsiveDirective, ResponsiveService, StyleService, SubNavbarComponent, ToObservableModule, ToObservablePipe, TranslatePipe, UserProfileService, WINDOW, breadCrumbInit, createDirectionProvider, createResponsiveProvider, createStyleFactory, createWindowProvider, exportedDeclarations, flatArrayDeepToObject, getStream$, listenDirectionChange, loadInitialStyles, sortItems };
|
|
1519
|
+
export { AvatarComponent, BodyService, BrandLogoComponent, BreadcrumbComponent, BreadcrumbPanelDirective, BreadcrumbRouteListenerService, BreadcrumbService, CONTENT_AFTER_ROUTES, CONTENT_BEFORE_ROUTES, ClickOutsideDirective, DataStore, DefaultAuthService, DefaultTranslateService, FooterComponent, FooterLinksService, FooterPanelDirective, ICON_MAP, IconComponent, LEPTON_X_ICON_SET, 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_STYLE_FINAL, LPX_STYLE_PROVIDERS, LPX_TRANSLATE_SERVICE_TOKEN, LPX_TRANSLATE_TOKEN, LanguageService, LanguageTranslateDefaults, LanguageTranslateKeys, LayoutService, LpxAvatarModule, LpxBrandLogoModule, LpxBreadcrumbModule, LpxClickOutsideModule, LpxCoreModule, LpxFooterModule, LpxIconModule, LpxLanguageModule, LpxNavbarModule, LpxResponsiveModule, LpxThemeTranslateService, LpxTranslateModule, MobileNavbarPanelDirective, NavbarComponent, NavbarPanelDirective, NavbarRoutesComponent, NavbarRoutesDirective, NavbarService, PanelsModule, RESPONSIVE_BREAKPOINTS, ResponsiveDirective, ResponsiveService, StyleService, SubNavbarComponent, ToObservableModule, ToObservablePipe, ToolbarPanelDirective, TopNavbarPanelDirective, TranslatePipe, UserProfileService, WINDOW, breadCrumbInit, createDirectionProvider, createResponsiveProvider, createStyleFactory, createWindowProvider, exportedDeclarations, flatArrayDeepToObject, getStream$, listenDirectionChange, loadInitialStyles, sortItems };
|
|
1349
1520
|
//# sourceMappingURL=volo-ngx-lepton-x.core.mjs.map
|