@bytebrand/fe-ui-core 4.1.64 → 4.1.65

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.1.64",
3
+ "version": "4.1.65",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -116,15 +116,15 @@ const RangeControlled = ({
116
116
 
117
117
  const fromProps = {
118
118
  size: 'custom',
119
- value: from ? from : null,
119
+ value:from ? numberWithDot(from):null,
120
120
  label: `${t('filters.from')} ${unit ? unit : '€'}`,
121
121
  onChange: (value: any) => onDropDownChange('from', value),
122
- items: getOptions(sliceLessThan(getDropdownRange(name), to))
122
+ items: getOptions(sliceLessThan(getDropdownRange(name), to)),
123
123
  };
124
124
 
125
125
  const toProps = {
126
126
  size: 'custom',
127
- value: to ? to : null,
127
+ value:to ? numberWithDot(to):null,
128
128
  label: `${t('filters.to')} ${unit ? unit : '€'}`,
129
129
  onChange: (value: any) => onDropDownChange('to', value),
130
130
  items: getOptions(sliceMoreThan(getDropdownRange(name), from))