@heartlandone/vega-angular 2.10.0 → 2.11.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.
@@ -833,6 +833,14 @@ export declare class VegaLeftNavLink {
833
833
  static ɵcmp: i0.ɵɵComponentDeclaration<VegaLeftNavLink, "vega-left-nav-link", never, { "counterBadge": "counterBadge"; "icon": "icon"; "selected": "selected"; "url": "url"; }, {}, never, ["*"]>;
834
834
  }
835
835
  export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
836
+ /**
837
+ * An event emitter notifying the action click event when the action link is not configured.
838
+ */
839
+ vegaActionClick: EventEmitter<CustomEvent<string>>;
840
+ /**
841
+ * An event emitter notifying the action click event when the action link is not configured. @eventSemantics namespace:native
842
+ */
843
+ actionClick: EventEmitter<CustomEvent<any>>;
836
844
  }
837
845
  export declare class VegaLeftNavSection {
838
846
  protected z: NgZone;
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.9.0",
4
+ "version": "2.10.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "peerDependencies": {
7
7
  "@angular/common": ">=12.0.0",
@@ -18,7 +18,7 @@
18
18
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
19
19
  },
20
20
  "dependencies": {
21
- "@heartlandone/vega": "2.9.0",
21
+ "@heartlandone/vega": "2.10.0",
22
22
  "tslib": "^2.3.0",
23
23
  "@juggle/resize-observer": "^3.4.0"
24
24
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.10.0",
4
+ "version": "2.11.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "peerDependencies": {
7
7
  "@angular/common": ">=12.0.0",
@@ -25,7 +25,7 @@
25
25
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
26
26
  },
27
27
  "dependencies": {
28
- "@heartlandone/vega": "2.10.0",
28
+ "@heartlandone/vega": "2.11.0",
29
29
  "tslib": "^2.3.0",
30
30
  "@juggle/resize-observer": "^3.4.0"
31
31
  },
@@ -1463,7 +1463,17 @@ export class VegaLeftNavLink {
1463
1463
  }
1464
1464
 
1465
1465
 
1466
- export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {}
1466
+ export declare interface VegaLeftNavSection extends Components.VegaLeftNavSection {
1467
+ /**
1468
+ * An event emitter notifying the action click event when the action link is not configured.
1469
+ */
1470
+ vegaActionClick: EventEmitter<CustomEvent<string>>;
1471
+ /**
1472
+ * An event emitter notifying the action click event when the action link is not configured. @eventSemantics namespace:native
1473
+ */
1474
+ actionClick: EventEmitter<CustomEvent<any>>;
1475
+
1476
+ }
1467
1477
 
1468
1478
  @ProxyCmp({
1469
1479
  defineCustomElementFn: undefined,
@@ -1480,6 +1490,7 @@ export class VegaLeftNavSection {
1480
1490
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1481
1491
  c.detach();
1482
1492
  this.el = r.nativeElement;
1493
+ proxyOutputs(this, this.el, ['vegaActionClick', 'actionClick']);
1483
1494
  }
1484
1495
  }
1485
1496