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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.
|
|
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.
|
|
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, '-'),
|