@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.
- package/documentation.json +937 -803
- package/esm2022/lib/modules/ag-grid/ag-grid-wrapper.component.mjs +7 -5
- package/esm2022/lib/modules/ag-grid/ag-grid.service.mjs +2 -2
- package/esm2022/lib/modules/ag-grid/header/header.component.mjs +3 -3
- package/esm2022/lib/modules/ag-grid/types/header-group-info.mjs +8 -5
- package/esm2022/lib/modules/ag-grid/types/header-group-params.mjs +1 -1
- package/esm2022/lib/modules/ag-grid/types/header-info.mjs +8 -5
- package/esm2022/lib/modules/ag-grid/types/header-params.mjs +1 -1
- package/fesm2022/skyux-ag-grid.mjs +23 -15
- package/fesm2022/skyux-ag-grid.mjs.map +1 -1
- package/lib/modules/ag-grid/types/header-group-info.d.ts +14 -5
- package/lib/modules/ag-grid/types/header-group-params.d.ts +5 -1
- package/lib/modules/ag-grid/types/header-info.d.ts +14 -5
- package/lib/modules/ag-grid/types/header-params.d.ts +10 -0
- package/package.json +13 -13
|
@@ -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
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
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
|
-
*
|
|
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 `
|
|
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
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
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.
|
|
40
|
-
"@skyux/core": "11.19.
|
|
41
|
-
"@skyux/data-manager": "11.19.
|
|
42
|
-
"@skyux/datetime": "11.19.
|
|
43
|
-
"@skyux/forms": "11.19.
|
|
44
|
-
"@skyux/i18n": "11.19.
|
|
45
|
-
"@skyux/icon": "11.19.
|
|
46
|
-
"@skyux/indicators": "11.19.
|
|
47
|
-
"@skyux/layout": "11.19.
|
|
48
|
-
"@skyux/lookup": "11.19.
|
|
49
|
-
"@skyux/popovers": "11.19.
|
|
50
|
-
"@skyux/theme": "11.19.
|
|
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
|
},
|