@datawheel/data-explorer 1.3.2 → 1.3.3

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.
Files changed (2) hide show
  1. package/dist/main.mjs +1 -4
  2. package/package.json +5 -1
package/dist/main.mjs CHANGED
@@ -6915,14 +6915,11 @@ function VizbuilderView(props) {
6915
6915
  const data = query.data;
6916
6916
  const types = (_a = query.data) == null ? void 0 : _a.types;
6917
6917
  const columns = Object.keys(types || {});
6918
- const filteredData = ((data == null ? void 0 : data.data) || []).filter(
6919
- (row) => Object.values(row).every((value) => value !== null)
6920
- );
6921
6918
  const dataset = {
6922
6919
  columns: Object.fromEntries(
6923
6920
  columns.map((columnName) => [columnName, buildColumn(cube, columnName, columns)])
6924
6921
  ),
6925
- data: filteredData,
6922
+ data: data == null ? void 0 : data.data,
6926
6923
  locale: params.locale || "en"
6927
6924
  };
6928
6925
  return /* @__PURE__ */ React15__default.createElement(Vizbuilder, { datasets: dataset });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datawheel/data-explorer",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "main": "./dist/main.mjs",
5
5
  "types": "./dist/main.d.mts",
6
6
  "files": [
@@ -17,6 +17,10 @@
17
17
  "start": "vite serve",
18
18
  "test": "echo 'no tests defined yet'"
19
19
  },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Datawheel/data-explorer.git"
23
+ },
20
24
  "dependencies": {
21
25
  "@datawheel/use-translation": "^0.2.0",
22
26
  "@datawheel/vizbuilder": "^0.7.5",