@elliemae/ds-data-table-filters 3.33.0-next.4 → 3.33.0-next.9

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.
@@ -32,5 +32,5 @@ __export(singleDateFilterFn_exports, {
32
32
  });
33
33
  module.exports = __toCommonJS(singleDateFilterFn_exports);
34
34
  var React = __toESM(require("react"));
35
- const singleDateFilterFn = (datum, filterValue, filterKey) => filterValue === "" || datum[filterKey] === filterValue;
35
+ const singleDateFilterFn = (datum, filterValue, filterKey) => filterValue === "" || filterValue === null || datum[filterKey] === filterValue;
36
36
  //# sourceMappingURL=singleDateFilterFn.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../src/parts/SingleDateFilter/singleDateFilterFn.ts", "../../../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export const singleDateFilterFn = (datum: Record<string, unknown>, filterValue: string, filterKey: string) =>\n filterValue === '' || datum[filterKey] === filterValue;\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,qBAAqB,CAAC,OAAgC,aAAqB,cACtF,gBAAgB,MAAM,MAAM,SAAS,MAAM;",
4
+ "sourcesContent": ["export const singleDateFilterFn = (datum: Record<string, unknown>, filterValue: string, filterKey: string) =>\n filterValue === '' || filterValue === null || datum[filterKey] === filterValue;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,qBAAqB,CAAC,OAAgC,aAAqB,cACtF,gBAAgB,MAAM,gBAAgB,QAAQ,MAAM,SAAS,MAAM;",
6
6
  "names": []
7
7
  }
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- const singleDateFilterFn = (datum, filterValue, filterKey) => filterValue === "" || datum[filterKey] === filterValue;
2
+ const singleDateFilterFn = (datum, filterValue, filterKey) => filterValue === "" || filterValue === null || datum[filterKey] === filterValue;
3
3
  export {
4
4
  singleDateFilterFn
5
5
  };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/parts/SingleDateFilter/singleDateFilterFn.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const singleDateFilterFn = (datum: Record<string, unknown>, filterValue: string, filterKey: string) =>\n filterValue === '' || datum[filterKey] === filterValue;\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,qBAAqB,CAAC,OAAgC,aAAqB,cACtF,gBAAgB,MAAM,MAAM,SAAS,MAAM;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const singleDateFilterFn = (datum: Record<string, unknown>, filterValue: string, filterKey: string) =>\n filterValue === '' || filterValue === null || datum[filterKey] === filterValue;\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,qBAAqB,CAAC,OAAgC,aAAqB,cACtF,gBAAgB,MAAM,gBAAgB,QAAQ,MAAM,SAAS,MAAM;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-data-table-filters",
3
- "version": "3.33.0-next.4",
3
+ "version": "3.33.0-next.9",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Data Table Filters",
6
6
  "files": [
@@ -36,26 +36,26 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@xstyled/styled-components": "~3.6.0",
39
- "@elliemae/ds-button-v2": "3.33.0-next.4",
40
- "@elliemae/ds-form-date-time-picker": "3.33.0-next.4",
41
- "@elliemae/ds-form-helpers-mask-hooks": "3.33.0-next.4",
42
- "@elliemae/ds-form-layout-blocks": "3.33.0-next.4",
43
- "@elliemae/ds-grid": "3.33.0-next.4",
44
- "@elliemae/ds-pills-v2": "3.33.0-next.4",
45
- "@elliemae/ds-popperjs": "3.33.0-next.4",
46
- "@elliemae/ds-icons": "3.33.0-next.4",
47
- "@elliemae/ds-props-helpers": "3.33.0-next.4",
48
- "@elliemae/ds-system": "3.33.0-next.4",
49
- "@elliemae/ds-typescript-helpers": "3.33.0-next.4",
50
- "@elliemae/ds-utilities": "3.33.0-next.4",
51
- "@elliemae/ds-form-combobox": "3.33.0-next.4",
52
- "@elliemae/ds-controlled-form": "3.33.0-next.4",
53
- "@elliemae/ds-form-date-range-picker": "3.33.0-next.4"
39
+ "@elliemae/ds-button-v2": "3.33.0-next.9",
40
+ "@elliemae/ds-controlled-form": "3.33.0-next.9",
41
+ "@elliemae/ds-form-combobox": "3.33.0-next.9",
42
+ "@elliemae/ds-form-date-range-picker": "3.33.0-next.9",
43
+ "@elliemae/ds-form-date-time-picker": "3.33.0-next.9",
44
+ "@elliemae/ds-form-helpers-mask-hooks": "3.33.0-next.9",
45
+ "@elliemae/ds-grid": "3.33.0-next.9",
46
+ "@elliemae/ds-form-layout-blocks": "3.33.0-next.9",
47
+ "@elliemae/ds-icons": "3.33.0-next.9",
48
+ "@elliemae/ds-pills-v2": "3.33.0-next.9",
49
+ "@elliemae/ds-popperjs": "3.33.0-next.9",
50
+ "@elliemae/ds-system": "3.33.0-next.9",
51
+ "@elliemae/ds-utilities": "3.33.0-next.9",
52
+ "@elliemae/ds-typescript-helpers": "3.33.0-next.9",
53
+ "@elliemae/ds-props-helpers": "3.33.0-next.9"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@elliemae/pui-cli": "~9.0.0-next.31",
57
57
  "styled-components": "~5.3.9",
58
- "@elliemae/ds-monorepo-devops": "3.33.0-next.4"
58
+ "@elliemae/ds-monorepo-devops": "3.33.0-next.9"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@testing-library/jest-dom": "~5.16.4",
@@ -71,7 +71,7 @@
71
71
  },
72
72
  "scripts": {
73
73
  "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
74
- "test": "pui-cli test --passWithNoTests",
74
+ "test": "pui-cli test --passWithNoTests --coverage=\"false\"",
75
75
  "lint": "node ../../../scripts/lint.mjs --fix",
76
76
  "eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../../.eslintrc.js' src/",
77
77
  "dts": "node ../../scripts/dts.mjs",