@trackunit/iris-app-runtime-core-api 1.6.15 → 1.6.18
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": "@trackunit/iris-app-runtime-core-api",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.18",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"jest-fetch-mock": "^3.0.3",
|
|
11
|
-
"@trackunit/react-core-contexts-api": "1.7.
|
|
12
|
-
"@trackunit/react-test-setup": "1.3.
|
|
11
|
+
"@trackunit/react-core-contexts-api": "1.7.17",
|
|
12
|
+
"@trackunit/react-test-setup": "1.3.16"
|
|
13
13
|
},
|
|
14
14
|
"module": "./index.esm.js",
|
|
15
15
|
"main": "./index.cjs.js",
|
package/src/ChildConnector.d.ts
CHANGED
|
@@ -37,4 +37,11 @@ export interface ChildConnectorApi {
|
|
|
37
37
|
* @param sorting new sorting state
|
|
38
38
|
*/
|
|
39
39
|
onAssetSortingStateChanged: (sorting: AssetSortingContextValue["sortingState"]) => void;
|
|
40
|
+
/**
|
|
41
|
+
* Gets called when the filter bar values change.
|
|
42
|
+
*
|
|
43
|
+
* @param filters new filter bar values
|
|
44
|
+
* @deprecated Use { ChildConnectorApi.onAssetsFilterBarValuesChanged} instead.
|
|
45
|
+
*/
|
|
46
|
+
onFilterBarValuesChanged: (filters: FilterBarValues | null) => void;
|
|
40
47
|
}
|
package/src/HostConnector.d.ts
CHANGED
|
@@ -27,6 +27,11 @@ export interface HostConnectorApi extends IAnalyticsContextAsync<Record<string,
|
|
|
27
27
|
setWidgetTitle(title: string): Promise<void>;
|
|
28
28
|
openEditMode(): Promise<void>;
|
|
29
29
|
closeEditMode(): Promise<void>;
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated Use { getAssetsFilterBarValues } instead.
|
|
32
|
+
* @returns { Promise<FilterBarValues | null> } empty object!
|
|
33
|
+
*/
|
|
34
|
+
getFilterBarValues(): Promise<FilterBarValues | null>;
|
|
30
35
|
/**
|
|
31
36
|
* Used to get the current filter bar values for assets, only if the host page has a filterbar.
|
|
32
37
|
*/
|