'Kendo Angular DatePicker 5.3.0 Bug setting min max does not show calendar numbers

I use kendo-datepicker in version 5.3.0 and I have the problem that when I set the [min]/[max] properties to limit selection of dates in the html, the calendar picker shows no more dates when I open it:

missing calendar content

This is my HTML:

<ng-container [formGroup]="group">
 <kendo-floatinglabel class="w-100-p" text="{{ label }}" *ngIf="isDateOnly">
        <kendo-datepicker
            [disabled]="!edit"
            [formControlName]="controlName"
            [popupSettings]="{ animate: false }"
            (valueChange)="changeIt()"
            [disabled]="disableDatePicker"
            [format]="'d'"
            [placeholder]="''"
            [min]="min"
            [max]="max"
            autoCorrectOn="blur"
            [formatPlaceholder]="{ year: 'J', month: 'M', day: 'T' }"
            [fillMode]="'flat'"
            [size]="'small'"
        >
            <kendo-datepicker-messages today="{{ 'DATETIME.TODAY' | translate }}"> </kendo-datepicker-messages>
        </kendo-datepicker>
    </kendo-floatinglabel>
</ng-container>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source