@colijnit/corecomponents_v12 12.0.61 → 12.0.62
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 +3 -12
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js +2 -0
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- 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,11 +2350,7 @@
|
|
|
2350
2350
|
var __createBinding = Object.create ? (function (o, m, k, k2) {
|
|
2351
2351
|
if (k2 === undefined)
|
|
2352
2352
|
k2 = k;
|
|
2353
|
-
|
|
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);
|
|
2353
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function () { return m[k]; } });
|
|
2358
2354
|
}) : (function (o, m, k, k2) {
|
|
2359
2355
|
if (k2 === undefined)
|
|
2360
2356
|
k2 = k;
|
|
@@ -2508,11 +2504,6 @@
|
|
|
2508
2504
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver))
|
|
2509
2505
|
throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
2510
2506
|
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);
|
|
2516
2507
|
}
|
|
2517
2508
|
|
|
2518
2509
|
/** AUTO GENERATED FILE. DO NOT CHANGE.. OR YOU WILL SUFFER THE CONSEQUENCES OF YOUR ACTIONS **/
|
|
@@ -6244,7 +6235,7 @@
|
|
|
6244
6235
|
InputCheckboxComponent.decorators = [
|
|
6245
6236
|
{ type: core.Component, args: [{
|
|
6246
6237
|
selector: "co-input-checkbox",
|
|
6247
|
-
template: "\n <ejs-checkbox [label]=\"label\"\n [name]=\"name\"\n [cssClass]=\"cssClass\"\n [ngModel]=\"model\"\n [disabled]=\"disabled\"\n (ngModelChange)=\"handleModelChange($event)\"\n ></ejs-checkbox>\n ",
|
|
6238
|
+
template: "\n <ejs-checkbox [label]=\"label\"\n [name]=\"name\"\n [cssClass]=\"cssClass\"\n [ngModel]=\"model\"\n [disabled]=\"disabled\"\n [style.pointer-events]=\"(readonly == true) ? 'none' : 'auto'\"\n (click)=\"!readonly\"\n (ngModelChange)=\"handleModelChange($event)\"\n ></ejs-checkbox>\n ",
|
|
6248
6239
|
providers: [{
|
|
6249
6240
|
provide: COMPONENT_INTERFACE_NAME,
|
|
6250
6241
|
useExisting: core.forwardRef(function () { return InputCheckboxComponent; })
|