@trackunit/filters-filter-bar 1.8.47 → 1.8.50

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 CHANGED
@@ -1158,7 +1158,7 @@ const FilterTableComponent = ({ filterKey, filterBarDefinition, filterBarConfig,
1158
1158
  * Recursively gets all descendant keys for a given hierarchical option, including the option itself.
1159
1159
  *
1160
1160
  * @param option The starting hierarchical filter option.
1161
- * @returns An array of string keys representing the option and all its descendants.
1161
+ * @returns {Array<string>} An array of string keys representing the option and all its descendants.
1162
1162
  */
1163
1163
  const getAllDescendantKeys = (option) => {
1164
1164
  let keys = [option.key];
package/index.esm.js CHANGED
@@ -1156,7 +1156,7 @@ const FilterTableComponent = ({ filterKey, filterBarDefinition, filterBarConfig,
1156
1156
  * Recursively gets all descendant keys for a given hierarchical option, including the option itself.
1157
1157
  *
1158
1158
  * @param option The starting hierarchical filter option.
1159
- * @returns An array of string keys representing the option and all its descendants.
1159
+ * @returns {Array<string>} An array of string keys representing the option and all its descendants.
1160
1160
  */
1161
1161
  const getAllDescendantKeys = (option) => {
1162
1162
  let keys = [option.key];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/filters-filter-bar",
3
- "version": "1.8.47",
3
+ "version": "1.8.50",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -13,18 +13,18 @@
13
13
  "tailwind-merge": "^2.0.0",
14
14
  "string-ts": "^2.0.0",
15
15
  "zod": "^3.23.8",
16
- "@trackunit/iris-app-api": "1.7.30",
17
- "@trackunit/react-core-hooks": "1.7.34",
18
- "@trackunit/react-filter-components": "1.7.46",
19
- "@trackunit/react-date-and-time-components": "1.10.46",
20
- "@trackunit/shared-utils": "1.9.29",
21
- "@trackunit/react-form-components": "1.8.45",
22
- "@trackunit/react-core-contexts-api": "1.8.31",
23
- "@trackunit/geo-json-utils": "1.7.29",
24
- "@trackunit/i18n-library-translation": "1.7.35",
25
- "@trackunit/css-class-variance-utilities": "1.7.29",
26
- "@trackunit/react-components": "1.9.43",
27
- "@trackunit/react-test-setup": "1.4.29",
16
+ "@trackunit/iris-app-api": "1.7.32",
17
+ "@trackunit/react-core-hooks": "1.7.37",
18
+ "@trackunit/react-filter-components": "1.7.49",
19
+ "@trackunit/react-date-and-time-components": "1.10.49",
20
+ "@trackunit/shared-utils": "1.9.31",
21
+ "@trackunit/react-form-components": "1.8.48",
22
+ "@trackunit/react-core-contexts-api": "1.8.34",
23
+ "@trackunit/geo-json-utils": "1.7.31",
24
+ "@trackunit/i18n-library-translation": "1.7.38",
25
+ "@trackunit/css-class-variance-utilities": "1.7.31",
26
+ "@trackunit/react-components": "1.9.46",
27
+ "@trackunit/react-test-setup": "1.4.31",
28
28
  "@tanstack/react-router": "1.114.29"
29
29
  },
30
30
  "module": "./index.esm.js",
@@ -3,7 +3,7 @@ import { HierarchicalFilterOption } from "../DefaultFilterTypes";
3
3
  * Recursively gets all descendant keys for a given hierarchical option, including the option itself.
4
4
  *
5
5
  * @param option The starting hierarchical filter option.
6
- * @returns An array of string keys representing the option and all its descendants.
6
+ * @returns {Array<string>} An array of string keys representing the option and all its descendants.
7
7
  */
8
8
  export declare const getAllDescendantKeys: (option: HierarchicalFilterOption) => Array<string>;
9
9
  /**