@shival99/z-ui 2.1.14 → 2.1.17

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.
@@ -1667,8 +1667,8 @@ class ZTableEditCellComponent {
1667
1667
  [zMask]="editConfig().mask || ''"
1668
1668
  [zDecimalPlaces]="editConfig().decimalPlaces"
1669
1669
  [zAllowNegative]="editConfig().allowNegative ?? false"
1670
- [zThousandSeparator]="editConfig().thousandSeparator || ','"
1671
- [zDecimalMarker]="editConfig().decimalMarker || '.'"
1670
+ [zThousandSeparator]="editConfig().thousandSeparator"
1671
+ [zDecimalMarker]="editConfig().decimalMarker"
1672
1672
  [zLoading]="cfg().loading"
1673
1673
  [zLoadingOutline]="true"
1674
1674
  [zDisabled]="cfg().disabled"
@@ -1828,8 +1828,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImpor
1828
1828
  [zMask]="editConfig().mask || ''"
1829
1829
  [zDecimalPlaces]="editConfig().decimalPlaces"
1830
1830
  [zAllowNegative]="editConfig().allowNegative ?? false"
1831
- [zThousandSeparator]="editConfig().thousandSeparator || ','"
1832
- [zDecimalMarker]="editConfig().decimalMarker || '.'"
1831
+ [zThousandSeparator]="editConfig().thousandSeparator"
1832
+ [zDecimalMarker]="editConfig().decimalMarker"
1833
1833
  [zLoading]="cfg().loading"
1834
1834
  [zLoadingOutline]="true"
1835
1835
  [zDisabled]="cfg().disabled"
@@ -4116,8 +4116,8 @@ class ZTableCellEditPipe {
4116
4116
  mask: config.mask ?? '',
4117
4117
  decimalPlaces: config.decimalPlaces,
4118
4118
  allowNegative: config.allowNegative ?? false,
4119
- thousandSeparator: config.thousandSeparator ?? '',
4120
- decimalMarker: config.decimalMarker ?? '.',
4119
+ thousandSeparator: config.thousandSeparator,
4120
+ decimalMarker: config.decimalMarker,
4121
4121
  selectConfig: config.selectConfig ?? {},
4122
4122
  selectMode: config.selectMode ?? config.mode ?? 'single',
4123
4123
  selectShowSearch: config.selectShowSearch ?? true,