ecabs-components 0.0.59 → 0.0.60

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.
@@ -461,7 +461,7 @@ class DigitsOnlyDirective {
461
461
  (e.key === 'c' && e.metaKey) || // Allow: Cmd+C (Mac)
462
462
  (e.key === 'v' && e.metaKey) || // Allow: Cmd+V (Mac)
463
463
  (e.key === 'x' && e.metaKey) || // Allow: Cmd+X (Mac)
464
- (this.decimal && e.key === this.decimalSeparator && this.decimalCounter < 1) || // Allow: only one decimal point
464
+ (this.decimal && e.key === this.decimalSeparator && this.decimalCounter <= 1) || // Allow: only one decimal point
465
465
  (this.decimal && e.key === this.minus && this.minusCounter < 1) // Allow: only one minus
466
466
  ) {
467
467
  return;