@shival99/z-ui 2.1.9 → 2.1.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.
@@ -1650,7 +1650,11 @@ class ZTableEditCellComponent {
1650
1650
  [zMin]="editConfig().min"
1651
1651
  [zMax]="editConfig().max"
1652
1652
  [zStep]="editConfig().step ?? 1"
1653
+ [zMask]="editConfig().mask || ''"
1654
+ [zDecimalPlaces]="editConfig().decimalPlaces"
1655
+ [zAllowNegative]="editConfig().allowNegative ?? false"
1653
1656
  [zThousandSeparator]="editConfig().thousandSeparator || ','"
1657
+ [zDecimalMarker]="editConfig().decimalMarker || '.'"
1654
1658
  [zDisabled]="cfg().disabled"
1655
1659
  [zReadonly]="cfg().readonly"
1656
1660
  [ngModel]="numericValue()"
@@ -1794,7 +1798,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImpor
1794
1798
  [zMin]="editConfig().min"
1795
1799
  [zMax]="editConfig().max"
1796
1800
  [zStep]="editConfig().step ?? 1"
1801
+ [zMask]="editConfig().mask || ''"
1802
+ [zDecimalPlaces]="editConfig().decimalPlaces"
1803
+ [zAllowNegative]="editConfig().allowNegative ?? false"
1797
1804
  [zThousandSeparator]="editConfig().thousandSeparator || ','"
1805
+ [zDecimalMarker]="editConfig().decimalMarker || '.'"
1798
1806
  [zDisabled]="cfg().disabled"
1799
1807
  [zReadonly]="cfg().readonly"
1800
1808
  [ngModel]="numericValue()"
@@ -5542,7 +5550,7 @@ class ZTableComponent {
5542
5550
  cellSelectionOptions = computed(() => {
5543
5551
  const config = this.zConfig().enableCellSelection;
5544
5552
  if (config === false || config === undefined) {
5545
- return { enabled: true, range: true, contextMenu: true, copyWithHeaders: true };
5553
+ // return { enabled: true, range: true, contextMenu: true, copyWithHeaders: true };
5546
5554
  return { enabled: false, range: false, contextMenu: false, copyWithHeaders: false };
5547
5555
  }
5548
5556
  if (config === true) {