@skyux/ag-grid 14.3.0 → 14.3.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/ag-grid",
3
- "version": "14.3.0",
3
+ "version": "14.3.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -36,18 +36,18 @@
36
36
  "@angular/common": "^21.2.0",
37
37
  "@angular/core": "^21.2.0",
38
38
  "@angular/forms": "^21.2.0",
39
- "@skyux/autonumeric": "14.3.0",
40
- "@skyux/core": "14.3.0",
41
- "@skyux/data-manager": "14.3.0",
42
- "@skyux/datetime": "14.3.0",
43
- "@skyux/forms": "14.3.0",
44
- "@skyux/i18n": "14.3.0",
45
- "@skyux/icon": "14.3.0",
46
- "@skyux/indicators": "14.3.0",
47
- "@skyux/layout": "14.3.0",
48
- "@skyux/lookup": "14.3.0",
49
- "@skyux/popovers": "14.3.0",
50
- "@skyux/theme": "14.3.0",
39
+ "@skyux/autonumeric": "14.3.1",
40
+ "@skyux/core": "14.3.1",
41
+ "@skyux/data-manager": "14.3.1",
42
+ "@skyux/datetime": "14.3.1",
43
+ "@skyux/forms": "14.3.1",
44
+ "@skyux/i18n": "14.3.1",
45
+ "@skyux/icon": "14.3.1",
46
+ "@skyux/indicators": "14.3.1",
47
+ "@skyux/layout": "14.3.1",
48
+ "@skyux/lookup": "14.3.1",
49
+ "@skyux/popovers": "14.3.1",
50
+ "@skyux/theme": "14.3.1",
51
51
  "ag-grid-angular": "^35.1.0",
52
52
  "ag-grid-community": "^35.1.0"
53
53
  },
@@ -9,7 +9,7 @@ import * as i1 from '@skyux/i18n';
9
9
  import { SkyAutocompleteSelectionChange, SkyLookupAddClickEventArgs, SkyAutocompleteSearchFunction, SkyAutocompleteSearchAsyncArgs, SkyAutocompleteSearchFunctionFilter, SkyLookupSelectModeType, SkyLookupShowMoreConfig } from '@skyux/lookup';
10
10
  import { Observable, Subject, Subscription, BehaviorSubject } from 'rxjs';
11
11
  import { UntypedFormGroup, UntypedFormControl, FormControl } from '@angular/forms';
12
- import { NumericOptions, SkyNumericOptions } from '@skyux/core';
12
+ import { SkyNumericOptions } from '@skyux/core';
13
13
  import { SkyPopoverMessage } from '@skyux/popovers';
14
14
 
15
15
  declare class SkyAgGridWrapperComponent implements AfterContentInit, AfterViewInit {
@@ -95,7 +95,7 @@ interface SkyAgGridRowDeleteConfirmArgs {
95
95
  * on the `SkyAgGridWrapperComponent` element. The directive uses
96
96
  * `rowDeleteIds` to determine which rows to add inline delete options to.
97
97
  */
98
- declare class SkyAgGridRowDeleteDirective implements AfterContentInit, AfterViewInit, OnDestroy {
98
+ declare class SkyAgGridRowDeleteDirective implements OnDestroy {
99
99
  #private;
100
100
  /**
101
101
  * The IDs of the data in the rows where the inline delete appears.
@@ -111,8 +111,6 @@ declare class SkyAgGridRowDeleteDirective implements AfterContentInit, AfterView
111
111
  rowDeleteConfirm: i0.OutputEmitterRef<SkyAgGridRowDeleteConfirmArgs>;
112
112
  protected readonly agGrid: i0.Signal<AgGridAngular<any, any> | undefined>;
113
113
  constructor();
114
- ngAfterContentInit(): void;
115
- ngAfterViewInit(): void;
116
114
  ngOnDestroy(): void;
117
115
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAgGridRowDeleteDirective, never>;
118
116
  static ɵdir: i0.ɵɵDirectiveDeclaration<SkyAgGridRowDeleteDirective, "[skyAgGridRowDelete]", never, { "rowDeleteIds": { "alias": "rowDeleteIds"; "required": false; "isSignal": true; }; }, { "rowDeleteIds": "rowDeleteIdsChange"; "rowDeleteCancel": "rowDeleteCancel"; "rowDeleteConfirm": "rowDeleteConfirm"; }, ["agGrid"], never, true, never>;
@@ -940,10 +938,15 @@ declare class SkyAgGridCellEditorTextComponent implements ICellEditorAngularComp
940
938
  }
941
939
 
942
940
  /**
943
- * @internal
941
+ * Parameters for the currency cell renderer.
944
942
  */
945
943
  interface SkyCellRendererCurrencyParams extends ICellRendererParams {
946
- skyComponentProperties?: NumericOptions & SkyAgGridValidatorProperties;
944
+ /**
945
+ * Options to pass to the `SkyNumericPipe` for formatting the cell value.
946
+ * `format` is always set to `'currency'`. If not specified, `minDigits` defaults
947
+ * to `2` and `truncate` defaults to `false`.
948
+ */
949
+ skyComponentProperties?: SkyNumericOptions & SkyAgGridValidatorProperties;
947
950
  }
948
951
 
949
952
  /**