@heartlandone/vega-angular 2.94.0 → 2.95.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.
@@ -631,6 +631,20 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
631
631
  but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native,@vegaVersion 2.0.0
632
632
  */
633
633
  search: EventEmitter<CustomEvent<string>>;
634
+ /**
635
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
636
+
637
+ The event's `detail` property is `true` when all items become selected,
638
+ and `false` when Select All is cleared. @vegaVersion 2.95.0
639
+ */
640
+ vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
641
+ /**
642
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
643
+
644
+ The event's `detail` property is `true` when all items become selected,
645
+ and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.95.0
646
+ */
647
+ dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
634
648
  }
635
649
  export declare class VegaComboBox {
636
650
  protected z: NgZone;
@@ -1384,6 +1398,20 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1384
1398
  It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
1385
1399
  */
1386
1400
  searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
1401
+ /**
1402
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
1403
+
1404
+ The event's `detail` property is `true` when all items become selected,
1405
+ and `false` when Select All is cleared. @vegaVersion 2.95.0
1406
+ */
1407
+ vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1408
+ /**
1409
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
1410
+
1411
+ The event's `detail` property is `true` when all items become selected,
1412
+ and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.95.0
1413
+ */
1414
+ dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1387
1415
  /**
1388
1416
  * An event emitter notifying that the input-select has been opened,
1389
1417
  either programmatically or via user interaction. @vegaVersion 2.32.0
@@ -1545,7 +1573,7 @@ export declare class VegaModal {
1545
1573
  protected el: HTMLElement;
1546
1574
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1547
1575
  static ɵfac: i0.ɵɵFactoryDeclaration<VegaModal, never>;
1548
- static ɵcmp: i0.ɵɵComponentDeclaration<VegaModal, "vega-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "backdropColor": "backdropColor"; "contentMaxHeight": "contentMaxHeight"; "corners": "corners"; "handleClose": "handleClose"; "height": "height"; "isVerticallyCenter": "isVerticallyCenter"; "isVerticallyCentered": "isVerticallyCentered"; "margin": "margin"; "modalTitle": "modalTitle"; "open": "open"; "padding": "padding"; "showCloseButton": "showCloseButton"; "size": "size"; }, {}, never, ["*"]>;
1576
+ static ɵcmp: i0.ɵɵComponentDeclaration<VegaModal, "vega-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "backdropColor": "backdropColor"; "contentMaxHeight": "contentMaxHeight"; "corners": "corners"; "handleClose": "handleClose"; "height": "height"; "isVerticallyCenter": "isVerticallyCenter"; "isVerticallyCentered": "isVerticallyCentered"; "margin": "margin"; "modalTitle": "modalTitle"; "open": "open"; "padding": "padding"; "showCloseButton": "showCloseButton"; "size": "size"; "width": "width"; }, {}, never, ["*"]>;
1549
1577
  }
1550
1578
  export declare interface VegaNavCard extends Components.VegaNavCard {
1551
1579
  }
package/dist/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.93.0",
4
+ "version": "2.94.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -20,7 +20,7 @@
20
20
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
21
21
  },
22
22
  "dependencies": {
23
- "@heartlandone/vega": "2.93.0",
23
+ "@heartlandone/vega": "2.94.0",
24
24
  "tslib": "^2.3.0",
25
25
  "@juggle/resize-observer": "^3.4.0"
26
26
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heartlandone/vega-angular",
3
3
  "sideEffects": false,
4
- "version": "2.94.0",
4
+ "version": "2.95.0",
5
5
  "description": "Angular specific wrapper for @heartlandone/vega",
6
6
  "license": "UNLICENSED",
7
7
  "peerDependencies": {
@@ -28,7 +28,7 @@
28
28
  "url": "https://github.com/heartlandpayments/Vega/tree/main/vega-angular-workspace/projects/vega-angular"
29
29
  },
30
30
  "dependencies": {
31
- "@heartlandone/vega": "2.94.0",
31
+ "@heartlandone/vega": "2.95.0",
32
32
  "tslib": "^2.3.0",
33
33
  "@juggle/resize-observer": "^3.4.0"
34
34
  },
@@ -1002,6 +1002,20 @@ The combo box _does not_ automatically add the new value to its `source` and `va
1002
1002
  but only if the `useDefaultFilter` property is set to `false`. @eventSemantics namespace:native,@vegaVersion 2.0.0
1003
1003
  */
1004
1004
  search: EventEmitter<CustomEvent<string>>;
1005
+ /**
1006
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
1007
+
1008
+ The event's `detail` property is `true` when all items become selected,
1009
+ and `false` when Select All is cleared. @vegaVersion 2.95.0
1010
+ */
1011
+ vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1012
+ /**
1013
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
1014
+
1015
+ The event's `detail` property is `true` when all items become selected,
1016
+ and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.95.0
1017
+ */
1018
+ dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1005
1019
 
1006
1020
  }
1007
1021
 
@@ -1021,7 +1035,7 @@ export class VegaComboBox {
1021
1035
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1022
1036
  c.detach();
1023
1037
  this.el = r.nativeElement;
1024
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search']);
1038
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaCreate', 'create', 'vegaSearch', 'search', 'vegaDropdownSelectAllClick', 'dropdownSelectAllClick']);
1025
1039
  }
1026
1040
  }
1027
1041
 
@@ -2131,6 +2145,20 @@ Unlike the Vegasearch event, this event includes the details of the user who tri
2131
2145
  It can be triggered in two ways: by pressing "Enter" or through user input. @eventSemantics namespace:native,@vegaVersion 2.30.0
2132
2146
  */
2133
2147
  searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
2148
+ /**
2149
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
2150
+
2151
+ The event's `detail` property is `true` when all items become selected,
2152
+ and `false` when Select All is cleared. @vegaVersion 2.95.0
2153
+ */
2154
+ vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
2155
+ /**
2156
+ * An event emitter notifying that the Select All option in the dropdown has been clicked.
2157
+
2158
+ The event's `detail` property is `true` when all items become selected,
2159
+ and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.95.0
2160
+ */
2161
+ dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
2134
2162
  /**
2135
2163
  * An event emitter notifying that the input-select has been opened,
2136
2164
  either programmatically or via user interaction. @vegaVersion 2.32.0
@@ -2168,7 +2196,7 @@ export class VegaInputSelect {
2168
2196
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2169
2197
  c.detach();
2170
2198
  this.el = r.nativeElement;
2171
- proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaShow', 'vegaHide', 'vegaLabelButtonClick', 'labelButtonClick']);
2199
+ proxyOutputs(this, this.el, ['vegaChange', 'change', 'vegaSearch', 'search', 'vegaSearchTrigger', 'searchTrigger', 'vegaDropdownSelectAllClick', 'dropdownSelectAllClick', 'vegaShow', 'vegaHide', 'vegaLabelButtonClick', 'labelButtonClick']);
2172
2200
  }
2173
2201
  }
2174
2202
 
@@ -2418,14 +2446,14 @@ export declare interface VegaModal extends Components.VegaModal {
2418
2446
 
2419
2447
  @ProxyCmp({
2420
2448
  defineCustomElementFn: undefined,
2421
- inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'corners', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size'],
2449
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'corners', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size', 'width'],
2422
2450
  methods: ['modal']
2423
2451
  })
2424
2452
  @Component({
2425
2453
  selector: 'vega-modal',
2426
2454
  changeDetection: ChangeDetectionStrategy.OnPush,
2427
2455
  template: '<ng-content></ng-content>',
2428
- inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'corners', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size']
2456
+ inputs: ['animation', 'backdrop', 'backdropColor', 'contentMaxHeight', 'corners', 'handleClose', 'height', 'isVerticallyCenter', 'isVerticallyCentered', 'margin', 'modalTitle', 'open', 'padding', 'showCloseButton', 'size', 'width']
2429
2457
  })
2430
2458
  export class VegaModal {
2431
2459
  protected el: HTMLElement;