@reltio/components 1.4.2112 → 1.4.2114

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.
@@ -16,7 +16,7 @@ var buildSharingFilterClause = function (value) {
16
16
  return "equals(sharing, '".concat(value, "')");
17
17
  };
18
18
  var buildDestinationFilterClause = function (value) {
19
- return "equals(integrationIDs, '".concat(value, "')");
19
+ return "contains(integrationIDs, '".concat(value, "')");
20
20
  };
21
21
  var buildSearchValueFilterClause = function (value) {
22
22
  return "contains(label, '".concat(value, "')");
@@ -78,7 +78,8 @@ var useSegmentsSizesLoader = function (segments, signal) {
78
78
  }
79
79
  });
80
80
  }); });
81
- }, [segments, signal]);
81
+ // eslint-disable-next-line react-hooks/exhaustive-deps
82
+ }, [segments]);
82
83
  return segmentsSizes;
83
84
  };
84
85
  exports.useSegmentsSizesLoader = useSegmentsSizesLoader;
@@ -13,7 +13,7 @@ var buildSharingFilterClause = function (value) {
13
13
  return "equals(sharing, '".concat(value, "')");
14
14
  };
15
15
  var buildDestinationFilterClause = function (value) {
16
- return "equals(integrationIDs, '".concat(value, "')");
16
+ return "contains(integrationIDs, '".concat(value, "')");
17
17
  };
18
18
  var buildSearchValueFilterClause = function (value) {
19
19
  return "contains(label, '".concat(value, "')");
@@ -75,6 +75,7 @@ export var useSegmentsSizesLoader = function (segments, signal) {
75
75
  }
76
76
  });
77
77
  }); });
78
- }, [segments, signal]);
78
+ // eslint-disable-next-line react-hooks/exhaustive-deps
79
+ }, [segments]);
79
80
  return segmentsSizes;
80
81
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reltio/components",
3
- "version": "1.4.2112",
3
+ "version": "1.4.2114",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./index.js",