@elderbyte/ngx-starter 19.1.17 → 19.1.19

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.
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  export type ElderToolbarContentSlot = 'main' | 'left' | 'left.actions' | 'center' | 'right' | 'right.actions' | 'right.menu';
8
8
  /**
9
9
  * This directive projects content identified by a placeholder id
10
- * into the toolbar at the corresponding place.
10
+ * into the elder-data-toolbar at the corresponding ElderToolbarContentSlot.
11
11
  */
12
12
  export declare class ElderToolbarContentDirective {
13
13
  templateRef: TemplateRef<any>;
@@ -8,6 +8,7 @@ export declare class ElderHeaderComponent implements OnInit {
8
8
  **************************************************************************/
9
9
  header: string;
10
10
  subheader: string;
11
+ truncateHeader: import("@angular/core").InputSignalWithTransform<boolean, import("@angular/cdk/coercion").BooleanInput>;
11
12
  /***************************************************************************
12
13
  * *
13
14
  * Constructor *
@@ -21,5 +22,5 @@ export declare class ElderHeaderComponent implements OnInit {
21
22
  **************************************************************************/
22
23
  ngOnInit(): void;
23
24
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderHeaderComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ElderHeaderComponent, "elder-header", never, { "header": { "alias": "header"; "required": false; }; "subheader": { "alias": "subheader"; "required": false; }; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElderHeaderComponent, "elder-header", never, { "header": { "alias": "header"; "required": false; }; "subheader": { "alias": "subheader"; "required": false; }; "truncateHeader": { "alias": "truncateHeader"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
25
26
  }
@@ -2,6 +2,10 @@ import { OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
2
  import { ElderToolbarService } from './elder-toolbar.service';
3
3
  import { ToolbarColumnPosition } from './toolbar-column-position';
4
4
  import * as i0 from "@angular/core";
5
+ /**
6
+ * This directive projects content identified by a placeholder id
7
+ * into the elder-toolbar at the corresponding ToolbarColumnPosition.
8
+ */
5
9
  export declare class ElderToolbarColumnDirective implements OnInit, OnDestroy {
6
10
  private toolbarService;
7
11
  templateRef: TemplateRef<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "19.1.17",
3
+ "version": "19.1.19",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "@angular/common": "^18.0.0 || ^19.0.0",
@@ -36,6 +36,5 @@ mat-sidenav-container {
36
36
  .mat-icon {
37
37
  height: var(--mdc-icon-button-icon-size);
38
38
  width: var(--mdc-icon-button-icon-size);
39
- filter: brightness(1.09) saturate(1.07);
40
39
  }
41
40
  }
@@ -78,4 +78,12 @@
78
78
  --elder-pane-padding: var(--elder-pane-padding-narrow);
79
79
  --elder-pane-gap: var(--elder-pane-gap-narrow);
80
80
  }
81
+
82
+ // truncates line with ellipsis (...)
83
+ .truncate-line {
84
+ overflow: hidden;
85
+ text-overflow: ellipsis;
86
+ white-space: nowrap;
87
+ max-width: 100%;
88
+ }
81
89
  }