@syncfusion/ej2-querybuilder 26.2.10 → 26.2.11

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.
@@ -2235,8 +2235,7 @@ let QueryBuilder = class QueryBuilder extends Component {
2235
2235
  const numericTextBoxObj = getInstance(elem, NumericTextBox);
2236
2236
  const decimalSeparator = getValue('decimal', getNumericObject(this.locale));
2237
2237
  if (isNaN(value) && elem.value.indexOf(decimalSeparator) !== -1) {
2238
- let numberValue = parseFloat(args.currentTarget.value);
2239
- value = numberValue;
2238
+ value = this.intl.getNumberParser({ format: 'n' })(elem.value);
2240
2239
  }
2241
2240
  numericTextBoxObj.value = value;
2242
2241
  this.isNumInput = true;