We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77e08bc commit 7df576eCopy full SHA for 7df576e
projects/igniteui-angular/src/lib/calendar/days-view/day-item.component.ts
@@ -111,7 +111,8 @@ export class IgxDayItemComponent {
111
@HostBinding('class.igx-days-view__date--selected')
112
public get isSelectedCSS(): boolean {
113
const selectable =
114
- !this.isInactive || (this.isWithinRange && this.selection === "range");
+ !this.isInactive || this.isWithinPreviewRange ||
115
+ (this.isWithinRange && this.selection === "range");
116
return !this.isDisabled && selectable && this.selected;
117
}
118
0 commit comments