@skyux/ag-grid 11.19.0 → 11.19.2

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.
@@ -1,16 +1,25 @@
1
1
  import { ColumnGroup } from 'ag-grid-community';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
- * To display a help button beside the column group header, create a component that includes the help button element,
5
- * such as `sky-help-inline`, include a `SkyAgGridHeaderGroupInfo` parameter in the constructor to access the column
6
- * group information, such as display name, and add the component to the `headerComponentParams.inlineHelpComponent`
7
- * property of the column definition.
4
+ * To display a help button beside the column group header, create a component containing
5
+ * [`sky-help-inline`](https://developer.blackbaud.com/skyux/components/help-inline),
6
+ * and use `inject(SkyAgGridHeaderGroupInfo)` to access the column group
7
+ * information, such as display name.
8
+ * Add the component to the `headerGroupComponentParams.inlineHelpComponent`
9
+ * property of the [column group definition](https://www.ag-grid.com/angular-data-grid/column-groups/).
10
+ * @see SkyAgGridHeaderGroupParams
8
11
  */
9
12
  export declare class SkyAgGridHeaderGroupInfo {
13
+ /**
14
+ * [Column group information from AG Grid](https://www.ag-grid.com/angular-data-grid/column-object-group/).
15
+ */
10
16
  columnGroup: ColumnGroup | undefined;
17
+ /**
18
+ * Display name of the column group.
19
+ */
11
20
  displayName: string | undefined;
12
21
  /**
13
- * Application context as set on `gridOptions.context`.
22
+ * AG Grid's [`context` field](https://www.ag-grid.com/angular-data-grid/context/).
14
23
  */
15
24
  context: any;
16
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAgGridHeaderGroupInfo, never>;
@@ -3,8 +3,12 @@ import { IHeaderGroupParams } from 'ag-grid-community';
3
3
  /**
4
4
  * Interface to use for the
5
5
  * [`headerGroupComponentParams`](https://www.ag-grid.com/angular-data-grid/column-properties/#reference-groupsHeader-headerGroupComponentParams)
6
- * property on `ColDef`.
6
+ * property on `ColGroupDef`.
7
7
  */
8
8
  export interface SkyAgGridHeaderGroupParams extends IHeaderGroupParams {
9
+ /**
10
+ * The component to display as inline help beside the column group header.
11
+ * @see SkyAgGridHeaderGroupInfo
12
+ */
9
13
  inlineHelpComponent?: Type<unknown>;
10
14
  }
@@ -1,16 +1,25 @@
1
1
  import { Column } from 'ag-grid-community';
2
2
  import * as i0 from "@angular/core";
3
3
  /**
4
- * To display a help button beside the column header, create a component that includes the help button element,
5
- * such as `sky-help-inline`, include a `SkyAgGridHeaderInfo` parameter in the constructor to access the column
6
- * information, such as display name, and add the component to the `headerComponentParams.inlineHelpComponent` property
7
- * of the column definition.
4
+ * To display a help button beside the column header, create a component containing
5
+ * [`sky-help-inline`](https://developer.blackbaud.com/skyux/components/help-inline),
6
+ * and use `inject(SkyAgGridHeaderInfo)` to access the column information, such
7
+ * as display name.
8
+ * Add the component to the `headerComponentParams.inlineHelpComponent`
9
+ * property of the [column definition](https://www.ag-grid.com/angular-data-grid/column-definitions/).
10
+ * @see SkyAgGridHeaderParams
8
11
  */
9
12
  export declare class SkyAgGridHeaderInfo {
13
+ /**
14
+ * [Column information from AG Grid](https://www.ag-grid.com/angular-data-grid/column-object/).
15
+ */
10
16
  column: Column | undefined;
17
+ /**
18
+ * Display name of the column.
19
+ */
11
20
  displayName: string | undefined;
12
21
  /**
13
- * Application context as set on `gridOptions.context`.
22
+ * AG Grid's [`context` field](https://www.ag-grid.com/angular-data-grid/context/).
14
23
  */
15
24
  context: any;
16
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyAgGridHeaderInfo, never>;
@@ -6,5 +6,15 @@ import { IHeaderParams } from 'ag-grid-community';
6
6
  * property on `ColDef`.
7
7
  */
8
8
  export interface SkyAgGridHeaderParams extends IHeaderParams {
9
+ /**
10
+ * Hides the column header text.
11
+ * Each column should have a `headerName` defined in the column definition for accessibility.
12
+ * This option allows that text to be hidden from view while still being available to screen readers.
13
+ */
14
+ headerHidden?: boolean;
15
+ /**
16
+ * The component to display as inline help beside the column header.
17
+ * @see SkyAgGridHeaderInfo
18
+ */
9
19
  inlineHelpComponent?: Type<unknown>;
10
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/ag-grid",
3
- "version": "11.19.0",
3
+ "version": "11.19.2",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -36,18 +36,18 @@
36
36
  "@angular/common": "^18.2.8",
37
37
  "@angular/core": "^18.2.8",
38
38
  "@angular/forms": "^18.2.8",
39
- "@skyux/autonumeric": "11.19.0",
40
- "@skyux/core": "11.19.0",
41
- "@skyux/data-manager": "11.19.0",
42
- "@skyux/datetime": "11.19.0",
43
- "@skyux/forms": "11.19.0",
44
- "@skyux/i18n": "11.19.0",
45
- "@skyux/icon": "11.19.0",
46
- "@skyux/indicators": "11.19.0",
47
- "@skyux/layout": "11.19.0",
48
- "@skyux/lookup": "11.19.0",
49
- "@skyux/popovers": "11.19.0",
50
- "@skyux/theme": "11.19.0",
39
+ "@skyux/autonumeric": "11.19.2",
40
+ "@skyux/core": "11.19.2",
41
+ "@skyux/data-manager": "11.19.2",
42
+ "@skyux/datetime": "11.19.2",
43
+ "@skyux/forms": "11.19.2",
44
+ "@skyux/i18n": "11.19.2",
45
+ "@skyux/icon": "11.19.2",
46
+ "@skyux/indicators": "11.19.2",
47
+ "@skyux/layout": "11.19.2",
48
+ "@skyux/lookup": "11.19.2",
49
+ "@skyux/popovers": "11.19.2",
50
+ "@skyux/theme": "11.19.2",
51
51
  "ag-grid-angular": "^32.2.2",
52
52
  "ag-grid-community": "^32.2.2"
53
53
  },