@porscheinformatik/material-addons 10.3.0 → 10.3.3

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.
@@ -3,4 +3,5 @@ export interface ColumnHeader {
3
3
  isSortable?: boolean;
4
4
  dataPropertyName: string;
5
5
  isRightAligned?: boolean;
6
+ isSticky?: boolean;
6
7
  }
@@ -17,4 +17,7 @@ export declare class ToolbarComponent {
17
17
  isAbsoluteLink(): boolean;
18
18
  isAction(): boolean;
19
19
  getBackAction(): BackAction;
20
+ getToolbarActionsAlwaysAsMenu(): boolean;
21
+ getToolbarActionsMenuTitle(): string;
22
+ showBadgeForMenu(): boolean;
20
23
  }
@@ -9,11 +9,11 @@ export declare class ToolbarService implements OnDestroy {
9
9
  backAction: BackAction;
10
10
  mainActions: MainAction[];
11
11
  toolbarActions: ToolbarAction[];
12
- addNewButtonRoute: string;
13
- liftFabButtonHigher: boolean;
12
+ toolbarActionsAlwaysAsMenu: boolean;
14
13
  dataTitle: string;
15
14
  routerSubscription: Subscription;
16
15
  private title;
16
+ private toolbarActionsMenuTitle;
17
17
  private currentUrl;
18
18
  constructor(router: Router, translate: TranslateService);
19
19
  ngOnDestroy(): void;
@@ -22,10 +22,14 @@ export declare class ToolbarService implements OnDestroy {
22
22
  set toolbarTitle(toolbarTitle: string);
23
23
  get toolbarTitle(): string;
24
24
  setDataTitle(dataTitle: string): void;
25
+ setToolbarActionsAlwaysAsMenu(toolbarActionsAlwaysAsMenu: boolean): void;
26
+ getToolbarActionsAlwaysAsMenu(): boolean;
25
27
  getDataTitle(): string;
26
28
  clearToolbarActions(): void;
27
29
  getMainActions(): MainAction[];
28
30
  getBackAction(): BackAction;
31
+ setToolbarActionsMenuTitle(toolbarActionsMenuTitle: string): void;
32
+ getToolbarActionsMenuTitle(): string;
29
33
  addMainAction(mainAction: MainAction): void;
30
34
  /**
31
35
  * Per default the goBackRoute is a routerLink. But if a href should be used (for absolute browser routing) then isAbsoluteUrl can be set to true.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porscheinformatik/material-addons",
3
- "version": "10.3.0",
3
+ "version": "10.3.3",
4
4
  "description": "Custom theme and components for Angular Material",
5
5
  "homepage": "https://github.com/porscheinformatik/material-addons",
6
6
  "repository": {