framework-do-dede 3.3.0 → 3.3.1

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.
@@ -173,6 +173,8 @@ export default class ControllerHandler {
173
173
  }
174
174
  if (type === 'string')
175
175
  value = value.toString();
176
+ if (type === 'number')
177
+ value = parseFloat(value);
176
178
  filter[paramNameFiltered] = value;
177
179
  }
178
180
  return filter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framework-do-dede",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",