@indice/ng-components 0.2.166 → 0.2.167-beta.11
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 +30 -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 +111 -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} +5 -5
- 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 +66 -0
- package/esm2020/lib/controls/tabs/lib-tab-label.directive.mjs +16 -0
- package/esm2020/lib/controls/tabs/lib-tab.component.mjs +64 -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 +277 -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 +67 -0
- package/fesm2015/indice-ng-components.mjs +4559 -0
- package/fesm2015/indice-ng-components.mjs.map +1 -0
- package/fesm2020/indice-ng-components.mjs +4473 -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 +7 -4
- 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 -1
- 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 +4 -4
- package/lib/controls/tabs/lib-tab-label.directive.d.ts +8 -0
- package/lib/controls/tabs/lib-tab.component.d.ts +8 -6
- 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 +55 -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 +4 -0
- package/bundles/indice-ng-components.umd.js +0 -5003
- 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 -82
- package/esm2015/lib/controls/pager/pager.component.js +0 -133
- package/esm2015/lib/controls/side-pane/side-pane.component.js +0 -76
- 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 -285
- 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 -4355
- package/fesm2015/indice-ng-components.js.map +0 -1
|
@@ -1,61 +1,63 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./
|
|
4
|
-
import * as i2 from "./
|
|
5
|
-
import * as i3 from "./
|
|
6
|
-
import * as i4 from "./
|
|
7
|
-
import * as i5 from "./controls/
|
|
8
|
-
import * as i6 from "./controls/
|
|
9
|
-
import * as i7 from "./
|
|
10
|
-
import * as i8 from "./controls/
|
|
11
|
-
import * as i9 from "./controls/
|
|
12
|
-
import * as i10 from "./controls/
|
|
13
|
-
import * as i11 from "./controls/
|
|
14
|
-
import * as i12 from "./
|
|
15
|
-
import * as i13 from "./
|
|
16
|
-
import * as i14 from "./
|
|
17
|
-
import * as i15 from "./
|
|
18
|
-
import * as i16 from "./controls/
|
|
19
|
-
import * as i17 from "./controls/
|
|
20
|
-
import * as i18 from "./controls/
|
|
21
|
-
import * as i19 from "./controls/
|
|
22
|
-
import * as i20 from "./
|
|
23
|
-
import * as i21 from "./
|
|
24
|
-
import * as i22 from "./
|
|
25
|
-
import * as i23 from "./
|
|
26
|
-
import * as i24 from "./
|
|
27
|
-
import * as i25 from "./
|
|
28
|
-
import * as i26 from "./
|
|
29
|
-
import * as i27 from "./
|
|
30
|
-
import * as i28 from "./
|
|
31
|
-
import * as i29 from "./
|
|
32
|
-
import * as i30 from "./pages/
|
|
33
|
-
import * as i31 from "./
|
|
34
|
-
import * as i32 from "./
|
|
35
|
-
import * as i33 from "./
|
|
36
|
-
import * as i34 from "./
|
|
37
|
-
import * as i35 from "./controls/
|
|
38
|
-
import * as i36 from "./
|
|
39
|
-
import * as i37 from "./
|
|
40
|
-
import * as i38 from "./
|
|
3
|
+
import * as i1 from "./pipes/address.pipe";
|
|
4
|
+
import * as i2 from "./controls/advanced-search/advanced-search.component";
|
|
5
|
+
import * as i3 from "./pages/auth/auth-callback/auth-callback.component";
|
|
6
|
+
import * as i4 from "./pages/auth/auth-renew/auth-renew.component";
|
|
7
|
+
import * as i5 from "./controls/avatar-initials/avatar-initials.component";
|
|
8
|
+
import * as i6 from "./controls/breadcrumb/breadcrumb.component";
|
|
9
|
+
import * as i7 from "./directives/click-outside.directive";
|
|
10
|
+
import * as i8 from "./controls/collapsible-panel/collapsible-panel.component";
|
|
11
|
+
import * as i9 from "./controls/combobox/combobox.component";
|
|
12
|
+
import * as i10 from "./controls/date-picker/date-picker.component";
|
|
13
|
+
import * as i11 from "./controls/drop-down-menu/drop-down-menu.component";
|
|
14
|
+
import * as i12 from "./pipes/duration-format.pipe";
|
|
15
|
+
import * as i13 from "./directives/dynamic-component-host.directive";
|
|
16
|
+
import * as i14 from "./pages/http-status/error/error.component";
|
|
17
|
+
import * as i15 from "./layouts/views/form-layout/form-layout.component";
|
|
18
|
+
import * as i16 from "./controls/kpi-tile/kpi-tile.component";
|
|
19
|
+
import * as i17 from "./controls/language-selection/language-selection.component";
|
|
20
|
+
import * as i18 from "./controls/stepper/lib-step.component";
|
|
21
|
+
import * as i19 from "./controls/stepper/lib-step-info.directive";
|
|
22
|
+
import * as i20 from "./controls/stepper/lib-step-label.directive";
|
|
23
|
+
import * as i21 from "./controls/stepper/lib-stepper.component";
|
|
24
|
+
import * as i22 from "./controls/tabs/lib-tab.component";
|
|
25
|
+
import * as i23 from "./controls/tabs/lib-tab-group.component";
|
|
26
|
+
import * as i24 from "./controls/tabs/lib-tab-label.directive";
|
|
27
|
+
import * as i25 from "./controls/list-view/list-column.component";
|
|
28
|
+
import * as i26 from "./controls/list-view/list-details-section.component";
|
|
29
|
+
import * as i27 from "./controls/list-view/list-tile.component";
|
|
30
|
+
import * as i28 from "./controls/list-view/list-view.component";
|
|
31
|
+
import * as i29 from "./controls/list-view/list-view-empty-state.component";
|
|
32
|
+
import * as i30 from "./pages/auth/logged-out/logged-out.component";
|
|
33
|
+
import * as i31 from "./layouts/views/model-view-layout/model-view-layout.component";
|
|
34
|
+
import * as i32 from "./controls/nav-links-list/nav-links-list.component";
|
|
35
|
+
import * as i33 from "./controls/notifications-indicator/notifications-indicator.component";
|
|
36
|
+
import * as i34 from "./pages/http-status/page-not-found/page-not-found.component";
|
|
37
|
+
import * as i35 from "./controls/pager/pager.component";
|
|
38
|
+
import * as i36 from "./layouts/shell/shell-footer/shell-footer.component";
|
|
39
|
+
import * as i37 from "./layouts/shell/shell-header/shell-header.component";
|
|
40
|
+
import * as i38 from "./layouts/shell/shell-layout/shell-layout.component";
|
|
41
41
|
import * as i39 from "./layouts/shell/shell-sidebar/shell-sidebar.component";
|
|
42
|
-
import * as i40 from "./
|
|
43
|
-
import * as i41 from "./
|
|
44
|
-
import * as i42 from "./
|
|
45
|
-
import * as i43 from "./controls/
|
|
46
|
-
import * as i44 from "./
|
|
47
|
-
import * as i45 from "./controls/
|
|
48
|
-
import * as i46 from "./
|
|
49
|
-
import * as i47 from "./
|
|
50
|
-
import * as i48 from "./
|
|
51
|
-
import * as i49 from "./
|
|
52
|
-
import * as i50 from "
|
|
53
|
-
import * as i51 from "
|
|
54
|
-
import * as i52 from "@
|
|
55
|
-
import * as i53 from "@angular/
|
|
42
|
+
import * as i40 from "./layouts/shell/shell-sidebar-header/shell-sidebar-header.component";
|
|
43
|
+
import * as i41 from "./layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component";
|
|
44
|
+
import * as i42 from "./layouts/shell/shell-stacked-layout/shell-stacked-layout.component";
|
|
45
|
+
import * as i43 from "./controls/side-pane/side-pane.component";
|
|
46
|
+
import * as i44 from "./layouts/views/side-view-layout/side-view-layout.component";
|
|
47
|
+
import * as i45 from "./controls/skeleton-loader/skeleton-loader.component";
|
|
48
|
+
import * as i46 from "./controls/toaster/toaster.component";
|
|
49
|
+
import * as i47 from "./controls/toaster/toaster-container.component";
|
|
50
|
+
import * as i48 from "./controls/toggle/toggle.component";
|
|
51
|
+
import * as i49 from "./pages/http-status/unauthorized/unauthorized.component";
|
|
52
|
+
import * as i50 from "./controls/user-profile-menu/user-profile-menu.component";
|
|
53
|
+
import * as i51 from "./layouts/views/view-layout/view-layout.component";
|
|
54
|
+
import * as i52 from "@angular/common";
|
|
55
|
+
import * as i53 from "@angular/router";
|
|
56
|
+
import * as i54 from "@indice/ng-auth";
|
|
57
|
+
import * as i55 from "@angular/forms";
|
|
56
58
|
export declare class IndiceComponentsModule {
|
|
57
59
|
static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
|
|
58
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
|
|
59
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.
|
|
61
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.DynamicComponentHostDirective, typeof i14.ErrorComponent, typeof i15.FormLayoutComponent, typeof i16.KpiTileComponent, typeof i17.LanguageSelectionComponent, typeof i18.LibStepComponent, typeof i19.LibStepInfoDirective, typeof i20.LibStepLabelDirective, typeof i21.LibStepperComponent, typeof i22.LibTabComponent, typeof i23.LibTabGroupComponent, typeof i24.LibTabLabelDirective, typeof i25.ListColumnComponent, typeof i26.ListDetailsSectionComponent, typeof i27.ListTileComponent, typeof i28.ListViewComponent, typeof i29.ListViewEmptyStateComponent, typeof i30.LoggedOutComponent, typeof i31.ModelViewLayoutComponent, typeof i32.NavLinksListComponent, typeof i33.NotificationsIndicatorComponent, typeof i34.PageNotFoundComponent, typeof i35.PagerComponent, typeof i36.ShellFooterComponent, typeof i37.ShellHeaderComponent, typeof i38.ShellLayoutComponent, typeof i39.ShellSidebarComponent, typeof i40.ShellSidebarHeaderComponent, typeof i41.ShellSidebarLayoutComponent, typeof i42.ShellStackedLayoutComponent, typeof i43.SidePaneComponent, typeof i44.SideViewLayoutComponent, typeof i45.SkeletonLoaderComponent, typeof i46.ToasterComponent, typeof i47.ToasterContainerComponent, typeof i48.ToggleComponent, typeof i49.UnauthorizedComponent, typeof i50.UserProfileMenuComponent, typeof i51.ViewLayoutComponent], [typeof i52.CommonModule, typeof i53.RouterModule, typeof i54.IndiceAuthModule, typeof i55.FormsModule], [typeof i1.AddressPipe, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i14.ErrorComponent, typeof i15.FormLayoutComponent, typeof i16.KpiTileComponent, typeof i18.LibStepComponent, typeof i19.LibStepInfoDirective, typeof i20.LibStepLabelDirective, typeof i21.LibStepperComponent, typeof i22.LibTabComponent, typeof i23.LibTabGroupComponent, typeof i24.LibTabLabelDirective, typeof i25.ListColumnComponent, typeof i26.ListDetailsSectionComponent, typeof i27.ListTileComponent, typeof i28.ListViewComponent, typeof i29.ListViewEmptyStateComponent, typeof i30.LoggedOutComponent, typeof i31.ModelViewLayoutComponent, typeof i34.PageNotFoundComponent, typeof i35.PagerComponent, typeof i36.ShellFooterComponent, typeof i37.ShellHeaderComponent, typeof i38.ShellLayoutComponent, typeof i43.SidePaneComponent, typeof i44.SideViewLayoutComponent, typeof i45.SkeletonLoaderComponent, typeof i46.ToasterComponent, typeof i47.ToasterContainerComponent, typeof i48.ToggleComponent, typeof i49.UnauthorizedComponent, typeof i51.ViewLayoutComponent]>;
|
|
60
62
|
static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
|
|
61
63
|
}
|
|
@@ -9,5 +9,5 @@ export declare class AuthCallbackComponent implements OnInit {
|
|
|
9
9
|
status: string;
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never, false>;
|
|
13
13
|
}
|
|
@@ -8,5 +8,5 @@ export declare class AuthRenewComponent implements OnInit {
|
|
|
8
8
|
constructor(authService: AuthService, router: Router);
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthRenewComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never, false>;
|
|
12
12
|
}
|
|
@@ -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.
|
|
3
|
+
"version": "0.2.167-beta.11",
|
|
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';
|
|
@@ -19,6 +21,7 @@ export * from './lib/controls/nav-links-list/nav-links-list.component';
|
|
|
19
21
|
export * from './lib/controls/combobox/combobox.component';
|
|
20
22
|
export * from './lib/controls/tabs/lib-tab.component';
|
|
21
23
|
export * from './lib/controls/tabs/lib-tab-group.component';
|
|
24
|
+
export * from './lib/controls/tabs/lib-tab-label.directive';
|
|
22
25
|
export * from './lib/controls/stepper/lib-stepper.component';
|
|
23
26
|
export * from './lib/controls/stepper/lib-step.component';
|
|
24
27
|
export * from './lib/controls/stepper/lib-step-label.directive';
|
|
@@ -50,4 +53,5 @@ export * from './lib/services/modal-service/modal-service';
|
|
|
50
53
|
export { ModalOptions, MODAL_CONFIG_DEFAULT_OVERRIDE, CloseInterceptorFn } from './lib/services/modal-service/modal-options.class';
|
|
51
54
|
export * from './lib/services/modal-service/modal.class';
|
|
52
55
|
export * from './lib/services/toaster.service';
|
|
56
|
+
export * from './lib/services/breadcrumb.service';
|
|
53
57
|
export * from './lib/ng-components.module';
|