igniteui-angular 12.2.8 → 12.2.9
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/igniteui-angular.umd.js +1 -1
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo-item.component.js +2 -2
- package/fesm2015/igniteui-angular.js +1 -1
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -38995,7 +38995,7 @@
|
|
|
38995
38995
|
IgxComboItemComponent.decorators = [
|
|
38996
38996
|
{ type: i0.Component, args: [{
|
|
38997
38997
|
selector: 'igx-combo-item',
|
|
38998
|
-
template: "<ng-container *ngIf=\"!isHeader\">\n <igx-checkbox [checked]=\"selected\" [disableRipple]=\"true\" [disableTransitions]=\"disableTransitions\" [tabindex]=\"-1\" (click)=\"disableCheck($event)\" class=\"igx-combo__checkbox\"></igx-checkbox>\n</ng-container>\n<span class=\"igx-drop-down__inner\"><ng-content></ng-content></span>\n"
|
|
38998
|
+
template: "<ng-container *ngIf=\"!isHeader\">\n <!-- checkbox should not allow changing its state from UI click (that's why it should be readonly=true), becasue when cancelling the selectionChange event in the combo, then checkbox will still change state.-->\n <igx-checkbox [checked]=\"selected\" [disableRipple]=\"true\" [readonly]=\"true\" [disableTransitions]=\"disableTransitions\" [tabindex]=\"-1\" (click)=\"disableCheck($event)\" class=\"igx-combo__checkbox\"></igx-checkbox>\n</ng-container>\n<span class=\"igx-drop-down__inner\"><ng-content></ng-content></span>\n"
|
|
38999
38999
|
},] }
|
|
39000
39000
|
];
|
|
39001
39001
|
IgxComboItemComponent.ctorParameters = function () { return [
|