@indice/ng-components 0.2.167-beta.3 → 0.2.167-beta.8
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/_styles.css +1 -1
- package/{esm2015/indice-ng-components.js → esm2020/indice-ng-components.mjs} +0 -0
- package/esm2020/lib/controls/advanced-search/advanced-search.component.mjs +112 -0
- package/esm2020/lib/controls/advanced-search/models.mjs +90 -0
- package/{esm2015/lib/controls/avatar-initials/avatar-initials.component.js → esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs} +5 -8
- package/esm2020/lib/controls/breadcrumb/breadcrumb-item.mjs +14 -0
- package/esm2020/lib/controls/breadcrumb/breadcrumb.component.mjs +26 -0
- package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
- package/esm2020/lib/controls/combobox/combobox.component.mjs +97 -0
- package/esm2020/lib/controls/date-picker/date-picker.component.mjs +292 -0
- package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
- package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +39 -0
- package/esm2020/lib/controls/language-selection/language-selection.component.mjs +31 -0
- package/{esm2015/lib/controls/list-view/list-column.component.js → esm2020/lib/controls/list-view/list-column.component.mjs} +4 -4
- package/{esm2015/lib/controls/list-view/list-details-section.component.js → esm2020/lib/controls/list-view/list-details-section.component.mjs} +4 -4
- package/{esm2015/lib/controls/list-view/list-tile.component.js → esm2020/lib/controls/list-view/list-tile.component.mjs} +4 -4
- package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
- package/esm2020/lib/controls/list-view/list-view.component.mjs +206 -0
- package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +46 -0
- package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +79 -0
- package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
- package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
- package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
- package/{esm2015/lib/controls/stepper/lib-step-info.directive.js → esm2020/lib/controls/stepper/lib-step-info.directive.mjs} +4 -4
- package/{esm2015/lib/controls/stepper/lib-step-label.directive.js → esm2020/lib/controls/stepper/lib-step-label.directive.mjs} +4 -4
- package/esm2020/lib/controls/stepper/lib-step.component.mjs +81 -0
- package/esm2020/lib/controls/stepper/lib-stepper.component.mjs +108 -0
- package/{esm2015/lib/controls/stepper/types/step-selected-event.js → esm2020/lib/controls/stepper/types/step-selected-event.mjs} +0 -0
- package/{esm2015/lib/controls/stepper/types/stepper-type.js → esm2020/lib/controls/stepper/types/stepper-type.mjs} +0 -0
- package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +60 -0
- package/esm2020/lib/controls/tabs/lib-tab.component.mjs +57 -0
- package/esm2020/lib/controls/toaster/toaster-container.component.mjs +28 -0
- package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
- package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
- package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +71 -0
- package/{esm2015/lib/directives/click-outside.directive.js → esm2020/lib/directives/click-outside.directive.mjs} +4 -4
- package/{esm2015/lib/directives/dynamic-component-host.directive.js → esm2020/lib/directives/dynamic-component-host.directive.mjs} +4 -4
- package/esm2020/lib/helpers/base-list.component.mjs +226 -0
- package/{esm2015/lib/icons.js → esm2020/lib/icons.mjs} +0 -0
- package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
- package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +130 -0
- package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +101 -0
- package/esm2020/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +47 -0
- package/esm2020/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.mjs +45 -0
- package/esm2020/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +26 -0
- package/esm2020/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +20 -0
- package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
- package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +49 -0
- package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
- package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
- package/esm2020/lib/ng-components.module.mjs +272 -0
- package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
- package/{esm2015/lib/pages/auth/auth-renew/auth-renew.component.js → esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs} +4 -4
- package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +28 -0
- package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
- package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
- package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
- package/{esm2015/lib/pipes/address.pipe.js → esm2020/lib/pipes/address.pipe.mjs} +4 -4
- package/{esm2015/lib/pipes/duration-format.pipe.js → esm2020/lib/pipes/duration-format.pipe.mjs} +4 -4
- package/esm2020/lib/services/breadcrumb.service.mjs +174 -0
- package/{esm2015/lib/services/component-loader/component-loader-options.class.js → esm2020/lib/services/component-loader/component-loader-options.class.mjs} +0 -0
- package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
- package/{esm2015/lib/services/component-loader/component-loader.factory.js → esm2020/lib/services/component-loader/component-loader.factory.mjs} +4 -4
- package/{esm2015/lib/services/component-loader/content-ref.class.js → esm2020/lib/services/component-loader/content-ref.class.mjs} +0 -0
- package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
- package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
- package/{esm2015/lib/services/modal-service/modal-options.class.js → esm2020/lib/services/modal-service/modal-options.class.mjs} +4 -4
- package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
- package/{esm2015/lib/services/modal-service/modal-styles.class.js → esm2020/lib/services/modal-service/modal-styles.class.mjs} +0 -0
- package/{esm2015/lib/services/modal-service/modal.class.js → esm2020/lib/services/modal-service/modal.class.mjs} +4 -4
- package/esm2020/lib/services/toaster.service.mjs +26 -0
- package/esm2020/lib/services/utilities.service.mjs +47 -0
- package/{esm2015/lib/tokens.js → esm2020/lib/tokens.mjs} +0 -0
- package/esm2020/lib/types.mjs +130 -0
- package/esm2020/public-api.mjs +66 -0
- package/fesm2015/indice-ng-components.mjs +4514 -0
- package/fesm2015/indice-ng-components.mjs.map +1 -0
- package/fesm2020/indice-ng-components.mjs +4429 -0
- package/fesm2020/indice-ng-components.mjs.map +1 -0
- package/{indice-ng-components.d.ts → index.d.ts} +0 -0
- package/lib/controls/advanced-search/advanced-search.component.d.ts +1 -1
- package/lib/controls/avatar-initials/avatar-initials.component.d.ts +1 -1
- package/lib/controls/breadcrumb/breadcrumb-item.d.ts +7 -0
- package/lib/controls/breadcrumb/breadcrumb.component.d.ts +12 -0
- package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +1 -1
- package/lib/controls/combobox/combobox.component.d.ts +1 -1
- package/lib/controls/date-picker/date-picker.component.d.ts +1 -1
- package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +1 -1
- package/lib/controls/kpi-tile/kpi-tile.component.d.ts +1 -1
- package/lib/controls/language-selection/language-selection.component.d.ts +1 -1
- package/lib/controls/list-view/list-column.component.d.ts +1 -1
- package/lib/controls/list-view/list-details-section.component.d.ts +1 -1
- package/lib/controls/list-view/list-tile.component.d.ts +1 -1
- package/lib/controls/list-view/list-view-empty-state.component.d.ts +1 -1
- package/lib/controls/list-view/list-view.component.d.ts +1 -1
- package/lib/controls/nav-links-list/nav-links-list.component.d.ts +1 -1
- package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +1 -1
- package/lib/controls/pager/pager.component.d.ts +1 -1
- package/lib/controls/side-pane/side-pane.component.d.ts +1 -2
- package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +1 -1
- package/lib/controls/stepper/lib-step-info.directive.d.ts +1 -1
- package/lib/controls/stepper/lib-step-label.directive.d.ts +1 -1
- package/lib/controls/stepper/lib-step.component.d.ts +1 -1
- package/lib/controls/stepper/lib-stepper.component.d.ts +1 -1
- package/lib/controls/tabs/lib-tab-group.component.d.ts +1 -1
- package/lib/controls/tabs/lib-tab.component.d.ts +1 -1
- package/lib/controls/toaster/toaster-container.component.d.ts +1 -1
- package/lib/controls/toaster/toaster.component.d.ts +1 -1
- package/lib/controls/toggle/toggle.component.d.ts +1 -1
- package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +1 -1
- package/lib/directives/click-outside.directive.d.ts +1 -1
- package/lib/directives/dynamic-component-host.directive.d.ts +1 -1
- package/lib/helpers/base-list.component.d.ts +1 -1
- package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +1 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +1 -1
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +1 -1
- package/lib/layouts/shell/shell-sidebar/shell-sidebar.component.d.ts +1 -1
- package/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.d.ts +1 -1
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +1 -1
- package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -2
- package/lib/layouts/views/form-layout/form-layout.component.d.ts +1 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +1 -1
- package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +1 -1
- package/lib/layouts/views/view-layout/view-layout.component.d.ts +1 -1
- package/lib/ng-components.module.d.ts +53 -53
- package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +1 -1
- package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +1 -1
- package/lib/pages/auth/logged-out/logged-out.component.d.ts +1 -1
- package/lib/pages/http-status/error/error.component.d.ts +1 -1
- package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +1 -1
- package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +1 -1
- package/lib/pipes/address.pipe.d.ts +1 -1
- package/lib/pipes/duration-format.pipe.d.ts +1 -1
- package/lib/services/breadcrumb.service.d.ts +29 -0
- package/lib/services/modal-service/modal-backdrop-component.d.ts +1 -1
- package/lib/services/modal-service/modal-container-component.d.ts +1 -1
- package/lib/services/toaster.service.d.ts +2 -2
- package/lib/services/utilities.service.d.ts +11 -0
- package/lib/types.d.ts +12 -10
- package/package.json +21 -8
- package/public-api.d.ts +3 -0
- package/bundles/indice-ng-components.umd.js +0 -5035
- package/bundles/indice-ng-components.umd.js.map +0 -1
- package/esm2015/lib/controls/advanced-search/advanced-search.component.js +0 -116
- package/esm2015/lib/controls/advanced-search/models.js +0 -91
- package/esm2015/lib/controls/collapsible-panel/collapsible-panel.component.js +0 -23
- package/esm2015/lib/controls/combobox/combobox.component.js +0 -100
- package/esm2015/lib/controls/date-picker/date-picker.component.js +0 -301
- package/esm2015/lib/controls/drop-down-menu/drop-down-menu.component.js +0 -72
- package/esm2015/lib/controls/kpi-tile/kpi-tile.component.js +0 -42
- package/esm2015/lib/controls/language-selection/language-selection.component.js +0 -35
- package/esm2015/lib/controls/list-view/list-view-empty-state.component.js +0 -32
- package/esm2015/lib/controls/list-view/list-view.component.js +0 -209
- package/esm2015/lib/controls/nav-links-list/nav-links-list.component.js +0 -51
- package/esm2015/lib/controls/notifications-indicator/notifications-indicator.component.js +0 -84
- package/esm2015/lib/controls/pager/pager.component.js +0 -133
- package/esm2015/lib/controls/side-pane/side-pane.component.js +0 -104
- package/esm2015/lib/controls/skeleton-loader/skeleton-loader.component.js +0 -29
- package/esm2015/lib/controls/stepper/lib-step.component.js +0 -82
- package/esm2015/lib/controls/stepper/lib-stepper.component.js +0 -115
- package/esm2015/lib/controls/tabs/lib-tab-group.component.js +0 -67
- package/esm2015/lib/controls/tabs/lib-tab.component.js +0 -58
- package/esm2015/lib/controls/toaster/toaster-container.component.js +0 -31
- package/esm2015/lib/controls/toaster/toaster.component.js +0 -34
- package/esm2015/lib/controls/toggle/toggle.component.js +0 -68
- package/esm2015/lib/controls/user-profile-menu/user-profile-menu.component.js +0 -75
- package/esm2015/lib/helpers/base-list.component.js +0 -227
- package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +0 -22
- package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +0 -135
- package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +0 -106
- package/esm2015/lib/layouts/shell/shell-sidebar/shell-sidebar.component.js +0 -50
- package/esm2015/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.js +0 -48
- package/esm2015/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.js +0 -28
- package/esm2015/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.js +0 -24
- package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +0 -85
- package/esm2015/lib/layouts/views/model-view-layout/model-view-layout.component.js +0 -53
- package/esm2015/lib/layouts/views/side-view-layout/side-view-layout.component.js +0 -101
- package/esm2015/lib/layouts/views/view-layout/view-layout.component.js +0 -110
- package/esm2015/lib/ng-components.module.js +0 -289
- package/esm2015/lib/pages/auth/auth-callback/auth-callback.component.js +0 -34
- package/esm2015/lib/pages/auth/logged-out/logged-out.component.js +0 -32
- package/esm2015/lib/pages/http-status/error/error.component.js +0 -20
- package/esm2015/lib/pages/http-status/page-not-found/page-not-found.component.js +0 -18
- package/esm2015/lib/pages/http-status/unauthorized/unauthorized.component.js +0 -17
- package/esm2015/lib/services/component-loader/component-loader.class.js +0 -192
- package/esm2015/lib/services/modal-service/modal-backdrop-component.js +0 -44
- package/esm2015/lib/services/modal-service/modal-container-component.js +0 -128
- package/esm2015/lib/services/modal-service/modal-service.js +0 -220
- package/esm2015/lib/services/toaster.service.js +0 -24
- package/esm2015/lib/types.js +0 -129
- package/esm2015/public-api.js +0 -63
- package/fesm2015/indice-ng-components.js +0 -4389
- package/fesm2015/indice-ng-components.js.map +0 -1
|
@@ -8,5 +8,5 @@ export declare class LoggedOutComponent implements OnInit {
|
|
|
8
8
|
finished: boolean;
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoggedOutComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never, false>;
|
|
12
12
|
}
|
|
@@ -4,5 +4,5 @@ export declare class ErrorComponent implements OnInit {
|
|
|
4
4
|
error: string;
|
|
5
5
|
ngOnInit(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never, false>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ export declare class PageNotFoundComponent implements OnInit {
|
|
|
4
4
|
constructor();
|
|
5
5
|
ngOnInit(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never, false>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ export declare class UnauthorizedComponent implements OnInit {
|
|
|
4
4
|
constructor();
|
|
5
5
|
ngOnInit(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<UnauthorizedComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never, false>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class AddressPipe implements PipeTransform {
|
|
5
5
|
transform(value: IAddress | undefined): string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddressPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<AddressPipe, "address">;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AddressPipe, "address", false>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ export declare class DurationFormatPipe implements PipeTransform {
|
|
|
4
4
|
transform(value: any, arg1: any, arg2: any): string;
|
|
5
5
|
private format;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DurationFormatPipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat">;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat", false>;
|
|
8
8
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { BreadcrumbItem } from '../controls/breadcrumb/breadcrumb-item';
|
|
4
|
+
import { UtilitiesService } from './utilities.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbService {
|
|
7
|
+
private _router;
|
|
8
|
+
private _utilities;
|
|
9
|
+
_shellConfig?: any;
|
|
10
|
+
private _defaultHome;
|
|
11
|
+
private _breadcrumb$;
|
|
12
|
+
constructor(_router: Router, _utilities: UtilitiesService, _shellConfig?: any);
|
|
13
|
+
breadcrumb: Observable<BreadcrumbItem[]>;
|
|
14
|
+
private _getDefaultHomeItem;
|
|
15
|
+
private _getRouteTitle;
|
|
16
|
+
private _buildBreadcrumb;
|
|
17
|
+
private _findRouteFromUrl;
|
|
18
|
+
private _findParentRoutes;
|
|
19
|
+
private _flattenRoutes;
|
|
20
|
+
private _getBreadcrumbRouteData;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, [null, null, { optional: true; }]>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
23
|
+
}
|
|
24
|
+
export declare class BreadcrumbRouteData {
|
|
25
|
+
_level: number;
|
|
26
|
+
isHome: boolean;
|
|
27
|
+
_fullPath?: string | undefined;
|
|
28
|
+
constructor(_level: number, isHome: boolean, _fullPath?: string | undefined);
|
|
29
|
+
}
|
|
@@ -16,5 +16,5 @@ export declare class ModalBackdropComponent implements OnInit {
|
|
|
16
16
|
hide(): void;
|
|
17
17
|
reflow(element: any): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalBackdropComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalBackdropComponent, "lib-modal-backdrop", never, {}, {}, never, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalBackdropComponent, "lib-modal-backdrop", never, {}, {}, never, never, false>;
|
|
20
20
|
}
|
|
@@ -29,5 +29,5 @@ export declare class ModalContainerComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
hide(result?: any): void;
|
|
30
30
|
private _hide;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalContainerComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModalContainerComponent, "lib-modal-container", never, {}, {}, never, ["*"]>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalContainerComponent, "lib-modal-container", never, {}, {}, never, ["*"], false>;
|
|
33
33
|
}
|
|
@@ -2,9 +2,9 @@ import { Observable } from 'rxjs';
|
|
|
2
2
|
import { Toast, ToastType } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ToasterService {
|
|
5
|
-
private
|
|
6
|
-
toast$: Observable<Toast>;
|
|
5
|
+
private _subject;
|
|
7
6
|
constructor();
|
|
7
|
+
toast$: Observable<Toast>;
|
|
8
8
|
show(type: ToastType, title?: string, body?: string, delay?: number): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToasterService, never>;
|
|
10
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToasterService>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IValidationProblemDetails } from '../types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UtilitiesService {
|
|
4
|
+
constructor();
|
|
5
|
+
problemDetails?: IValidationProblemDetails;
|
|
6
|
+
get validationErrors(): string[];
|
|
7
|
+
getValidationProblemDetails(problemDetails: IValidationProblemDetails): string[];
|
|
8
|
+
getPathFromUrl(url: string): string | undefined;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilitiesService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilitiesService>;
|
|
11
|
+
}
|
package/lib/types.d.ts
CHANGED
|
@@ -98,31 +98,33 @@ export interface IAddress {
|
|
|
98
98
|
country?: string | null;
|
|
99
99
|
}
|
|
100
100
|
export interface IShellConfig {
|
|
101
|
-
layout?: ShellLayoutType;
|
|
102
101
|
appLogo: string;
|
|
103
102
|
appLogoAlt: string;
|
|
104
|
-
|
|
105
|
-
showUserNameOnHeader?: boolean;
|
|
106
|
-
showAlertsOnHeader?: boolean;
|
|
107
|
-
customHeaderComponent?: any;
|
|
108
|
-
showFooter: boolean;
|
|
103
|
+
breadcrumb: boolean;
|
|
109
104
|
customFooterComponent?: any;
|
|
105
|
+
customHeaderComponent?: any;
|
|
110
106
|
fluid: boolean;
|
|
107
|
+
layout?: ShellLayoutType;
|
|
108
|
+
showAlertsOnHeader?: boolean;
|
|
109
|
+
showFooter: boolean;
|
|
110
|
+
showHeader: boolean;
|
|
111
111
|
showLangsOnHeader?: boolean;
|
|
112
|
+
showUserNameOnHeader?: boolean;
|
|
112
113
|
}
|
|
113
114
|
export declare enum ShellLayoutType {
|
|
114
115
|
Stacked = "Stacked",
|
|
115
116
|
Sidebar = "Sidebar"
|
|
116
117
|
}
|
|
117
118
|
export declare class DefaultShellConfig implements IShellConfig {
|
|
118
|
-
layout: ShellLayoutType;
|
|
119
119
|
appLogo: string;
|
|
120
120
|
appLogoAlt: string;
|
|
121
|
-
|
|
122
|
-
|
|
121
|
+
breadcrumb: boolean;
|
|
122
|
+
fluid: boolean;
|
|
123
|
+
layout: ShellLayoutType;
|
|
123
124
|
showAlertsOnHeader: boolean;
|
|
124
125
|
showFooter: boolean;
|
|
125
|
-
|
|
126
|
+
showHeader: boolean;
|
|
127
|
+
showUserNameOnHeader: boolean;
|
|
126
128
|
}
|
|
127
129
|
export declare enum SCREEN_SIZE {
|
|
128
130
|
XS = 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indice/ng-components",
|
|
3
|
-
"version": "0.2.167-beta.
|
|
3
|
+
"version": "0.2.167-beta.8",
|
|
4
4
|
"description": "Indice common components for Angular v12",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,14 +30,27 @@
|
|
|
30
30
|
"tailwindcss": ">=2.1.2",
|
|
31
31
|
"uuid": "8.3.2"
|
|
32
32
|
},
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"fesm2015": "fesm2015/indice-ng-components.
|
|
38
|
-
"typings": "
|
|
33
|
+
"module": "fesm2015/indice-ng-components.mjs",
|
|
34
|
+
"es2020": "fesm2020/indice-ng-components.mjs",
|
|
35
|
+
"esm2020": "esm2020/indice-ng-components.mjs",
|
|
36
|
+
"fesm2020": "fesm2020/indice-ng-components.mjs",
|
|
37
|
+
"fesm2015": "fesm2015/indice-ng-components.mjs",
|
|
38
|
+
"typings": "index.d.ts",
|
|
39
|
+
"exports": {
|
|
40
|
+
"./package.json": {
|
|
41
|
+
"default": "./package.json"
|
|
42
|
+
},
|
|
43
|
+
".": {
|
|
44
|
+
"types": "./index.d.ts",
|
|
45
|
+
"esm2020": "./esm2020/indice-ng-components.mjs",
|
|
46
|
+
"es2020": "./fesm2020/indice-ng-components.mjs",
|
|
47
|
+
"es2015": "./fesm2015/indice-ng-components.mjs",
|
|
48
|
+
"node": "./fesm2015/indice-ng-components.mjs",
|
|
49
|
+
"default": "./fesm2020/indice-ng-components.mjs"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
39
52
|
"sideEffects": false,
|
|
40
53
|
"dependencies": {
|
|
41
|
-
"tslib": "^2.
|
|
54
|
+
"tslib": "^2.3.0"
|
|
42
55
|
}
|
|
43
56
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from './lib/directives/click-outside.directive';
|
|
2
2
|
export * from './lib/controls/drop-down-menu/drop-down-menu.component';
|
|
3
3
|
export * from './lib/controls/pager/pager.component';
|
|
4
|
+
export * from './lib/controls/breadcrumb/breadcrumb.component';
|
|
5
|
+
export * from './lib/controls/breadcrumb/breadcrumb-item';
|
|
4
6
|
export * from './lib/controls/list-view/list-view.component';
|
|
5
7
|
export * from './lib/controls/list-view/list-column.component';
|
|
6
8
|
export * from './lib/controls/list-view/list-tile.component';
|
|
@@ -50,4 +52,5 @@ export * from './lib/services/modal-service/modal-service';
|
|
|
50
52
|
export { ModalOptions, MODAL_CONFIG_DEFAULT_OVERRIDE, CloseInterceptorFn } from './lib/services/modal-service/modal-options.class';
|
|
51
53
|
export * from './lib/services/modal-service/modal.class';
|
|
52
54
|
export * from './lib/services/toaster.service';
|
|
55
|
+
export * from './lib/services/breadcrumb.service';
|
|
53
56
|
export * from './lib/ng-components.module';
|