diginet-core-ui 1.4.29-beta.2 → 1.4.29-beta.4

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.
@@ -354,7 +354,7 @@ const TreeView = /*#__PURE__*/memo( /*#__PURE__*/forwardRef((inProps, reference)
354
354
  handleDisabledParent(currentTarget.parentNode, checked);
355
355
  }
356
356
  }
357
- result.push(...Object.keys(currentValue[unique]).filter(v => currentValue[unique][v]));
357
+ result.push(...Object.keys(currentValue[unique]).filter(v => currentValue[unique][v]).filter(v => v !== ''));
358
358
  value = result;
359
359
  if ((_value = value) !== null && _value !== void 0 && _value.length) {
360
360
  data = dataSource === null || dataSource === void 0 ? void 0 : dataSource.filter(obj => value.includes(typeof obj === 'object' ? obj[valueExpr] : obj));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diginet-core-ui",
3
- "version": "1.4.29-beta.2",
3
+ "version": "1.4.29-beta.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "license": "UNLICENSED",
@@ -25,7 +25,8 @@
25
25
  "lint": "eslint --fix --config .eslintrc.js \"**/*.js\"",
26
26
  "eslint-test": "onchange \"src/**/*.{js,jsx,json}\" -- eslint . --fix",
27
27
  "freshtall": "npm cache clean --force && rm -rf node_modules && rm -f package-lock.json && npm install",
28
- "test-storybook": "test-storybook --url http://localhost:9050"
28
+ "test-storybook": "test-storybook --url http://localhost:9050",
29
+ "preinstall": "echo {} > package-lock.json"
29
30
  },
30
31
  "dependencies": {
31
32
  "@emotion/core": "^10.0.35",