@progress/kendo-angular-dateinputs 24.1.1-develop.1 → 24.2.0-develop.10
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.
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCode: 'KENDOUIANGULAR',
|
|
38
38
|
productCodes: ['KENDOUIANGULAR'],
|
|
39
|
-
publishDate:
|
|
40
|
-
version: '24.
|
|
39
|
+
publishDate: 1782305690,
|
|
40
|
+
version: '24.2.0-develop.10',
|
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -3307,7 +3307,7 @@ function handleRangeSelection(date, selectionRange, activeRangeEnd, allowReverse
|
|
|
3307
3307
|
selectionRange.start = date;
|
|
3308
3308
|
activeRangeEnd = 'end';
|
|
3309
3309
|
}
|
|
3310
|
-
else if (activeRangeEnd === 'end' && date >= selectionRange.start && date.getTime() !== selectionRange.end?.getTime()) {
|
|
3310
|
+
else if (activeRangeEnd === 'end' && date && date >= selectionRange.start && date.getTime() !== selectionRange.end?.getTime()) {
|
|
3311
3311
|
selectionRange.end = date;
|
|
3312
3312
|
activeRangeEnd = 'start';
|
|
3313
3313
|
}
|
|
@@ -9033,6 +9033,8 @@ class DateInputComponent {
|
|
|
9033
9033
|
else {
|
|
9034
9034
|
this.ariaReadOnly = null;
|
|
9035
9035
|
}
|
|
9036
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
9037
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-dateinput');
|
|
9036
9038
|
}
|
|
9037
9039
|
/**
|
|
9038
9040
|
* @hidden
|
|
@@ -9058,8 +9060,6 @@ class DateInputComponent {
|
|
|
9058
9060
|
* @hidden
|
|
9059
9061
|
*/
|
|
9060
9062
|
ngOnInit() {
|
|
9061
|
-
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
9062
|
-
this.renderer.addClass(this.wrapper.nativeElement, 'k-dateinput');
|
|
9063
9063
|
if (this.kendoDate) {
|
|
9064
9064
|
this.kendoDate.destroy();
|
|
9065
9065
|
}
|
|
@@ -9120,7 +9120,7 @@ class DateInputComponent {
|
|
|
9120
9120
|
}
|
|
9121
9121
|
updateIncompleteValidationStatus() {
|
|
9122
9122
|
const previousValue = this.isDateIncomplete;
|
|
9123
|
-
this.isDateIncomplete = this.kendoDateObject
|
|
9123
|
+
this.isDateIncomplete = Boolean(this.kendoDateObject?.hasValue() && this.value === null);
|
|
9124
9124
|
if (previousValue === this.isDateIncomplete || !this.incompleteDateValidation) {
|
|
9125
9125
|
return;
|
|
9126
9126
|
}
|
|
@@ -9196,6 +9196,7 @@ class DateInputComponent {
|
|
|
9196
9196
|
this.kendoDate?.setOptions(this.options, true);
|
|
9197
9197
|
this.kendoDateObject?.setValue(this.value);
|
|
9198
9198
|
this.kendoDate?.refreshElementValue();
|
|
9199
|
+
this.updateIncompleteValidationStatus();
|
|
9199
9200
|
this.cdr.markForCheck();
|
|
9200
9201
|
}
|
|
9201
9202
|
/**
|
|
@@ -10400,10 +10401,6 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10400
10401
|
* @hidden
|
|
10401
10402
|
*/
|
|
10402
10403
|
escape = new EventEmitter();
|
|
10403
|
-
/**
|
|
10404
|
-
* @hidden
|
|
10405
|
-
*/
|
|
10406
|
-
wrapperClasses = true;
|
|
10407
10404
|
/**
|
|
10408
10405
|
* @hidden
|
|
10409
10406
|
*/
|
|
@@ -10511,6 +10508,8 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
10511
10508
|
this.pickerSubscriptions.add(this.pickerService.onBlur.subscribe(this.handleBlur.bind(this)));
|
|
10512
10509
|
this.pickerSubscriptions.add(this.pickerService.sameDateSelected.subscribe(this.handleSameSelection.bind(this)));
|
|
10513
10510
|
this.pickerSubscriptions.add(this.pickerService.dateCompletenessChange.subscribe(this.handleDateCompletenessChange.bind(this)));
|
|
10511
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-datepicker');
|
|
10512
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
10514
10513
|
}
|
|
10515
10514
|
/**
|
|
10516
10515
|
* @hidden
|
|
@@ -11005,7 +11004,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
11005
11004
|
}
|
|
11006
11005
|
}
|
|
11007
11006
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$2.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: DisabledDatesService }, { token: i6.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
11008
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: DatePickerComponent, isStandalone: true, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], clearButton: "clearButton", inputAttributes: "inputAttributes", monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer", navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", bottomView: "bottomView", topView: "topView", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", popupSettings: "popupSettings", navigation: "navigation", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", focusedDate: "focusedDate", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", weekNumber: "weekNumber", size: "size", rounded: "rounded", fillMode: "fillMode", adaptiveMode: "adaptiveMode" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-
|
|
11007
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: DatePickerComponent, isStandalone: true, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], clearButton: "clearButton", inputAttributes: "inputAttributes", monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer", navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", bottomView: "bottomView", topView: "topView", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", popupSettings: "popupSettings", navigation: "navigation", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", autoFill: "autoFill", focusedDate: "focusedDate", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", weekNumber: "weekNumber", size: "size", rounded: "rounded", fillMode: "fillMode", adaptiveMode: "adaptiveMode" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
11009
11008
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
11010
11009
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
11011
11010
|
{ provide: KendoInput, useExisting: forwardRef(() => DatePickerComponent) },
|
|
@@ -11597,12 +11596,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
11597
11596
|
type: Output
|
|
11598
11597
|
}], escape: [{
|
|
11599
11598
|
type: Output
|
|
11600
|
-
}], wrapperClasses: [{
|
|
11601
|
-
type: HostBinding,
|
|
11602
|
-
args: ['class.k-datepicker']
|
|
11603
|
-
}, {
|
|
11604
|
-
type: HostBinding,
|
|
11605
|
-
args: ['class.k-input']
|
|
11606
11599
|
}], disabledClass: [{
|
|
11607
11600
|
type: HostBinding,
|
|
11608
11601
|
args: ['class.k-disabled']
|
|
@@ -14005,10 +13998,6 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14005
13998
|
* @hidden
|
|
14006
13999
|
*/
|
|
14007
14000
|
escape = new EventEmitter();
|
|
14008
|
-
/**
|
|
14009
|
-
* @hidden
|
|
14010
|
-
*/
|
|
14011
|
-
wrapperClasses = true;
|
|
14012
14001
|
/**
|
|
14013
14002
|
* @hidden
|
|
14014
14003
|
*/
|
|
@@ -14129,6 +14118,8 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14129
14118
|
this.pickerSubscriptions = this.pickerService.onFocus.subscribe(this.handleFocus.bind(this));
|
|
14130
14119
|
this.pickerSubscriptions.add(this.pickerService.onBlur.subscribe(this.handleBlur.bind(this)));
|
|
14131
14120
|
this.pickerSubscriptions.add(this.pickerService.dateCompletenessChange.subscribe(this.handleDateCompletenessChange.bind(this)));
|
|
14121
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-timepicker');
|
|
14122
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
14132
14123
|
}
|
|
14133
14124
|
/**
|
|
14134
14125
|
* @hidden
|
|
@@ -14658,7 +14649,7 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14658
14649
|
}
|
|
14659
14650
|
}
|
|
14660
14651
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$2.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }, { token: i6.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
14661
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", cancelButton: "cancelButton", nowButton: "nowButton", steps: "steps", popupSettings: "popupSettings", tabindex: "tabindex", tabIndex: "tabIndex", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", rangeValidation: "rangeValidation", adaptiveMode: "adaptiveMode", value: "value", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-
|
|
14652
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: TimePickerComponent, isStandalone: true, selector: "kendo-timepicker", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", clearButton: "clearButton", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", min: "min", max: "max", incompleteDateValidation: "incompleteDateValidation", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", cancelButton: "cancelButton", nowButton: "nowButton", steps: "steps", popupSettings: "popupSettings", tabindex: "tabindex", tabIndex: "tabIndex", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", rangeValidation: "rangeValidation", adaptiveMode: "adaptiveMode", value: "value", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", open: "open", close: "close", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
14662
14653
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
14663
14654
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
|
|
14664
14655
|
{ provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
|
|
@@ -15224,12 +15215,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
15224
15215
|
type: Output
|
|
15225
15216
|
}], escape: [{
|
|
15226
15217
|
type: Output
|
|
15227
|
-
}], wrapperClasses: [{
|
|
15228
|
-
type: HostBinding,
|
|
15229
|
-
args: ['class.k-timepicker']
|
|
15230
|
-
}, {
|
|
15231
|
-
type: HostBinding,
|
|
15232
|
-
args: ['class.k-input']
|
|
15233
15218
|
}], disabledClass: [{
|
|
15234
15219
|
type: HostBinding,
|
|
15235
15220
|
args: ['class.k-disabled']
|
|
@@ -15471,10 +15456,6 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
15471
15456
|
* @hidden
|
|
15472
15457
|
*/
|
|
15473
15458
|
clockIcon = clockIcon;
|
|
15474
|
-
/**
|
|
15475
|
-
* @hidden
|
|
15476
|
-
*/
|
|
15477
|
-
hostClasses = true;
|
|
15478
15459
|
/**
|
|
15479
15460
|
* @hidden
|
|
15480
15461
|
*/
|
|
@@ -16162,6 +16143,8 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
16162
16143
|
this.injector = injector;
|
|
16163
16144
|
this.adaptiveService = adaptiveService;
|
|
16164
16145
|
validatePackage(packageMetadata);
|
|
16146
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-datetimepicker');
|
|
16147
|
+
this.renderer.addClass(this.wrapper.nativeElement, 'k-input');
|
|
16165
16148
|
}
|
|
16166
16149
|
ngOnInit() {
|
|
16167
16150
|
this.subscriptions.add(this.pickerService.onFocus
|
|
@@ -16883,7 +16866,7 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
16883
16866
|
}
|
|
16884
16867
|
}
|
|
16885
16868
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1$2.PopupService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: PickerService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: i1$1.LocalizationService }, { token: DisabledDatesService }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i6.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
|
|
16886
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: DateTimePickerComponent, isStandalone: true, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", cancelButton: "cancelButton", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", focusedDate: "focusedDate", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", weekNumber: "weekNumber", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", clearButton: "clearButton", autoFill: "autoFill", adaptiveMode: "adaptiveMode", inputAttributes: "inputAttributes", defaultTab: "defaultTab", size: "size", rounded: "rounded", fillMode: "fillMode", headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", escape: "escape" }, host: { properties: { "class.k-
|
|
16869
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: DateTimePickerComponent, isStandalone: true, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", disabled: "disabled", readonly: "readonly", readOnlyInput: "readOnlyInput", cancelButton: "cancelButton", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", focusedDate: "focusedDate", calendarType: "calendarType", animateCalendarNavigation: "animateCalendarNavigation", weekNumber: "weekNumber", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesValidation: "disabledDatesValidation", incompleteDateValidation: "incompleteDateValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", clearButton: "clearButton", autoFill: "autoFill", adaptiveMode: "adaptiveMode", inputAttributes: "inputAttributes", defaultTab: "defaultTab", size: "size", rounded: "rounded", fillMode: "fillMode", headerTemplateRef: ["headerTemplate", "headerTemplateRef"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], footer: "footer" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", escape: "escape" }, host: { properties: { "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
|
|
16887
16870
|
PickerService,
|
|
16888
16871
|
LocalizationService,
|
|
16889
16872
|
DisabledDatesService,
|
|
@@ -17674,13 +17657,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
17674
17657
|
standalone: true,
|
|
17675
17658
|
imports: [LocalizedMessagesDirective, DateInputComponent, EventsOutsideAngularDirective, DateInputCustomMessagesComponent, IconWrapperComponent, NgTemplateOutlet, ResizeSensorComponent, ActionSheetComponent, ActionSheetTemplateDirective, ButtonComponent, NgClass, CalendarComponent, CalendarCustomMessagesComponent, TimeSelectorComponent, TimeSelectorCustomMessagesComponent, SegmentedControlComponent]
|
|
17676
17659
|
}]
|
|
17677
|
-
}], ctorParameters: () => [{ type: i1$2.PopupService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: PickerService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i1$1.LocalizationService }, { type: DisabledDatesService }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: i6.AdaptiveService }], propDecorators: {
|
|
17678
|
-
type: HostBinding,
|
|
17679
|
-
args: ['class.k-datetimepicker']
|
|
17680
|
-
}, {
|
|
17681
|
-
type: HostBinding,
|
|
17682
|
-
args: ['class.k-input']
|
|
17683
|
-
}], disabledClass: [{
|
|
17660
|
+
}], ctorParameters: () => [{ type: i1$2.PopupService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: PickerService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: i1$1.LocalizationService }, { type: DisabledDatesService }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: i6.AdaptiveService }], propDecorators: { disabledClass: [{
|
|
17684
17661
|
type: HostBinding,
|
|
17685
17662
|
args: ['class.k-disabled']
|
|
17686
17663
|
}], toggleButton: [{
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.
|
|
10
|
+
"publishDate": 1782305690,
|
|
11
|
+
"version": "24.2.0-develop.10",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.2.0-develop.10",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"package": {
|
|
108
108
|
"productName": "Kendo UI for Angular",
|
|
109
109
|
"productCode": "KENDOUIANGULAR",
|
|
110
|
-
"publishDate":
|
|
110
|
+
"publishDate": 1782305690,
|
|
111
111
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
@@ -118,19 +118,19 @@
|
|
|
118
118
|
"@angular/forms": "19 - 22",
|
|
119
119
|
"@angular/platform-browser": "19 - 22",
|
|
120
120
|
"@progress/kendo-licensing": "^1.11.0",
|
|
121
|
-
"@progress/kendo-angular-buttons": "24.
|
|
122
|
-
"@progress/kendo-angular-common": "24.
|
|
123
|
-
"@progress/kendo-angular-utils": "24.
|
|
124
|
-
"@progress/kendo-angular-intl": "24.
|
|
125
|
-
"@progress/kendo-angular-l10n": "24.
|
|
126
|
-
"@progress/kendo-angular-icons": "24.
|
|
127
|
-
"@progress/kendo-angular-popup": "24.
|
|
128
|
-
"@progress/kendo-angular-navigation": "24.
|
|
121
|
+
"@progress/kendo-angular-buttons": "24.2.0-develop.10",
|
|
122
|
+
"@progress/kendo-angular-common": "24.2.0-develop.10",
|
|
123
|
+
"@progress/kendo-angular-utils": "24.2.0-develop.10",
|
|
124
|
+
"@progress/kendo-angular-intl": "24.2.0-develop.10",
|
|
125
|
+
"@progress/kendo-angular-l10n": "24.2.0-develop.10",
|
|
126
|
+
"@progress/kendo-angular-icons": "24.2.0-develop.10",
|
|
127
|
+
"@progress/kendo-angular-popup": "24.2.0-develop.10",
|
|
128
|
+
"@progress/kendo-angular-navigation": "24.2.0-develop.10",
|
|
129
129
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
130
130
|
},
|
|
131
131
|
"dependencies": {
|
|
132
132
|
"tslib": "^2.3.1",
|
|
133
|
-
"@progress/kendo-angular-schematics": "24.
|
|
133
|
+
"@progress/kendo-angular-schematics": "24.2.0-develop.10",
|
|
134
134
|
"@progress/kendo-common": "^1.0.1",
|
|
135
135
|
"@progress/kendo-date-math": "^1.1.0",
|
|
136
136
|
"@progress/kendo-dateinputs-common": "^0.4.11"
|