dp-widgets-framework 1.5.2 → 1.5.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.
package/dist/index.esm.js CHANGED
@@ -39342,7 +39342,7 @@ const convertFilterStateToGroups = (filterState) => {
39342
39342
  return [];
39343
39343
  }
39344
39344
  return filterState.column_values.map((filter) => ({
39345
- id: `${filter.table_name}_${filter.column}`,
39345
+ id: `${filter.column}`,
39346
39346
  name: filter.column.replace(/_/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase()),
39347
39347
  options: filter.values.map((value) => ({
39348
39348
  id: value.toLowerCase().replace(/\s+/g, '-'),
package/dist/index.js CHANGED
@@ -39369,7 +39369,7 @@ const convertFilterStateToGroups = (filterState) => {
39369
39369
  return [];
39370
39370
  }
39371
39371
  return filterState.column_values.map((filter) => ({
39372
- id: `${filter.table_name}_${filter.column}`,
39372
+ id: `${filter.column}`,
39373
39373
  name: filter.column.replace(/_/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase()),
39374
39374
  options: filter.values.map((value) => ({
39375
39375
  id: value.toLowerCase().replace(/\s+/g, '-'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dp-widgets-framework",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org"