@sis-cc/dotstatsuite-components 17.24.0 → 17.25.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.
@@ -62,7 +62,7 @@ var dataTransformer = exports.dataTransformer = function dataTransformer(dataNew
62
62
  return false;
63
63
  }
64
64
  var valuesIds = R.pluck('id', values);
65
- return R.isEmpty(R.difference(valuesIds), hiddenCombinations[id]);
65
+ return R.isEmpty(R.difference(valuesIds, hiddenCombinations[id]));
66
66
  };
67
67
 
68
68
  //--------------------------------------------------------------------------------------------Header
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sis-cc/dotstatsuite-components",
3
3
  "description": "Set components based on React.",
4
- "version": "17.24.0",
4
+ "version": "17.25.0",
5
5
  "main": "lib/index.js",
6
6
  "author": "OECD",
7
7
  "license": "MIT",
@@ -40,7 +40,7 @@ export const dataTransformer = (dataNew, options = {}) => {
40
40
  return false;
41
41
  }
42
42
  const valuesIds = R.pluck('id', values);
43
- return R.isEmpty(R.difference(valuesIds), hiddenCombinations[id]);
43
+ return R.isEmpty(R.difference(valuesIds, hiddenCombinations[id]));
44
44
  }
45
45
 
46
46
  //--------------------------------------------------------------------------------------------Header