@heartlandone/vega-angular 2.19.0 → 2.20.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.
@@ -17,6 +17,7 @@ import type { VegaTableRowSelectProp as IVegaTableVegaTableRowSelectProp } from
17
17
  import type { VegaTableSelectAllProp as IVegaTableVegaTableSelectAllProp } from '@heartlandone/vega/dist/types/components/vega-table/interface';
18
18
  import type { VegaTableHeadCellClickEvent as IVegaTableHeadCellVegaTableHeadCellClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
19
19
  import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
20
+ import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
20
21
  import * as i0 from "@angular/core";
21
22
  export declare interface VegaAccordion extends Components.VegaAccordion {
22
23
  /**
@@ -236,7 +237,7 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
236
237
  */
237
238
  vegaEventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
238
239
  /**
239
- * An event emitter notifying that a component event item is clicked.
240
+ * An event emitter notifying that a component event item is clicked. @eventSemantics namespace:native
240
241
  */
241
242
  eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
242
243
  /**
@@ -244,16 +245,24 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
244
245
  */
245
246
  vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
246
247
  /**
247
- * An event emitter notifying that a calendar date item has been double-clicked.
248
+ * An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native
248
249
  */
249
250
  dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
251
+ /**
252
+ * An event emitter notifying that a calendar more action menu item has been clicked.
253
+ */
254
+ vegaMoreActionClick: EventEmitter<CustomEvent<string>>;
255
+ /**
256
+ * An event emitter notifying that a calendar more action menu item has been clicked. @eventSemantics namespace:native
257
+ */
258
+ moreActionClick: EventEmitter<CustomEvent<string>>;
250
259
  }
251
260
  export declare class VegaCalendar {
252
261
  protected z: NgZone;
253
262
  protected el: HTMLElement;
254
263
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
255
264
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaCalendar, never>;
256
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendar, "vega-calendar", never, { "events": "events"; "timeFormat": "timeFormat"; "viewMode": "viewMode"; }, {}, never, ["*"]>;
265
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaCalendar, "vega-calendar", never, { "events": "events"; "moreActionDropdownProps": "moreActionDropdownProps"; "timeFormat": "timeFormat"; "viewMode": "viewMode"; }, {}, never, ["*"]>;
257
266
  }
258
267
  export declare interface VegaCalendarEvent extends Components.VegaCalendarEvent {
259
268
  }
@@ -1240,7 +1249,7 @@ export declare class VegaSignatureCapture {
1240
1249
  protected el: HTMLElement;
1241
1250
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1242
1251
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaSignatureCapture, never>;
1243
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaSignatureCapture, "vega-signature-capture", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "placeholderIcon": "placeholderIcon"; "required": "required"; "showClearBtn": "showClearBtn"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
1252
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaSignatureCapture, "vega-signature-capture", never, { "autoValidation": "autoValidation"; "disabled": "disabled"; "height": "height"; "isValid": "isValid"; "label": "label"; "mode": "mode"; "placeholder": "placeholder"; "placeholderIcon": "placeholderIcon"; "required": "required"; "showClearBtn": "showClearBtn"; "validationRules": "validationRules"; "value": "value"; }, {}, never, ["*"]>;
1244
1253
  }
1245
1254
  export declare interface VegaSkeleton extends Components.VegaSkeleton {
1246
1255
  }
@@ -1423,6 +1432,14 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
1423
1432
  * An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
1424
1433
  */
1425
1434
  click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
1435
+ /**
1436
+ * An event emitter notifying that the expand icon has been clicked.
1437
+ */
1438
+ vegaExpand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
1439
+ /**
1440
+ * An event emitter notifying that the expand icon has been clicked. @eventSemantics namespace:native
1441
+ */
1442
+ expand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
1426
1443
  }
1427
1444
  export declare class VegaTableRow {
1428
1445
  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.18.1",
4
+ "version": "2.19.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.18.1",
21
+ "@heartlandone/vega": "2.19.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.19.0",
4
+ "version": "2.20.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.19.0",
28
+ "@heartlandone/vega": "2.20.0",
29
29
  "tslib": "^2.3.0",
30
30
  "@juggle/resize-observer": "^3.4.0"
31
31
  },
@@ -412,7 +412,7 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
412
412
  */
413
413
  vegaEventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
414
414
  /**
415
- * An event emitter notifying that a component event item is clicked.
415
+ * An event emitter notifying that a component event item is clicked. @eventSemantics namespace:native
416
416
  */
417
417
  eventClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarEventClickInfo>>;
418
418
  /**
@@ -420,28 +420,36 @@ export declare interface VegaCalendar extends Components.VegaCalendar {
420
420
  */
421
421
  vegaDateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
422
422
  /**
423
- * An event emitter notifying that a calendar date item has been double-clicked.
423
+ * An event emitter notifying that a calendar date item has been double-clicked. @eventSemantics namespace:native
424
424
  */
425
425
  dateDblClick: EventEmitter<CustomEvent<IVegaCalendarVegaCalendarDateClickInfo>>;
426
+ /**
427
+ * An event emitter notifying that a calendar more action menu item has been clicked.
428
+ */
429
+ vegaMoreActionClick: EventEmitter<CustomEvent<string>>;
430
+ /**
431
+ * An event emitter notifying that a calendar more action menu item has been clicked. @eventSemantics namespace:native
432
+ */
433
+ moreActionClick: EventEmitter<CustomEvent<string>>;
426
434
 
427
435
  }
428
436
 
429
437
  @ProxyCmp({
430
438
  defineCustomElementFn: undefined,
431
- inputs: ['events', 'timeFormat', 'viewMode']
439
+ inputs: ['events', 'moreActionDropdownProps', 'timeFormat', 'viewMode']
432
440
  })
433
441
  @Component({
434
442
  selector: 'vega-calendar',
435
443
  changeDetection: ChangeDetectionStrategy.OnPush,
436
444
  template: '<ng-content></ng-content>',
437
- inputs: ['events', 'timeFormat', 'viewMode']
445
+ inputs: ['events', 'moreActionDropdownProps', 'timeFormat', 'viewMode']
438
446
  })
439
447
  export class VegaCalendar {
440
448
  protected el: HTMLElement;
441
449
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
442
450
  c.detach();
443
451
  this.el = r.nativeElement;
444
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick']);
452
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaEventClick', 'eventClick', 'vegaDateDblClick', 'dateDblClick', 'vegaMoreActionClick', 'moreActionClick']);
445
453
  }
446
454
  }
447
455
 
@@ -2180,14 +2188,14 @@ export declare interface VegaSignatureCapture extends Components.VegaSignatureCa
2180
2188
 
2181
2189
  @ProxyCmp({
2182
2190
  defineCustomElementFn: undefined,
2183
- inputs: ['autoValidation', 'disabled', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
2191
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value'],
2184
2192
  methods: ['clear']
2185
2193
  })
2186
2194
  @Component({
2187
2195
  selector: 'vega-signature-capture',
2188
2196
  changeDetection: ChangeDetectionStrategy.OnPush,
2189
2197
  template: '<ng-content></ng-content>',
2190
- inputs: ['autoValidation', 'disabled', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
2198
+ inputs: ['autoValidation', 'disabled', 'height', 'isValid', 'label', 'mode', 'placeholder', 'placeholderIcon', 'required', 'showClearBtn', 'validationRules', 'value']
2191
2199
  })
2192
2200
  export class VegaSignatureCapture {
2193
2201
  protected el: HTMLElement;
@@ -2525,6 +2533,7 @@ export class VegaTableHeadRow {
2525
2533
  }
2526
2534
 
2527
2535
  import type { VegaTableRowClickEvent as IVegaTableRowVegaTableRowClickEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2536
+ import type { VegaTableRowExpandEvent as IVegaTableRowVegaTableRowExpandEvent } from '@heartlandone/vega/dist/types/components/vega-table/interface';
2528
2537
  export declare interface VegaTableRow extends Components.VegaTableRow {
2529
2538
  /**
2530
2539
  * An event emitter notifying that the row has been clicked.
@@ -2534,6 +2543,14 @@ export declare interface VegaTableRow extends Components.VegaTableRow {
2534
2543
  * An event emitter notifying that the row has been clicked. @eventSemantics namespace:native
2535
2544
  */
2536
2545
  click: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowClickEvent>>;
2546
+ /**
2547
+ * An event emitter notifying that the expand icon has been clicked.
2548
+ */
2549
+ vegaExpand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
2550
+ /**
2551
+ * An event emitter notifying that the expand icon has been clicked. @eventSemantics namespace:native
2552
+ */
2553
+ expand: EventEmitter<CustomEvent<IVegaTableRowVegaTableRowExpandEvent>>;
2537
2554
 
2538
2555
  }
2539
2556
 
@@ -2552,7 +2569,7 @@ export class VegaTableRow {
2552
2569
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2553
2570
  c.detach();
2554
2571
  this.el = r.nativeElement;
2555
- proxyOutputs(this, this.el, ['vegaClick', 'click']);
2572
+ proxyOutputs(this, this.el, ['vegaClick', 'click', 'vegaExpand', 'expand']);
2556
2573
  }
2557
2574
  }
2558
2575
 
@@ -39,6 +39,7 @@ function resolveEventPayloadImportPath(componentsContent) {
39
39
  ['VegaBreadcrumbItemType', 'vega-breadcrumb/types'],
40
40
  ['VegaTableHeadCellClickEvent', 'vega-table/interface'],
41
41
  ['VegaTableRowClickEvent', 'vega-table/interface'],
42
+ ['VegaTableRowExpandEvent', 'vega-table/interface'],
42
43
  ['VegaDropdownItemClickEvent', 'vega-dropdown/vega-dropdown-item/types'],
43
44
  ['VegaCalendarChangeEventType', 'vega-calendar/types'],
44
45
  ['VegaCalendarEventClickInfo', 'vega-calendar/types'],