@skyux/ag-grid 13.7.1 → 13.8.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.
package/index.d.ts CHANGED
@@ -139,11 +139,11 @@ declare class SkyAgGridAdapterService {
139
139
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyAgGridAdapterService>;
140
140
  }
141
141
 
142
- interface SkyGetGridOptionsArgs {
142
+ interface SkyGetGridOptionsArgs<T = any> {
143
143
  /**
144
144
  * The [AG Grid `gridOptions`](https://www.ag-grid.com/javascript-grid-properties/) that override default SKY UX `gridOptions`. SKY UX column types for components and column `cellClassRules` enforce required cell styling and cannot be overridden.
145
145
  */
146
- gridOptions: GridOptions;
146
+ gridOptions: GridOptions<T>;
147
147
  /**
148
148
  * The locale for location-specific formatting, such as date values for the `SkyCellType.Date` column.
149
149
  */
@@ -167,13 +167,13 @@ declare class SkyAgGridService implements OnDestroy {
167
167
  * @param args
168
168
  * @returns
169
169
  */
170
- getGridOptions(args: SkyGetGridOptionsArgs): GridOptions;
170
+ getGridOptions<T = any>(args: SkyGetGridOptionsArgs<T>): GridOptions<T>;
171
171
  /**
172
172
  * Returns [AG Grid `gridOptions`](https://www.ag-grid.com/javascript-grid-properties/) with default SKY UX options, styling, and cell editors registered for editable grids.
173
173
  * @param args
174
174
  * @returns
175
175
  */
176
- getEditableGridOptions(args: SkyGetGridOptionsArgs): GridOptions;
176
+ getEditableGridOptions<T = any>(args: SkyGetGridOptionsArgs<T>): GridOptions<T>;
177
177
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAgGridService, [null, { optional: true; }, { optional: true; }]>;
178
178
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyAgGridService>;
179
179
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/ag-grid",
3
- "version": "13.7.1",
3
+ "version": "13.8.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -31,18 +31,18 @@
31
31
  "@angular/common": "^20.3.0",
32
32
  "@angular/core": "^20.3.0",
33
33
  "@angular/forms": "^20.3.0",
34
- "@skyux/autonumeric": "13.7.1",
35
- "@skyux/core": "13.7.1",
36
- "@skyux/data-manager": "13.7.1",
37
- "@skyux/datetime": "13.7.1",
38
- "@skyux/forms": "13.7.1",
39
- "@skyux/i18n": "13.7.1",
40
- "@skyux/icon": "13.7.1",
41
- "@skyux/indicators": "13.7.1",
42
- "@skyux/layout": "13.7.1",
43
- "@skyux/lookup": "13.7.1",
44
- "@skyux/popovers": "13.7.1",
45
- "@skyux/theme": "13.7.1",
34
+ "@skyux/autonumeric": "13.8.0",
35
+ "@skyux/core": "13.8.0",
36
+ "@skyux/data-manager": "13.8.0",
37
+ "@skyux/datetime": "13.8.0",
38
+ "@skyux/forms": "13.8.0",
39
+ "@skyux/i18n": "13.8.0",
40
+ "@skyux/icon": "13.8.0",
41
+ "@skyux/indicators": "13.8.0",
42
+ "@skyux/layout": "13.8.0",
43
+ "@skyux/lookup": "13.8.0",
44
+ "@skyux/popovers": "13.8.0",
45
+ "@skyux/theme": "13.8.0",
46
46
  "ag-grid-angular": "^34.1.2",
47
47
  "ag-grid-community": "^34.1.2"
48
48
  },