@colijnit/corecomponents_v12 262.1.15 → 262.1.16

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.
@@ -9344,6 +9344,9 @@ class InputNumberPickerComponent extends BaseInputComponent {
9344
9344
  }
9345
9345
  handleInputKeyDown(event) {
9346
9346
  // event.preventDefault();
9347
+ if (this.readonly) {
9348
+ return false;
9349
+ }
9347
9350
  if (event.code === 'Enter' || event.code === 'NumpadEnter') {
9348
9351
  this.modelChange.next(this.model);
9349
9352
  return false;