@progress/kendo-angular-dateinputs 7.0.1-dev.202205110611 → 7.1.0-dev.202207271219
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/README.md +118 -3
- package/bundles/kendo-angular-dateinputs.umd.js +1 -1
- package/calendar/header.component.d.ts +5 -1
- package/calendar/horizontal-view-list.component.d.ts +5 -1
- package/calendar/models/orientation.d.ts +8 -0
- package/calendar/multiview-calendar.component.d.ts +10 -1
- package/esm2015/calendar/calendar.component.js +1 -1
- package/esm2015/calendar/header.component.js +14 -2
- package/esm2015/calendar/horizontal-view-list.component.js +16 -4
- package/esm2015/calendar/models/orientation.js +5 -0
- package/esm2015/calendar/multiview-calendar.component.js +16 -2
- package/esm2015/calendar/view-list.component.js +1 -1
- package/esm2015/daterange/date-range-popup.component.js +1 -1
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/timepicker/timeselector.component.js +4 -4
- package/fesm2015/kendo-angular-dateinputs.js +54 -16
- package/package.json +5 -5
|
@@ -28,7 +28,7 @@ const packageMetadata = {
|
|
|
28
28
|
name: '@progress/kendo-angular-dateinputs',
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
31
|
-
publishDate:
|
|
31
|
+
publishDate: 1658923995,
|
|
32
32
|
version: '',
|
|
33
33
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
34
34
|
};
|
|
@@ -1847,6 +1847,7 @@ class HorizontalViewListComponent {
|
|
|
1847
1847
|
this.views = DEFAULT_VIEWS_LENGTH;
|
|
1848
1848
|
this.showViewHeader = false;
|
|
1849
1849
|
this.animateNavigation = false;
|
|
1850
|
+
this.orientation = 'horizontal';
|
|
1850
1851
|
this.cellClick = new EventEmitter();
|
|
1851
1852
|
this.weekNumberCellClick = new EventEmitter();
|
|
1852
1853
|
this.cellEnter = new EventEmitter();
|
|
@@ -1863,6 +1864,12 @@ class HorizontalViewListComponent {
|
|
|
1863
1864
|
set weekNumber(showWeekNumbers) {
|
|
1864
1865
|
this.showWeekNumbers = showWeekNumbers;
|
|
1865
1866
|
}
|
|
1867
|
+
get horizontalHostClass() {
|
|
1868
|
+
return this.orientation === 'horizontal';
|
|
1869
|
+
}
|
|
1870
|
+
get verticalHostClass() {
|
|
1871
|
+
return this.orientation === 'vertical';
|
|
1872
|
+
}
|
|
1866
1873
|
get getComponentMonthClass() {
|
|
1867
1874
|
return this.activeView === CalendarViewEnum.month;
|
|
1868
1875
|
}
|
|
@@ -2030,7 +2037,7 @@ class HorizontalViewListComponent {
|
|
|
2030
2037
|
}
|
|
2031
2038
|
}
|
|
2032
2039
|
HorizontalViewListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: HorizontalViewListComponent, deps: [{ token: BusViewService }, { token: i1.IntlService }, { token: WeekNamesService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2033
|
-
HorizontalViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: { cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", activeRangeEnd: "activeRangeEnd", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", isActive: "isActive", min: "min", max: "max", selectionRange: "selectionRange", selectedDates: "selectedDates", views: "views", showViewHeader: "showViewHeader", animateNavigation: "animateNavigation", weekNumber: "weekNumber" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", activeDateChange: "activeDateChange" }, host: { properties: { "class.k-calendar-view": "this.getComponentClass", "class.k-
|
|
2040
|
+
HorizontalViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: { cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", activeRangeEnd: "activeRangeEnd", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", isActive: "isActive", min: "min", max: "max", selectionRange: "selectionRange", selectedDates: "selectedDates", views: "views", showViewHeader: "showViewHeader", animateNavigation: "animateNavigation", orientation: "orientation", weekNumber: "weekNumber" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", activeDateChange: "activeDateChange" }, host: { properties: { "class.k-calendar-view": "this.getComponentClass", "class.k-align-items-start": "this.getComponentClass", "class.k-justify-content-center": "this.getComponentClass", "class.k-hstack": "this.horizontalHostClass", "class.k-vstack": "this.verticalHostClass", "class.k-calendar-monthview": "this.getComponentMonthClass", "class.k-calendar-yearview": "this.getComponentYearClass", "class.k-calendar-decadeview": "this.getComponentDecadeClass", "class.k-calendar-centuryview": "this.getComponentCenturyClass" } }, usesOnChanges: true, ngImport: i0, template: `
|
|
2034
2041
|
<ng-template #tableTemplate let-date="date" let-class="className">
|
|
2035
2042
|
<table
|
|
2036
2043
|
role="grid"
|
|
@@ -2206,6 +2213,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2206
2213
|
type: Input
|
|
2207
2214
|
}], animateNavigation: [{
|
|
2208
2215
|
type: Input
|
|
2216
|
+
}], orientation: [{
|
|
2217
|
+
type: Input
|
|
2209
2218
|
}], weekNumber: [{
|
|
2210
2219
|
type: Input
|
|
2211
2220
|
}], cellClick: [{
|
|
@@ -2221,15 +2230,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2221
2230
|
}], getComponentClass: [{
|
|
2222
2231
|
type: HostBinding,
|
|
2223
2232
|
args: ["class.k-calendar-view"]
|
|
2224
|
-
}, {
|
|
2225
|
-
type: HostBinding,
|
|
2226
|
-
args: ["class.k-hstack"]
|
|
2227
2233
|
}, {
|
|
2228
2234
|
type: HostBinding,
|
|
2229
2235
|
args: ["class.k-align-items-start"]
|
|
2230
2236
|
}, {
|
|
2231
2237
|
type: HostBinding,
|
|
2232
2238
|
args: ["class.k-justify-content-center"]
|
|
2239
|
+
}], horizontalHostClass: [{
|
|
2240
|
+
type: HostBinding,
|
|
2241
|
+
args: ["class.k-hstack"]
|
|
2242
|
+
}], verticalHostClass: [{
|
|
2243
|
+
type: HostBinding,
|
|
2244
|
+
args: ["class.k-vstack"]
|
|
2233
2245
|
}], getComponentMonthClass: [{
|
|
2234
2246
|
type: HostBinding,
|
|
2235
2247
|
args: ["class.k-calendar-monthview"]
|
|
@@ -2262,12 +2274,19 @@ class HeaderComponent {
|
|
|
2262
2274
|
this.isPrevDisabled = true;
|
|
2263
2275
|
this.isNextDisabled = true;
|
|
2264
2276
|
this.showNavigationButtons = false;
|
|
2277
|
+
this.orientation = 'horizontal';
|
|
2265
2278
|
this.todayButtonClick = new EventEmitter();
|
|
2266
2279
|
this.prevButtonClick = new EventEmitter();
|
|
2267
2280
|
this.nextButtonClick = new EventEmitter();
|
|
2268
2281
|
this.getComponentClass = true;
|
|
2269
2282
|
this.subscriptions = new Subscription();
|
|
2270
2283
|
}
|
|
2284
|
+
get horizontalHostClass() {
|
|
2285
|
+
return this.orientation === 'horizontal';
|
|
2286
|
+
}
|
|
2287
|
+
get verticalHostClass() {
|
|
2288
|
+
return this.orientation === 'vertical';
|
|
2289
|
+
}
|
|
2271
2290
|
ngOnInit() {
|
|
2272
2291
|
this.subscriptions.add(this.intl.changes.subscribe(this.intlChange.bind(this)));
|
|
2273
2292
|
this.subscriptions.add(this.localization.changes.subscribe(this.l10nChange.bind(this)));
|
|
@@ -2334,7 +2353,7 @@ class HeaderComponent {
|
|
|
2334
2353
|
}
|
|
2335
2354
|
}
|
|
2336
2355
|
HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: HeaderComponent, deps: [{ token: BusViewService }, { token: i0.ChangeDetectorRef }, { token: i1$1.LocalizationService }, { token: i1.IntlService }, { token: DisabledDatesService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2337
|
-
HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: HeaderComponent, selector: "kendo-calendar-header", inputs: { activeView: "activeView", currentDate: "currentDate", min: "min", max: "max", rangeLength: "rangeLength", templateRef: "templateRef", isPrevDisabled: "isPrevDisabled", isNextDisabled: "isNextDisabled", showNavigationButtons: "showNavigationButtons" }, outputs: { todayButtonClick: "todayButtonClick", prevButtonClick: "prevButtonClick", nextButtonClick: "nextButtonClick" }, host: { properties: { "class.k-calendar-header": "this.getComponentClass", "class.k-hstack": "this.
|
|
2356
|
+
HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: HeaderComponent, selector: "kendo-calendar-header", inputs: { activeView: "activeView", currentDate: "currentDate", min: "min", max: "max", rangeLength: "rangeLength", templateRef: "templateRef", isPrevDisabled: "isPrevDisabled", isNextDisabled: "isNextDisabled", showNavigationButtons: "showNavigationButtons", orientation: "orientation" }, outputs: { todayButtonClick: "todayButtonClick", prevButtonClick: "prevButtonClick", nextButtonClick: "nextButtonClick" }, host: { properties: { "class.k-calendar-header": "this.getComponentClass", "class.k-hstack": "this.horizontalHostClass", "class.k-vstack": "this.verticalHostClass" } }, usesOnChanges: true, ngImport: i0, template: `
|
|
2338
2357
|
<span class="k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-calendar-title" [class.k-disabled]="!navigate"
|
|
2339
2358
|
[kendoEventsOutsideAngular]="{
|
|
2340
2359
|
click: handleNavigation
|
|
@@ -2455,6 +2474,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2455
2474
|
type: Input
|
|
2456
2475
|
}], showNavigationButtons: [{
|
|
2457
2476
|
type: Input
|
|
2477
|
+
}], orientation: [{
|
|
2478
|
+
type: Input
|
|
2458
2479
|
}], todayButtonClick: [{
|
|
2459
2480
|
type: Output
|
|
2460
2481
|
}], prevButtonClick: [{
|
|
@@ -2464,9 +2485,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2464
2485
|
}], getComponentClass: [{
|
|
2465
2486
|
type: HostBinding,
|
|
2466
2487
|
args: ["class.k-calendar-header"]
|
|
2467
|
-
}, {
|
|
2488
|
+
}], horizontalHostClass: [{
|
|
2468
2489
|
type: HostBinding,
|
|
2469
2490
|
args: ["class.k-hstack"]
|
|
2491
|
+
}], verticalHostClass: [{
|
|
2492
|
+
type: HostBinding,
|
|
2493
|
+
args: ["class.k-vstack"]
|
|
2470
2494
|
}] } });
|
|
2471
2495
|
|
|
2472
2496
|
const KEY_TO_ACTION = {
|
|
@@ -3071,6 +3095,14 @@ class MultiViewCalendarComponent {
|
|
|
3071
3095
|
* defines the number of rendered months.
|
|
3072
3096
|
*/
|
|
3073
3097
|
this.views = 2;
|
|
3098
|
+
/**
|
|
3099
|
+
* Specifies the orientation of the MultiViewCalendar.
|
|
3100
|
+
*
|
|
3101
|
+
* The available values are:
|
|
3102
|
+
* * `horizontal` (default)
|
|
3103
|
+
* * `vertical`
|
|
3104
|
+
*/
|
|
3105
|
+
this.orientation = 'horizontal';
|
|
3074
3106
|
/**
|
|
3075
3107
|
* Fires when the active view is changed
|
|
3076
3108
|
* ([more information and example]({% slug overview_multiviewcalendar %}#toc-events)).
|
|
@@ -3654,7 +3686,7 @@ class MultiViewCalendarComponent {
|
|
|
3654
3686
|
}
|
|
3655
3687
|
}
|
|
3656
3688
|
MultiViewCalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: MultiViewCalendarComponent, deps: [{ token: BusViewService }, { token: i0.ElementRef }, { token: NavigationService }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: DisabledDatesService }, { token: SelectionService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3657
|
-
MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: { id: "id", focusedDate: "focusedDate", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesRangeValidation: "disabledDatesRangeValidation", selection: "selection", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", isActive: "isActive", disabledDates: "disabledDates", activeView: "activeView", bottomView: "bottomView", topView: "topView", showViewHeader: "showViewHeader", animateNavigation: "animateNavigation", weekNumber: "weekNumber", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", views: "views", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"] }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", cellEnter: "cellEnter", cellLeave: "cellLeave", valueChange: "valueChange", blurEvent: "blur" }, host: { listeners: { "focusout": "handleFocusout($event)", "focus": "handleFocus()", "mouseenter": "handleMouseEnter()", "mouseleave": "handleMouseLeave()", "mousedown": "handleMousedown($event)", "click": "handleClick()", "keydown": "keydown($event)" }, properties: { "attr.id": "this.widgetId", "attr.tabindex": "this.calendarTabIndex", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled", "attr.aria-activedescendant": "this.ariaActivedescendant" } }, providers: [
|
|
3689
|
+
MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: { id: "id", focusedDate: "focusedDate", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesRangeValidation: "disabledDatesRangeValidation", selection: "selection", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", isActive: "isActive", disabledDates: "disabledDates", activeView: "activeView", bottomView: "bottomView", topView: "topView", showViewHeader: "showViewHeader", animateNavigation: "animateNavigation", weekNumber: "weekNumber", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", views: "views", orientation: "orientation", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"] }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", cellEnter: "cellEnter", cellLeave: "cellLeave", valueChange: "valueChange", blurEvent: "blur" }, host: { listeners: { "focusout": "handleFocusout($event)", "focus": "handleFocus()", "mouseenter": "handleMouseEnter()", "mouseleave": "handleMouseLeave()", "mousedown": "handleMousedown($event)", "click": "handleClick()", "keydown": "keydown($event)" }, properties: { "attr.id": "this.widgetId", "attr.tabindex": "this.calendarTabIndex", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled", "attr.aria-activedescendant": "this.ariaActivedescendant" } }, providers: [
|
|
3658
3690
|
BusViewService,
|
|
3659
3691
|
RANGE_CALENDAR_VALUE_ACCESSOR,
|
|
3660
3692
|
RANGE_CALENDAR_RANGE_VALIDATORS,
|
|
@@ -3688,6 +3720,7 @@ MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
3688
3720
|
[isPrevDisabled]="isPrevDisabled"
|
|
3689
3721
|
[isNextDisabled]="isNextDisabled"
|
|
3690
3722
|
[showNavigationButtons]="true"
|
|
3723
|
+
[orientation]="orientation"
|
|
3691
3724
|
(todayButtonClick)="handleTodayButtonClick({ selectedDates: [$event], focusedDate: $event })"
|
|
3692
3725
|
(prevButtonClick)="navigateView(prevView)"
|
|
3693
3726
|
(nextButtonClick)="navigateView(nextView)"
|
|
@@ -3713,6 +3746,7 @@ MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
3713
3746
|
[activeRangeEnd]="activeRangeEnd"
|
|
3714
3747
|
[selectionRange]="selectionRange"
|
|
3715
3748
|
[selectedDates]="selectedDates"
|
|
3749
|
+
[orientation]="orientation"
|
|
3716
3750
|
(cellClick)="handleCellClick($event)"
|
|
3717
3751
|
(weekNumberCellClick)="handleWeekNumberClick($event)"
|
|
3718
3752
|
(cellEnter)="emitCellEvent(cellEnter, $event)"
|
|
@@ -3720,7 +3754,7 @@ MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
3720
3754
|
(activeDateChange)="setActiveDate($event)"
|
|
3721
3755
|
>
|
|
3722
3756
|
</kendo-calendar-horizontal>
|
|
3723
|
-
`, isInline: true, components: [{ type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "templateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: ["cellTemplateRef", "weekNumberTemplateRef", "activeRangeEnd", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectionRange", "selectedDates", "views", "showViewHeader", "animateNavigation", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "activeDateChange"] }], directives: [{ type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]" }, { type: i5.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3757
|
+
`, isInline: true, components: [{ type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "templateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: ["cellTemplateRef", "weekNumberTemplateRef", "activeRangeEnd", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectionRange", "selectedDates", "views", "showViewHeader", "animateNavigation", "orientation", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "activeDateChange"] }], directives: [{ type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]" }, { type: i5.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3724
3758
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: MultiViewCalendarComponent, decorators: [{
|
|
3725
3759
|
type: Component,
|
|
3726
3760
|
args: [{
|
|
@@ -3762,6 +3796,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3762
3796
|
[isPrevDisabled]="isPrevDisabled"
|
|
3763
3797
|
[isNextDisabled]="isNextDisabled"
|
|
3764
3798
|
[showNavigationButtons]="true"
|
|
3799
|
+
[orientation]="orientation"
|
|
3765
3800
|
(todayButtonClick)="handleTodayButtonClick({ selectedDates: [$event], focusedDate: $event })"
|
|
3766
3801
|
(prevButtonClick)="navigateView(prevView)"
|
|
3767
3802
|
(nextButtonClick)="navigateView(nextView)"
|
|
@@ -3787,6 +3822,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3787
3822
|
[activeRangeEnd]="activeRangeEnd"
|
|
3788
3823
|
[selectionRange]="selectionRange"
|
|
3789
3824
|
[selectedDates]="selectedDates"
|
|
3825
|
+
[orientation]="orientation"
|
|
3790
3826
|
(cellClick)="handleCellClick($event)"
|
|
3791
3827
|
(weekNumberCellClick)="handleWeekNumberClick($event)"
|
|
3792
3828
|
(cellEnter)="emitCellEvent(cellEnter, $event)"
|
|
@@ -3840,6 +3876,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3840
3876
|
type: Input
|
|
3841
3877
|
}], views: [{
|
|
3842
3878
|
type: Input
|
|
3879
|
+
}], orientation: [{
|
|
3880
|
+
type: Input
|
|
3843
3881
|
}], activeViewChange: [{
|
|
3844
3882
|
type: Output
|
|
3845
3883
|
}], navigate: [{
|
|
@@ -4958,7 +4996,7 @@ ViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
4958
4996
|
></tbody>
|
|
4959
4997
|
</table>
|
|
4960
4998
|
</kendo-virtualization>
|
|
4961
|
-
`, isInline: true, components: [{ type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "templateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4999
|
+
`, isInline: true, components: [{ type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "templateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
4962
5000
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ViewListComponent, decorators: [{
|
|
4963
5001
|
type: Component,
|
|
4964
5002
|
args: [{
|
|
@@ -6225,7 +6263,7 @@ CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
6225
6263
|
</kendo-multiviewcalendar-messages>
|
|
6226
6264
|
</kendo-multiviewcalendar>
|
|
6227
6265
|
</ng-container>
|
|
6228
|
-
`, isInline: true, components: [{ type: NavigationComponent, selector: "kendo-calendar-navigation", inputs: ["activeView", "min", "max", "focusedDate", "templateRef"], outputs: ["valueChange", "pageChange"] }, { type: ViewListComponent, selector: "kendo-calendar-viewlist", inputs: ["cellTemplateRef", "weekNumberTemplateRef", "headerTitleTemplateRef", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectedDates", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "activeDateChange", "todayButtonClick", "pageChange"] }, { type: i5.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur"], exportAs: ["kendo-multiviewcalendar"] }, { type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages" }], directives: [{ type: CalendarLocalizedMessagesDirective, selector: "[kendoCalendarLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6266
|
+
`, isInline: true, components: [{ type: NavigationComponent, selector: "kendo-calendar-navigation", inputs: ["activeView", "min", "max", "focusedDate", "templateRef"], outputs: ["valueChange", "pageChange"] }, { type: ViewListComponent, selector: "kendo-calendar-viewlist", inputs: ["cellTemplateRef", "weekNumberTemplateRef", "headerTitleTemplateRef", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectedDates", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "activeDateChange", "todayButtonClick", "pageChange"] }, { type: i5.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "orientation", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur"], exportAs: ["kendo-multiviewcalendar"] }, { type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages" }], directives: [{ type: CalendarLocalizedMessagesDirective, selector: "[kendoCalendarLocalizedMessages]" }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6229
6267
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: CalendarComponent, decorators: [{
|
|
6230
6268
|
type: Component,
|
|
6231
6269
|
args: [{
|
|
@@ -10897,7 +10935,7 @@ TimeSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
10897
10935
|
#now
|
|
10898
10936
|
*ngIf="showNowButton"
|
|
10899
10937
|
type="button"
|
|
10900
|
-
class="k-button k-button-md k-rounded-md k-button-flat k-button-flat-
|
|
10938
|
+
class="k-button k-button-md k-rounded-md k-button-flat k-button-flat-primary k-time-now"
|
|
10901
10939
|
[attr.title]="localization.get('nowLabel')"
|
|
10902
10940
|
[attr.aria-label]="localization.get('nowLabel')"
|
|
10903
10941
|
[kendoEventsOutsideAngular]="{
|
|
@@ -10939,7 +10977,7 @@ TimeSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
10939
10977
|
</div>
|
|
10940
10978
|
</ng-template>
|
|
10941
10979
|
</div>
|
|
10942
|
-
<div class="k-time-footer k-action-buttons k-actions k-
|
|
10980
|
+
<div class="k-time-footer k-action-buttons k-actions k-actions-stretched" *ngIf="setButton || cancelButton">
|
|
10943
10981
|
<button
|
|
10944
10982
|
#cancel
|
|
10945
10983
|
*ngIf="cancelButton"
|
|
@@ -11014,7 +11052,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
11014
11052
|
#now
|
|
11015
11053
|
*ngIf="showNowButton"
|
|
11016
11054
|
type="button"
|
|
11017
|
-
class="k-button k-button-md k-rounded-md k-button-flat k-button-flat-
|
|
11055
|
+
class="k-button k-button-md k-rounded-md k-button-flat k-button-flat-primary k-time-now"
|
|
11018
11056
|
[attr.title]="localization.get('nowLabel')"
|
|
11019
11057
|
[attr.aria-label]="localization.get('nowLabel')"
|
|
11020
11058
|
[kendoEventsOutsideAngular]="{
|
|
@@ -11056,7 +11094,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
11056
11094
|
</div>
|
|
11057
11095
|
</ng-template>
|
|
11058
11096
|
</div>
|
|
11059
|
-
<div class="k-time-footer k-action-buttons k-actions k-
|
|
11097
|
+
<div class="k-time-footer k-action-buttons k-actions k-actions-stretched" *ngIf="setButton || cancelButton">
|
|
11060
11098
|
<button
|
|
11061
11099
|
#cancel
|
|
11062
11100
|
*ngIf="cancelButton"
|
|
@@ -14581,7 +14619,7 @@ DateRangePopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
14581
14619
|
<ng-template #defaultTemplate>
|
|
14582
14620
|
<kendo-multiviewcalendar kendoDateRangeSelection></kendo-multiviewcalendar>
|
|
14583
14621
|
</ng-template>
|
|
14584
|
-
`, isInline: true, components: [{ type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur"], exportAs: ["kendo-multiviewcalendar"] }], directives: [{ type: DateRangeSelectionDirective, selector: "[kendoDateRangeSelection]", inputs: ["autoCorrectOn", "selectionRange", "activeRangeEnd"], outputs: ["activeRangeEndChange", "selectionRangeChange"] }] });
|
|
14622
|
+
`, isInline: true, components: [{ type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "orientation", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur"], exportAs: ["kendo-multiviewcalendar"] }], directives: [{ type: DateRangeSelectionDirective, selector: "[kendoDateRangeSelection]", inputs: ["autoCorrectOn", "selectionRange", "activeRangeEnd"], outputs: ["activeRangeEndChange", "selectionRangeChange"] }] });
|
|
14585
14623
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DateRangePopupComponent, decorators: [{
|
|
14586
14624
|
type: Component,
|
|
14587
14625
|
args: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.1.0-dev.202207271219",
|
|
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",
|
|
@@ -80,11 +80,11 @@
|
|
|
80
80
|
"fallbackTags": {
|
|
81
81
|
"dev": "latest"
|
|
82
82
|
},
|
|
83
|
-
"analyzeCommits": "@
|
|
83
|
+
"analyzeCommits": "@progress/semantic-prerelease/analyzeCommits",
|
|
84
84
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
85
|
-
"getLastRelease": "@
|
|
86
|
-
"verifyConditions": "@
|
|
87
|
-
"verifyRelease": "@
|
|
85
|
+
"getLastRelease": "@progress/semantic-prerelease/getLastRelease",
|
|
86
|
+
"verifyConditions": "@progress/semantic-prerelease/verifyConditions",
|
|
87
|
+
"verifyRelease": "@progress/semantic-prerelease/verifyRelease"
|
|
88
88
|
},
|
|
89
89
|
"main": "bundles/kendo-angular-dateinputs.umd.js",
|
|
90
90
|
"module": "fesm2015/kendo-angular-dateinputs.js",
|