@colijnit/corecomponents_v12 12.0.62 → 12.0.63
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.
- package/bundles/colijnit-corecomponents_v12.umd.js +12 -2
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/esm2015/lib/components/input-search/input-search.component.js +2 -1
- package/fesm2015/colijnit-corecomponents_v12.js +1 -0
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/input-search/style/_layout.scss +6 -0
- package/lib/style/_input.mixins.scss +3 -3
- package/package.json +1 -1
|
@@ -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.
|
|
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 **/
|
|
@@ -7734,6 +7743,7 @@
|
|
|
7734
7743
|
InputSearchComponent.prototype.handleKeyDown = function (event) {
|
|
7735
7744
|
switch (event.code) {
|
|
7736
7745
|
case 'Enter':
|
|
7746
|
+
case 'NumpadEnter':
|
|
7737
7747
|
event.preventDefault();
|
|
7738
7748
|
this.search.next(this.model);
|
|
7739
7749
|
return;
|