@skyux/ag-grid 14.4.0 → 14.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/ag-grid",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.0",
|
|
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.
|
|
40
|
-
"@skyux/core": "14.
|
|
41
|
-
"@skyux/data-manager": "14.
|
|
42
|
-
"@skyux/datetime": "14.
|
|
43
|
-
"@skyux/forms": "14.
|
|
44
|
-
"@skyux/i18n": "14.
|
|
45
|
-
"@skyux/icon": "14.
|
|
46
|
-
"@skyux/indicators": "14.
|
|
47
|
-
"@skyux/layout": "14.
|
|
48
|
-
"@skyux/lookup": "14.
|
|
49
|
-
"@skyux/popovers": "14.
|
|
50
|
-
"@skyux/theme": "14.
|
|
39
|
+
"@skyux/autonumeric": "14.5.0",
|
|
40
|
+
"@skyux/core": "14.5.0",
|
|
41
|
+
"@skyux/data-manager": "14.5.0",
|
|
42
|
+
"@skyux/datetime": "14.5.0",
|
|
43
|
+
"@skyux/forms": "14.5.0",
|
|
44
|
+
"@skyux/i18n": "14.5.0",
|
|
45
|
+
"@skyux/icon": "14.5.0",
|
|
46
|
+
"@skyux/indicators": "14.5.0",
|
|
47
|
+
"@skyux/layout": "14.5.0",
|
|
48
|
+
"@skyux/lookup": "14.5.0",
|
|
49
|
+
"@skyux/popovers": "14.5.0",
|
|
50
|
+
"@skyux/theme": "14.5.0",
|
|
51
51
|
"ag-grid-angular": "^35.1.0",
|
|
52
52
|
"ag-grid-community": "^35.1.0"
|
|
53
53
|
},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
2
2
|
import { SkyHarnessFilters, SkyComponentHarness } from '@skyux/core/testing';
|
|
3
|
+
import { GridApi } from 'ag-grid-community';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* A set of criteria that can be used to filter a list of `SkyAgGridWrapperHarness` instances.
|
|
@@ -11,7 +12,6 @@ interface SkyAgGridWrapperHarnessFilters extends SkyHarnessFilters {
|
|
|
11
12
|
* Harness for interacting with SKY UX AG Grid components in tests.
|
|
12
13
|
*/
|
|
13
14
|
declare class SkyAgGridWrapperHarness extends SkyComponentHarness {
|
|
14
|
-
#private;
|
|
15
15
|
/**
|
|
16
16
|
* @internal
|
|
17
17
|
*/
|
|
@@ -33,6 +33,10 @@ declare class SkyAgGridWrapperHarness extends SkyComponentHarness {
|
|
|
33
33
|
* Retrieves the header names of the currently displayed columns.
|
|
34
34
|
*/
|
|
35
35
|
getDisplayedColumnHeaderNames(): Promise<string[]>;
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
getGridApi(): Promise<GridApi>;
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
export { SkyAgGridWrapperHarness };
|