@heartlandone/vega-angular 2.95.0 → 2.96.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.
@@ -632,17 +632,17 @@ export declare interface VegaComboBox extends Components.VegaComboBox {
632
632
  */
633
633
  search: EventEmitter<CustomEvent<string>>;
634
634
  /**
635
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
635
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
636
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
637
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
638
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.95.0
639
639
  */
640
640
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
641
641
  /**
642
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
642
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
643
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
644
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
645
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.95.0
646
646
  */
647
647
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
648
648
  }
@@ -768,17 +768,17 @@ export declare interface VegaDropdown extends Components.VegaDropdown {
768
768
  */
769
769
  dropdownClick: EventEmitter<CustomEvent<string>>;
770
770
  /**
771
- * An event emitter notifying that the Select All option has been clicked.
771
+ * An event emitter only fired when the Select All checkbox has been clicked.
772
772
 
773
- The event's `detail` property is `true` when all items become selected,
774
- and `false` when Select All is cleared. @vegaVersion 2.93.0
773
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
774
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.93.0
775
775
  */
776
776
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
777
777
  /**
778
- * An event emitter notifying that the Select All option has been clicked.
778
+ * An event emitter only fired when the Select All checkbox has been clicked.
779
779
 
780
- The event's `detail` property is `true` when all items become selected,
781
- and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.93.0
780
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
781
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.93.0
782
782
  */
783
783
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
784
784
  /**
@@ -1399,17 +1399,17 @@ export declare interface VegaInputSelect extends Components.VegaInputSelect {
1399
1399
  */
1400
1400
  searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
1401
1401
  /**
1402
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
1402
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
1403
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
1404
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1405
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.95.0
1406
1406
  */
1407
1407
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1408
1408
  /**
1409
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
1409
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
1410
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
1411
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1412
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.95.0
1413
1413
  */
1414
1414
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1415
1415
  /**
package/dist/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": {
@@ -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.94.0",
23
+ "@heartlandone/vega": "2.95.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.95.0",
4
+ "version": "2.96.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.95.0",
31
+ "@heartlandone/vega": "2.96.0",
32
32
  "tslib": "^2.3.0",
33
33
  "@juggle/resize-observer": "^3.4.0"
34
34
  },
@@ -1003,17 +1003,17 @@ The combo box _does not_ automatically add the new value to its `source` and `va
1003
1003
  */
1004
1004
  search: EventEmitter<CustomEvent<string>>;
1005
1005
  /**
1006
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
1006
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
1007
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
1008
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1009
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.95.0
1010
1010
  */
1011
1011
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1012
1012
  /**
1013
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
1013
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
1014
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
1015
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1016
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.95.0
1017
1017
  */
1018
1018
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1019
1019
 
@@ -1223,17 +1223,17 @@ The event's `detail` property contains the key of the clicked item. @eventSemant
1223
1223
  */
1224
1224
  dropdownClick: EventEmitter<CustomEvent<string>>;
1225
1225
  /**
1226
- * An event emitter notifying that the Select All option has been clicked.
1226
+ * An event emitter only fired when the Select All checkbox has been clicked.
1227
1227
 
1228
- The event's `detail` property is `true` when all items become selected,
1229
- and `false` when Select All is cleared. @vegaVersion 2.93.0
1228
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1229
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.93.0
1230
1230
  */
1231
1231
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1232
1232
  /**
1233
- * An event emitter notifying that the Select All option has been clicked.
1233
+ * An event emitter only fired when the Select All checkbox has been clicked.
1234
1234
 
1235
- The event's `detail` property is `true` when all items become selected,
1236
- and `false` when Select All is cleared. @eventSemantics namespace:native,@vegaVersion 2.93.0
1235
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
1236
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.93.0
1237
1237
  */
1238
1238
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
1239
1239
  /**
@@ -2146,17 +2146,17 @@ It can be triggered in two ways: by pressing "Enter" or through user input. @eve
2146
2146
  */
2147
2147
  searchTrigger: EventEmitter<CustomEvent<IVegaInputSelectVegaDropdownSearchTriggerEventDetail>>;
2148
2148
  /**
2149
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
2149
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
2150
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
2151
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
2152
+ and `false` when the Select All checkbox is clicked to clear all selected items. @vegaVersion 2.95.0
2153
2153
  */
2154
2154
  vegaDropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
2155
2155
  /**
2156
- * An event emitter notifying that the Select All option in the dropdown has been clicked.
2156
+ * An event emitter only fired when the Select All checkbox in the dropdown has been clicked.
2157
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
2158
+ The event's `detail` property is `true` when the Select All checkbox is clicked to select all items,
2159
+ and `false` when the Select All checkbox is clicked to clear all selected items. @eventSemantics namespace:native,@vegaVersion 2.95.0
2160
2160
  */
2161
2161
  dropdownSelectAllClick: EventEmitter<CustomEvent<boolean>>;
2162
2162
  /**