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 8a3767b + 6d264e5 commit f26cb69Copy full SHA for f26cb69
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