@colijnit/corecomponents_v12 12.0.62 → 12.0.64

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.
@@ -2188,7 +2188,7 @@
2188
2188
  },] }
2189
2189
  ];
2190
2190
 
2191
- /*! *****************************************************************************
2191
+ /******************************************************************************
2192
2192
  Copyright (c) Microsoft Corporation.
2193
2193
 
2194
2194
  Permission to use, copy, modify, and/or distribute this software for any
@@ -2350,7 +2350,11 @@
2350
2350
  var __createBinding = Object.create ? (function (o, m, k, k2) {
2351
2351
  if (k2 === undefined)
2352
2352
  k2 = k;
2353
- Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
2353
+ var desc = Object.getOwnPropertyDescriptor(m, k);
2354
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
2355
+ desc = { enumerable: true, get: function () { return m[k]; } };
2356
+ }
2357
+ Object.defineProperty(o, k2, desc);
2354
2358
  }) : (function (o, m, k, k2) {
2355
2359
  if (k2 === undefined)
2356
2360
  k2 = k;
@@ -2504,6 +2508,11 @@
2504
2508
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
2505
2509
  throw new TypeError("Cannot write private member to an object whose class did not declare it");
2506
2510
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
2511
+ }
2512
+ function __classPrivateFieldIn(state, receiver) {
2513
+ if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function"))
2514
+ throw new TypeError("Cannot use 'in' operator on non-object");
2515
+ return typeof state === "function" ? receiver === state : state.has(receiver);
2507
2516
  }
2508
2517
 
2509
2518
  /** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
@@ -6416,7 +6425,7 @@
6416
6425
  InputComboBoxComponent.decorators = [
6417
6426
  { type: core.Component, args: [{
6418
6427
  selector: "co-input-combo-box",
6419
- template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6428
+ template: "\n <ejs-combobox #combo [dataSource]=\"collection\"\n [fields]=\"fields\"\n [disabled]=\"readonly\"\n [placeholder]=\"placeholder\"\n [autofill]=\"true\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"valueChange.emit($event)\"\n (focus)=\"onFocus()\"\n [popupWidth]=\"popupWidth\"\n [popupHeight]=\"popupHeight\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-combobox>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
6420
6429
  providers: [{
6421
6430
  provide: COMPONENT_INTERFACE_NAME,
6422
6431
  useExisting: core.forwardRef(function () { return InputComboBoxComponent; })
@@ -6442,6 +6451,8 @@
6442
6451
  selected: [{ type: core.Input }],
6443
6452
  placeholder: [{ type: core.Input }],
6444
6453
  shopPopup: [{ type: core.Input }],
6454
+ popupHeight: [{ type: core.Input }],
6455
+ popupWidth: [{ type: core.Input }],
6445
6456
  valueChange: [{ type: core.Output }],
6446
6457
  showClass: [{ type: core.HostBinding, args: ["class.co-input-combo-box",] }]
6447
6458
  };
@@ -7734,6 +7745,7 @@
7734
7745
  InputSearchComponent.prototype.handleKeyDown = function (event) {
7735
7746
  switch (event.code) {
7736
7747
  case 'Enter':
7748
+ case 'NumpadEnter':
7737
7749
  event.preventDefault();
7738
7750
  this.search.next(this.model);
7739
7751
  return;