@progress/kendo-angular-dateinputs 21.1.1-develop.1 → 21.2.0-develop.1
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.
- package/esm2022/calendar/calendar.component.mjs +222 -221
- package/esm2022/calendar/footer.component.mjs +31 -29
- package/esm2022/calendar/header.component.mjs +157 -145
- package/esm2022/calendar/horizontal-view-list.component.mjs +139 -123
- package/esm2022/calendar/multiview-calendar.component.mjs +116 -108
- package/esm2022/calendar/navigation.component.mjs +55 -49
- package/esm2022/calendar/view-list.component.mjs +148 -135
- package/esm2022/calendar/view.component.mjs +107 -89
- package/esm2022/dateinput/dateinput.component.mjs +142 -137
- package/esm2022/datepicker/datepicker.component.mjs +315 -303
- package/esm2022/daterange/date-range-popup.component.mjs +264 -253
- package/esm2022/daterange/date-range.component.mjs +10 -7
- package/esm2022/datetimepicker/datetimepicker.component.mjs +677 -657
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/timepicker/timelist.component.mjs +55 -51
- package/esm2022/timepicker/timepicker.component.mjs +379 -367
- package/esm2022/timepicker/timeselector.component.mjs +138 -123
- package/fesm2022/progress-kendo-angular-dateinputs.mjs +2950 -2785
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +4 -0
|
@@ -8,7 +8,6 @@ import { packageMetadata } from '../package-metadata';
|
|
|
8
8
|
import { DateRangePopupComponent } from './date-range-popup.component';
|
|
9
9
|
import { DateRangeService } from './date-range.service';
|
|
10
10
|
import { Keys, normalizeNumpadKeys } from '@progress/kendo-angular-common';
|
|
11
|
-
import { NgIf } from '@angular/common';
|
|
12
11
|
import * as i0 from "@angular/core";
|
|
13
12
|
import * as i1 from "./date-range.service";
|
|
14
13
|
/**
|
|
@@ -82,10 +81,12 @@ export class DateRangeComponent {
|
|
|
82
81
|
this.subscription?.unsubscribe();
|
|
83
82
|
}
|
|
84
83
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DateRangeComponent, deps: [{ token: i1.DateRangeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
85
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
84
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: DateRangeComponent, isStandalone: true, selector: "kendo-daterange", inputs: { size: "size" }, host: { listeners: { "keydown": "keydown($event)" }, properties: { "class.k-daterangepicker": "this.wrapperClass" } }, providers: [DateRangeService], queries: [{ propertyName: "contentPopup", predicate: DateRangePopupComponent }], ngImport: i0, template: `
|
|
86
85
|
<ng-content></ng-content>
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
@if (showDefault) {
|
|
87
|
+
<kendo-daterange-popup [size]="size"></kendo-daterange-popup>
|
|
88
|
+
}
|
|
89
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DateRangePopupComponent, selector: "kendo-daterange-popup", inputs: ["showCalendarHeader", "focusedDate", "disabledDates", "activeView", "bottomView", "topView", "min", "max", "allowReverse", "animateNavigation", "disabled", "views", "weekNumber", "animate", "anchor", "anchorAlign", "showViewHeader", "showOtherMonthDays", "appendTo", "collision", "popupAlign", "margin", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "size"], outputs: ["open", "close", "blur", "focus", "cancel"], exportAs: ["kendo-daterange-popup"] }] });
|
|
89
90
|
}
|
|
90
91
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DateRangeComponent, decorators: [{
|
|
91
92
|
type: Component,
|
|
@@ -94,10 +95,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
94
95
|
selector: 'kendo-daterange',
|
|
95
96
|
template: `
|
|
96
97
|
<ng-content></ng-content>
|
|
97
|
-
|
|
98
|
-
|
|
98
|
+
@if (showDefault) {
|
|
99
|
+
<kendo-daterange-popup [size]="size"></kendo-daterange-popup>
|
|
100
|
+
}
|
|
101
|
+
`,
|
|
99
102
|
standalone: true,
|
|
100
|
-
imports: [
|
|
103
|
+
imports: [DateRangePopupComponent]
|
|
101
104
|
}]
|
|
102
105
|
}], ctorParameters: () => [{ type: i1.DateRangeService }], propDecorators: { size: [{
|
|
103
106
|
type: Input
|