@trackunit/filters-graphql-hook 1.12.2 → 1.13.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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +9 -9
- package/src/useAssetQueryFilters.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -429,7 +429,7 @@ const convertToAssetSortInput = ({ sortBy, order, customFieldDefinitionId }) =>
|
|
|
429
429
|
/**
|
|
430
430
|
* A hook used to handle asset query filters.
|
|
431
431
|
* It resets the pagination when filters change.
|
|
432
|
-
* The assetQueryVariables can be passed directly to any
|
|
432
|
+
* The assetQueryVariables can be passed directly to any asset query.
|
|
433
433
|
* The filters are converted to the GraphQL API format.
|
|
434
434
|
*
|
|
435
435
|
* @example const { assetQueryVariables } = useAssetQueryFilters({ filters: filterBar.filterBarConfig.values });
|
package/index.esm.js
CHANGED
|
@@ -427,7 +427,7 @@ const convertToAssetSortInput = ({ sortBy, order, customFieldDefinitionId }) =>
|
|
|
427
427
|
/**
|
|
428
428
|
* A hook used to handle asset query filters.
|
|
429
429
|
* It resets the pagination when filters change.
|
|
430
|
-
* The assetQueryVariables can be passed directly to any
|
|
430
|
+
* The assetQueryVariables can be passed directly to any asset query.
|
|
431
431
|
* The filters are converted to the GraphQL API format.
|
|
432
432
|
*
|
|
433
433
|
* @example const { assetQueryVariables } = useAssetQueryFilters({ filters: filterBar.filterBarConfig.values });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/filters-graphql-hook",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"graphql": "^16.10.0",
|
|
14
14
|
"@apollo/client": "3.13.8",
|
|
15
15
|
"zod": "^3.23.8",
|
|
16
|
-
"@trackunit/iris-app-build-utilities": "1.
|
|
17
|
-
"@trackunit/filters-filter-bar": "1.
|
|
18
|
-
"@trackunit/shared-utils": "1.
|
|
19
|
-
"@trackunit/iris-app-api": "1.
|
|
20
|
-
"@trackunit/react-core-contexts-test": "1.
|
|
21
|
-
"@trackunit/i18n-library-translation": "1.
|
|
22
|
-
"@trackunit/iris-app-runtime-core-api": "1.
|
|
23
|
-
"@trackunit/react-core-hooks": "1.
|
|
16
|
+
"@trackunit/iris-app-build-utilities": "1.9.0",
|
|
17
|
+
"@trackunit/filters-filter-bar": "1.10.0",
|
|
18
|
+
"@trackunit/shared-utils": "1.11.0",
|
|
19
|
+
"@trackunit/iris-app-api": "1.12.0",
|
|
20
|
+
"@trackunit/react-core-contexts-test": "1.9.0",
|
|
21
|
+
"@trackunit/i18n-library-translation": "1.9.0",
|
|
22
|
+
"@trackunit/iris-app-runtime-core-api": "1.9.0",
|
|
23
|
+
"@trackunit/react-core-hooks": "1.9.0"
|
|
24
24
|
},
|
|
25
25
|
"module": "./index.esm.js",
|
|
26
26
|
"main": "./index.cjs.js",
|
|
@@ -23,7 +23,7 @@ export interface UseAssetQueryFiltersProps {
|
|
|
23
23
|
/**
|
|
24
24
|
* A hook used to handle asset query filters.
|
|
25
25
|
* It resets the pagination when filters change.
|
|
26
|
-
* The assetQueryVariables can be passed directly to any
|
|
26
|
+
* The assetQueryVariables can be passed directly to any asset query.
|
|
27
27
|
* The filters are converted to the GraphQL API format.
|
|
28
28
|
*
|
|
29
29
|
* @example const { assetQueryVariables } = useAssetQueryFilters({ filters: filterBar.filterBarConfig.values });
|