@progress/kendo-angular-dateinputs 15.3.1-develop.2 → 15.4.0-develop.2
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/calendar/calendar-common.module.d.ts +7 -5
- package/calendar/calendar.component.d.ts +45 -1
- package/calendar/footer.component.d.ts +22 -0
- package/calendar/header.component.d.ts +3 -2
- package/calendar/horizontal-view-list.component.d.ts +3 -1
- package/calendar/multiview-calendar.component.d.ts +44 -1
- package/calendar/services/weeknames.service.d.ts +2 -1
- package/calendar/templates/footer-template.directiv/320/265.d.ts +36 -0
- package/calendar/templates/header-template.directive.d.ts +37 -0
- package/calendar/templates.module.d.ts +3 -1
- package/calendar/view-list.component.d.ts +8 -1
- package/common/models/week-days-format.d.ts +10 -0
- package/datepicker/datepicker.component.d.ts +30 -1
- package/datetimepicker/datetimepicker.component.d.ts +30 -1
- package/esm2020/calendar/calendar-common.module.mjs +6 -0
- package/esm2020/calendar/calendar.component.mjs +70 -3
- package/esm2020/calendar/footer.component.mjs +69 -0
- package/esm2020/calendar/header.component.mjs +139 -125
- package/esm2020/calendar/horizontal-view-list.component.mjs +6 -3
- package/esm2020/calendar/multiview-calendar.component.mjs +76 -7
- package/esm2020/calendar/templates/footer-template.directiv/320/265.mjs +43 -0
- package/esm2020/calendar/templates/header-template.directive.mjs +44 -0
- package/esm2020/calendar/templates.module.mjs +14 -4
- package/esm2020/calendar/view-list.component.mjs +37 -9
- package/esm2020/calendar/view.component.mjs +3 -8
- package/esm2020/common/models/week-days-format.mjs +5 -0
- package/esm2020/datepicker/datepicker.component.mjs +51 -3
- package/esm2020/daterange/date-range-popup.component.mjs +1 -1
- package/esm2020/datetimepicker/datetimepicker.component.mjs +51 -3
- package/esm2020/index.mjs +3 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +584 -172
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +584 -172
- package/index.d.ts +4 -0
- package/package.json +11 -11
|
@@ -33,6 +33,8 @@ import { incompleteDateValidator } from '../validators/incomplete-date.validator
|
|
|
33
33
|
import { disabledDatesValidator } from '../validators/disabled-date.validator';
|
|
34
34
|
import { calendarIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
35
35
|
import { ActionSheetComponent } from '@progress/kendo-angular-navigation';
|
|
36
|
+
import { HeaderTemplateDirective } from '../calendar/templates/header-template.directive';
|
|
37
|
+
import { FooterTemplateDirective } from '../calendar/templates/footer-template.directivе';
|
|
36
38
|
import * as i0 from "@angular/core";
|
|
37
39
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
38
40
|
import * as i2 from "@progress/kendo-angular-popup";
|
|
@@ -71,6 +73,16 @@ export class DatePickerComponent {
|
|
|
71
73
|
* @hidden
|
|
72
74
|
*/
|
|
73
75
|
this.calendarIcon = calendarIcon;
|
|
76
|
+
/**
|
|
77
|
+
* Toggles the visibility of the Calendar footer.
|
|
78
|
+
* @default false
|
|
79
|
+
*/
|
|
80
|
+
this.footer = false;
|
|
81
|
+
/**
|
|
82
|
+
* Sets the format of the displayed Calendar week days' names.
|
|
83
|
+
* @default 'short'
|
|
84
|
+
*/
|
|
85
|
+
this.weekDaysFormat = "short";
|
|
74
86
|
/**
|
|
75
87
|
* Defines the active view that the Calendar initially renders
|
|
76
88
|
* ([see example]({% slug calendar_type_datepicker %}#toc-active-view)).
|
|
@@ -347,6 +359,18 @@ export class DatePickerComponent {
|
|
|
347
359
|
set headerTitleTemplateRef(template) {
|
|
348
360
|
this.headerTitleTemplate = template;
|
|
349
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* @hidden
|
|
364
|
+
*/
|
|
365
|
+
set headerTemplateRef(template) {
|
|
366
|
+
this.headerTemplate = template;
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* @hidden
|
|
370
|
+
*/
|
|
371
|
+
set footerTemplateRef(template) {
|
|
372
|
+
this.footerTemplate = template;
|
|
373
|
+
}
|
|
350
374
|
/**
|
|
351
375
|
* @hidden
|
|
352
376
|
*/
|
|
@@ -1047,7 +1071,7 @@ export class DatePickerComponent {
|
|
|
1047
1071
|
}
|
|
1048
1072
|
}
|
|
1049
1073
|
DatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.NgZone }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i2.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i3.PickerService }, { token: i4.DisabledDatesService }, { token: TOUCH_ENABLED, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
1050
|
-
DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DatePickerComponent, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], monthCellTemplateRef: ["monthCellTemplate", "monthCellTemplateRef"], yearCellTemplateRef: ["yearCellTemplate", "yearCellTemplateRef"], decadeCellTemplateRef: ["decadeCellTemplate", "decadeCellTemplateRef"], centuryCellTemplateRef: ["centuryCellTemplate", "centuryCellTemplateRef"], weekNumberTemplateRef: ["weekNumberTemplate", "weekNumberTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], 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", title: "title", subtitle: "subtitle", 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" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
1074
|
+
DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DatePickerComponent, selector: "kendo-datepicker", inputs: { focusableId: "focusableId", cellTemplateRef: ["cellTemplate", "cellTemplateRef"], 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", title: "title", subtitle: "subtitle", 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" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
|
|
1051
1075
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
1052
1076
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => DatePickerComponent), multi: true },
|
|
1053
1077
|
{ provide: KendoInput, useExisting: forwardRef(() => DatePickerComponent) },
|
|
@@ -1058,7 +1082,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
1058
1082
|
provide: L10N_PREFIX,
|
|
1059
1083
|
useValue: 'kendo.datepicker'
|
|
1060
1084
|
}
|
|
1061
|
-
], queries: [{ propertyName: "cellTemplate", first: true, predicate: CellTemplateDirective, descendants: true }, { propertyName: "monthCellTemplate", first: true, predicate: MonthCellTemplateDirective, descendants: true }, { propertyName: "yearCellTemplate", first: true, predicate: YearCellTemplateDirective, descendants: true }, { propertyName: "decadeCellTemplate", first: true, predicate: DecadeCellTemplateDirective, descendants: true }, { propertyName: "centuryCellTemplate", first: true, predicate: CenturyCellTemplateDirective, descendants: true }, { propertyName: "weekNumberTemplate", first: true, predicate: WeekNumberCellTemplateDirective, descendants: true }, { propertyName: "headerTitleTemplate", first: true, predicate: HeaderTitleTemplateDirective, descendants: true }, { propertyName: "navigationItemTemplate", first: true, predicate: NavigationItemTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "toggleButton", first: true, predicate: ["toggleButton"], descendants: true, static: true }, { propertyName: "actionSheet", first: true, predicate: ["actionSheet"], descendants: true }], exportAs: ["kendo-datepicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
1085
|
+
], queries: [{ propertyName: "cellTemplate", first: true, predicate: CellTemplateDirective, descendants: true }, { propertyName: "monthCellTemplate", first: true, predicate: MonthCellTemplateDirective, descendants: true }, { propertyName: "yearCellTemplate", first: true, predicate: YearCellTemplateDirective, descendants: true }, { propertyName: "decadeCellTemplate", first: true, predicate: DecadeCellTemplateDirective, descendants: true }, { propertyName: "centuryCellTemplate", first: true, predicate: CenturyCellTemplateDirective, descendants: true }, { propertyName: "weekNumberTemplate", first: true, predicate: WeekNumberCellTemplateDirective, descendants: true }, { propertyName: "headerTitleTemplate", first: true, predicate: HeaderTitleTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: HeaderTemplateDirective, descendants: true }, { propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }, { propertyName: "navigationItemTemplate", first: true, predicate: NavigationItemTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "toggleButton", first: true, predicate: ["toggleButton"], descendants: true, static: true }, { propertyName: "actionSheet", first: true, predicate: ["actionSheet"], descendants: true }], exportAs: ["kendo-datepicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
1062
1086
|
<ng-container kendoDatePickerLocalizedMessages
|
|
1063
1087
|
i18n-today="kendo.datepicker.today|The label for the today button in the calendar header"
|
|
1064
1088
|
today="Today"
|
|
@@ -1183,6 +1207,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
1183
1207
|
[type]="calendarType"
|
|
1184
1208
|
[min]="min"
|
|
1185
1209
|
[max]="max"
|
|
1210
|
+
[weekDaysFormat]="weekDaysFormat"
|
|
1186
1211
|
[navigation]="navigation"
|
|
1187
1212
|
[animateNavigation]="animateCalendarNavigation"
|
|
1188
1213
|
[activeView]="activeView"
|
|
@@ -1197,6 +1222,9 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
1197
1222
|
[centuryCellTemplate]="centuryCellTemplate"
|
|
1198
1223
|
[weekNumberTemplate]="weekNumberTemplate"
|
|
1199
1224
|
[headerTitleTemplate]="headerTitleTemplate"
|
|
1225
|
+
[headerTemplate]="headerTemplate"
|
|
1226
|
+
[footerTemplate]="footerTemplate"
|
|
1227
|
+
[footer]="footer"
|
|
1200
1228
|
[navigationItemTemplate]="navigationItemTemplate"
|
|
1201
1229
|
[focusedDate]="focusedDate"
|
|
1202
1230
|
[value]="value"
|
|
@@ -1216,7 +1244,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
1216
1244
|
</kendo-calendar-messages>
|
|
1217
1245
|
</kendo-calendar>
|
|
1218
1246
|
</ng-template>
|
|
1219
|
-
`, isInline: true, components: [{ type: i5.DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i7.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i8.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i9.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i10.CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i11.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: i12.DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }, { type: i7.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i13.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i13.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1247
|
+
`, isInline: true, components: [{ type: i5.DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i7.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i8.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i9.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i10.CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i11.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: i12.DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }, { type: i7.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i13.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i13.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1220
1248
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DatePickerComponent, decorators: [{
|
|
1221
1249
|
type: Component,
|
|
1222
1250
|
args: [{
|
|
@@ -1360,6 +1388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1360
1388
|
[type]="calendarType"
|
|
1361
1389
|
[min]="min"
|
|
1362
1390
|
[max]="max"
|
|
1391
|
+
[weekDaysFormat]="weekDaysFormat"
|
|
1363
1392
|
[navigation]="navigation"
|
|
1364
1393
|
[animateNavigation]="animateCalendarNavigation"
|
|
1365
1394
|
[activeView]="activeView"
|
|
@@ -1374,6 +1403,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1374
1403
|
[centuryCellTemplate]="centuryCellTemplate"
|
|
1375
1404
|
[weekNumberTemplate]="weekNumberTemplate"
|
|
1376
1405
|
[headerTitleTemplate]="headerTitleTemplate"
|
|
1406
|
+
[headerTemplate]="headerTemplate"
|
|
1407
|
+
[footerTemplate]="footerTemplate"
|
|
1408
|
+
[footer]="footer"
|
|
1377
1409
|
[navigationItemTemplate]="navigationItemTemplate"
|
|
1378
1410
|
[focusedDate]="focusedDate"
|
|
1379
1411
|
[value]="value"
|
|
@@ -1456,12 +1488,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1456
1488
|
}], headerTitleTemplateRef: [{
|
|
1457
1489
|
type: Input,
|
|
1458
1490
|
args: ['headerTitleTemplate']
|
|
1491
|
+
}], headerTemplate: [{
|
|
1492
|
+
type: ContentChild,
|
|
1493
|
+
args: [HeaderTemplateDirective]
|
|
1494
|
+
}], headerTemplateRef: [{
|
|
1495
|
+
type: Input,
|
|
1496
|
+
args: ['headerTemplate']
|
|
1497
|
+
}], footerTemplate: [{
|
|
1498
|
+
type: ContentChild,
|
|
1499
|
+
args: [FooterTemplateDirective]
|
|
1500
|
+
}], footerTemplateRef: [{
|
|
1501
|
+
type: Input,
|
|
1502
|
+
args: ['footerTemplate']
|
|
1503
|
+
}], footer: [{
|
|
1504
|
+
type: Input
|
|
1459
1505
|
}], navigationItemTemplate: [{
|
|
1460
1506
|
type: ContentChild,
|
|
1461
1507
|
args: [NavigationItemTemplateDirective, { static: false }]
|
|
1462
1508
|
}], navigationItemTemplateRef: [{
|
|
1463
1509
|
type: Input,
|
|
1464
1510
|
args: ['navigationItemTemplate']
|
|
1511
|
+
}], weekDaysFormat: [{
|
|
1512
|
+
type: Input
|
|
1465
1513
|
}], showOtherMonthDays: [{
|
|
1466
1514
|
type: Input
|
|
1467
1515
|
}], activeView: [{
|
|
@@ -570,7 +570,7 @@ DateRangePopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
570
570
|
</div>
|
|
571
571
|
</ng-template>
|
|
572
572
|
</kendo-actionsheet>
|
|
573
|
-
`, isInline: true, components: [{ type: i4.MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "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", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { type: i5.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i6.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i7.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i8.DateRangePopupLocalizedMessagesDirective, selector: "[kendoDateRangePopupLocalizedMessages]" }, { type: i9.DateRangeSelectionDirective, selector: "[kendoDateRangeSelection]", inputs: ["autoCorrectOn", "selectionRange", "activeRangeEnd", "shouldSetRange"], outputs: ["activeRangeEndChange", "selectionRangeChange"] }, { type: i5.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
573
|
+
`, isInline: true, components: [{ type: i4.MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "id", "focusedDate", "footer", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "weekDaysFormat", "isActive", "disabledDates", "activeView", "bottomView", "topView", "showViewHeader", "animateNavigation", "weekNumber", "activeRangeEnd", "selectionRange", "views", "orientation", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "footerTemplate", "headerTitleTemplate", "headerTemplate"], outputs: ["activeViewChange", "navigate", "cellEnter", "cellLeave", "valueChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { type: i5.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i6.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i7.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i8.DateRangePopupLocalizedMessagesDirective, selector: "[kendoDateRangePopupLocalizedMessages]" }, { type: i9.DateRangeSelectionDirective, selector: "[kendoDateRangeSelection]", inputs: ["autoCorrectOn", "selectionRange", "activeRangeEnd", "shouldSetRange"], outputs: ["activeRangeEndChange", "selectionRangeChange"] }, { type: i5.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
574
574
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateRangePopupComponent, decorators: [{
|
|
575
575
|
type: Component,
|
|
576
576
|
args: [{
|
|
@@ -34,6 +34,8 @@ import { HeaderTitleTemplateDirective } from '../calendar/templates/header-title
|
|
|
34
34
|
import { incompleteDateValidator } from '../validators/incomplete-date.validator';
|
|
35
35
|
import { calendarIcon, clockIcon, xIcon } from '@progress/kendo-svg-icons';
|
|
36
36
|
import { ActionSheetComponent } from '@progress/kendo-angular-navigation';
|
|
37
|
+
import { HeaderTemplateDirective } from '../calendar/templates/header-template.directive';
|
|
38
|
+
import { FooterTemplateDirective } from '../calendar/templates/footer-template.directivе';
|
|
37
39
|
import * as i0 from "@angular/core";
|
|
38
40
|
import * as i1 from "@progress/kendo-angular-popup";
|
|
39
41
|
import * as i2 from "@progress/kendo-angular-intl";
|
|
@@ -88,6 +90,11 @@ export class DateTimePickerComponent {
|
|
|
88
90
|
* @hidden
|
|
89
91
|
*/
|
|
90
92
|
this.hostClasses = true;
|
|
93
|
+
/**
|
|
94
|
+
* Sets the format of the displayed Calendar week days' names.
|
|
95
|
+
* @default 'short'
|
|
96
|
+
*/
|
|
97
|
+
this.weekDaysFormat = "short";
|
|
91
98
|
/**
|
|
92
99
|
* The maximum year to assume to be from the current century when typing two-digit year value
|
|
93
100
|
* ([see example]({% slug formats_datetimepicker %}#toc-two-digit-year-format)).
|
|
@@ -282,6 +289,11 @@ export class DateTimePickerComponent {
|
|
|
282
289
|
* @hidden
|
|
283
290
|
*/
|
|
284
291
|
this.xIcon = xIcon;
|
|
292
|
+
/**
|
|
293
|
+
* Toggles the visibility of the Calendar footer.
|
|
294
|
+
* @default false
|
|
295
|
+
*/
|
|
296
|
+
this.footer = false;
|
|
285
297
|
this._popupSettings = { animate: true };
|
|
286
298
|
this._value = null;
|
|
287
299
|
this._format = DEFAULT_DATEINPUT_FORMAT;
|
|
@@ -597,6 +609,18 @@ export class DateTimePickerComponent {
|
|
|
597
609
|
}
|
|
598
610
|
this.windowSize = windowSize();
|
|
599
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* @hidden
|
|
614
|
+
*/
|
|
615
|
+
set headerTemplateRef(template) {
|
|
616
|
+
this.headerTemplate = template;
|
|
617
|
+
}
|
|
618
|
+
/**
|
|
619
|
+
* @hidden
|
|
620
|
+
*/
|
|
621
|
+
set footerTemplateRef(template) {
|
|
622
|
+
this.footerTemplate = template;
|
|
623
|
+
}
|
|
600
624
|
get activeTabComponent() {
|
|
601
625
|
if (!this.isOpen) {
|
|
602
626
|
return;
|
|
@@ -1267,7 +1291,7 @@ export class DateTimePickerComponent {
|
|
|
1267
1291
|
}
|
|
1268
1292
|
}
|
|
1269
1293
|
DateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1.PopupService }, { token: i2.IntlService }, { token: i0.ChangeDetectorRef }, { token: i3.PickerService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: TOUCH_ENABLED }, { token: i4.LocalizationService }, { token: i5.DisabledDatesService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
1270
|
-
DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", title: "title", subtitle: "subtitle", 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", autoFill: "autoFill", adaptiveMode: "adaptiveMode", defaultTab: "defaultTab", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
|
|
1294
|
+
DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: { focusableId: "focusableId", weekDaysFormat: "weekDaysFormat", showOtherMonthDays: "showOtherMonthDays", value: "value", format: "format", twoDigitYearMax: "twoDigitYearMax", tabindex: "tabindex", disabledDates: "disabledDates", popupSettings: "popupSettings", title: "title", subtitle: "subtitle", 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", autoFill: "autoFill", adaptiveMode: "adaptiveMode", 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" }, host: { properties: { "class.k-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
|
|
1271
1295
|
PickerService,
|
|
1272
1296
|
LocalizationService,
|
|
1273
1297
|
DisabledDatesService,
|
|
@@ -1275,7 +1299,7 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
1275
1299
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DateTimePickerComponent), multi: true },
|
|
1276
1300
|
{ provide: NG_VALIDATORS, useExisting: forwardRef(() => DateTimePickerComponent), multi: true },
|
|
1277
1301
|
{ provide: KendoInput, useExisting: forwardRef(() => DateTimePickerComponent) }
|
|
1278
|
-
], queries: [{ propertyName: "cellTemplate", first: true, predicate: CellTemplateDirective, descendants: true }, { propertyName: "monthCellTemplate", first: true, predicate: MonthCellTemplateDirective, descendants: true }, { propertyName: "yearCellTemplate", first: true, predicate: YearCellTemplateDirective, descendants: true }, { propertyName: "decadeCellTemplate", first: true, predicate: DecadeCellTemplateDirective, descendants: true }, { propertyName: "centuryCellTemplate", first: true, predicate: CenturyCellTemplateDirective, descendants: true }, { propertyName: "weekNumberTemplate", first: true, predicate: WeekNumberCellTemplateDirective, descendants: true }, { propertyName: "headerTitleTemplate", first: true, predicate: HeaderTitleTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "toggleButton", first: true, predicate: ["toggleButton"], descendants: true, static: true }, { propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, read: TemplateRef, static: true }, { propertyName: "actionSheet", first: true, predicate: ["actionSheet"], descendants: true }], exportAs: ["kendo-datetimepicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
1302
|
+
], queries: [{ propertyName: "cellTemplate", first: true, predicate: CellTemplateDirective, descendants: true }, { propertyName: "monthCellTemplate", first: true, predicate: MonthCellTemplateDirective, descendants: true }, { propertyName: "yearCellTemplate", first: true, predicate: YearCellTemplateDirective, descendants: true }, { propertyName: "decadeCellTemplate", first: true, predicate: DecadeCellTemplateDirective, descendants: true }, { propertyName: "centuryCellTemplate", first: true, predicate: CenturyCellTemplateDirective, descendants: true }, { propertyName: "weekNumberTemplate", first: true, predicate: WeekNumberCellTemplateDirective, descendants: true }, { propertyName: "headerTitleTemplate", first: true, predicate: HeaderTitleTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: HeaderTemplateDirective, descendants: true }, { propertyName: "footerTemplate", first: true, predicate: FooterTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "toggleButton", first: true, predicate: ["toggleButton"], descendants: true, static: true }, { propertyName: "container", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, read: TemplateRef, static: true }, { propertyName: "actionSheet", first: true, predicate: ["actionSheet"], descendants: true }], exportAs: ["kendo-datetimepicker"], usesOnChanges: true, ngImport: i0, template: `
|
|
1279
1303
|
<ng-container
|
|
1280
1304
|
kendoDateTimePickerLocalizedMessages
|
|
1281
1305
|
|
|
@@ -1539,6 +1563,7 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
1539
1563
|
[type]="calendarType"
|
|
1540
1564
|
[min]="calendarMin"
|
|
1541
1565
|
[max]="calendarMax"
|
|
1566
|
+
[weekDaysFormat]="weekDaysFormat"
|
|
1542
1567
|
[weekNumber]="weekNumber"
|
|
1543
1568
|
[navigation]="false"
|
|
1544
1569
|
[animateNavigation]="animateCalendarNavigation"
|
|
@@ -1550,6 +1575,9 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
1550
1575
|
[centuryCellTemplate]="centuryCellTemplate"
|
|
1551
1576
|
[weekNumberTemplate]="weekNumberTemplate"
|
|
1552
1577
|
[headerTitleTemplate]="headerTitleTemplate"
|
|
1578
|
+
[headerTemplate]="headerTemplate"
|
|
1579
|
+
[footerTemplate]="footerTemplate"
|
|
1580
|
+
[footer]="footer"
|
|
1553
1581
|
[disabled]="disableCalendar"
|
|
1554
1582
|
[disabledDates]="disabledDates"
|
|
1555
1583
|
(valueChange)="handleCalendarValueChange()"
|
|
@@ -1637,7 +1665,7 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
1637
1665
|
</div>
|
|
1638
1666
|
</div>
|
|
1639
1667
|
</ng-template>
|
|
1640
|
-
`, isInline: true, components: [{ type: i6.DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i11.CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i12.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { type: i13.TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: i14.TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: i15.LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i16.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i16.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i16.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1668
|
+
`, isInline: true, components: [{ type: i6.DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { type: i7.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i8.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { type: i9.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { type: i10.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i11.CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i12.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { type: i13.TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart"], exportAs: ["kendo-timeselector"] }, { type: i14.TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], directives: [{ type: i15.LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i16.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i16.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i9.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { type: i16.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1641
1669
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerComponent, decorators: [{
|
|
1642
1670
|
type: Component,
|
|
1643
1671
|
args: [{
|
|
@@ -1917,6 +1945,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1917
1945
|
[type]="calendarType"
|
|
1918
1946
|
[min]="calendarMin"
|
|
1919
1947
|
[max]="calendarMax"
|
|
1948
|
+
[weekDaysFormat]="weekDaysFormat"
|
|
1920
1949
|
[weekNumber]="weekNumber"
|
|
1921
1950
|
[navigation]="false"
|
|
1922
1951
|
[animateNavigation]="animateCalendarNavigation"
|
|
@@ -1928,6 +1957,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1928
1957
|
[centuryCellTemplate]="centuryCellTemplate"
|
|
1929
1958
|
[weekNumberTemplate]="weekNumberTemplate"
|
|
1930
1959
|
[headerTitleTemplate]="headerTitleTemplate"
|
|
1960
|
+
[headerTemplate]="headerTemplate"
|
|
1961
|
+
[footerTemplate]="footerTemplate"
|
|
1962
|
+
[footer]="footer"
|
|
1931
1963
|
[disabled]="disableCalendar"
|
|
1932
1964
|
[disabledDates]="disabledDates"
|
|
1933
1965
|
(valueChange)="handleCalendarValueChange()"
|
|
@@ -2034,6 +2066,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2034
2066
|
args: ['toggleButton', { static: true }]
|
|
2035
2067
|
}], focusableId: [{
|
|
2036
2068
|
type: Input
|
|
2069
|
+
}], weekDaysFormat: [{
|
|
2070
|
+
type: Input
|
|
2037
2071
|
}], showOtherMonthDays: [{
|
|
2038
2072
|
type: Input
|
|
2039
2073
|
}], value: [{
|
|
@@ -2142,6 +2176,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2142
2176
|
}], headerTitleTemplate: [{
|
|
2143
2177
|
type: ContentChild,
|
|
2144
2178
|
args: [HeaderTitleTemplateDirective, { static: false }]
|
|
2179
|
+
}], headerTemplate: [{
|
|
2180
|
+
type: ContentChild,
|
|
2181
|
+
args: [HeaderTemplateDirective]
|
|
2182
|
+
}], headerTemplateRef: [{
|
|
2183
|
+
type: Input,
|
|
2184
|
+
args: ['headerTemplate']
|
|
2185
|
+
}], footerTemplate: [{
|
|
2186
|
+
type: ContentChild,
|
|
2187
|
+
args: [FooterTemplateDirective]
|
|
2188
|
+
}], footerTemplateRef: [{
|
|
2189
|
+
type: Input,
|
|
2190
|
+
args: ['footerTemplate']
|
|
2191
|
+
}], footer: [{
|
|
2192
|
+
type: Input
|
|
2145
2193
|
}], container: [{
|
|
2146
2194
|
type: ViewChild,
|
|
2147
2195
|
args: ['container', { read: ViewContainerRef, static: true }]
|
package/esm2020/index.mjs
CHANGED
|
@@ -14,6 +14,7 @@ export { TimeListComponent } from './timepicker/timelist.component';
|
|
|
14
14
|
export { TimeSelectorComponent } from './timepicker/timeselector.component';
|
|
15
15
|
export { HorizontalViewListComponent } from './calendar/horizontal-view-list.component';
|
|
16
16
|
export { HeaderComponent } from './calendar/header.component';
|
|
17
|
+
export { FooterComponent } from './calendar/footer.component';
|
|
17
18
|
export { ViewComponent } from './calendar/view.component';
|
|
18
19
|
export { CellTemplateDirective } from './calendar/templates/cell-template.directive';
|
|
19
20
|
export { MonthCellTemplateDirective } from './calendar/templates/month-cell-template.directive';
|
|
@@ -22,6 +23,8 @@ export { DecadeCellTemplateDirective } from './calendar/templates/decade-cell-te
|
|
|
22
23
|
export { CenturyCellTemplateDirective } from './calendar/templates/century-cell-template.directive';
|
|
23
24
|
export { WeekNumberCellTemplateDirective } from './calendar/templates/weeknumber-cell-template.directive';
|
|
24
25
|
export { HeaderTitleTemplateDirective } from './calendar/templates/header-title-template.directive';
|
|
26
|
+
export { HeaderTemplateDirective } from './calendar/templates/header-template.directive';
|
|
27
|
+
export { FooterTemplateDirective } from './calendar/templates/footer-template.directivе';
|
|
25
28
|
export { NavigationItemTemplateDirective } from './calendar/templates/navigation-item-template.directive';
|
|
26
29
|
export { KForOf } from './calendar/for.directive';
|
|
27
30
|
export { DateRangeComponent } from './daterange/date-range.component';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '15.
|
|
12
|
+
publishDate: 1711116955,
|
|
13
|
+
version: '15.4.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|