@skyux/ag-grid 13.7.2 → 13.8.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/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
  }
@@ -324,7 +324,10 @@ declare enum SkyAgGridCellEditorInitialAction {
324
324
 
325
325
  interface SkyAgGridLookupProperties {
326
326
  /**
327
- * Fires when users select the button to add options to the list.
327
+ * Fires when users select the button to add options to the list. When the button opens a modal, include
328
+ * `wrapperClass: 'ag-custom-component-popup'` in the
329
+ * [modal configuration](https://developer.blackbaud.com/skyux/components/modal?docs-active-tab=development#interface_sky-modal-configuration-interface)
330
+ * to ensure proper focus behavior.
328
331
  */
329
332
  addClick?: (args: SkyLookupAddClickEventArgs) => void;
330
333
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/ag-grid",
3
- "version": "13.7.2",
3
+ "version": "13.8.1",
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.2",
35
- "@skyux/core": "13.7.2",
36
- "@skyux/data-manager": "13.7.2",
37
- "@skyux/datetime": "13.7.2",
38
- "@skyux/forms": "13.7.2",
39
- "@skyux/i18n": "13.7.2",
40
- "@skyux/icon": "13.7.2",
41
- "@skyux/indicators": "13.7.2",
42
- "@skyux/layout": "13.7.2",
43
- "@skyux/lookup": "13.7.2",
44
- "@skyux/popovers": "13.7.2",
45
- "@skyux/theme": "13.7.2",
34
+ "@skyux/autonumeric": "13.8.1",
35
+ "@skyux/core": "13.8.1",
36
+ "@skyux/data-manager": "13.8.1",
37
+ "@skyux/datetime": "13.8.1",
38
+ "@skyux/forms": "13.8.1",
39
+ "@skyux/i18n": "13.8.1",
40
+ "@skyux/icon": "13.8.1",
41
+ "@skyux/indicators": "13.8.1",
42
+ "@skyux/layout": "13.8.1",
43
+ "@skyux/lookup": "13.8.1",
44
+ "@skyux/popovers": "13.8.1",
45
+ "@skyux/theme": "13.8.1",
46
46
  "ag-grid-angular": "^34.1.2",
47
47
  "ag-grid-community": "^34.1.2"
48
48
  },