igniteui-angular-core 16.1.0-beta.3 → 16.1.0

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.
@@ -254,8 +254,9 @@ export function toDoubleCollection(v) {
254
254
  v = v.trim();
255
255
  var vParts = v.split(/[\s,]+(?![^(]*\))/gm);
256
256
  for (var i_2 = 0; i_2 < vParts.length; i_2++) {
257
- vParts[i_2] = v[i_2].trim();
257
+ vParts[i_2] = vParts[i_2].trim();
258
258
  }
259
+ v = vParts;
259
260
  }
260
261
  var doubleCollection = new DoubleCollection();
261
262
  for (var i = 0; v && i < v.length; i++) {