@indice/ng-components 0.3.9 → 0.3.10

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.
Files changed (44) hide show
  1. package/_styles.scss +131 -137
  2. package/esm2022/lib/controls/content-tile/content-tile.component.mjs +34 -6
  3. package/esm2022/lib/controls/date-picker/date-picker.component.mjs +3 -3
  4. package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +3 -3
  5. package/esm2022/lib/controls/list-view/list-view.component.mjs +3 -3
  6. package/esm2022/lib/controls/nav-links-list/nav-links-list.component.mjs +3 -3
  7. package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +3 -3
  8. package/esm2022/lib/controls/side-pane/side-pane.component.mjs +48 -29
  9. package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +3 -3
  10. package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +11 -7
  11. package/esm2022/lib/helpers/base-list.component.mjs +10 -5
  12. package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +11 -3
  13. package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +8 -6
  14. package/esm2022/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.mjs +3 -3
  15. package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
  16. package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +8 -4
  17. package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
  18. package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +6 -4
  19. package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +3 -3
  20. package/esm2022/lib/ng-components.module.mjs +2 -4
  21. package/esm2022/lib/pages/http-status/error/error.component.mjs +3 -3
  22. package/esm2022/lib/pages/http-status/page-not-found/page-not-found.component.mjs +3 -3
  23. package/esm2022/lib/pages/http-status/unauthorized/unauthorized.component.mjs +3 -3
  24. package/esm2022/lib/types.mjs +11 -1
  25. package/esm2022/public-api.mjs +1 -3
  26. package/fesm2022/indice-ng-components.mjs +131 -76
  27. package/fesm2022/indice-ng-components.mjs.map +1 -1
  28. package/lib/controls/content-tile/content-tile.component.d.ts +13 -2
  29. package/lib/controls/side-pane/side-pane.component.d.ts +9 -3
  30. package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +2 -1
  31. package/lib/helpers/base-list.component.d.ts +2 -1
  32. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +3 -1
  33. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -2
  34. package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
  35. package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +2 -1
  36. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
  37. package/lib/ng-components.module.d.ts +7 -9
  38. package/lib/types.d.ts +10 -1
  39. package/package.json +2 -2
  40. package/public-api.d.ts +0 -2
  41. package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs +0 -17
  42. package/esm2022/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +0 -19
  43. package/lib/controls/content-tile/content-tile-header/content-tile-header.component.d.ts +0 -7
  44. package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +0 -8
@@ -1,8 +1,19 @@
1
1
  import { EventEmitter, OnInit, QueryList } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
- import { ContentTileHeaderComponent } from './content-tile-header/content-tile-header.component';
4
- import { ContentTileItemComponent } from './content-tile-item/content-tile-item.component';
5
3
  import * as i0 from "@angular/core";
4
+ export declare class ContentTileHeaderComponent {
5
+ template: any | undefined;
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileHeaderComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileHeaderComponent, "lib-content-tile-header", never, {}, {}, ["template"], ["*"], false, never>;
9
+ }
10
+ export declare class ContentTileItemComponent {
11
+ title: string | undefined;
12
+ template: any | undefined;
13
+ constructor();
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": { "alias": "title"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
16
+ }
6
17
  export declare class ContentTileComponent implements OnInit {
7
18
  private router;
8
19
  title: string | undefined;
@@ -1,22 +1,28 @@
1
+ import { SidePaneSize } from './../../types';
1
2
  import { Router } from '@angular/router';
2
- import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
3
+ import { OnInit, OnDestroy, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
3
4
  import * as i0 from "@angular/core";
4
- export declare class SidePaneComponent implements OnInit, OnDestroy {
5
+ export declare class SidePaneComponent implements OnInit, OnDestroy, OnChanges {
5
6
  private router;
6
7
  private document;
7
8
  protected showPane: boolean;
8
9
  sizeContainerStyle: string;
9
10
  overlayStyle: string;
11
+ size: SidePaneSize | undefined;
10
12
  onComplete: EventEmitter<boolean>;
11
13
  onOpen: EventEmitter<any>;
12
14
  onClose: EventEmitter<any>;
13
15
  constructor(router: Router, document: any);
16
+ ngOnChanges(changes: SimpleChanges): void;
14
17
  ngOnDestroy(): void;
15
18
  ngOnInit(): void;
16
19
  onSidePaneActivated(component: any): void;
20
+ private initPane;
21
+ private overlayToClass;
22
+ private sizeToClass;
17
23
  onSidePaneDeactivated($event: any): void;
18
24
  show(): void;
19
25
  hide(): void;
20
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "pane-size"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
22
28
  }
@@ -9,6 +9,7 @@ export declare class UserProfileMenuComponent implements OnInit {
9
9
  protected router: Router;
10
10
  links: any;
11
11
  showUserName: boolean | undefined;
12
+ showPicture: boolean | undefined;
12
13
  protected userSub$: Subscription | null;
13
14
  protected statusSub$: Subscription | null;
14
15
  user: User | null;
@@ -20,5 +21,5 @@ export declare class UserProfileMenuComponent implements OnInit {
20
21
  private setCurrentUser;
21
22
  onClickOutside($event: any): void;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": { "alias": "show-user-name"; "required": false; }; }, {}, never, never, false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": { "alias": "show-user-name"; "required": false; }; "showPicture": { "alias": "show-picture"; "required": false; }; }, {}, never, never, false, never>;
24
25
  }
@@ -25,6 +25,7 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
25
25
  abstract newItemLink: string | null;
26
26
  private routeSub$;
27
27
  private loadSub$;
28
+ autoLoad: boolean;
28
29
  constructor(route$: ActivatedRoute, router$: Router);
29
30
  ngOnDestroy(): void;
30
31
  getViewActions(): Observable<ViewAction[]>;
@@ -50,5 +51,5 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
50
51
  advancedSearchChanged(filters: FilterClause[]): void;
51
52
  searchChanged(searchText: string | null): void;
52
53
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
53
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, { "autoLoad": { "alias": "auto-load"; "required": false; }; }, {}, never, never, false, never>;
54
55
  }
@@ -14,9 +14,11 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
14
14
  sectionLinksPath: string;
15
15
  profileMenuVisible: boolean;
16
16
  showUserNameOnHeader: boolean | undefined;
17
+ showPictureOnHeader: boolean | undefined;
17
18
  showAlerts: boolean | undefined;
18
19
  showLangs: boolean | undefined;
19
20
  border: boolean;
21
+ busy: boolean;
20
22
  sectionLinks: Observable<NavLink[]>;
21
23
  mobileMenuExpanded: boolean;
22
24
  userMenuExpanded: boolean;
@@ -34,5 +36,5 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
34
36
  signin(event: any | null | undefined): void;
35
37
  private setCurrentUser;
36
38
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; }, {}, never, never, false, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showPictureOnHeader": { "alias": "show-picture"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
38
40
  }
@@ -8,9 +8,10 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
8
8
  private _componentLoaderFactory;
9
9
  private _config;
10
10
  private _dynamicComponentHosts;
11
+ busy: boolean;
12
+ sidebarFooterTemplate?: TemplateRef<any>;
11
13
  private _routerSub$;
12
14
  constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
13
- sidebarFooterTemplate?: TemplateRef<any>;
14
15
  showRightPaneSM: boolean;
15
16
  activeConfig: IShellConfig;
16
17
  loaded: boolean;
@@ -22,5 +23,5 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
22
23
  ngOnDestroy(): void;
23
24
  private loadCustomComponent;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
26
27
  }
@@ -4,12 +4,13 @@ import { UserSettingsService } from '../../../services/user-settings.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ShellSidebarLayoutComponent implements OnInit {
6
6
  private _userSettings;
7
- constructor(_userSettings: UserSettingsService);
8
7
  config: IShellConfig | undefined;
9
8
  sidebarFooterTemplate?: TemplateRef<any>;
9
+ busy: boolean;
10
+ constructor(_userSettings: UserSettingsService);
10
11
  showMobileSidebar: boolean;
11
12
  ngOnInit(): void;
12
13
  toggleMobileSidebar(): void;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
15
16
  }
@@ -4,7 +4,8 @@ import * as i0 from "@angular/core";
4
4
  export declare class ShellStackedLayoutComponent implements OnInit {
5
5
  constructor();
6
6
  config: IShellConfig | undefined;
7
+ busy: boolean;
7
8
  ngOnInit(): void;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
10
11
  }
@@ -10,12 +10,14 @@ export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
10
10
  showRightPaneSM: boolean;
11
11
  title: string;
12
12
  primary: {
13
+ type?: string;
13
14
  text: string;
14
15
  link: string;
15
16
  icon?: string;
16
17
  exact?: boolean;
17
18
  }[] | null;
18
19
  secondary: {
20
+ type?: string;
19
21
  text: string;
20
22
  link: string;
21
23
  icon?: string;
@@ -55,17 +55,15 @@ import * as i52 from "./layouts/views/view-layout/view-layout.component";
55
55
  import * as i53 from "./controls/toggle-button/toggle-button.component";
56
56
  import * as i54 from "./controls/toggle-buttons-list/toggle-buttons-list.component";
57
57
  import * as i55 from "./controls/content-tile/content-tile.component";
58
- import * as i56 from "./controls/content-tile/content-tile-item/content-tile-item.component";
59
- import * as i57 from "./controls/content-tile/content-tile-header/content-tile-header.component";
60
- import * as i58 from "./controls/stats-grid/stats-grid.component";
61
- import * as i59 from "./controls/progress-bar/progress-bar.component";
62
- import * as i60 from "@angular/common";
63
- import * as i61 from "@angular/router";
64
- import * as i62 from "@indice/ng-auth";
65
- import * as i63 from "@angular/forms";
58
+ import * as i56 from "./controls/stats-grid/stats-grid.component";
59
+ import * as i57 from "./controls/progress-bar/progress-bar.component";
60
+ import * as i58 from "@angular/common";
61
+ import * as i59 from "@angular/router";
62
+ import * as i60 from "@indice/ng-auth";
63
+ import * as i61 from "@angular/forms";
66
64
  export declare class IndiceComponentsModule {
67
65
  static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
68
66
  static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
69
- 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.ShortNumberPipe, typeof i14.DynamicComponentHostDirective, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i18.LanguageSelectionComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i33.NavLinksListComponent, typeof i34.NotificationsIndicatorComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i40.ShellSidebarComponent, typeof i41.ShellSidebarHeaderComponent, typeof i42.ShellSidebarLayoutComponent, typeof i43.ShellStackedLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i51.UserProfileMenuComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent], [typeof i60.CommonModule, typeof i61.RouterModule, typeof i62.IndiceAuthModule, typeof i63.FormsModule], [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.ShortNumberPipe, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent]>;
67
+ 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.ShortNumberPipe, typeof i14.DynamicComponentHostDirective, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i18.LanguageSelectionComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i33.NavLinksListComponent, typeof i34.NotificationsIndicatorComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i40.ShellSidebarComponent, typeof i41.ShellSidebarHeaderComponent, typeof i42.ShellSidebarLayoutComponent, typeof i43.ShellStackedLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i51.UserProfileMenuComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i55.ContentTileItemComponent, typeof i55.ContentTileHeaderComponent, typeof i56.StatsGridComponent, typeof i57.ProgressBarComponent], [typeof i58.CommonModule, typeof i59.RouterModule, typeof i60.IndiceAuthModule, typeof i61.FormsModule], [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.ShortNumberPipe, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i55.ContentTileItemComponent, typeof i55.ContentTileHeaderComponent, typeof i56.StatsGridComponent, typeof i57.ProgressBarComponent]>;
70
68
  static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
71
69
  }
package/lib/types.d.ts CHANGED
@@ -46,6 +46,12 @@ export declare class NotificationNavLink extends NavLink {
46
46
  creationDate?: Date | undefined;
47
47
  constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
48
48
  }
49
+ export declare class NavLinkSeparator extends NavLink {
50
+ isRead: boolean;
51
+ creationDate?: Date | undefined;
52
+ constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
53
+ type: string;
54
+ }
49
55
  export declare class ViewAction {
50
56
  type: string;
51
57
  key: string | null;
@@ -113,6 +119,7 @@ export interface IShellConfig {
113
119
  showHeader: boolean;
114
120
  showLangsOnHeader?: boolean;
115
121
  showUserNameOnHeader?: boolean;
122
+ showPictureOnHeader?: boolean;
116
123
  }
117
124
  export declare enum ShellLayoutType {
118
125
  Stacked = "Stacked",
@@ -128,6 +135,7 @@ export declare class DefaultShellConfig implements IShellConfig {
128
135
  showFooter: boolean;
129
136
  showHeader: boolean;
130
137
  showUserNameOnHeader: boolean;
138
+ showPictureOnHeader: boolean;
131
139
  }
132
140
  export declare enum SCREEN_SIZE {
133
141
  XS = 0,
@@ -158,7 +166,8 @@ export declare enum SidePaneSize {
158
166
  Default = "",
159
167
  Small25 = "25%",
160
168
  Medium50 = "50%",
161
- Large75 = "75%"
169
+ Large75 = "75%",
170
+ Fullscreen = "100%"
162
171
  }
163
172
  export declare enum SidePaneOverlayType {
164
173
  Default = "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indice/ng-components",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "Indice common components for Angular v12",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "@angular/common": ">=17.0.2",
26
26
  "@angular/core": ">=17.0.2",
27
27
  "@angular/router": ">=17.0.2",
28
- "@indice/ng-auth": "^0.3.0",
28
+ "@indice/ng-auth": "^0.3.5",
29
29
  "oidc-client-ts": "^3.0.1",
30
30
  "rxjs": "^7.5.0",
31
31
  "tailwindcss": ">=2.1.2",
package/public-api.d.ts CHANGED
@@ -29,8 +29,6 @@ export * from './lib/controls/stepper/lib-step-info.directive';
29
29
  export * from './lib/controls/stepper/types/stepper-type';
30
30
  export * from './lib/controls/toggle-button/toggle-button.component';
31
31
  export * from './lib/controls/toggle-buttons-list/toggle-buttons-list.component';
32
- export * from './lib/controls/content-tile/content-tile-header/content-tile-header.component';
33
- export * from './lib/controls/content-tile/content-tile-item/content-tile-item.component';
34
32
  export * from './lib/controls/content-tile/content-tile.component';
35
33
  export * from './lib/controls/stats-grid/stats-grid.component';
36
34
  export * from './lib/controls/progress-bar/progress-bar.component';
@@ -1,17 +0,0 @@
1
- import { Component, ContentChild, TemplateRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class ContentTileHeaderComponent {
4
- constructor() {
5
- this.template = undefined;
6
- }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileHeaderComponent, selector: "lib-content-tile-header", queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileHeaderComponent, decorators: [{
11
- type: Component,
12
- args: [{ selector: 'lib-content-tile-header', template: '<ng-content></ng-content>' }]
13
- }], ctorParameters: () => [], propDecorators: { template: [{
14
- type: ContentChild,
15
- args: [TemplateRef]
16
- }] } });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC10aWxlLWhlYWRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZy1jb21wb25lbnRzL3NyYy9saWIvY29udHJvbHMvY29udGVudC10aWxlL2NvbnRlbnQtdGlsZS1oZWFkZXIvY29udGVudC10aWxlLWhlYWRlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUdyRSxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDO1FBRDJCLGFBQVEsR0FBb0IsU0FBUyxDQUFDO0lBQ2pELENBQUM7OEdBRk4sMEJBQTBCO2tHQUExQiwwQkFBMEIscUdBQ3ZCLFdBQVcsZ0RBRmdDLDJCQUEyQjs7MkZBQ3pFLDBCQUEwQjtrQkFEdEMsU0FBUzttQkFBQyxFQUFDLFFBQVEsRUFBRSx5QkFBeUIsRUFBRSxRQUFRLEVBQUUsMkJBQTJCLEVBQUM7d0RBRTFELFFBQVE7c0JBQWxDLFlBQVk7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7c2VsZWN0b3I6ICdsaWItY29udGVudC10aWxlLWhlYWRlcicsIHRlbXBsYXRlOiAnPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50Pid9KVxyXG5leHBvcnQgY2xhc3MgQ29udGVudFRpbGVIZWFkZXJDb21wb25lbnQge1xyXG4gIEBDb250ZW50Q2hpbGQoVGVtcGxhdGVSZWYpIHRlbXBsYXRlOiBhbnkgfCB1bmRlZmluZWQgPSB1bmRlZmluZWQ7XHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxufVxyXG4iXX0=
@@ -1,19 +0,0 @@
1
- import { Component, ContentChild, Input, TemplateRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class ContentTileItemComponent {
4
- constructor() {
5
- this.template = undefined;
6
- }
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.6", type: ContentTileItemComponent, selector: "lib-content-tile-item", inputs: { title: "title" }, queries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: '<ng-content></ng-content>', isInline: true }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.6", ngImport: i0, type: ContentTileItemComponent, decorators: [{
11
- type: Component,
12
- args: [{ selector: 'lib-content-tile-item', template: '<ng-content></ng-content>' }]
13
- }], ctorParameters: () => [], propDecorators: { title: [{
14
- type: Input
15
- }], template: [{
16
- type: ContentChild,
17
- args: [TemplateRef]
18
- }] } });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC10aWxlLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmctY29tcG9uZW50cy9zcmMvbGliL2NvbnRyb2xzL2NvbnRlbnQtdGlsZS9jb250ZW50LXRpbGUtaXRlbS9jb250ZW50LXRpbGUtaXRlbS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFJcEYsTUFBTSxPQUFPLHdCQUF3QjtJQUduQztRQUQyQixhQUFRLEdBQW9CLFNBQVMsQ0FBQztJQUNqRCxDQUFDOzhHQUhOLHdCQUF3QjtrR0FBeEIsd0JBQXdCLCtIQUVyQixXQUFXLGdEQUgrQiwyQkFBMkI7OzJGQUN4RSx3QkFBd0I7a0JBRHBDLFNBQVM7bUJBQUMsRUFBQyxRQUFRLEVBQUUsdUJBQXVCLEVBQUcsUUFBUSxFQUFFLDJCQUEyQixFQUFDO3dEQUUzRSxLQUFLO3NCQUFiLEtBQUs7Z0JBQ3FCLFFBQVE7c0JBQWxDLFlBQVk7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgQ29udGVudENoaWxkLCBJbnB1dCwgT25Jbml0LCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb250ZW50VGlsZUhlYWRlckNvbXBvbmVudCB9IGZyb20gJy4uL2NvbnRlbnQtdGlsZS1oZWFkZXIvY29udGVudC10aWxlLWhlYWRlci5jb21wb25lbnQnO1xyXG5cclxuQENvbXBvbmVudCh7c2VsZWN0b3I6ICdsaWItY29udGVudC10aWxlLWl0ZW0nLCAgdGVtcGxhdGU6ICc8bmctY29udGVudD48L25nLWNvbnRlbnQ+J30pXHJcbmV4cG9ydCBjbGFzcyBDb250ZW50VGlsZUl0ZW1Db21wb25lbnQge1xyXG4gIEBJbnB1dCgpIHRpdGxlOiBzdHJpbmcgfCB1bmRlZmluZWQ7XHJcbiAgQENvbnRlbnRDaGlsZChUZW1wbGF0ZVJlZikgdGVtcGxhdGU6IGFueSB8IHVuZGVmaW5lZCA9IHVuZGVmaW5lZDtcclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG59XHJcbiJdfQ==
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class ContentTileHeaderComponent {
3
- template: any | undefined;
4
- constructor();
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileHeaderComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileHeaderComponent, "lib-content-tile-header", never, {}, {}, ["template"], ["*"], false, never>;
7
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class ContentTileItemComponent {
3
- title: string | undefined;
4
- template: any | undefined;
5
- constructor();
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ContentTileItemComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ContentTileItemComponent, "lib-content-tile-item", never, { "title": { "alias": "title"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
8
- }