@indice/ng-components 0.2.29 → 0.2.33

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.
@@ -4,6 +4,7 @@ export declare class DropDownMenuComponent implements OnInit, OnChanges {
4
4
  options: MenuOption[];
5
5
  selectedValue: any | null;
6
6
  multiple: boolean;
7
+ placeholder: string;
7
8
  private selectedOption$;
8
9
  get selectedOption(): MenuOption | null;
9
10
  set selectedOption(option: MenuOption | null);
@@ -1,11 +1,12 @@
1
1
  import { Router } from '@angular/router';
2
- import { OnInit, OnDestroy } from '@angular/core';
2
+ import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
3
3
  export declare class SidePaneComponent implements OnInit, OnDestroy {
4
4
  private router;
5
5
  private document;
6
6
  showPane: boolean;
7
7
  sizeContainerStyle: string;
8
8
  overlayStyle: string;
9
+ onComplete: EventEmitter<boolean>;
9
10
  constructor(router: Router, document: any);
10
11
  ngOnDestroy(): void;
11
12
  ngOnInit(): void;
@@ -12,6 +12,7 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
12
12
  links: any;
13
13
  sectionLinksPath: string;
14
14
  profileMenuVisible: boolean;
15
+ showUserNameOnHeader: boolean;
15
16
  border: boolean;
16
17
  sectionLinks: NavLink[];
17
18
  mobileMenuExpanded: boolean;
@@ -11,10 +11,8 @@ export declare class FormLayoutComponent implements OnInit {
11
11
  onAction: EventEmitter<ViewAction>;
12
12
  onSearch: EventEmitter<string>;
13
13
  onComplete: EventEmitter<boolean>;
14
- showRightPaneSM: boolean;
15
14
  constructor(router$: Router);
16
15
  ngOnInit(): void;
17
- onSidePaneActivated($event: any): void;
18
16
  onSidePaneDeactivated($event: any): void;
19
17
  emitActionClick(action: ViewAction): void;
20
18
  searchActionClick(action: ViewAction, text: string): void;
package/lib/types.d.ts CHANGED
@@ -71,6 +71,7 @@ export interface IShellConfig {
71
71
  appLogo: string;
72
72
  appLogoAlt: string;
73
73
  showHeader: boolean;
74
+ showUserNameOnHeader: boolean;
74
75
  customHeaderComponent?: any;
75
76
  showFooter: boolean;
76
77
  customFooterComponent?: any;
@@ -80,6 +81,7 @@ export declare class DefaultShellConfig implements IShellConfig {
80
81
  appLogo: string;
81
82
  appLogoAlt: string;
82
83
  showHeader: boolean;
84
+ showUserNameOnHeader: boolean;
83
85
  showFooter: boolean;
84
86
  fluid: boolean;
85
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indice/ng-components",
3
- "version": "0.2.29",
3
+ "version": "0.2.33",
4
4
  "description": "Indice common components for Angular v12",
5
5
  "repository": {
6
6
  "type": "git",