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.
2 parents dd9823f + 6d264e5 commit 84d4916Copy full SHA for 84d4916
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