@syncfusion/ej2-querybuilder 26.2.8 → 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.
@@ -2292,8 +2292,7 @@ var QueryBuilder = /** @__PURE__ @class */ (function (_super) {
2292
2292
  var numericTextBoxObj = getInstance(elem, NumericTextBox);
2293
2293
  var decimalSeparator = getValue('decimal', getNumericObject(this.locale));
2294
2294
  if (isNaN(value) && elem.value.indexOf(decimalSeparator) !== -1) {
2295
- var numberValue = parseFloat(args.currentTarget.value);
2296
- value = numberValue;
2295
+ value = this.intl.getNumberParser({ format: 'n' })(elem.value);
2297
2296
  }
2298
2297
  numericTextBoxObj.value = value;
2299
2298
  this.isNumInput = true;