@symphony-talent/component-library 4.0.0 → 4.2.0

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.
@@ -1,12 +1,14 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { Icons } from '../../atoms/icon/icon.enum';
3
3
  import { BreadcrumbModel } from './breadcrumb.model';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class BreadcrumbComponent implements OnInit {
6
6
  breadcrumbs: BreadcrumbModel[];
7
+ breadcrumbClicked: EventEmitter<BreadcrumbModel>;
7
8
  icon: Icons;
8
9
  constructor();
9
10
  ngOnInit(): void;
11
+ onBreadcrumbClick(breadcrumb: BreadcrumbModel): void;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "symphony-breadcrumb", never, { "breadcrumbs": "breadcrumbs"; }, {}, never, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "symphony-breadcrumb", never, { "breadcrumbs": "breadcrumbs"; }, { "breadcrumbClicked": "breadcrumbClicked"; }, never, never>;
12
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symphony-talent/component-library",
3
- "version": "4.0.0",
3
+ "version": "4.2.0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "ag-grid-angular": "^24.0.0",
@@ -365,6 +365,9 @@ body {
365
365
  .ag-header-cell-text {
366
366
  color: $color-black;
367
367
  }
368
+ .ag-header-cell-resize {
369
+ right: 10px;
370
+ }
368
371
  }
369
372
  .ag-row-odd {
370
373
  background-color: $color-white;
@@ -1,12 +1,14 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { Icons } from '../../atoms/icon/icon.enum';
3
3
  import { BreadcrumbModel } from './breadcrumb.model';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class BreadcrumbComponent implements OnInit {
6
6
  breadcrumbs: BreadcrumbModel[];
7
+ breadcrumbClicked: EventEmitter<BreadcrumbModel>;
7
8
  icon: Icons;
8
9
  constructor();
9
10
  ngOnInit(): void;
11
+ onBreadcrumbClick(breadcrumb: BreadcrumbModel): void;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "symphony-breadcrumb", never, { "breadcrumbs": "breadcrumbs"; }, {}, never, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "symphony-breadcrumb", never, { "breadcrumbs": "breadcrumbs"; }, { "breadcrumbClicked": "breadcrumbClicked"; }, never, never>;
12
14
  }