@progress/kendo-angular-dateinputs 16.5.0 → 16.6.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.
Files changed (146) hide show
  1. package/NOTICE.txt +12 -19
  2. package/calendar/calendar.component.d.ts +1 -1
  3. package/calendar/calendar.module.d.ts +13 -13
  4. package/calendar/calendars.module.d.ts +15 -3
  5. package/calendar/footer.component.d.ts +1 -1
  6. package/calendar/for.directive.d.ts +1 -1
  7. package/calendar/header.component.d.ts +1 -1
  8. package/calendar/horizontal-view-list.component.d.ts +1 -1
  9. package/calendar/localization/calendar-custom-messages.component.d.ts +1 -1
  10. package/calendar/localization/calendar-localized-messages.directive.d.ts +1 -1
  11. package/calendar/localization/multiview-calendar-custom-messages.component.d.ts +1 -1
  12. package/calendar/localization/multiview-calendar-localized-messages.directive.d.ts +1 -1
  13. package/calendar/multiview-calendar.component.d.ts +1 -1
  14. package/calendar/multiview-calendar.module.d.ts +13 -11
  15. package/calendar/navigation.component.d.ts +1 -1
  16. package/calendar/templates/cell-template.directive.d.ts +1 -1
  17. package/calendar/templates/century-cell-template.directive.d.ts +1 -1
  18. package/calendar/templates/decade-cell-template.directive.d.ts +1 -1
  19. package/calendar/templates/footer-template.directive.d.ts +1 -1
  20. package/calendar/templates/header-template.directive.d.ts +1 -1
  21. package/calendar/templates/header-title-template.directive.d.ts +1 -1
  22. package/calendar/templates/month-cell-template.directive.d.ts +1 -1
  23. package/calendar/templates/navigation-item-template.directive.d.ts +1 -1
  24. package/calendar/templates/weeknumber-cell-template.directive.d.ts +1 -1
  25. package/calendar/templates/year-cell-template.directive.d.ts +1 -1
  26. package/calendar/view-list.component.d.ts +1 -1
  27. package/calendar/view.component.d.ts +1 -1
  28. package/common/adaptive.module.d.ts +5 -4
  29. package/dateinput/dateinput.component.d.ts +2 -5
  30. package/dateinput/dateinput.module.d.ts +3 -8
  31. package/dateinput/localization/dateinput-custom-messages.component.d.ts +1 -1
  32. package/dateinput/localization/dateinput-localized-messages.directive.d.ts +1 -1
  33. package/dateinputs.module.d.ts +30 -7
  34. package/datepicker/datepicker.component.d.ts +4 -8
  35. package/datepicker/datepicker.module.d.ts +13 -13
  36. package/datepicker/localization/datepicker-custom-messages.component.d.ts +1 -1
  37. package/datepicker/localization/datepicker-localized-messages.directive.d.ts +1 -1
  38. package/daterange/date-range-end-input.directive.d.ts +1 -1
  39. package/daterange/date-range-popup-template.directive.d.ts +1 -1
  40. package/daterange/date-range-popup.component.d.ts +1 -1
  41. package/daterange/date-range-selection.directive.d.ts +1 -1
  42. package/daterange/date-range-start-input.directive.d.ts +1 -1
  43. package/daterange/date-range.component.d.ts +1 -1
  44. package/daterange/date-range.module.d.ts +10 -15
  45. package/daterange/localization/daterange-popup-custom-messages.component.d.ts +1 -1
  46. package/daterange/localization/daterange-popup-localized-messages.directive.d.ts +1 -1
  47. package/datetimepicker/datetimepicker.component.d.ts +3 -7
  48. package/datetimepicker/datetimepicker.module.d.ts +13 -14
  49. package/datetimepicker/localization/datetimepicker-custom-messages.component.d.ts +1 -1
  50. package/datetimepicker/localization/localized-messages.directive.d.ts +1 -1
  51. package/directives.d.ts +65 -0
  52. package/esm2020/calendar/calendar.component.mjs +9 -11
  53. package/esm2020/calendar/calendar.module.mjs +34 -69
  54. package/esm2020/calendar/calendars.module.mjs +52 -15
  55. package/esm2020/calendar/footer.component.mjs +7 -5
  56. package/esm2020/calendar/for.directive.mjs +5 -2
  57. package/esm2020/calendar/header.component.mjs +8 -6
  58. package/esm2020/calendar/horizontal-view-list.component.mjs +8 -6
  59. package/esm2020/calendar/localization/calendar-custom-messages.component.mjs +3 -2
  60. package/esm2020/calendar/localization/calendar-localized-messages.directive.mjs +3 -2
  61. package/esm2020/calendar/localization/multiview-calendar-custom-messages.component.mjs +3 -2
  62. package/esm2020/calendar/localization/multiview-calendar-localized-messages.directive.mjs +3 -2
  63. package/esm2020/calendar/multiview-calendar.component.mjs +8 -8
  64. package/esm2020/calendar/multiview-calendar.module.mjs +23 -55
  65. package/esm2020/calendar/navigation.component.mjs +8 -7
  66. package/esm2020/calendar/services/century-view.service.mjs +5 -2
  67. package/esm2020/calendar/services/decade-view.service.mjs +5 -2
  68. package/esm2020/calendar/services/dom.service.mjs +5 -2
  69. package/esm2020/calendar/services/month-view.service.mjs +5 -2
  70. package/esm2020/calendar/services/navigation.service.mjs +5 -2
  71. package/esm2020/calendar/services/weeknames.service.mjs +5 -2
  72. package/esm2020/calendar/services/year-view.service.mjs +5 -2
  73. package/esm2020/calendar/templates/cell-template.directive.mjs +3 -2
  74. package/esm2020/calendar/templates/century-cell-template.directive.mjs +3 -2
  75. package/esm2020/calendar/templates/decade-cell-template.directive.mjs +3 -2
  76. package/esm2020/calendar/templates/footer-template.directive.mjs +3 -2
  77. package/esm2020/calendar/templates/header-template.directive.mjs +3 -2
  78. package/esm2020/calendar/templates/header-title-template.directive.mjs +3 -2
  79. package/esm2020/calendar/templates/month-cell-template.directive.mjs +3 -2
  80. package/esm2020/calendar/templates/navigation-item-template.directive.mjs +3 -2
  81. package/esm2020/calendar/templates/weeknumber-cell-template.directive.mjs +3 -2
  82. package/esm2020/calendar/templates/year-cell-template.directive.mjs +3 -2
  83. package/esm2020/calendar/view-list.component.mjs +9 -9
  84. package/esm2020/calendar/view.component.mjs +7 -5
  85. package/esm2020/common/adaptive.module.mjs +25 -17
  86. package/esm2020/dateinput/dateinput.component.mjs +11 -13
  87. package/esm2020/dateinput/dateinput.module.mjs +14 -24
  88. package/esm2020/dateinput/localization/dateinput-custom-messages.component.mjs +3 -2
  89. package/esm2020/dateinput/localization/dateinput-localized-messages.directive.mjs +3 -2
  90. package/esm2020/dateinputs.module.mjs +90 -33
  91. package/esm2020/datepicker/datepicker.component.mjs +23 -32
  92. package/esm2020/datepicker/datepicker.module.mjs +55 -63
  93. package/esm2020/datepicker/localization/datepicker-custom-messages.component.mjs +3 -2
  94. package/esm2020/datepicker/localization/datepicker-localized-messages.directive.mjs +3 -2
  95. package/esm2020/daterange/date-range-end-input.directive.mjs +3 -2
  96. package/esm2020/daterange/date-range-popup-template.directive.mjs +3 -2
  97. package/esm2020/daterange/date-range-popup.component.mjs +10 -11
  98. package/esm2020/daterange/date-range-selection.directive.mjs +3 -2
  99. package/esm2020/daterange/date-range-start-input.directive.mjs +3 -2
  100. package/esm2020/daterange/date-range.component.mjs +6 -5
  101. package/esm2020/daterange/date-range.module.mjs +51 -54
  102. package/esm2020/daterange/localization/daterange-popup-custom-messages.component.mjs +3 -2
  103. package/esm2020/daterange/localization/daterange-popup-localized-messages.directive.mjs +3 -2
  104. package/esm2020/datetimepicker/datetimepicker.component.mjs +24 -31
  105. package/esm2020/datetimepicker/datetimepicker.module.mjs +70 -68
  106. package/esm2020/datetimepicker/localization/datetimepicker-custom-messages.component.mjs +3 -2
  107. package/esm2020/datetimepicker/localization/localized-messages.directive.mjs +3 -2
  108. package/esm2020/directives.mjs +142 -0
  109. package/esm2020/index.mjs +14 -2
  110. package/esm2020/package-metadata.mjs +2 -2
  111. package/esm2020/timepicker/localization/timepicker-custom-messages.component.mjs +3 -2
  112. package/esm2020/timepicker/localization/timepicker-localized-messages.directive.mjs +3 -2
  113. package/esm2020/timepicker/localization/timeselector-custom-messages.component.mjs +3 -2
  114. package/esm2020/timepicker/localization/timeselector-localized-messages.directive.mjs +3 -2
  115. package/esm2020/timepicker/services/dayperiod.service.mjs +5 -2
  116. package/esm2020/timepicker/services/dom.service.mjs +5 -2
  117. package/esm2020/timepicker/services/hours.service.mjs +5 -2
  118. package/esm2020/timepicker/services/milliseconds.service.mjs +5 -2
  119. package/esm2020/timepicker/services/minutes.service.mjs +5 -2
  120. package/esm2020/timepicker/services/seconds.service.mjs +5 -2
  121. package/esm2020/timepicker/timelist.component.mjs +7 -7
  122. package/esm2020/timepicker/timepicker.component.mjs +22 -41
  123. package/esm2020/timepicker/timepicker.module.mjs +34 -75
  124. package/esm2020/timepicker/timeselector.component.mjs +8 -8
  125. package/esm2020/virtualization/virtualization.component.mjs +6 -4
  126. package/fesm2015/progress-kendo-angular-dateinputs.mjs +1229 -1310
  127. package/fesm2020/progress-kendo-angular-dateinputs.mjs +975 -1050
  128. package/index.d.ts +14 -2
  129. package/package.json +10 -10
  130. package/timepicker/localization/timepicker-custom-messages.component.d.ts +1 -1
  131. package/timepicker/localization/timepicker-localized-messages.directive.d.ts +1 -1
  132. package/timepicker/localization/timeselector-custom-messages.component.d.ts +1 -1
  133. package/timepicker/localization/timeselector-localized-messages.directive.d.ts +1 -1
  134. package/timepicker/timelist.component.d.ts +1 -1
  135. package/timepicker/timepicker.component.d.ts +3 -13
  136. package/timepicker/timepicker.module.d.ts +3 -16
  137. package/timepicker/timeselector.component.d.ts +1 -1
  138. package/virtualization/virtualization.component.d.ts +1 -1
  139. package/calendar/calendar-common.module.d.ts +0 -27
  140. package/calendar/templates.module.d.ts +0 -35
  141. package/esm2020/calendar/calendar-common.module.mjs +0 -52
  142. package/esm2020/calendar/templates.module.mjs +0 -83
  143. package/esm2020/touch-enabled.mjs +0 -9
  144. package/esm2020/virtualization/virtualization.module.mjs +0 -30
  145. package/touch-enabled.d.ts +0 -9
  146. package/virtualization/virtualization.module.d.ts +0 -18
@@ -9,25 +9,23 @@ import * as i1$1 from '@progress/kendo-angular-l10n';
9
9
  import { ComponentMessages, LocalizationService, L10N_PREFIX, RTL } from '@progress/kendo-angular-l10n';
10
10
  import { cloneDate, MS_PER_HOUR, MS_PER_MINUTE, addDays, getDate, isEqual, addDecades, addCenturies, firstDecadeOfCentury, lastDecadeOfCentury, firstYearOfDecade, createDate, lastYearOfDecade, lastMonthOfYear, lastDayOfMonth, durationInCenturies, addYears, durationInDecades, addWeeks, addMonths, firstDayOfMonth, dayOfWeek, durationInMonths, firstMonthOfYear, durationInYears, weekInYear } from '@progress/kendo-date-math';
11
11
  import * as i1$2 from '@progress/kendo-angular-common';
12
- import { isDocumentAvailable, guid, Keys as Keys$1, hasObservers, isObject, KendoInput, isObjectPresent, removeHTMLAttributes, parseAttributes, anyChanged, isControlRequired, setHTMLAttributes, MultiTabStop, EventsModule, ResizeSensorModule, ToggleButtonTabStopModule } from '@progress/kendo-angular-common';
12
+ import { isDocumentAvailable, EventsOutsideAngularDirective, guid, Keys as Keys$1, hasObservers, isObject, KendoInput, ResizeSensorComponent, isObjectPresent, removeHTMLAttributes, parseAttributes, anyChanged, isControlRequired, setHTMLAttributes, MultiTabStop, ResizeBatchService, KENDO_RESIZESENSOR } from '@progress/kendo-angular-common';
13
13
  export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
14
14
  import { validatePackage } from '@progress/kendo-licensing';
15
15
  import * as i1 from '@progress/kendo-angular-intl';
16
- import { localeData, IntlModule } from '@progress/kendo-angular-intl';
17
- import * as i4 from '@angular/common';
18
- import { CommonModule } from '@angular/common';
16
+ import { localeData } from '@progress/kendo-angular-intl';
19
17
  import { Subject, Subscription, ReplaySubject, Observable, combineLatest, of, interval, animationFrameScheduler, fromEvent, EMPTY, from, BehaviorSubject, merge } from 'rxjs';
18
+ import { NgIf, NgTemplateOutlet, NgClass, NgFor, NgStyle } from '@angular/common';
20
19
  import { chevronRightIcon, chevronLeftIcon, caretAltUpIcon, xIcon, caretAltDownIcon, calendarIcon, clockIcon } from '@progress/kendo-svg-icons';
21
- import * as i7 from '@progress/kendo-angular-buttons';
22
- import { ButtonModule } from '@progress/kendo-angular-buttons';
20
+ import * as i2 from '@progress/kendo-angular-buttons';
21
+ import { ButtonComponent, KENDO_BUTTON } from '@progress/kendo-angular-buttons';
23
22
  import { map, scan, takeWhile, debounceTime, tap, filter } from 'rxjs/operators';
24
23
  import { DateInput } from '@progress/kendo-dateinputs-common';
25
- import * as i6 from '@progress/kendo-angular-icons';
26
- import { IconsModule } from '@progress/kendo-angular-icons';
24
+ import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
27
25
  import * as i1$3 from '@progress/kendo-angular-popup';
28
- import { PopupModule } from '@progress/kendo-angular-popup';
29
- import * as i12 from '@progress/kendo-angular-navigation';
30
- import { NavigationModule } from '@progress/kendo-angular-navigation';
26
+ import { PopupService } from '@progress/kendo-angular-popup';
27
+ import * as i3 from '@progress/kendo-angular-navigation';
28
+ import { ActionSheetComponent, ActionSheetTemplateDirective, KENDO_NAVIGATION } from '@progress/kendo-angular-navigation';
31
29
  import { touchEnabled } from '@progress/kendo-common';
32
30
 
33
31
  /**
@@ -37,8 +35,8 @@ const packageMetadata = {
37
35
  name: '@progress/kendo-angular-dateinputs',
38
36
  productName: 'Kendo UI for Angular',
39
37
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
40
- publishDate: 1721814151,
41
- version: '16.5.0',
38
+ publishDate: 1722606925,
39
+ version: '16.6.0-develop.10',
42
40
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
43
41
  };
44
42
 
@@ -777,9 +775,12 @@ class CenturyViewService {
777
775
  }
778
776
  }
779
777
  CenturyViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyViewService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
780
- CenturyViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyViewService });
778
+ CenturyViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyViewService, providedIn: 'root' });
781
779
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyViewService, decorators: [{
782
- type: Injectable
780
+ type: Injectable,
781
+ args: [{
782
+ providedIn: 'root'
783
+ }]
783
784
  }] });
784
785
 
785
786
  const EMPTY_DATA$2 = [[]];
@@ -983,9 +984,12 @@ class DecadeViewService {
983
984
  }
984
985
  }
985
986
  DecadeViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeViewService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
986
- DecadeViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeViewService });
987
+ DecadeViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeViewService, providedIn: 'root' });
987
988
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeViewService, decorators: [{
988
- type: Injectable
989
+ type: Injectable,
990
+ args: [{
991
+ providedIn: 'root'
992
+ }]
989
993
  }] });
990
994
 
991
995
  const EMPTY_DATA$1 = [[]];
@@ -1190,9 +1194,12 @@ class MonthViewService {
1190
1194
  }
1191
1195
  }
1192
1196
  MonthViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthViewService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
1193
- MonthViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthViewService });
1197
+ MonthViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthViewService, providedIn: 'root' });
1194
1198
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthViewService, decorators: [{
1195
- type: Injectable
1199
+ type: Injectable,
1200
+ args: [{
1201
+ providedIn: 'root'
1202
+ }]
1196
1203
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
1197
1204
 
1198
1205
  const EMPTY_DATA = [[]];
@@ -1378,9 +1385,12 @@ class YearViewService {
1378
1385
  }
1379
1386
  }
1380
1387
  YearViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearViewService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
1381
- YearViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearViewService });
1388
+ YearViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearViewService, providedIn: 'root' });
1382
1389
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearViewService, decorators: [{
1383
- type: Injectable
1390
+ type: Injectable,
1391
+ args: [{
1392
+ providedIn: 'root'
1393
+ }]
1384
1394
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
1385
1395
 
1386
1396
  /**
@@ -1480,9 +1490,12 @@ class WeekNamesService {
1480
1490
  }
1481
1491
  }
1482
1492
  WeekNamesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNamesService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
1483
- WeekNamesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNamesService });
1493
+ WeekNamesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNamesService, providedIn: 'root' });
1484
1494
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNamesService, decorators: [{
1485
- type: Injectable
1495
+ type: Injectable,
1496
+ args: [{
1497
+ providedIn: 'root'
1498
+ }]
1486
1499
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
1487
1500
 
1488
1501
  /**
@@ -1565,10 +1578,13 @@ class KForOf {
1565
1578
  }
1566
1579
  }
1567
1580
  KForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }], target: i0.ɵɵFactoryTarget.Directive });
1568
- KForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: KForOf, selector: "[kFor][kForOf]", inputs: { kForOf: "kForOf", kForTrackBy: "kForTrackBy", kForTemplate: "kForTemplate" }, usesOnChanges: true, ngImport: i0 });
1581
+ KForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: KForOf, isStandalone: true, selector: "[kFor][kForOf]", inputs: { kForOf: "kForOf", kForTrackBy: "kForTrackBy", kForTemplate: "kForTemplate" }, usesOnChanges: true, ngImport: i0 });
1569
1582
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KForOf, decorators: [{
1570
1583
  type: Directive,
1571
- args: [{ selector: '[kFor][kForOf]' }]
1584
+ args: [{
1585
+ selector: '[kFor][kForOf]',
1586
+ standalone: true
1587
+ }]
1572
1588
  }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: i0.IterableDiffers }]; }, propDecorators: { kForOf: [{
1573
1589
  type: Input
1574
1590
  }], kForTrackBy: [{
@@ -1881,7 +1897,7 @@ class ViewComponent {
1881
1897
  }
1882
1898
  }
1883
1899
  ViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ViewComponent, deps: [{ token: BusViewService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: DisabledDatesService }], target: i0.ɵɵFactoryTarget.Component });
1884
- ViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ViewComponent, selector: "[kendoCalendarView]", inputs: { allowReverse: "allowReverse", showOtherMonthDays: "showOtherMonthDays", direction: "direction", isActive: "isActive", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", viewDate: "viewDate", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", min: "min", max: "max", selectedDates: "selectedDates", weekNumber: "weekNumber", viewIndex: "viewIndex", templateRef: "templateRef", weekNumberTemplateRef: "weekNumberTemplateRef", headerTitle: "headerTitle" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", focusedCellId: "focusedCellId" }, usesOnChanges: true, ngImport: i0, template: `
1900
+ ViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ViewComponent, isStandalone: true, selector: "[kendoCalendarView]", inputs: { allowReverse: "allowReverse", showOtherMonthDays: "showOtherMonthDays", direction: "direction", isActive: "isActive", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", viewDate: "viewDate", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", min: "min", max: "max", selectedDates: "selectedDates", weekNumber: "weekNumber", viewIndex: "viewIndex", templateRef: "templateRef", weekNumberTemplateRef: "weekNumberTemplateRef", headerTitle: "headerTitle" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", focusedCellId: "focusedCellId" }, usesOnChanges: true, ngImport: i0, template: `
1885
1901
  <ng-template #emptyCell><td class="k-empty k-calendar-td" role="gridcell">&nbsp;</td></ng-template>
1886
1902
  <tr *ngIf="!isHorizontal()" class="k-calendar-tr" role="row" [attr.aria-hidden]="ariaHidden"><th class="k-calendar-caption" scope="col" [colSpan]="colSpan">{{title}}</th></tr>
1887
1903
  <tr *kFor="let row of data; let rowIndex = index" class="k-calendar-tr" role="row">
@@ -1928,7 +1944,7 @@ ViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version:
1928
1944
  </td>
1929
1945
  </ng-container>
1930
1946
  </tr>
1931
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }] });
1947
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
1932
1948
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ViewComponent, decorators: [{
1933
1949
  type: Component,
1934
1950
  args: [{
@@ -1981,7 +1997,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1981
1997
  </td>
1982
1998
  </ng-container>
1983
1999
  </tr>
1984
- `
2000
+ `,
2001
+ standalone: true,
2002
+ imports: [NgIf, KForOf, NgTemplateOutlet, NgClass]
1985
2003
  }]
1986
2004
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: DisabledDatesService }]; }, propDecorators: { allowReverse: [{
1987
2005
  type: Input
@@ -2274,7 +2292,7 @@ class HorizontalViewListComponent {
2274
2292
  }
2275
2293
  }
2276
2294
  HorizontalViewListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", 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 });
2277
- HorizontalViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: { showOtherMonthDays: "showOtherMonthDays", cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", allowReverse: "allowReverse", 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", activeDescendant: "activeDescendant", tabIndex: "tabIndex", disabled: "disabled", id: "id", weekDaysFormat: "weekDaysFormat", weekNumber: "weekNumber" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", activeDateChange: "activeDateChange", focusCalendar: "focusCalendar", blurCalendar: "blurCalendar", focusedCellChange: "focusedCellChange" }, host: { listeners: { "focus": "handleMultiViewCalendarFocus()", "blur": "handleMultiViewCalendarBlur($event)" }, 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", "attr.role": "this.role", "attr.tabindex": "this.tabindex" } }, usesOnChanges: true, ngImport: i0, template: `
2295
+ HorizontalViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HorizontalViewListComponent, isStandalone: true, selector: "kendo-calendar-horizontal", inputs: { showOtherMonthDays: "showOtherMonthDays", cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", allowReverse: "allowReverse", 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", activeDescendant: "activeDescendant", tabIndex: "tabIndex", disabled: "disabled", id: "id", weekDaysFormat: "weekDaysFormat", weekNumber: "weekNumber" }, outputs: { cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", cellEnter: "cellEnter", cellLeave: "cellLeave", activeDateChange: "activeDateChange", focusCalendar: "focusCalendar", blurCalendar: "blurCalendar", focusedCellChange: "focusedCellChange" }, host: { listeners: { "focus": "handleMultiViewCalendarFocus()", "blur": "handleMultiViewCalendarBlur($event)" }, 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", "attr.role": "this.role", "attr.tabindex": "this.tabindex" } }, usesOnChanges: true, ngImport: i0, template: `
2278
2296
  <ng-template #tableTemplate let-date="date" let-class="className">
2279
2297
  <table
2280
2298
  [attr.role]="views >= 2 ? 'none' : 'grid'"
@@ -2357,7 +2375,7 @@ HorizontalViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.
2357
2375
  }"
2358
2376
  >
2359
2377
  </ng-template>
2360
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "component", type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["allowReverse", "showOtherMonthDays", "direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef", "headerTitle"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "focusedCellId"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2378
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["allowReverse", "showOtherMonthDays", "direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef", "headerTitle"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "focusedCellId"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2361
2379
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HorizontalViewListComponent, decorators: [{
2362
2380
  type: Component,
2363
2381
  args: [{
@@ -2446,7 +2464,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2446
2464
  }"
2447
2465
  >
2448
2466
  </ng-template>
2449
- `
2467
+ `,
2468
+ standalone: true,
2469
+ imports: [NgClass, NgIf, NgFor, ViewComponent, NgTemplateOutlet, KForOf]
2450
2470
  }]
2451
2471
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: i1.IntlService }, { type: WeekNamesService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { handleMultiViewCalendarFocus: [{
2452
2472
  type: HostListener,
@@ -2658,7 +2678,7 @@ class HeaderComponent {
2658
2678
  }
2659
2679
  }
2660
2680
  HeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, deps: [{ token: BusViewService }, { token: i0.ChangeDetectorRef }, { token: i1$1.LocalizationService }, { token: i1.IntlService }, { token: DisabledDatesService }], target: i0.ɵɵFactoryTarget.Component });
2661
- HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HeaderComponent, selector: "kendo-calendar-header", inputs: { activeView: "activeView", currentDate: "currentDate", min: "min", max: "max", rangeLength: "rangeLength", titleTemplateRef: "titleTemplateRef", headerTemplateRef: "headerTemplateRef", isPrevDisabled: "isPrevDisabled", isNextDisabled: "isNextDisabled", showNavigationButtons: "showNavigationButtons", orientation: "orientation", id: "id", size: "size" }, outputs: { todayButtonClick: "todayButtonClick", prevButtonClick: "prevButtonClick", nextButtonClick: "nextButtonClick" }, host: { properties: { "class.k-calendar-header": "this.getComponentClass", "class.k-vstack": "this.verticalHostClass" } }, usesOnChanges: true, ngImport: i0, template: `
2681
+ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: HeaderComponent, isStandalone: true, selector: "kendo-calendar-header", inputs: { activeView: "activeView", currentDate: "currentDate", min: "min", max: "max", rangeLength: "rangeLength", titleTemplateRef: "titleTemplateRef", headerTemplateRef: "headerTemplateRef", isPrevDisabled: "isPrevDisabled", isNextDisabled: "isNextDisabled", showNavigationButtons: "showNavigationButtons", orientation: "orientation", id: "id", size: "size" }, outputs: { todayButtonClick: "todayButtonClick", prevButtonClick: "prevButtonClick", nextButtonClick: "nextButtonClick" }, host: { properties: { "class.k-calendar-header": "this.getComponentClass", "class.k-vstack": "this.verticalHostClass" } }, usesOnChanges: true, ngImport: i0, template: `
2662
2682
  <ng-template *ngIf="headerTemplateRef; else defaultRendering"
2663
2683
  [ngTemplateOutlet]="headerTemplateRef"
2664
2684
  [ngTemplateOutletContext]="{ title: title, activeView: activeViewValue, date: currentDate }">
@@ -2739,7 +2759,7 @@ HeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
2739
2759
  </button>
2740
2760
  </span>
2741
2761
  </ng-template>
2742
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", 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"] }] });
2762
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: 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"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
2743
2763
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderComponent, decorators: [{
2744
2764
  type: Component,
2745
2765
  args: [{
@@ -2825,7 +2845,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2825
2845
  </button>
2826
2846
  </span>
2827
2847
  </ng-template>
2828
- `
2848
+ `,
2849
+ standalone: true,
2850
+ imports: [NgIf, NgTemplateOutlet, ButtonComponent, EventsOutsideAngularDirective]
2829
2851
  }]
2830
2852
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: i0.ChangeDetectorRef }, { type: i1$1.LocalizationService }, { type: i1.IntlService }, { type: DisabledDatesService }]; }, propDecorators: { activeView: [{
2831
2853
  type: Input
@@ -2951,11 +2973,12 @@ class CellTemplateDirective {
2951
2973
  }
2952
2974
  }
2953
2975
  CellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
2954
- CellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CellTemplateDirective, selector: "[kendoCalendarCellTemplate]", ngImport: i0 });
2976
+ CellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CellTemplateDirective, isStandalone: true, selector: "[kendoCalendarCellTemplate]", ngImport: i0 });
2955
2977
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CellTemplateDirective, decorators: [{
2956
2978
  type: Directive,
2957
2979
  args: [{
2958
- selector: '[kendoCalendarCellTemplate]'
2980
+ selector: '[kendoCalendarCellTemplate]',
2981
+ standalone: true
2959
2982
  }]
2960
2983
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
2961
2984
 
@@ -2989,11 +3012,12 @@ class MonthCellTemplateDirective {
2989
3012
  }
2990
3013
  }
2991
3014
  MonthCellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
2992
- MonthCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MonthCellTemplateDirective, selector: "[kendoCalendarMonthCellTemplate]", ngImport: i0 });
3015
+ MonthCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MonthCellTemplateDirective, isStandalone: true, selector: "[kendoCalendarMonthCellTemplate]", ngImport: i0 });
2993
3016
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MonthCellTemplateDirective, decorators: [{
2994
3017
  type: Directive,
2995
3018
  args: [{
2996
- selector: '[kendoCalendarMonthCellTemplate]'
3019
+ selector: '[kendoCalendarMonthCellTemplate]',
3020
+ standalone: true
2997
3021
  }]
2998
3022
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
2999
3023
 
@@ -3030,11 +3054,12 @@ class YearCellTemplateDirective {
3030
3054
  }
3031
3055
  }
3032
3056
  YearCellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3033
- YearCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: YearCellTemplateDirective, selector: "[kendoCalendarYearCellTemplate]", ngImport: i0 });
3057
+ YearCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: YearCellTemplateDirective, isStandalone: true, selector: "[kendoCalendarYearCellTemplate]", ngImport: i0 });
3034
3058
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: YearCellTemplateDirective, decorators: [{
3035
3059
  type: Directive,
3036
3060
  args: [{
3037
- selector: '[kendoCalendarYearCellTemplate]'
3061
+ selector: '[kendoCalendarYearCellTemplate]',
3062
+ standalone: true
3038
3063
  }]
3039
3064
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3040
3065
 
@@ -3070,11 +3095,12 @@ class DecadeCellTemplateDirective {
3070
3095
  }
3071
3096
  }
3072
3097
  DecadeCellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3073
- DecadeCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DecadeCellTemplateDirective, selector: "[kendoCalendarDecadeCellTemplate]", ngImport: i0 });
3098
+ DecadeCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DecadeCellTemplateDirective, isStandalone: true, selector: "[kendoCalendarDecadeCellTemplate]", ngImport: i0 });
3074
3099
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DecadeCellTemplateDirective, decorators: [{
3075
3100
  type: Directive,
3076
3101
  args: [{
3077
- selector: '[kendoCalendarDecadeCellTemplate]'
3102
+ selector: '[kendoCalendarDecadeCellTemplate]',
3103
+ standalone: true
3078
3104
  }]
3079
3105
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3080
3106
 
@@ -3110,11 +3136,12 @@ class CenturyCellTemplateDirective {
3110
3136
  }
3111
3137
  }
3112
3138
  CenturyCellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3113
- CenturyCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CenturyCellTemplateDirective, selector: "[kendoCalendarCenturyCellTemplate]", ngImport: i0 });
3139
+ CenturyCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CenturyCellTemplateDirective, isStandalone: true, selector: "[kendoCalendarCenturyCellTemplate]", ngImport: i0 });
3114
3140
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CenturyCellTemplateDirective, decorators: [{
3115
3141
  type: Directive,
3116
3142
  args: [{
3117
- selector: '[kendoCalendarCenturyCellTemplate]'
3143
+ selector: '[kendoCalendarCenturyCellTemplate]',
3144
+ standalone: true
3118
3145
  }]
3119
3146
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3120
3147
 
@@ -3148,11 +3175,12 @@ class WeekNumberCellTemplateDirective {
3148
3175
  }
3149
3176
  }
3150
3177
  WeekNumberCellTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNumberCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3151
- WeekNumberCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: WeekNumberCellTemplateDirective, selector: "[kendoCalendarWeekNumberCellTemplate]", ngImport: i0 });
3178
+ WeekNumberCellTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: WeekNumberCellTemplateDirective, isStandalone: true, selector: "[kendoCalendarWeekNumberCellTemplate]", ngImport: i0 });
3152
3179
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WeekNumberCellTemplateDirective, decorators: [{
3153
3180
  type: Directive,
3154
3181
  args: [{
3155
- selector: '[kendoCalendarWeekNumberCellTemplate]'
3182
+ selector: '[kendoCalendarWeekNumberCellTemplate]',
3183
+ standalone: true
3156
3184
  }]
3157
3185
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3158
3186
 
@@ -3187,11 +3215,12 @@ class HeaderTitleTemplateDirective {
3187
3215
  }
3188
3216
  }
3189
3217
  HeaderTitleTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTitleTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3190
- HeaderTitleTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTitleTemplateDirective, selector: "[kendoCalendarHeaderTitleTemplate]", ngImport: i0 });
3218
+ HeaderTitleTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTitleTemplateDirective, isStandalone: true, selector: "[kendoCalendarHeaderTitleTemplate]", ngImport: i0 });
3191
3219
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTitleTemplateDirective, decorators: [{
3192
3220
  type: Directive,
3193
3221
  args: [{
3194
- selector: '[kendoCalendarHeaderTitleTemplate]'
3222
+ selector: '[kendoCalendarHeaderTitleTemplate]',
3223
+ standalone: true
3195
3224
  }]
3196
3225
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3197
3226
 
@@ -3328,9 +3357,12 @@ class NavigationService {
3328
3357
  }
3329
3358
  }
3330
3359
  NavigationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService, deps: [{ token: BusViewService }], target: i0.ɵɵFactoryTarget.Injectable });
3331
- NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService });
3360
+ NavigationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService, providedIn: 'root' });
3332
3361
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationService, decorators: [{
3333
- type: Injectable
3362
+ type: Injectable,
3363
+ args: [{
3364
+ providedIn: 'root'
3365
+ }]
3334
3366
  }], ctorParameters: function () { return [{ type: BusViewService }]; } });
3335
3367
 
3336
3368
  /**
@@ -3364,11 +3396,12 @@ class HeaderTemplateDirective {
3364
3396
  }
3365
3397
  }
3366
3398
  HeaderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3367
- HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, selector: "[kendoCalendarHeaderTemplate]", ngImport: i0 });
3399
+ HeaderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: HeaderTemplateDirective, isStandalone: true, selector: "[kendoCalendarHeaderTemplate]", ngImport: i0 });
3368
3400
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HeaderTemplateDirective, decorators: [{
3369
3401
  type: Directive,
3370
3402
  args: [{
3371
- selector: '[kendoCalendarHeaderTemplate]'
3403
+ selector: '[kendoCalendarHeaderTemplate]',
3404
+ standalone: true
3372
3405
  }]
3373
3406
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3374
3407
 
@@ -3402,11 +3435,12 @@ class FooterTemplateDirective {
3402
3435
  }
3403
3436
  }
3404
3437
  FooterTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
3405
- FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, selector: "[kendoCalendarFooterTemplate]", ngImport: i0 });
3438
+ FooterTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FooterTemplateDirective, isStandalone: true, selector: "[kendoCalendarFooterTemplate]", ngImport: i0 });
3406
3439
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterTemplateDirective, decorators: [{
3407
3440
  type: Directive,
3408
3441
  args: [{
3409
- selector: '[kendoCalendarFooterTemplate]'
3442
+ selector: '[kendoCalendarFooterTemplate]',
3443
+ standalone: true
3410
3444
  }]
3411
3445
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
3412
3446
 
@@ -3421,7 +3455,7 @@ class FooterComponent {
3421
3455
  }
3422
3456
  }
3423
3457
  FooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterComponent, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Component });
3424
- FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FooterComponent, selector: "kendo-calendar-footer", inputs: { footerTemplateRef: "footerTemplateRef", activeViewValue: "activeViewValue", currentDate: "currentDate" }, host: { properties: { "class.k-calendar-footer": "this.showFooter" } }, ngImport: i0, template: `
3458
+ FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FooterComponent, isStandalone: true, selector: "kendo-calendar-footer", inputs: { footerTemplateRef: "footerTemplateRef", activeViewValue: "activeViewValue", currentDate: "currentDate" }, host: { properties: { "class.k-calendar-footer": "this.showFooter" } }, ngImport: i0, template: `
3425
3459
  <ng-template *ngIf="footerTemplateRef; else defaultRendering"
3426
3460
  [ngTemplateOutlet]="footerTemplateRef"
3427
3461
  [ngTemplateOutletContext]="{ activeView: activeViewValue, date: currentDate }">
@@ -3436,7 +3470,7 @@ FooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
3436
3470
  {{intl.formatDate(getToday(), 'D')}}
3437
3471
  </button>
3438
3472
  </ng-template>
3439
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", 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"] }] });
3473
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: 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"] }] });
3440
3474
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FooterComponent, decorators: [{
3441
3475
  type: Component,
3442
3476
  args: [{
@@ -3456,7 +3490,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3456
3490
  {{intl.formatDate(getToday(), 'D')}}
3457
3491
  </button>
3458
3492
  </ng-template>
3459
- `
3493
+ `,
3494
+ standalone: true,
3495
+ imports: [NgIf, NgTemplateOutlet, ButtonComponent]
3460
3496
  }]
3461
3497
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; }, propDecorators: { showFooter: [{
3462
3498
  type: HostBinding,
@@ -3502,7 +3538,7 @@ class MultiViewCalendarLocalizedMessagesDirective extends Messages {
3502
3538
  }
3503
3539
  }
3504
3540
  MultiViewCalendarLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
3505
- MultiViewCalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]", providers: [
3541
+ MultiViewCalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarLocalizedMessagesDirective, isStandalone: true, selector: "[kendoMultiViewCalendarLocalizedMessages]", providers: [
3506
3542
  {
3507
3543
  provide: Messages,
3508
3544
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
@@ -3517,7 +3553,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3517
3553
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
3518
3554
  }
3519
3555
  ],
3520
- selector: '[kendoMultiViewCalendarLocalizedMessages]'
3556
+ selector: '[kendoMultiViewCalendarLocalizedMessages]',
3557
+ standalone: true
3521
3558
  }]
3522
3559
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
3523
3560
 
@@ -4572,7 +4609,7 @@ class MultiViewCalendarComponent {
4572
4609
  }
4573
4610
  }
4574
4611
  MultiViewCalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", 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 });
4575
- MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: { showOtherMonthDays: "showOtherMonthDays", showCalendarHeader: "showCalendarHeader", size: "size", id: "id", focusedDate: "focusedDate", footer: "footer", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesRangeValidation: "disabledDatesRangeValidation", selection: "selection", allowReverse: "allowReverse", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", weekDaysFormat: "weekDaysFormat", 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"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"] }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", cellEnter: "cellEnter", cellLeave: "cellLeave", valueChange: "valueChange", rangeSelectionChange: "rangeSelectionChange", blurEvent: "blur", focusEvent: "focus", focusCalendar: "focusCalendar", onClosePopup: "onClosePopup", onTabPress: "onTabPress", onShiftTabPress: "onShiftTabPress" }, host: { listeners: { "mouseenter": "handleMouseEnter()", "mouseleave": "handleMouseLeave()", "mousedown": "handleMousedown($event)", "click": "handleClick()", "keydown": "keydown($event)" }, properties: { "attr.id": "this.widgetId", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled" } }, providers: [
4612
+ MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarComponent, isStandalone: true, selector: "kendo-multiviewcalendar", inputs: { showOtherMonthDays: "showOtherMonthDays", showCalendarHeader: "showCalendarHeader", size: "size", id: "id", focusedDate: "focusedDate", footer: "footer", min: "min", max: "max", rangeValidation: "rangeValidation", disabledDatesRangeValidation: "disabledDatesRangeValidation", selection: "selection", allowReverse: "allowReverse", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", weekDaysFormat: "weekDaysFormat", 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"], footerTemplateRef: ["footerTemplate", "footerTemplateRef"], headerTitleTemplateRef: ["headerTitleTemplate", "headerTitleTemplateRef"], headerTemplateRef: ["headerTemplate", "headerTemplateRef"] }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", cellEnter: "cellEnter", cellLeave: "cellLeave", valueChange: "valueChange", rangeSelectionChange: "rangeSelectionChange", blurEvent: "blur", focusEvent: "focus", focusCalendar: "focusCalendar", onClosePopup: "onClosePopup", onTabPress: "onTabPress", onShiftTabPress: "onShiftTabPress" }, host: { listeners: { "mouseenter": "handleMouseEnter()", "mouseleave": "handleMouseLeave()", "mousedown": "handleMousedown($event)", "click": "handleClick()", "keydown": "keydown($event)" }, properties: { "attr.id": "this.widgetId", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled" } }, providers: [
4576
4613
  BusViewService,
4577
4614
  RANGE_CALENDAR_VALUE_ACCESSOR,
4578
4615
  RANGE_CALENDAR_RANGE_VALIDATORS,
@@ -4659,7 +4696,7 @@ MultiViewCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
4659
4696
  [activeViewValue]="activeView"
4660
4697
  [currentDate]="activeDate">
4661
4698
  </kendo-calendar-footer>
4662
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "titleTemplateRef", "headerTemplateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation", "id", "size"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { kind: "component", type: FooterComponent, selector: "kendo-calendar-footer", inputs: ["footerTemplateRef", "activeViewValue", "currentDate"] }, { kind: "component", type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: ["showOtherMonthDays", "cellTemplateRef", "weekNumberTemplateRef", "allowReverse", "activeRangeEnd", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectionRange", "selectedDates", "views", "showViewHeader", "animateNavigation", "orientation", "activeDescendant", "tabIndex", "disabled", "id", "weekDaysFormat", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "activeDateChange", "focusCalendar", "blurCalendar", "focusedCellChange"] }, { kind: "directive", type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
4699
+ `, isInline: true, dependencies: [{ kind: "directive", type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "titleTemplateRef", "headerTemplateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation", "id", "size"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { kind: "component", type: HorizontalViewListComponent, selector: "kendo-calendar-horizontal", inputs: ["showOtherMonthDays", "cellTemplateRef", "weekNumberTemplateRef", "allowReverse", "activeRangeEnd", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectionRange", "selectedDates", "views", "showViewHeader", "animateNavigation", "orientation", "activeDescendant", "tabIndex", "disabled", "id", "weekDaysFormat", "weekNumber"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "activeDateChange", "focusCalendar", "blurCalendar", "focusedCellChange"] }, { kind: "component", type: FooterComponent, selector: "kendo-calendar-footer", inputs: ["footerTemplateRef", "activeViewValue", "currentDate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
4663
4700
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarComponent, decorators: [{
4664
4701
  type: Component,
4665
4702
  args: [{
@@ -4754,7 +4791,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4754
4791
  [activeViewValue]="activeView"
4755
4792
  [currentDate]="activeDate">
4756
4793
  </kendo-calendar-footer>
4757
- `
4794
+ `,
4795
+ standalone: true,
4796
+ imports: [MultiViewCalendarLocalizedMessagesDirective, NgIf, HeaderComponent, HorizontalViewListComponent, FooterComponent]
4758
4797
  }]
4759
4798
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: i0.ElementRef }, { type: NavigationService }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: DisabledDatesService }, { type: SelectionService }]; }, propDecorators: { showOtherMonthDays: [{
4760
4799
  type: Input
@@ -5086,9 +5125,12 @@ class CalendarDOMService {
5086
5125
  }
5087
5126
  }
5088
5127
  CalendarDOMService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarDOMService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5089
- CalendarDOMService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarDOMService });
5128
+ CalendarDOMService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarDOMService, providedIn: 'root' });
5090
5129
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarDOMService, decorators: [{
5091
- type: Injectable
5130
+ type: Injectable,
5131
+ args: [{
5132
+ providedIn: 'root'
5133
+ }]
5092
5134
  }] });
5093
5135
 
5094
5136
  /**
@@ -5475,7 +5517,7 @@ class VirtualizationComponent {
5475
5517
  }
5476
5518
  }
5477
5519
  VirtualizationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationComponent, deps: [{ token: SCROLLER_FACTORY_TOKEN }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1$2.ScrollbarWidthService }], target: i0.ɵɵFactoryTarget.Component });
5478
- VirtualizationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: { direction: "direction", itemHeight: "itemHeight", itemWidth: "itemWidth", topOffset: "topOffset", bottomOffset: "bottomOffset", maxScrollDifference: "maxScrollDifference", scrollOffsetSize: "scrollOffsetSize", scrollDuration: "scrollDuration", skip: "skip", take: "take", total: "total" }, outputs: { activeIndexChange: "activeIndexChange", pageChange: "pageChange", scrollChange: "scrollChange" }, host: { properties: { "class.k-flex": "this.wrapperClasses", "class.k-content": "this.wrapperClasses", "class.k-scrollable": "this.wrapperClasses", "class.k-scrollable-horizontal": "this.horizontalClass" } }, providers: [{
5520
+ VirtualizationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: VirtualizationComponent, isStandalone: true, selector: "kendo-virtualization", inputs: { direction: "direction", itemHeight: "itemHeight", itemWidth: "itemWidth", topOffset: "topOffset", bottomOffset: "bottomOffset", maxScrollDifference: "maxScrollDifference", scrollOffsetSize: "scrollOffsetSize", scrollDuration: "scrollDuration", skip: "skip", take: "take", total: "total" }, outputs: { activeIndexChange: "activeIndexChange", pageChange: "pageChange", scrollChange: "scrollChange" }, host: { properties: { "class.k-flex": "this.wrapperClasses", "class.k-content": "this.wrapperClasses", "class.k-scrollable": "this.wrapperClasses", "class.k-scrollable-horizontal": "this.horizontalClass" } }, providers: [{
5479
5521
  provide: SCROLLER_FACTORY_TOKEN,
5480
5522
  useValue: DEFAULT_SCROLLER_FACTORY
5481
5523
  }], usesOnChanges: true, ngImport: i0, template: `
@@ -5485,7 +5527,7 @@ VirtualizationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
5485
5527
  [class.k-scrollable-horizontal-placeholder]="direction === 'horizontal'"
5486
5528
  [ngStyle]="totalVertexLength"
5487
5529
  ></div>
5488
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
5530
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
5489
5531
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationComponent, decorators: [{
5490
5532
  type: Component,
5491
5533
  args: [{
@@ -5501,7 +5543,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5501
5543
  [class.k-scrollable-horizontal-placeholder]="direction === 'horizontal'"
5502
5544
  [ngStyle]="totalVertexLength"
5503
5545
  ></div>
5504
- `
5546
+ `,
5547
+ standalone: true,
5548
+ imports: [NgStyle]
5505
5549
  }]
5506
5550
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
5507
5551
  type: Inject,
@@ -5646,7 +5690,7 @@ class NavigationComponent {
5646
5690
  }
5647
5691
  }
5648
5692
  NavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationComponent, deps: [{ token: BusViewService }, { token: CalendarDOMService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
5649
- NavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: NavigationComponent, selector: "kendo-calendar-navigation", inputs: { activeView: "activeView", min: "min", max: "max", focusedDate: "focusedDate", templateRef: "templateRef" }, outputs: { valueChange: "valueChange", pageChange: "pageChange" }, host: { properties: { "class.k-calendar-navigation": "this.getComponentClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true }, { propertyName: "list", first: true, predicate: ["list"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
5693
+ NavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: NavigationComponent, isStandalone: true, selector: "kendo-calendar-navigation", inputs: { activeView: "activeView", min: "min", max: "max", focusedDate: "focusedDate", templateRef: "templateRef" }, outputs: { valueChange: "valueChange", pageChange: "pageChange" }, host: { properties: { "class.k-calendar-navigation": "this.getComponentClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true }, { propertyName: "list", first: true, predicate: ["list"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
5650
5694
  <span class="k-calendar-navigation-highlight"></span>
5651
5695
  <kendo-virtualization
5652
5696
  [skip]="skip"
@@ -5672,7 +5716,7 @@ NavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
5672
5716
  </li>
5673
5717
  </ul>
5674
5718
  </kendo-virtualization>
5675
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
5719
+ `, isInline: true, dependencies: [{ kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
5676
5720
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationComponent, decorators: [{
5677
5721
  type: Component,
5678
5722
  args: [{
@@ -5704,7 +5748,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5704
5748
  </li>
5705
5749
  </ul>
5706
5750
  </kendo-virtualization>
5707
- `
5751
+ `,
5752
+ standalone: true,
5753
+ imports: [VirtualizationComponent, EventsOutsideAngularDirective, KForOf, NgIf, NgTemplateOutlet]
5708
5754
  }]
5709
5755
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: CalendarDOMService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }]; }, propDecorators: { activeView: [{
5710
5756
  type: Input
@@ -5906,7 +5952,7 @@ class ViewListComponent {
5906
5952
  }
5907
5953
  }
5908
5954
  ViewListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ViewListComponent, deps: [{ token: BusViewService }, { token: i0.ChangeDetectorRef }, { token: i1.IntlService }, { token: CalendarDOMService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
5909
- ViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ViewListComponent, selector: "kendo-calendar-viewlist", inputs: { allowReverse: "allowReverse", cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", headerTitleTemplateRef: "headerTitleTemplateRef", headerTemplateRef: "headerTemplateRef", footerTemplateRef: "footerTemplateRef", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", isActive: "isActive", min: "min", max: "max", selectedDates: "selectedDates", tabIndex: "tabIndex", disabled: "disabled", id: "id", showFooter: "showFooter", weekDaysFormat: "weekDaysFormat", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", size: "size", weekNumber: "weekNumber" }, outputs: { cellEnter: "cellEnter", cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", activeDateChange: "activeDateChange", todayButtonClick: "todayButtonClick", pageChange: "pageChange", focusCalendar: "focusCalendar", blurCalendar: "blurCalendar", focusedCellChange: "focusedCellChange" }, host: { properties: { "class.k-vstack": "this.getComponentClass", "class.k-calendar-view": "this.getComponentClass", "class.k-calendar-monthview": "this.getComponentMonthClass", "class.k-calendar-yearview": "this.getComponentYearClass", "class.k-calendar-decadeview": "this.getComponentDecadeClass", "class.k-calendar-centuryview": "this.getComponentCenturyClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true }, { propertyName: "headerComponent", first: true, predicate: HeaderComponent, descendants: true }, { propertyName: "list", first: true, predicate: ["list"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
5955
+ ViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ViewListComponent, isStandalone: true, selector: "kendo-calendar-viewlist", inputs: { allowReverse: "allowReverse", cellTemplateRef: "cellTemplateRef", weekNumberTemplateRef: "weekNumberTemplateRef", headerTitleTemplateRef: "headerTitleTemplateRef", headerTemplateRef: "headerTemplateRef", footerTemplateRef: "footerTemplateRef", showOtherMonthDays: "showOtherMonthDays", activeView: "activeView", cellUID: "cellUID", focusedDate: "focusedDate", isActive: "isActive", min: "min", max: "max", selectedDates: "selectedDates", tabIndex: "tabIndex", disabled: "disabled", id: "id", showFooter: "showFooter", weekDaysFormat: "weekDaysFormat", activeRangeEnd: "activeRangeEnd", selectionRange: "selectionRange", size: "size", weekNumber: "weekNumber" }, outputs: { cellEnter: "cellEnter", cellClick: "cellClick", weekNumberCellClick: "weekNumberCellClick", activeDateChange: "activeDateChange", todayButtonClick: "todayButtonClick", pageChange: "pageChange", focusCalendar: "focusCalendar", blurCalendar: "blurCalendar", focusedCellChange: "focusedCellChange" }, host: { properties: { "class.k-vstack": "this.getComponentClass", "class.k-calendar-view": "this.getComponentClass", "class.k-calendar-monthview": "this.getComponentMonthClass", "class.k-calendar-yearview": "this.getComponentYearClass", "class.k-calendar-decadeview": "this.getComponentDecadeClass", "class.k-calendar-centuryview": "this.getComponentCenturyClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true }, { propertyName: "headerComponent", first: true, predicate: HeaderComponent, descendants: true }, { propertyName: "list", first: true, predicate: ["list"], descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
5910
5956
  <kendo-calendar-header
5911
5957
  [currentDate]="activeDate"
5912
5958
  [size]="size"
@@ -5983,7 +6029,7 @@ ViewListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
5983
6029
  [activeViewValue]="activeViewValue"
5984
6030
  [currentDate]="activeDate">
5985
6031
  </kendo-calendar-footer>
5986
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "component", type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "titleTemplateRef", "headerTemplateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation", "id", "size"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { kind: "component", type: FooterComponent, selector: "kendo-calendar-footer", inputs: ["footerTemplateRef", "activeViewValue", "currentDate"] }, { kind: "component", type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["allowReverse", "showOtherMonthDays", "direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef", "headerTitle"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "focusedCellId"] }, { kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6032
+ `, isInline: true, dependencies: [{ kind: "component", type: HeaderComponent, selector: "kendo-calendar-header", inputs: ["activeView", "currentDate", "min", "max", "rangeLength", "titleTemplateRef", "headerTemplateRef", "isPrevDisabled", "isNextDisabled", "showNavigationButtons", "orientation", "id", "size"], outputs: ["todayButtonClick", "prevButtonClick", "nextButtonClick"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { kind: "directive", type: KForOf, selector: "[kFor][kForOf]", inputs: ["kForOf", "kForTrackBy", "kForTemplate"] }, { kind: "component", type: ViewComponent, selector: "[kendoCalendarView]", inputs: ["allowReverse", "showOtherMonthDays", "direction", "isActive", "activeView", "cellUID", "focusedDate", "viewDate", "activeRangeEnd", "selectionRange", "min", "max", "selectedDates", "weekNumber", "viewIndex", "templateRef", "weekNumberTemplateRef", "headerTitle"], outputs: ["cellClick", "weekNumberCellClick", "cellEnter", "cellLeave", "focusedCellId"] }, { kind: "component", type: FooterComponent, selector: "kendo-calendar-footer", inputs: ["footerTemplateRef", "activeViewValue", "currentDate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
5987
6033
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ViewListComponent, decorators: [{
5988
6034
  type: Component,
5989
6035
  args: [{
@@ -6066,7 +6112,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6066
6112
  [activeViewValue]="activeViewValue"
6067
6113
  [currentDate]="activeDate">
6068
6114
  </kendo-calendar-footer>
6069
- `
6115
+ `,
6116
+ standalone: true,
6117
+ imports: [HeaderComponent, NgIf, NgFor, VirtualizationComponent, KForOf, ViewComponent, FooterComponent]
6070
6118
  }]
6071
6119
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: i0.ChangeDetectorRef }, { type: i1.IntlService }, { type: CalendarDOMService }, { type: i0.Renderer2 }]; }, propDecorators: { allowReverse: [{
6072
6120
  type: Input
@@ -6266,11 +6314,12 @@ class NavigationItemTemplateDirective {
6266
6314
  }
6267
6315
  }
6268
6316
  NavigationItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
6269
- NavigationItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NavigationItemTemplateDirective, selector: "[kendoCalendarNavigationItemTemplate]", ngImport: i0 });
6317
+ NavigationItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NavigationItemTemplateDirective, isStandalone: true, selector: "[kendoCalendarNavigationItemTemplate]", ngImport: i0 });
6270
6318
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationItemTemplateDirective, decorators: [{
6271
6319
  type: Directive,
6272
6320
  args: [{
6273
- selector: '[kendoCalendarNavigationItemTemplate]'
6321
+ selector: '[kendoCalendarNavigationItemTemplate]',
6322
+ standalone: true
6274
6323
  }]
6275
6324
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
6276
6325
 
@@ -6299,7 +6348,7 @@ class MultiViewCalendarCustomMessagesComponent extends Messages {
6299
6348
  }
6300
6349
  }
6301
6350
  MultiViewCalendarCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
6302
- MultiViewCalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages", providers: [
6351
+ MultiViewCalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: MultiViewCalendarCustomMessagesComponent, isStandalone: true, selector: "kendo-multiviewcalendar-messages", providers: [
6303
6352
  {
6304
6353
  provide: Messages,
6305
6354
  useExisting: forwardRef(() => MultiViewCalendarCustomMessagesComponent)
@@ -6315,7 +6364,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6315
6364
  }
6316
6365
  ],
6317
6366
  selector: 'kendo-multiviewcalendar-messages',
6318
- template: ``
6367
+ template: ``,
6368
+ standalone: true
6319
6369
  }]
6320
6370
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
6321
6371
 
@@ -6352,7 +6402,7 @@ class CalendarLocalizedMessagesDirective extends CalendarMessages {
6352
6402
  }
6353
6403
  }
6354
6404
  CalendarLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
6355
- CalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CalendarLocalizedMessagesDirective, selector: "[kendoCalendarLocalizedMessages]", providers: [
6405
+ CalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CalendarLocalizedMessagesDirective, isStandalone: true, selector: "[kendoCalendarLocalizedMessages]", providers: [
6356
6406
  {
6357
6407
  provide: CalendarMessages,
6358
6408
  useExisting: forwardRef(() => CalendarLocalizedMessagesDirective)
@@ -6367,7 +6417,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6367
6417
  useExisting: forwardRef(() => CalendarLocalizedMessagesDirective)
6368
6418
  }
6369
6419
  ],
6370
- selector: '[kendoCalendarLocalizedMessages]'
6420
+ selector: '[kendoCalendarLocalizedMessages]',
6421
+ standalone: true
6371
6422
  }]
6372
6423
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
6373
6424
 
@@ -7502,7 +7553,7 @@ class CalendarComponent {
7502
7553
  }
7503
7554
  }
7504
7555
  CalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarComponent, deps: [{ token: BusViewService }, { token: CalendarDOMService }, { token: i0.ElementRef }, { token: NavigationService }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: ScrollSyncService }, { token: DisabledDatesService }, { token: i1$1.LocalizationService }, { token: SelectionService }, { token: PickerService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
7505
- CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarComponent, selector: "kendo-calendar", inputs: { showOtherMonthDays: "showOtherMonthDays", id: "id", focusedDate: "focusedDate", min: "min", max: "max", rangeValidation: "rangeValidation", weekDaysFormat: "weekDaysFormat", footer: "footer", selection: "selection", allowReverse: "allowReverse", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", navigation: "navigation", activeView: "activeView", bottomView: "bottomView", topView: "topView", type: "type", animateNavigation: "animateNavigation", weekNumber: "weekNumber", 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"], navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], size: "size", activeRangeEnd: "activeRangeEnd" }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", activeViewDateChange: "activeViewDateChange", onBlur: "blur", onFocus: "focus", valueChange: "valueChange" }, host: { properties: { "class.k-week-number": "this.weekNumber", "attr.id": "this.widgetId", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled" } }, providers: [
7556
+ CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarComponent, isStandalone: true, selector: "kendo-calendar", inputs: { showOtherMonthDays: "showOtherMonthDays", id: "id", focusedDate: "focusedDate", min: "min", max: "max", rangeValidation: "rangeValidation", weekDaysFormat: "weekDaysFormat", footer: "footer", selection: "selection", allowReverse: "allowReverse", value: "value", disabled: "disabled", tabindex: "tabindex", tabIndex: "tabIndex", disabledDates: "disabledDates", navigation: "navigation", activeView: "activeView", bottomView: "bottomView", topView: "topView", type: "type", animateNavigation: "animateNavigation", weekNumber: "weekNumber", 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"], navigationItemTemplateRef: ["navigationItemTemplate", "navigationItemTemplateRef"], size: "size", activeRangeEnd: "activeRangeEnd" }, outputs: { activeViewChange: "activeViewChange", navigate: "navigate", activeViewDateChange: "activeViewDateChange", onBlur: "blur", onFocus: "focus", valueChange: "valueChange" }, host: { properties: { "class.k-week-number": "this.weekNumber", "attr.id": "this.widgetId", "attr.aria-disabled": "this.ariaDisabled", "class.k-disabled": "this.ariaDisabled" } }, providers: [
7506
7557
  BusViewService,
7507
7558
  CALENDAR_VALUE_ACCESSOR,
7508
7559
  CALENDAR_RANGE_VALIDATORS,
@@ -7634,7 +7685,7 @@ CalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
7634
7685
  </kendo-multiviewcalendar-messages>
7635
7686
  </kendo-multiviewcalendar>
7636
7687
  </ng-container>
7637
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages" }, { kind: "component", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "size", "id", "focusedDate", "footer", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "allowReverse", "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", "rangeSelectionChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { kind: "component", type: i1$2.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: NavigationComponent, selector: "kendo-calendar-navigation", inputs: ["activeView", "min", "max", "focusedDate", "templateRef"], outputs: ["valueChange", "pageChange"] }, { kind: "directive", type: CalendarLocalizedMessagesDirective, selector: "[kendoCalendarLocalizedMessages]" }, { kind: "component", type: ViewListComponent, selector: "kendo-calendar-viewlist", inputs: ["allowReverse", "cellTemplateRef", "weekNumberTemplateRef", "headerTitleTemplateRef", "headerTemplateRef", "footerTemplateRef", "showOtherMonthDays", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectedDates", "tabIndex", "disabled", "id", "showFooter", "weekDaysFormat", "activeRangeEnd", "selectionRange", "size", "weekNumber"], outputs: ["cellEnter", "cellClick", "weekNumberCellClick", "activeDateChange", "todayButtonClick", "pageChange", "focusCalendar", "blurCalendar", "focusedCellChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7688
+ `, isInline: true, dependencies: [{ kind: "directive", type: CalendarLocalizedMessagesDirective, selector: "[kendoCalendarLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: NavigationComponent, selector: "kendo-calendar-navigation", inputs: ["activeView", "min", "max", "focusedDate", "templateRef"], outputs: ["valueChange", "pageChange"] }, { kind: "component", type: ViewListComponent, selector: "kendo-calendar-viewlist", inputs: ["allowReverse", "cellTemplateRef", "weekNumberTemplateRef", "headerTitleTemplateRef", "headerTemplateRef", "footerTemplateRef", "showOtherMonthDays", "activeView", "cellUID", "focusedDate", "isActive", "min", "max", "selectedDates", "tabIndex", "disabled", "id", "showFooter", "weekDaysFormat", "activeRangeEnd", "selectionRange", "size", "weekNumber"], outputs: ["cellEnter", "cellClick", "weekNumberCellClick", "activeDateChange", "todayButtonClick", "pageChange", "focusCalendar", "blurCalendar", "focusedCellChange"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "size", "id", "focusedDate", "footer", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "allowReverse", "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", "rangeSelectionChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { kind: "component", type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7638
7689
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarComponent, decorators: [{
7639
7690
  type: Component,
7640
7691
  args: [{
@@ -7774,7 +7825,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7774
7825
  </kendo-multiviewcalendar-messages>
7775
7826
  </kendo-multiviewcalendar>
7776
7827
  </ng-container>
7777
- `
7828
+ `,
7829
+ standalone: true,
7830
+ imports: [CalendarLocalizedMessagesDirective, NgIf, NavigationComponent, ViewListComponent, ResizeSensorComponent, MultiViewCalendarComponent, MultiViewCalendarCustomMessagesComponent]
7778
7831
  }]
7779
7832
  }], ctorParameters: function () { return [{ type: BusViewService }, { type: CalendarDOMService }, { type: i0.ElementRef }, { type: NavigationService }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Injector }, { type: ScrollSyncService }, { type: DisabledDatesService }, { type: i1$1.LocalizationService }, { type: SelectionService }, { type: PickerService, decorators: [{
7780
7833
  type: Optional
@@ -7978,7 +8031,7 @@ class DateInputLocalizedMessagesDirective extends DateInputMessages {
7978
8031
  }
7979
8032
  }
7980
8033
  DateInputLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
7981
- DateInputLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateInputLocalizedMessagesDirective, selector: "[kendoDateInputLocalizedMessages]", providers: [
8034
+ DateInputLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateInputLocalizedMessagesDirective, isStandalone: true, selector: "[kendoDateInputLocalizedMessages]", providers: [
7982
8035
  {
7983
8036
  provide: DateInputMessages,
7984
8037
  useExisting: forwardRef(() => DateInputLocalizedMessagesDirective)
@@ -7993,7 +8046,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7993
8046
  useExisting: forwardRef(() => DateInputLocalizedMessagesDirective)
7994
8047
  }
7995
8048
  ],
7996
- selector: '[kendoDateInputLocalizedMessages]'
8049
+ selector: '[kendoDateInputLocalizedMessages]',
8050
+ standalone: true
7997
8051
  }]
7998
8052
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
7999
8053
 
@@ -8149,10 +8203,7 @@ class DateInputComponent {
8149
8203
  */
8150
8204
  this.rangeValidation = true;
8151
8205
  /**
8152
- * @hidden
8153
- *
8154
- * Determines whether to auto correct invalid segments automatically.
8155
- * TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
8206
+ * Determines whether to autocorrect invalid segments automatically.
8156
8207
  *
8157
8208
  * @default true
8158
8209
  */
@@ -8583,7 +8634,7 @@ class DateInputComponent {
8583
8634
  this.kendoDate?.setOptions(this.options, true);
8584
8635
  this.updateFormatSections();
8585
8636
  }
8586
- if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode'], changes)) {
8637
+ if (anyChanged(['enableMouseWheel', 'autoFill', 'autoSwitchParts', 'autoSwitchKeys', 'twoDigitYearMax', 'allowCaretMode', 'autoCorrectParts'], changes)) {
8587
8638
  if (!this.kendoDate) {
8588
8639
  return;
8589
8640
  }
@@ -8862,7 +8913,7 @@ class DateInputComponent {
8862
8913
  }
8863
8914
  }
8864
8915
  DateInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.IntlService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i1$1.LocalizationService }, { token: PickerService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
8865
- DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateInputComponent, selector: "kendo-dateinput", inputs: { focusableId: "focusableId", pickerType: "pickerType", clearButton: "clearButton", disabled: "disabled", readonly: "readonly", title: "title", tabindex: "tabindex", role: "role", ariaReadOnly: "ariaReadOnly", tabIndex: "tabIndex", isRequired: "isRequired", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", max: "max", min: "min", rangeValidation: "rangeValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", allowCaretMode: "allowCaretMode", autoFill: "autoFill", incompleteDateValidation: "incompleteDateValidation", twoDigitYearMax: "twoDigitYearMax", enableMouseWheel: "enableMouseWheel", value: "value", spinners: "spinners", isPopupOpen: "isPopupOpen", hasPopup: "hasPopup", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", valueUpdate: "valueUpdate", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-input": "this.wrapperClass", "class.k-dateinput": "this.wrapperClass", "class.k-disabled": "this.disabledClass" } }, providers: [
8916
+ DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateInputComponent, isStandalone: true, selector: "kendo-dateinput", inputs: { focusableId: "focusableId", pickerType: "pickerType", clearButton: "clearButton", disabled: "disabled", readonly: "readonly", title: "title", tabindex: "tabindex", role: "role", ariaReadOnly: "ariaReadOnly", tabIndex: "tabIndex", isRequired: "isRequired", format: "format", formatPlaceholder: "formatPlaceholder", placeholder: "placeholder", steps: "steps", max: "max", min: "min", rangeValidation: "rangeValidation", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", allowCaretMode: "allowCaretMode", autoFill: "autoFill", incompleteDateValidation: "incompleteDateValidation", twoDigitYearMax: "twoDigitYearMax", enableMouseWheel: "enableMouseWheel", value: "value", spinners: "spinners", isPopupOpen: "isPopupOpen", hasPopup: "hasPopup", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", valueUpdate: "valueUpdate", onFocus: "focus", onBlur: "blur" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-input": "this.wrapperClass", "class.k-dateinput": "this.wrapperClass", "class.k-disabled": "this.disabledClass" } }, providers: [
8866
8917
  { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DateInputComponent), multi: true },
8867
8918
  { provide: NG_VALIDATORS, useExisting: forwardRef(() => DateInputComponent), multi: true },
8868
8919
  { provide: L10N_PREFIX, useValue: 'kendo.dateinput' },
@@ -8956,7 +9007,7 @@ DateInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
8956
9007
  </kendo-icon-wrapper>
8957
9008
  </button>
8958
9009
  </span>
8959
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: DateInputLocalizedMessagesDirective, selector: "[kendoDateInputLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
9010
+ `, isInline: true, dependencies: [{ kind: "directive", type: DateInputLocalizedMessagesDirective, selector: "[kendoDateInputLocalizedMessages]" }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
8960
9011
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputComponent, decorators: [{
8961
9012
  type: Component,
8962
9013
  args: [{
@@ -9058,7 +9109,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9058
9109
  </kendo-icon-wrapper>
9059
9110
  </button>
9060
9111
  </span>
9061
- `
9112
+ `,
9113
+ standalone: true,
9114
+ imports: [DateInputLocalizedMessagesDirective, EventsOutsideAngularDirective, NgIf, IconWrapperComponent]
9062
9115
  }]
9063
9116
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1.IntlService }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.Injector }, { type: i1$1.LocalizationService }, { type: PickerService, decorators: [{
9064
9117
  type: Optional
@@ -9188,11 +9241,6 @@ class PreventableEvent {
9188
9241
  }
9189
9242
  }
9190
9243
 
9191
- /**
9192
- * @hidden
9193
- */
9194
- const TOUCH_ENABLED = new InjectionToken('dateinputs-touch-enabled');
9195
-
9196
9244
  /**
9197
9245
  * @hidden
9198
9246
  */
@@ -9211,7 +9259,7 @@ const disabledDatesValidator = (isDateDisabled) => {
9211
9259
  /**
9212
9260
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
9213
9261
  */
9214
- class DateInputCustomMessagesComponent extends DateInputMessages {
9262
+ class CalendarCustomMessagesComponent extends CalendarMessages {
9215
9263
  constructor(service) {
9216
9264
  super();
9217
9265
  this.service = service;
@@ -9220,31 +9268,32 @@ class DateInputCustomMessagesComponent extends DateInputMessages {
9220
9268
  return true;
9221
9269
  }
9222
9270
  }
9223
- DateInputCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
9224
- DateInputCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages", providers: [
9271
+ CalendarCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
9272
+ CalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarCustomMessagesComponent, isStandalone: true, selector: "kendo-calendar-messages", providers: [
9225
9273
  {
9226
- provide: DateInputMessages,
9227
- useExisting: forwardRef(() => DateInputCustomMessagesComponent)
9274
+ provide: CalendarMessages,
9275
+ useExisting: forwardRef(() => CalendarCustomMessagesComponent)
9228
9276
  }
9229
9277
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
9230
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputCustomMessagesComponent, decorators: [{
9278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCustomMessagesComponent, decorators: [{
9231
9279
  type: Component,
9232
9280
  args: [{
9233
9281
  providers: [
9234
9282
  {
9235
- provide: DateInputMessages,
9236
- useExisting: forwardRef(() => DateInputCustomMessagesComponent)
9283
+ provide: CalendarMessages,
9284
+ useExisting: forwardRef(() => CalendarCustomMessagesComponent)
9237
9285
  }
9238
9286
  ],
9239
- selector: 'kendo-dateinput-messages',
9240
- template: ``
9287
+ selector: 'kendo-calendar-messages',
9288
+ template: ``,
9289
+ standalone: true
9241
9290
  }]
9242
9291
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
9243
9292
 
9244
9293
  /**
9245
9294
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
9246
9295
  */
9247
- class CalendarCustomMessagesComponent extends CalendarMessages {
9296
+ class DateInputCustomMessagesComponent extends DateInputMessages {
9248
9297
  constructor(service) {
9249
9298
  super();
9250
9299
  this.service = service;
@@ -9253,24 +9302,25 @@ class CalendarCustomMessagesComponent extends CalendarMessages {
9253
9302
  return true;
9254
9303
  }
9255
9304
  }
9256
- CalendarCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
9257
- CalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages", providers: [
9305
+ DateInputCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
9306
+ DateInputCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateInputCustomMessagesComponent, isStandalone: true, selector: "kendo-dateinput-messages", providers: [
9258
9307
  {
9259
- provide: CalendarMessages,
9260
- useExisting: forwardRef(() => CalendarCustomMessagesComponent)
9308
+ provide: DateInputMessages,
9309
+ useExisting: forwardRef(() => DateInputCustomMessagesComponent)
9261
9310
  }
9262
9311
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
9263
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCustomMessagesComponent, decorators: [{
9312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputCustomMessagesComponent, decorators: [{
9264
9313
  type: Component,
9265
9314
  args: [{
9266
9315
  providers: [
9267
9316
  {
9268
- provide: CalendarMessages,
9269
- useExisting: forwardRef(() => CalendarCustomMessagesComponent)
9317
+ provide: DateInputMessages,
9318
+ useExisting: forwardRef(() => DateInputCustomMessagesComponent)
9270
9319
  }
9271
9320
  ],
9272
- selector: 'kendo-calendar-messages',
9273
- template: ``
9321
+ selector: 'kendo-dateinput-messages',
9322
+ template: ``,
9323
+ standalone: true
9274
9324
  }]
9275
9325
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
9276
9326
 
@@ -9311,7 +9361,7 @@ class DatePickerLocalizedMessagesDirective extends DatePickerMessages {
9311
9361
  }
9312
9362
  }
9313
9363
  DatePickerLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
9314
- DatePickerLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]", providers: [
9364
+ DatePickerLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerLocalizedMessagesDirective, isStandalone: true, selector: "[kendoDatePickerLocalizedMessages]", providers: [
9315
9365
  {
9316
9366
  provide: DatePickerMessages,
9317
9367
  useExisting: forwardRef(() => DatePickerLocalizedMessagesDirective)
@@ -9326,7 +9376,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9326
9376
  useExisting: forwardRef(() => DatePickerLocalizedMessagesDirective)
9327
9377
  }
9328
9378
  ],
9329
- selector: '[kendoDatePickerLocalizedMessages]'
9379
+ selector: '[kendoDatePickerLocalizedMessages]',
9380
+ standalone: true
9330
9381
  }]
9331
9382
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
9332
9383
 
@@ -9339,7 +9390,7 @@ const TWO_DIGIT_YEAR_MAX$1 = 68;
9339
9390
  * Represents the [Kendo UI DatePicker component for Angular](slug:overview_datepicker).
9340
9391
  */
9341
9392
  class DatePickerComponent extends MultiTabStop {
9342
- constructor(zone, localization, cdr, popupService, wrapper, renderer, injector, pickerService, disabledDatesService, touchEnabled) {
9393
+ constructor(zone, localization, cdr, popupService, wrapper, renderer, injector, pickerService, disabledDatesService) {
9343
9394
  super();
9344
9395
  this.zone = zone;
9345
9396
  this.localization = localization;
@@ -9350,7 +9401,6 @@ class DatePickerComponent extends MultiTabStop {
9350
9401
  this.injector = injector;
9351
9402
  this.pickerService = pickerService;
9352
9403
  this.disabledDatesService = disabledDatesService;
9353
- this.touchEnabled = touchEnabled;
9354
9404
  /**
9355
9405
  * @hidden
9356
9406
  */
@@ -9446,10 +9496,7 @@ class DatePickerComponent extends MultiTabStop {
9446
9496
  */
9447
9497
  this.incompleteDateValidation = false;
9448
9498
  /**
9449
- * @hidden
9450
- *
9451
- * Determines whether to auto correct invalid segments automatically.
9452
- * TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
9499
+ * Determines whether to autocorrect invalid segments automatically.
9453
9500
  *
9454
9501
  * @default true
9455
9502
  */
@@ -10253,7 +10300,7 @@ class DatePickerComponent extends MultiTabStop {
10253
10300
  this.ariaActiveDescendantSubscription = focusedCellChangeEvent.subscribe((id) => this.renderer.setAttribute(this.dateInput?.inputElement, attributeNames.ariaActiveDescendant, id));
10254
10301
  }
10255
10302
  focusInput() {
10256
- if (this.touchEnabled) {
10303
+ if (touchEnabled) {
10257
10304
  return;
10258
10305
  }
10259
10306
  this.dateInput.focus();
@@ -10270,7 +10317,7 @@ class DatePickerComponent extends MultiTabStop {
10270
10317
  this.calendar.focus();
10271
10318
  }
10272
10319
  }
10273
- else if (!this.touchEnabled) {
10320
+ else if (!touchEnabled) {
10274
10321
  this.dateInput.focus();
10275
10322
  }
10276
10323
  else if (!this.dateInput.isActive) {
@@ -10367,8 +10414,8 @@ class DatePickerComponent extends MultiTabStop {
10367
10414
  }
10368
10415
  }
10369
10416
  }
10370
- DatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: DisabledDatesService }, { token: TOUCH_ENABLED, optional: true }], target: i0.ɵɵFactoryTarget.Component });
10371
- DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerComponent, 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", 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", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
10417
+ DatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerComponent, deps: [{ token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: DisabledDatesService }], target: i0.ɵɵFactoryTarget.Component });
10418
+ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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", 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", escape: "escape" }, host: { properties: { "class.k-readonly": "this.readonly", "class.k-datepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
10372
10419
  { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatePickerComponent), multi: true },
10373
10420
  { provide: NG_VALIDATORS, useExisting: forwardRef(() => DatePickerComponent), multi: true },
10374
10421
  { provide: KendoInput, useExisting: forwardRef(() => DatePickerComponent) },
@@ -10553,7 +10600,7 @@ DatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
10553
10600
  </kendo-calendar-messages>
10554
10601
  </kendo-calendar>
10555
10602
  </ng-template>
10556
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "component", type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "allowReverse", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size", "activeRangeEnd"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { kind: "component", type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: i12.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: i1$2.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", 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"] }, { kind: "directive", type: DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
10603
+ `, isInline: true, dependencies: [{ kind: "directive", type: DatePickerLocalizedMessagesDirective, selector: "[kendoDatePickerLocalizedMessages]" }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: 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"] }, { kind: "component", type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "allowReverse", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size", "activeRangeEnd"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { kind: "component", type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
10557
10604
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerComponent, decorators: [{
10558
10605
  type: Component,
10559
10606
  args: [{
@@ -10746,14 +10793,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10746
10793
  </kendo-calendar-messages>
10747
10794
  </kendo-calendar>
10748
10795
  </ng-template>
10749
- `
10796
+ `,
10797
+ standalone: true,
10798
+ imports: [DatePickerLocalizedMessagesDirective, DateInputComponent, DateInputCustomMessagesComponent, EventsOutsideAngularDirective, IconWrapperComponent, NgTemplateOutlet, NgIf, ResizeSensorComponent, ActionSheetComponent, ActionSheetTemplateDirective, ButtonComponent, CalendarComponent, CalendarCustomMessagesComponent]
10750
10799
  }]
10751
- }], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i1$3.PopupService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: PickerService }, { type: DisabledDatesService }, { type: undefined, decorators: [{
10752
- type: Optional
10753
- }, {
10754
- type: Inject,
10755
- args: [TOUCH_ENABLED]
10756
- }] }]; }, propDecorators: { container: [{
10800
+ }], ctorParameters: function () { return [{ type: i0.NgZone }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i1$3.PopupService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: PickerService }, { type: DisabledDatesService }]; }, propDecorators: { container: [{
10757
10801
  type: ViewChild,
10758
10802
  args: ['container', { read: ViewContainerRef, static: true }]
10759
10803
  }], popupTemplate: [{
@@ -10950,130 +10994,6 @@ const TIME_PART = {
10950
10994
  second: 'second'
10951
10995
  };
10952
10996
 
10953
- /**
10954
- * @hidden
10955
- */
10956
- const timeRangeValidator = (min, max) => {
10957
- return (control) => {
10958
- if (!min || !max || !control.value) {
10959
- return null;
10960
- }
10961
- const err = {
10962
- timeRangeError: {
10963
- maxValue: max,
10964
- minValue: min,
10965
- value: control.value
10966
- }
10967
- };
10968
- return isInTimeRange(control.value, min, max) ? null : err;
10969
- };
10970
- };
10971
-
10972
- /**
10973
- * @hidden
10974
- */
10975
- class TimePickerMessages extends ComponentMessages {
10976
- }
10977
- TimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
10978
- TimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerMessages, selector: "kendo-timepicker-messages-base", inputs: { accept: "accept", acceptLabel: "acceptLabel", cancel: "cancel", cancelLabel: "cancelLabel", now: "now", nowLabel: "nowLabel", toggle: "toggle", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod", clearTitle: "clearTitle" }, usesInheritance: true, ngImport: i0 });
10979
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, decorators: [{
10980
- type: Directive,
10981
- args: [{
10982
- // eslint-disable-next-line
10983
- selector: 'kendo-timepicker-messages-base'
10984
- }]
10985
- }], propDecorators: { accept: [{
10986
- type: Input
10987
- }], acceptLabel: [{
10988
- type: Input
10989
- }], cancel: [{
10990
- type: Input
10991
- }], cancelLabel: [{
10992
- type: Input
10993
- }], now: [{
10994
- type: Input
10995
- }], nowLabel: [{
10996
- type: Input
10997
- }], toggle: [{
10998
- type: Input
10999
- }], hour: [{
11000
- type: Input
11001
- }], minute: [{
11002
- type: Input
11003
- }], second: [{
11004
- type: Input
11005
- }], millisecond: [{
11006
- type: Input
11007
- }], dayperiod: [{
11008
- type: Input
11009
- }], clearTitle: [{
11010
- type: Input
11011
- }] } });
11012
-
11013
- /**
11014
- * @hidden
11015
- */
11016
- class TimePickerLocalizedMessagesDirective extends TimePickerMessages {
11017
- constructor(service) {
11018
- super();
11019
- this.service = service;
11020
- }
11021
- }
11022
- TimePickerLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
11023
- TimePickerLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerLocalizedMessagesDirective, selector: "[kendoTimePickerLocalizedMessages]", providers: [
11024
- {
11025
- provide: TimePickerMessages,
11026
- useExisting: forwardRef(() => TimePickerLocalizedMessagesDirective)
11027
- }
11028
- ], usesInheritance: true, ngImport: i0 });
11029
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerLocalizedMessagesDirective, decorators: [{
11030
- type: Directive,
11031
- args: [{
11032
- providers: [
11033
- {
11034
- provide: TimePickerMessages,
11035
- useExisting: forwardRef(() => TimePickerLocalizedMessagesDirective)
11036
- }
11037
- ],
11038
- selector: '[kendoTimePickerLocalizedMessages]'
11039
- }]
11040
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
11041
-
11042
- /**
11043
- * @hidden
11044
- *
11045
- * Custom component messages override default component messages.
11046
- */
11047
- class TimeSelectorCustomMessagesComponent extends TimePickerMessages {
11048
- constructor(service) {
11049
- super();
11050
- this.service = service;
11051
- }
11052
- get override() {
11053
- return true;
11054
- }
11055
- }
11056
- TimeSelectorCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
11057
- TimeSelectorCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages", providers: [
11058
- {
11059
- provide: TimePickerMessages,
11060
- useExisting: forwardRef(() => TimeSelectorCustomMessagesComponent)
11061
- }
11062
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
11063
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorCustomMessagesComponent, decorators: [{
11064
- type: Component,
11065
- args: [{
11066
- providers: [
11067
- {
11068
- provide: TimePickerMessages,
11069
- useExisting: forwardRef(() => TimeSelectorCustomMessagesComponent)
11070
- }
11071
- ],
11072
- selector: 'kendo-timeselector-messages',
11073
- template: ``
11074
- }]
11075
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
11076
-
11077
10997
  const div = domContainerFactory('div');
11078
10998
  const ul = domContainerFactory('ul');
11079
10999
  const li = domContainerFactory('li');
@@ -11144,9 +11064,12 @@ class TimePickerDOMService {
11144
11064
  }
11145
11065
  }
11146
11066
  TimePickerDOMService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerDOMService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
11147
- TimePickerDOMService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerDOMService });
11067
+ TimePickerDOMService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerDOMService, providedIn: 'root' });
11148
11068
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerDOMService, decorators: [{
11149
- type: Injectable
11069
+ type: Injectable,
11070
+ args: [{
11071
+ providedIn: 'root'
11072
+ }]
11150
11073
  }] });
11151
11074
 
11152
11075
  const HOURS_IN_DAY = 24;
@@ -11256,9 +11179,12 @@ class HoursService {
11256
11179
  }
11257
11180
  }
11258
11181
  HoursService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HoursService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
11259
- HoursService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HoursService });
11182
+ HoursService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HoursService, providedIn: 'root' });
11260
11183
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HoursService, decorators: [{
11261
- type: Injectable
11184
+ type: Injectable,
11185
+ args: [{
11186
+ providedIn: 'root'
11187
+ }]
11262
11188
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
11263
11189
 
11264
11190
  const MINUTES_IN_HOUR = 60;
@@ -11366,9 +11292,12 @@ class MinutesService {
11366
11292
  }
11367
11293
  }
11368
11294
  MinutesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinutesService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
11369
- MinutesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinutesService });
11295
+ MinutesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinutesService, providedIn: 'root' });
11370
11296
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MinutesService, decorators: [{
11371
- type: Injectable
11297
+ type: Injectable,
11298
+ args: [{
11299
+ providedIn: 'root'
11300
+ }]
11372
11301
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
11373
11302
 
11374
11303
  const SECONDS_IN_HOUR = 60;
@@ -11476,9 +11405,12 @@ class SecondsService {
11476
11405
  }
11477
11406
  }
11478
11407
  SecondsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SecondsService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
11479
- SecondsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SecondsService });
11408
+ SecondsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SecondsService, providedIn: 'root' });
11480
11409
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SecondsService, decorators: [{
11481
- type: Injectable
11410
+ type: Injectable,
11411
+ args: [{
11412
+ providedIn: 'root'
11413
+ }]
11482
11414
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
11483
11415
 
11484
11416
  const MILLISECONDS_IN_SECOND = 1000;
@@ -11589,9 +11521,12 @@ class MillisecondsService {
11589
11521
  }
11590
11522
  }
11591
11523
  MillisecondsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MillisecondsService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
11592
- MillisecondsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MillisecondsService });
11524
+ MillisecondsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MillisecondsService, providedIn: 'root' });
11593
11525
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MillisecondsService, decorators: [{
11594
- type: Injectable
11526
+ type: Injectable,
11527
+ args: [{
11528
+ providedIn: 'root'
11529
+ }]
11595
11530
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
11596
11531
 
11597
11532
  const setHours = (date, hours) => {
@@ -11705,9 +11640,12 @@ class DayPeriodService {
11705
11640
  }
11706
11641
  }
11707
11642
  DayPeriodService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayPeriodService, deps: [{ token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Injectable });
11708
- DayPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayPeriodService });
11643
+ DayPeriodService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayPeriodService, providedIn: 'root' });
11709
11644
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DayPeriodService, decorators: [{
11710
- type: Injectable
11645
+ type: Injectable,
11646
+ args: [{
11647
+ providedIn: 'root'
11648
+ }]
11711
11649
  }], ctorParameters: function () { return [{ type: i1.IntlService }]; } });
11712
11650
 
11713
11651
  /* eslint-disable @angular-eslint/component-selector */
@@ -11945,7 +11883,7 @@ class TimeListComponent {
11945
11883
  }
11946
11884
  }
11947
11885
  TimeListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeListComponent, deps: [{ token: i0.ElementRef }, { token: i0.Injector }, { token: TimePickerDOMService }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
11948
- TimeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeListComponent, selector: "kendo-timelist", inputs: { min: "min", max: "max", part: "part", step: "step", disabled: "disabled", value: "value", isLast: "isLast" }, outputs: { valueChange: "valueChange", tabOutLastPart: "tabOutLastPart" }, host: { properties: { "attr.role": "this.roleAttribute", "attr.aria-label": "this.ariaLabel", "attr.tabindex": "this.tabIndex", "class.k-time-list": "this.componentClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
11886
+ TimeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeListComponent, isStandalone: true, selector: "kendo-timelist", inputs: { min: "min", max: "max", part: "part", step: "step", disabled: "disabled", value: "value", isLast: "isLast" }, outputs: { valueChange: "valueChange", tabOutLastPart: "tabOutLastPart" }, host: { properties: { "attr.role": "this.roleAttribute", "attr.aria-label": "this.ariaLabel", "attr.tabindex": "this.tabIndex", "class.k-time-list": "this.componentClass" } }, viewQueries: [{ propertyName: "virtualization", first: true, predicate: VirtualizationComponent, descendants: true, static: true }], usesOnChanges: true, ngImport: i0, template: `
11949
11887
  <kendo-virtualization
11950
11888
  [skip]="skip"
11951
11889
  [take]="total"
@@ -11973,7 +11911,7 @@ TimeListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", vers
11973
11911
  </li>
11974
11912
  </ul>
11975
11913
  </kendo-virtualization>
11976
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }] });
11914
+ `, isInline: true, dependencies: [{ kind: "component", type: VirtualizationComponent, selector: "kendo-virtualization", inputs: ["direction", "itemHeight", "itemWidth", "topOffset", "bottomOffset", "maxScrollDifference", "scrollOffsetSize", "scrollDuration", "skip", "take", "total"], outputs: ["activeIndexChange", "pageChange", "scrollChange"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
11977
11915
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeListComponent, decorators: [{
11978
11916
  type: Component,
11979
11917
  args: [{
@@ -12006,7 +11944,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12006
11944
  </li>
12007
11945
  </ul>
12008
11946
  </kendo-virtualization>
12009
- `
11947
+ `,
11948
+ standalone: true,
11949
+ imports: [VirtualizationComponent, NgStyle, EventsOutsideAngularDirective, NgFor]
12010
11950
  }]
12011
11951
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Injector }, { type: TimePickerDOMService }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1$1.LocalizationService }]; }, propDecorators: { min: [{
12012
11952
  type: Input
@@ -12108,6 +12048,47 @@ const snapTime = snappers => (candidate, min) => {
12108
12048
  return date;
12109
12049
  };
12110
12050
 
12051
+ /**
12052
+ * @hidden
12053
+ */
12054
+ class TimePickerMessages extends ComponentMessages {
12055
+ }
12056
+ TimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
12057
+ TimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerMessages, selector: "kendo-timepicker-messages-base", inputs: { accept: "accept", acceptLabel: "acceptLabel", cancel: "cancel", cancelLabel: "cancelLabel", now: "now", nowLabel: "nowLabel", toggle: "toggle", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod", clearTitle: "clearTitle" }, usesInheritance: true, ngImport: i0 });
12058
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, decorators: [{
12059
+ type: Directive,
12060
+ args: [{
12061
+ // eslint-disable-next-line
12062
+ selector: 'kendo-timepicker-messages-base'
12063
+ }]
12064
+ }], propDecorators: { accept: [{
12065
+ type: Input
12066
+ }], acceptLabel: [{
12067
+ type: Input
12068
+ }], cancel: [{
12069
+ type: Input
12070
+ }], cancelLabel: [{
12071
+ type: Input
12072
+ }], now: [{
12073
+ type: Input
12074
+ }], nowLabel: [{
12075
+ type: Input
12076
+ }], toggle: [{
12077
+ type: Input
12078
+ }], hour: [{
12079
+ type: Input
12080
+ }], minute: [{
12081
+ type: Input
12082
+ }], second: [{
12083
+ type: Input
12084
+ }], millisecond: [{
12085
+ type: Input
12086
+ }], dayperiod: [{
12087
+ type: Input
12088
+ }], clearTitle: [{
12089
+ type: Input
12090
+ }] } });
12091
+
12111
12092
  /**
12112
12093
  * @hidden
12113
12094
  */
@@ -12118,7 +12099,7 @@ class TimeSelectorLocalizedMessagesDirective extends TimePickerMessages {
12118
12099
  }
12119
12100
  }
12120
12101
  TimeSelectorLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
12121
- TimeSelectorLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorLocalizedMessagesDirective, selector: "[kendoTimeSelectorLocalizedMessages]", providers: [
12102
+ TimeSelectorLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorLocalizedMessagesDirective, isStandalone: true, selector: "[kendoTimeSelectorLocalizedMessages]", providers: [
12122
12103
  {
12123
12104
  provide: TimePickerMessages,
12124
12105
  useExisting: forwardRef(() => TimeSelectorLocalizedMessagesDirective)
@@ -12133,7 +12114,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12133
12114
  useExisting: forwardRef(() => TimeSelectorLocalizedMessagesDirective)
12134
12115
  }
12135
12116
  ],
12136
- selector: '[kendoTimeSelectorLocalizedMessages]'
12117
+ selector: '[kendoTimeSelectorLocalizedMessages]',
12118
+ standalone: true
12137
12119
  }]
12138
12120
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
12139
12121
 
@@ -12531,7 +12513,7 @@ class TimeSelectorComponent {
12531
12513
  }
12532
12514
  }
12533
12515
  TimeSelectorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorComponent, deps: [{ token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i1.IntlService }, { token: TimePickerDOMService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: PickerService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
12534
- TimeSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: { format: "format", min: "min", max: "max", cancelButton: "cancelButton", setButton: "setButton", nowButton: "nowButton", disabled: "disabled", isAdaptiveEnabled: "isAdaptiveEnabled", isDateTimePicker: "isDateTimePicker", steps: "steps", value: "value" }, outputs: { valueChange: "valueChange", valueReject: "valueReject", tabOutLastPart: "tabOutLastPart", tabOutNow: "tabOutNow" }, host: { properties: { "class.k-disabled": "this.disabledClass" } }, providers: [
12516
+ TimeSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorComponent, isStandalone: true, selector: "kendo-timeselector", inputs: { format: "format", min: "min", max: "max", cancelButton: "cancelButton", setButton: "setButton", nowButton: "nowButton", disabled: "disabled", isAdaptiveEnabled: "isAdaptiveEnabled", isDateTimePicker: "isDateTimePicker", steps: "steps", value: "value" }, outputs: { valueChange: "valueChange", valueReject: "valueReject", tabOutLastPart: "tabOutLastPart", tabOutNow: "tabOutNow" }, host: { properties: { "class.k-disabled": "this.disabledClass" } }, providers: [
12535
12517
  LocalizationService,
12536
12518
  {
12537
12519
  provide: L10N_PREFIX,
@@ -12645,7 +12627,7 @@ TimeSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
12645
12627
  [disabled]="disabled"
12646
12628
  >{{localization.get('cancel')}}</button>
12647
12629
  </div>
12648
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: TimeListComponent, selector: "kendo-timelist", inputs: ["min", "max", "part", "step", "disabled", "value", "isLast"], outputs: ["valueChange", "tabOutLastPart"] }, { kind: "directive", type: TimeSelectorLocalizedMessagesDirective, selector: "[kendoTimeSelectorLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
12630
+ `, isInline: true, dependencies: [{ kind: "directive", type: TimeSelectorLocalizedMessagesDirective, selector: "[kendoTimeSelectorLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: TimeListComponent, selector: "kendo-timelist", inputs: ["min", "max", "part", "step", "disabled", "value", "isLast"], outputs: ["valueChange", "tabOutLastPart"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
12649
12631
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorComponent, decorators: [{
12650
12632
  type: Component,
12651
12633
  args: [{
@@ -12767,7 +12749,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12767
12749
  [disabled]="disabled"
12768
12750
  >{{localization.get('cancel')}}</button>
12769
12751
  </div>
12770
- `
12752
+ `,
12753
+ standalone: true,
12754
+ imports: [TimeSelectorLocalizedMessagesDirective, NgIf, EventsOutsideAngularDirective, NgFor, TimeListComponent]
12771
12755
  }]
12772
12756
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i1.IntlService }, { type: TimePickerDOMService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: PickerService, decorators: [{
12773
12757
  type: Optional
@@ -12821,18 +12805,103 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12821
12805
  type: Output
12822
12806
  }] } });
12823
12807
 
12824
- const VALUE_DOC_LINK$1 = 'https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/#toc-integration-with-json';
12825
- const INTL_DATE_FORMAT = 'https://github.com/telerik/kendo-intl/blob/master/docs/date-formatting/index.md';
12826
- const formatRegExp = new RegExp(`${TIME_PART.hour}|${TIME_PART.minute}|${TIME_PART.second}|${TIME_PART.millisecond}|${TIME_PART.dayperiod}|literal`);
12827
- const ACCEPT_BUTTON_SELECTOR$1 = '.k-button.k-time-accept';
12828
12808
  /**
12829
- * Represents the [Kendo UI TimePicker component for Angular](slug:overview_timepicker).
12809
+ * @hidden
12830
12810
  */
12831
- class TimePickerComponent extends MultiTabStop {
12832
- constructor(bus, zone, localization, cdr, popupService, wrapper, renderer, injector, pickerService, intl, touchEnabled) {
12833
- super();
12834
- this.bus = bus;
12835
- this.zone = zone;
12811
+ const timeRangeValidator = (min, max) => {
12812
+ return (control) => {
12813
+ if (!min || !max || !control.value) {
12814
+ return null;
12815
+ }
12816
+ const err = {
12817
+ timeRangeError: {
12818
+ maxValue: max,
12819
+ minValue: min,
12820
+ value: control.value
12821
+ }
12822
+ };
12823
+ return isInTimeRange(control.value, min, max) ? null : err;
12824
+ };
12825
+ };
12826
+
12827
+ /**
12828
+ * @hidden
12829
+ *
12830
+ * Custom component messages override default component messages.
12831
+ */
12832
+ class TimeSelectorCustomMessagesComponent extends TimePickerMessages {
12833
+ constructor(service) {
12834
+ super();
12835
+ this.service = service;
12836
+ }
12837
+ get override() {
12838
+ return true;
12839
+ }
12840
+ }
12841
+ TimeSelectorCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
12842
+ TimeSelectorCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimeSelectorCustomMessagesComponent, isStandalone: true, selector: "kendo-timeselector-messages", providers: [
12843
+ {
12844
+ provide: TimePickerMessages,
12845
+ useExisting: forwardRef(() => TimeSelectorCustomMessagesComponent)
12846
+ }
12847
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
12848
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimeSelectorCustomMessagesComponent, decorators: [{
12849
+ type: Component,
12850
+ args: [{
12851
+ providers: [
12852
+ {
12853
+ provide: TimePickerMessages,
12854
+ useExisting: forwardRef(() => TimeSelectorCustomMessagesComponent)
12855
+ }
12856
+ ],
12857
+ selector: 'kendo-timeselector-messages',
12858
+ template: ``,
12859
+ standalone: true
12860
+ }]
12861
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
12862
+
12863
+ /**
12864
+ * @hidden
12865
+ */
12866
+ class TimePickerLocalizedMessagesDirective extends TimePickerMessages {
12867
+ constructor(service) {
12868
+ super();
12869
+ this.service = service;
12870
+ }
12871
+ }
12872
+ TimePickerLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
12873
+ TimePickerLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerLocalizedMessagesDirective, isStandalone: true, selector: "[kendoTimePickerLocalizedMessages]", providers: [
12874
+ {
12875
+ provide: TimePickerMessages,
12876
+ useExisting: forwardRef(() => TimePickerLocalizedMessagesDirective)
12877
+ }
12878
+ ], usesInheritance: true, ngImport: i0 });
12879
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerLocalizedMessagesDirective, decorators: [{
12880
+ type: Directive,
12881
+ args: [{
12882
+ providers: [
12883
+ {
12884
+ provide: TimePickerMessages,
12885
+ useExisting: forwardRef(() => TimePickerLocalizedMessagesDirective)
12886
+ }
12887
+ ],
12888
+ selector: '[kendoTimePickerLocalizedMessages]',
12889
+ standalone: true
12890
+ }]
12891
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
12892
+
12893
+ const VALUE_DOC_LINK$1 = 'https://www.telerik.com/kendo-angular-ui/components/dateinputs/timepicker/#toc-integration-with-json';
12894
+ const INTL_DATE_FORMAT = 'https://github.com/telerik/kendo-intl/blob/master/docs/date-formatting/index.md';
12895
+ const formatRegExp = new RegExp(`${TIME_PART.hour}|${TIME_PART.minute}|${TIME_PART.second}|${TIME_PART.millisecond}|${TIME_PART.dayperiod}|literal`);
12896
+ const ACCEPT_BUTTON_SELECTOR$1 = '.k-button.k-time-accept';
12897
+ /**
12898
+ * Represents the [Kendo UI TimePicker component for Angular](slug:overview_timepicker).
12899
+ */
12900
+ class TimePickerComponent extends MultiTabStop {
12901
+ constructor(bus, zone, localization, cdr, popupService, wrapper, renderer, injector, pickerService, intl) {
12902
+ super();
12903
+ this.bus = bus;
12904
+ this.zone = zone;
12836
12905
  this.localization = localization;
12837
12906
  this.cdr = cdr;
12838
12907
  this.popupService = popupService;
@@ -12841,7 +12910,6 @@ class TimePickerComponent extends MultiTabStop {
12841
12910
  this.injector = injector;
12842
12911
  this.pickerService = pickerService;
12843
12912
  this.intl = intl;
12844
- this.touchEnabled = touchEnabled;
12845
12913
  /**
12846
12914
  * @hidden
12847
12915
  */
@@ -12900,15 +12968,6 @@ class TimePickerComponent extends MultiTabStop {
12900
12968
  * Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
12901
12969
  */
12902
12970
  this.incompleteDateValidation = false;
12903
- /**
12904
- * @hidden
12905
- *
12906
- * Determines whether to auto correct invalid segments automatically.
12907
- * TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
12908
- *
12909
- * @default true
12910
- */
12911
- this.autoCorrectParts = true;
12912
12971
  /**
12913
12972
  * Determines whether to automatically move to the next segment after the user completes the current one.
12914
12973
  *
@@ -13647,7 +13706,7 @@ class TimePickerComponent extends MultiTabStop {
13647
13706
  }
13648
13707
  }
13649
13708
  focusInput() {
13650
- if (this.touchEnabled) {
13709
+ if (touchEnabled) {
13651
13710
  return;
13652
13711
  }
13653
13712
  this.dateInput.focus();
@@ -13664,7 +13723,7 @@ class TimePickerComponent extends MultiTabStop {
13664
13723
  this.timeSelector.focus();
13665
13724
  }
13666
13725
  }
13667
- else if (!this.touchEnabled) {
13726
+ else if (!touchEnabled) {
13668
13727
  this.dateInput.focus();
13669
13728
  }
13670
13729
  else if (!this.dateInput.isActive) {
@@ -13756,8 +13815,8 @@ class TimePickerComponent extends MultiTabStop {
13756
13815
  }
13757
13816
  }
13758
13817
  }
13759
- TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }, { token: TOUCH_ENABLED, optional: true }], target: i0.ɵɵFactoryTarget.Component });
13760
- TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerComponent, 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", autoCorrectParts: "autoCorrectParts", autoSwitchParts: "autoSwitchParts", autoSwitchKeys: "autoSwitchKeys", enableMouseWheel: "enableMouseWheel", allowCaretMode: "allowCaretMode", cancelButton: "cancelButton", nowButton: "nowButton", steps: "steps", popupSettings: "popupSettings", tabindex: "tabindex", tabIndex: "tabIndex", title: "title", subtitle: "subtitle", 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-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
13818
+ TimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, deps: [{ token: BusViewService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i1$3.PopupService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: PickerService }, { token: i1.IntlService }], target: i0.ɵɵFactoryTarget.Component });
13819
+ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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", title: "title", subtitle: "subtitle", 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-timepicker": "this.wrapperClasses", "class.k-input": "this.wrapperClasses", "class.k-disabled": "this.disabledClass" } }, providers: [
13761
13820
  { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TimePickerComponent), multi: true },
13762
13821
  { provide: NG_VALIDATORS, useExisting: forwardRef(() => TimePickerComponent), multi: true },
13763
13822
  { provide: KendoInput, useExisting: forwardRef(() => TimePickerComponent) },
@@ -13828,7 +13887,6 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
13828
13887
  [min]="normalizeTime(min)"
13829
13888
  [max]="normalizeTime(max)"
13830
13889
  [incompleteDateValidation]="incompleteDateValidation"
13831
- [autoCorrectParts]="autoCorrectParts"
13832
13890
  [autoSwitchParts]="autoSwitchParts"
13833
13891
  [autoSwitchKeys]="autoSwitchKeys"
13834
13892
  [enableMouseWheel]="enableMouseWheel"
@@ -13974,7 +14032,7 @@ TimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
13974
14032
  </kendo-timeselector-messages>
13975
14033
  </kendo-timeselector>
13976
14034
  </ng-template>
13977
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: i12.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: i1$2.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", 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"] }, { kind: "directive", type: TimePickerLocalizedMessagesDirective, selector: "[kendoTimePickerLocalizedMessages]" }, { kind: "component", type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }, { kind: "component", type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart", "tabOutNow"], exportAs: ["kendo-timeselector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
14035
+ `, isInline: true, dependencies: [{ kind: "directive", type: TimePickerLocalizedMessagesDirective, selector: "[kendoTimePickerLocalizedMessages]" }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: 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"] }, { kind: "component", type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart", "tabOutNow"], exportAs: ["kendo-timeselector"] }, { kind: "component", type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
13978
14036
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerComponent, decorators: [{
13979
14037
  type: Component,
13980
14038
  args: [{
@@ -14053,7 +14111,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14053
14111
  [min]="normalizeTime(min)"
14054
14112
  [max]="normalizeTime(max)"
14055
14113
  [incompleteDateValidation]="incompleteDateValidation"
14056
- [autoCorrectParts]="autoCorrectParts"
14057
14114
  [autoSwitchParts]="autoSwitchParts"
14058
14115
  [autoSwitchKeys]="autoSwitchKeys"
14059
14116
  [enableMouseWheel]="enableMouseWheel"
@@ -14199,14 +14256,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14199
14256
  </kendo-timeselector-messages>
14200
14257
  </kendo-timeselector>
14201
14258
  </ng-template>
14202
- `
14259
+ `,
14260
+ standalone: true,
14261
+ imports: [TimePickerLocalizedMessagesDirective, DateInputComponent, DateInputCustomMessagesComponent, EventsOutsideAngularDirective, IconWrapperComponent, NgTemplateOutlet, NgIf, ResizeSensorComponent, ActionSheetComponent, ActionSheetTemplateDirective, ButtonComponent, TimeSelectorComponent, TimeSelectorCustomMessagesComponent]
14203
14262
  }]
14204
- }], ctorParameters: function () { return [{ type: BusViewService }, { type: i0.NgZone }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i1$3.PopupService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: PickerService }, { type: i1.IntlService }, { type: undefined, decorators: [{
14205
- type: Optional
14206
- }, {
14207
- type: Inject,
14208
- args: [TOUCH_ENABLED]
14209
- }] }]; }, propDecorators: { container: [{
14263
+ }], ctorParameters: function () { return [{ type: BusViewService }, { type: i0.NgZone }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i1$3.PopupService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: PickerService }, { type: i1.IntlService }]; }, propDecorators: { container: [{
14210
14264
  type: ViewChild,
14211
14265
  args: ['container', { read: ViewContainerRef, static: false }]
14212
14266
  }], popupTemplate: [{
@@ -14243,8 +14297,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14243
14297
  type: Input
14244
14298
  }], incompleteDateValidation: [{
14245
14299
  type: Input
14246
- }], autoCorrectParts: [{
14247
- type: Input
14248
14300
  }], autoSwitchParts: [{
14249
14301
  type: Input
14250
14302
  }], autoSwitchKeys: [{
@@ -14375,7 +14427,7 @@ class LocalizedMessagesDirective extends DateTimePickerMessages {
14375
14427
  }
14376
14428
  }
14377
14429
  LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
14378
- LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]", providers: [
14430
+ LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoDateTimePickerLocalizedMessages]", providers: [
14379
14431
  {
14380
14432
  provide: DateTimePickerMessages,
14381
14433
  useExisting: forwardRef(() => LocalizedMessagesDirective)
@@ -14390,7 +14442,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14390
14442
  useExisting: forwardRef(() => LocalizedMessagesDirective)
14391
14443
  }
14392
14444
  ],
14393
- selector: '[kendoDateTimePickerLocalizedMessages]'
14445
+ selector: '[kendoDateTimePickerLocalizedMessages]',
14446
+ standalone: true
14394
14447
  }]
14395
14448
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
14396
14449
 
@@ -14409,7 +14462,7 @@ const TIME_TAB_BUTTON_SELECTOR = '.k-button.k-group-end';
14409
14462
  * Represents the [Kendo UI DateTimePicker component for Angular]({% slug overview_datetimepicker %}).
14410
14463
  */
14411
14464
  class DateTimePickerComponent extends MultiTabStop {
14412
- constructor(popupService, intl, cdr, pickerService, ngZone, wrapper, touchEnabled, localization, disabledDatesService, renderer, injector) {
14465
+ constructor(popupService, intl, cdr, pickerService, ngZone, wrapper, localization, disabledDatesService, renderer, injector) {
14413
14466
  super();
14414
14467
  this.popupService = popupService;
14415
14468
  this.intl = intl;
@@ -14417,7 +14470,6 @@ class DateTimePickerComponent extends MultiTabStop {
14417
14470
  this.pickerService = pickerService;
14418
14471
  this.ngZone = ngZone;
14419
14472
  this.wrapper = wrapper;
14420
- this.touchEnabled = touchEnabled;
14421
14473
  this.localization = localization;
14422
14474
  this.disabledDatesService = disabledDatesService;
14423
14475
  this.renderer = renderer;
@@ -14522,10 +14574,7 @@ class DateTimePickerComponent extends MultiTabStop {
14522
14574
  */
14523
14575
  this.incompleteDateValidation = false;
14524
14576
  /**
14525
- * @hidden
14526
- *
14527
- * Determines whether to auto correct invalid segments automatically.
14528
- * TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
14577
+ * Determines whether to autocorrect invalid segments automatically.
14529
14578
  *
14530
14579
  * @default true
14531
14580
  */
@@ -15553,7 +15602,7 @@ class DateTimePickerComponent extends MultiTabStop {
15553
15602
  if (this.isOpen) {
15554
15603
  this.activeTabComponent.focus();
15555
15604
  }
15556
- else if (!this.touchEnabled) {
15605
+ else if (!touchEnabled) {
15557
15606
  this.dateInput.focus();
15558
15607
  }
15559
15608
  else if (!this.dateInput.isActive) {
@@ -15678,8 +15727,8 @@ class DateTimePickerComponent extends MultiTabStop {
15678
15727
  }
15679
15728
  }
15680
15729
  }
15681
- DateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1$3.PopupService }, { token: i1.IntlService }, { token: i0.ChangeDetectorRef }, { token: PickerService }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: TOUCH_ENABLED }, { token: i1$1.LocalizationService }, { token: DisabledDatesService }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
15682
- DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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", 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-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
15730
+ DateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerComponent, deps: [{ token: i1$3.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 }], target: i0.ɵɵFactoryTarget.Component });
15731
+ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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", 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", 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-datetimepicker": "this.hostClasses", "class.k-input": "this.hostClasses", "class.k-disabled": "this.disabledClass", "class.k-readonly": "this.readonly" } }, providers: [
15683
15732
  PickerService,
15684
15733
  LocalizationService,
15685
15734
  DisabledDatesService,
@@ -16074,7 +16123,7 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
16074
16123
  </div>
16075
16124
  </div>
16076
16125
  </ng-template>
16077
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "component", type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "allowReverse", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size", "activeRangeEnd"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { kind: "component", type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { kind: "component", type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }, { kind: "component", type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart", "tabOutNow"], exportAs: ["kendo-timeselector"] }, { kind: "directive", type: i1$2.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: i12.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: i12.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: i1$2.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", 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"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
16126
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]" }, { kind: "component", type: DateInputComponent, selector: "kendo-dateinput", inputs: ["focusableId", "pickerType", "clearButton", "disabled", "readonly", "title", "tabindex", "role", "ariaReadOnly", "tabIndex", "isRequired", "format", "formatPlaceholder", "placeholder", "steps", "max", "min", "rangeValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "allowCaretMode", "autoFill", "incompleteDateValidation", "twoDigitYearMax", "enableMouseWheel", "value", "spinners", "isPopupOpen", "hasPopup", "size", "rounded", "fillMode", "inputAttributes"], outputs: ["valueChange", "valueUpdate", "focus", "blur"], exportAs: ["kendo-dateinput"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "component", type: DateInputCustomMessagesComponent, selector: "kendo-dateinput-messages" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: 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"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: CalendarComponent, selector: "kendo-calendar", inputs: ["showOtherMonthDays", "id", "focusedDate", "min", "max", "rangeValidation", "weekDaysFormat", "footer", "selection", "allowReverse", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "headerTemplate", "footerTemplate", "navigationItemTemplate", "size", "activeRangeEnd"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { kind: "component", type: CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }, { kind: "component", type: TimeSelectorComponent, selector: "kendo-timeselector", inputs: ["format", "min", "max", "cancelButton", "setButton", "nowButton", "disabled", "isAdaptiveEnabled", "isDateTimePicker", "steps", "value"], outputs: ["valueChange", "valueReject", "tabOutLastPart", "tabOutNow"], exportAs: ["kendo-timeselector"] }, { kind: "component", type: TimeSelectorCustomMessagesComponent, selector: "kendo-timeselector-messages" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
16078
16127
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerComponent, decorators: [{
16079
16128
  type: Component,
16080
16129
  args: [{
@@ -16477,12 +16526,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
16477
16526
  </div>
16478
16527
  </div>
16479
16528
  </ng-template>
16480
- `
16529
+ `,
16530
+ standalone: true,
16531
+ imports: [LocalizedMessagesDirective, DateInputComponent, EventsOutsideAngularDirective, DateInputCustomMessagesComponent, NgIf, IconWrapperComponent, NgTemplateOutlet, ResizeSensorComponent, ActionSheetComponent, ActionSheetTemplateDirective, ButtonComponent, NgClass, CalendarComponent, CalendarCustomMessagesComponent, TimeSelectorComponent, TimeSelectorCustomMessagesComponent]
16481
16532
  }]
16482
- }], ctorParameters: function () { return [{ type: i1$3.PopupService }, { type: i1.IntlService }, { type: i0.ChangeDetectorRef }, { type: PickerService }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: undefined, decorators: [{
16483
- type: Inject,
16484
- args: [TOUCH_ENABLED]
16485
- }] }, { type: i1$1.LocalizationService }, { type: DisabledDatesService }, { type: i0.Renderer2 }, { type: i0.Injector }]; }, propDecorators: { hostClasses: [{
16533
+ }], ctorParameters: function () { return [{ type: i1$3.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 }]; }, propDecorators: { hostClasses: [{
16486
16534
  type: HostBinding,
16487
16535
  args: ['class.k-datetimepicker']
16488
16536
  }, {
@@ -16647,11 +16695,12 @@ class DateRangePopupTemplateDirective {
16647
16695
  }
16648
16696
  }
16649
16697
  DateRangePopupTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
16650
- DateRangePopupTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupTemplateDirective, selector: "[kendoDateRangePopupTemplate]", ngImport: i0 });
16698
+ DateRangePopupTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupTemplateDirective, isStandalone: true, selector: "[kendoDateRangePopupTemplate]", ngImport: i0 });
16651
16699
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupTemplateDirective, decorators: [{
16652
16700
  type: Directive,
16653
16701
  args: [{
16654
- selector: '[kendoDateRangePopupTemplate]'
16702
+ selector: '[kendoDateRangePopupTemplate]',
16703
+ standalone: true
16655
16704
  }]
16656
16705
  }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
16657
16706
 
@@ -17051,11 +17100,12 @@ class DateRangeSelectionDirective {
17051
17100
  }
17052
17101
  }
17053
17102
  DateRangeSelectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeSelectionDirective, deps: [{ token: MultiViewCalendarComponent }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DateRangeService, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
17054
- DateRangeSelectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeSelectionDirective, selector: "[kendoDateRangeSelection]", inputs: { autoCorrectOn: "autoCorrectOn", selectionRange: "selectionRange", activeRangeEnd: "activeRangeEnd", shouldSetRange: "shouldSetRange" }, outputs: { activeRangeEndChange: "activeRangeEndChange", selectionRangeChange: "selectionRangeChange" }, ngImport: i0 });
17103
+ DateRangeSelectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeSelectionDirective, isStandalone: true, selector: "[kendoDateRangeSelection]", inputs: { autoCorrectOn: "autoCorrectOn", selectionRange: "selectionRange", activeRangeEnd: "activeRangeEnd", shouldSetRange: "shouldSetRange" }, outputs: { activeRangeEndChange: "activeRangeEndChange", selectionRangeChange: "selectionRangeChange" }, ngImport: i0 });
17055
17104
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeSelectionDirective, decorators: [{
17056
17105
  type: Directive,
17057
17106
  args: [{
17058
- selector: '[kendoDateRangeSelection]'
17107
+ selector: '[kendoDateRangeSelection]',
17108
+ standalone: true
17059
17109
  }]
17060
17110
  }], ctorParameters: function () { return [{ type: MultiViewCalendarComponent }, { type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DateRangeService, decorators: [{
17061
17111
  type: Optional
@@ -17106,7 +17156,7 @@ class DateRangePopupLocalizedMessagesDirective extends DateRangePopupMessages {
17106
17156
  }
17107
17157
  }
17108
17158
  DateRangePopupLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
17109
- DateRangePopupLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupLocalizedMessagesDirective, selector: "[kendoDateRangePopupLocalizedMessages]", providers: [
17159
+ DateRangePopupLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupLocalizedMessagesDirective, isStandalone: true, selector: "[kendoDateRangePopupLocalizedMessages]", providers: [
17110
17160
  {
17111
17161
  provide: DateRangePopupMessages,
17112
17162
  useExisting: forwardRef(() => DateRangePopupLocalizedMessagesDirective)
@@ -17121,7 +17171,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
17121
17171
  useExisting: forwardRef(() => DateRangePopupLocalizedMessagesDirective)
17122
17172
  }
17123
17173
  ],
17124
- selector: '[kendoDateRangePopupLocalizedMessages]'
17174
+ selector: '[kendoDateRangePopupLocalizedMessages]',
17175
+ standalone: true
17125
17176
  }]
17126
17177
  }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
17127
17178
 
@@ -17599,7 +17650,7 @@ class DateRangePopupComponent {
17599
17650
  }
17600
17651
  }
17601
17652
  DateRangePopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupComponent, deps: [{ token: i1$3.PopupService }, { token: DateRangeService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
17602
- DateRangePopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupComponent, selector: "kendo-daterange-popup", inputs: { allowReverse: "allowReverse", animate: "animate", anchor: "anchor", anchorAlign: "anchorAlign", appendTo: "appendTo", collision: "collision", popupAlign: "popupAlign", margin: "margin", adaptiveMode: "adaptiveMode", title: "title", subtitle: "subtitle", size: "size" }, outputs: { open: "open", close: "close", onBlur: "blur", onFocus: "focus", cancel: "cancel" }, providers: [
17653
+ DateRangePopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupComponent, isStandalone: true, selector: "kendo-daterange-popup", inputs: { allowReverse: "allowReverse", animate: "animate", anchor: "anchor", anchorAlign: "anchorAlign", appendTo: "appendTo", collision: "collision", popupAlign: "popupAlign", margin: "margin", adaptiveMode: "adaptiveMode", title: "title", subtitle: "subtitle", size: "size" }, outputs: { open: "open", close: "close", onBlur: "blur", onFocus: "focus", cancel: "cancel" }, providers: [
17603
17654
  LocalizationService,
17604
17655
  {
17605
17656
  provide: L10N_PREFIX,
@@ -17705,7 +17756,7 @@ DateRangePopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
17705
17756
  </div>
17706
17757
  </ng-template>
17707
17758
  </kendo-actionsheet>
17708
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "size", "id", "focusedDate", "footer", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "allowReverse", "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", "rangeSelectionChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { kind: "component", type: i12.ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: i12.ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "component", type: i1$2.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", 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"] }, { kind: "directive", type: DateRangePopupLocalizedMessagesDirective, selector: "[kendoDateRangePopupLocalizedMessages]" }] });
17759
+ `, isInline: true, dependencies: [{ kind: "directive", type: DateRangePopupLocalizedMessagesDirective, selector: "[kendoDateRangePopupLocalizedMessages]" }, { kind: "component", type: MultiViewCalendarComponent, selector: "kendo-multiviewcalendar", inputs: ["showOtherMonthDays", "showCalendarHeader", "size", "id", "focusedDate", "footer", "min", "max", "rangeValidation", "disabledDatesRangeValidation", "selection", "allowReverse", "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", "rangeSelectionChange", "blur", "focus", "focusCalendar", "onClosePopup", "onTabPress", "onShiftTabPress"], exportAs: ["kendo-multiviewcalendar"] }, { kind: "component", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: ["title", "subtitle", "items", "cssClass", "animation", "expanded", "titleId"], outputs: ["expandedChange", "expand", "collapse", "itemClick", "overlayClick"], exportAs: ["kendoActionSheet"] }, { kind: "directive", type: ActionSheetTemplateDirective, selector: "[kendoActionSheetTemplate]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: 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"] }] });
17709
17760
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupComponent, decorators: [{
17710
17761
  type: Component,
17711
17762
  args: [{
@@ -17818,7 +17869,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
17818
17869
  </div>
17819
17870
  </ng-template>
17820
17871
  </kendo-actionsheet>
17821
- `
17872
+ `,
17873
+ standalone: true,
17874
+ imports: [DateRangePopupLocalizedMessagesDirective, MultiViewCalendarComponent, ActionSheetComponent, ActionSheetTemplateDirective, NgIf, ResizeSensorComponent, ButtonComponent]
17822
17875
  }]
17823
17876
  }], ctorParameters: function () { return [{ type: i1$3.PopupService }, { type: DateRangeService }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
17824
17877
  type: Optional
@@ -17940,10 +17993,10 @@ class DateRangeComponent {
17940
17993
  }
17941
17994
  }
17942
17995
  DateRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeComponent, deps: [{ token: DateRangeService }], target: i0.ɵɵFactoryTarget.Component });
17943
- DateRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeComponent, 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: `
17996
+ DateRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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: `
17944
17997
  <ng-content></ng-content>
17945
17998
  <kendo-daterange-popup *ngIf="showDefault" [size]="size"></kendo-daterange-popup>
17946
- `, isInline: true, dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DateRangePopupComponent, selector: "kendo-daterange-popup", inputs: ["allowReverse", "animate", "anchor", "anchorAlign", "appendTo", "collision", "popupAlign", "margin", "adaptiveMode", "title", "subtitle", "size"], outputs: ["open", "close", "blur", "focus", "cancel"], exportAs: ["kendo-daterange-popup"] }] });
17999
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DateRangePopupComponent, selector: "kendo-daterange-popup", inputs: ["allowReverse", "animate", "anchor", "anchorAlign", "appendTo", "collision", "popupAlign", "margin", "adaptiveMode", "title", "subtitle", "size"], outputs: ["open", "close", "blur", "focus", "cancel"], exportAs: ["kendo-daterange-popup"] }] });
17947
18000
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeComponent, decorators: [{
17948
18001
  type: Component,
17949
18002
  args: [{
@@ -17952,7 +18005,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
17952
18005
  template: `
17953
18006
  <ng-content></ng-content>
17954
18007
  <kendo-daterange-popup *ngIf="showDefault" [size]="size"></kendo-daterange-popup>
17955
- `
18008
+ `,
18009
+ standalone: true,
18010
+ imports: [NgIf, DateRangePopupComponent]
17956
18011
  }]
17957
18012
  }], ctorParameters: function () { return [{ type: DateRangeService }]; }, propDecorators: { size: [{
17958
18013
  type: Input
@@ -18150,11 +18205,12 @@ class DateRangeEndInputDirective extends DateRangeInput {
18150
18205
  }
18151
18206
  }
18152
18207
  DateRangeEndInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeEndInputDirective, deps: [{ token: DateRangeService }, { token: DateInputComponent }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
18153
- DateRangeEndInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeEndInputDirective, selector: "[kendoDateRangeEndInput]", inputs: { autoCorrectOn: "autoCorrectOn", navigateCalendarOnFocus: "navigateCalendarOnFocus" }, usesInheritance: true, ngImport: i0 });
18208
+ DateRangeEndInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeEndInputDirective, isStandalone: true, selector: "[kendoDateRangeEndInput]", inputs: { autoCorrectOn: "autoCorrectOn", navigateCalendarOnFocus: "navigateCalendarOnFocus" }, usesInheritance: true, ngImport: i0 });
18154
18209
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeEndInputDirective, decorators: [{
18155
18210
  type: Directive,
18156
18211
  args: [{
18157
- selector: '[kendoDateRangeEndInput]'
18212
+ selector: '[kendoDateRangeEndInput]',
18213
+ standalone: true
18158
18214
  }]
18159
18215
  }], ctorParameters: function () { return [{ type: DateRangeService }, { type: DateInputComponent }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { autoCorrectOn: [{
18160
18216
  type: Input
@@ -18231,11 +18287,12 @@ class DateRangeStartInputDirective extends DateRangeInput {
18231
18287
  }
18232
18288
  }
18233
18289
  DateRangeStartInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeStartInputDirective, deps: [{ token: DateRangeService }, { token: DateInputComponent }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
18234
- DateRangeStartInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeStartInputDirective, selector: "[kendoDateRangeStartInput]", inputs: { autoCorrectOn: "autoCorrectOn", navigateCalendarOnFocus: "navigateCalendarOnFocus" }, usesInheritance: true, ngImport: i0 });
18290
+ DateRangeStartInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateRangeStartInputDirective, isStandalone: true, selector: "[kendoDateRangeStartInput]", inputs: { autoCorrectOn: "autoCorrectOn", navigateCalendarOnFocus: "navigateCalendarOnFocus" }, usesInheritance: true, ngImport: i0 });
18235
18291
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeStartInputDirective, decorators: [{
18236
18292
  type: Directive,
18237
18293
  args: [{
18238
- selector: '[kendoDateRangeStartInput]'
18294
+ selector: '[kendoDateRangeStartInput]',
18295
+ standalone: true
18239
18296
  }]
18240
18297
  }], ctorParameters: function () { return [{ type: DateRangeService }, { type: DateInputComponent }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { autoCorrectOn: [{
18241
18298
  type: Input
@@ -18244,238 +18301,252 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
18244
18301
  }] } });
18245
18302
 
18246
18303
  /**
18247
- * @hidden
18248
- *
18249
- * The exported package module.
18250
- *
18251
- * The package exports:
18252
- * - `HeaderComponent`&mdash;The component that renders the UI for vertical navigation.
18253
- * - `ViewComponent`&mdash;The component that renders the active Calendar view.
18254
- * - `FooterComponent`&mdash;The component that renders the Calendar footer.
18304
+ * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18255
18305
  */
18256
- class CalendarCommonModule {
18306
+ class DatePickerCustomMessagesComponent extends DatePickerMessages {
18307
+ constructor(service) {
18308
+ super();
18309
+ this.service = service;
18310
+ }
18311
+ get override() {
18312
+ return true;
18313
+ }
18257
18314
  }
18258
- CalendarCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18259
- CalendarCommonModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, declarations: [KForOf,
18260
- HeaderComponent,
18261
- FooterComponent,
18262
- ViewComponent], imports: [CommonModule, EventsModule, ButtonModule], exports: [KForOf,
18263
- HeaderComponent,
18264
- FooterComponent,
18265
- ViewComponent] });
18266
- CalendarCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, imports: [CommonModule, EventsModule, ButtonModule] });
18267
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, decorators: [{
18268
- type: NgModule,
18315
+ DatePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18316
+ DatePickerCustomMessagesComponentcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerCustomMessagesComponent, isStandalone: true, selector: "kendo-datepicker-messages", providers: [
18317
+ {
18318
+ provide: DatePickerMessages,
18319
+ useExisting: forwardRef(() => DatePickerCustomMessagesComponent)
18320
+ }
18321
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerCustomMessagesComponent, decorators: [{
18323
+ type: Component,
18269
18324
  args: [{
18270
- declarations: [
18271
- KForOf,
18272
- HeaderComponent,
18273
- FooterComponent,
18274
- ViewComponent
18275
- ],
18276
- exports: [
18277
- KForOf,
18278
- HeaderComponent,
18279
- FooterComponent,
18280
- ViewComponent
18325
+ providers: [
18326
+ {
18327
+ provide: DatePickerMessages,
18328
+ useExisting: forwardRef(() => DatePickerCustomMessagesComponent)
18329
+ }
18281
18330
  ],
18282
- imports: [CommonModule, EventsModule, ButtonModule]
18331
+ selector: 'kendo-datepicker-messages',
18332
+ template: ``,
18333
+ standalone: true
18283
18334
  }]
18284
- }] });
18335
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18285
18336
 
18286
18337
  /**
18287
- * @hidden
18288
- *
18289
- * The exported package module.
18290
- *
18291
- * The package exports:
18292
- * - `CellTemplateDirective`&mdash;The month cell template directive.
18293
- * - `MonthCellTemplateDirective`&mdash;The month cell template directive.
18294
- * - `YearCellTemplateDirective`&mdash;The year cell template directive.
18295
- * - `DecadeCellTemplateDirective`&mdash;The decade cell template directive.
18296
- * - `CenturyCellTemplateDirective`&mdash;The century cell template directive.
18297
- * - `WeekNumberCellTemplateDirective`&mdash;The month week number cell template directive.
18298
- * - `HeaderTitleTemplateDirective`&mdash;The header title template directive.
18299
- * - `NavigationItemTemplateDirective`&mdash;The navigation item template directive.
18338
+ * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18300
18339
  */
18301
- class TemplatesModule {
18340
+ class DateRangePopupCustomMessagesComponent extends DateRangePopupMessages {
18341
+ constructor(service) {
18342
+ super();
18343
+ this.service = service;
18344
+ }
18345
+ get override() {
18346
+ return true;
18347
+ }
18302
18348
  }
18303
- TemplatesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18304
- TemplatesModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, declarations: [CellTemplateDirective,
18305
- MonthCellTemplateDirective,
18306
- YearCellTemplateDirective,
18307
- DecadeCellTemplateDirective,
18308
- CenturyCellTemplateDirective,
18309
- WeekNumberCellTemplateDirective,
18310
- HeaderTitleTemplateDirective,
18311
- NavigationItemTemplateDirective,
18312
- HeaderTemplateDirective,
18313
- FooterTemplateDirective], exports: [CellTemplateDirective,
18314
- MonthCellTemplateDirective,
18315
- YearCellTemplateDirective,
18316
- DecadeCellTemplateDirective,
18317
- CenturyCellTemplateDirective,
18318
- WeekNumberCellTemplateDirective,
18319
- HeaderTitleTemplateDirective,
18320
- NavigationItemTemplateDirective,
18321
- HeaderTemplateDirective,
18322
- FooterTemplateDirective] });
18323
- TemplatesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule });
18324
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, decorators: [{
18325
- type: NgModule,
18349
+ DateRangePopupCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18350
+ DateRangePopupCustomMessagesComponentcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupCustomMessagesComponent, isStandalone: true, selector: "kendo-daterange-popup-messages", providers: [
18351
+ {
18352
+ provide: DateRangePopupMessages,
18353
+ useExisting: forwardRef(() => DateRangePopupCustomMessagesComponent)
18354
+ }
18355
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupCustomMessagesComponent, decorators: [{
18357
+ type: Component,
18326
18358
  args: [{
18327
- declarations: [
18328
- CellTemplateDirective,
18329
- MonthCellTemplateDirective,
18330
- YearCellTemplateDirective,
18331
- DecadeCellTemplateDirective,
18332
- CenturyCellTemplateDirective,
18333
- WeekNumberCellTemplateDirective,
18334
- HeaderTitleTemplateDirective,
18335
- NavigationItemTemplateDirective,
18336
- HeaderTemplateDirective,
18337
- FooterTemplateDirective
18359
+ providers: [
18360
+ {
18361
+ provide: DateRangePopupMessages,
18362
+ useExisting: forwardRef(() => DateRangePopupCustomMessagesComponent)
18363
+ }
18338
18364
  ],
18339
- exports: [
18340
- CellTemplateDirective,
18341
- MonthCellTemplateDirective,
18342
- YearCellTemplateDirective,
18343
- DecadeCellTemplateDirective,
18344
- CenturyCellTemplateDirective,
18345
- WeekNumberCellTemplateDirective,
18346
- HeaderTitleTemplateDirective,
18347
- NavigationItemTemplateDirective,
18348
- HeaderTemplateDirective,
18349
- FooterTemplateDirective
18350
- ]
18365
+ selector: 'kendo-daterange-popup-messages',
18366
+ template: ``,
18367
+ standalone: true
18351
18368
  }]
18352
- }] });
18369
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18353
18370
 
18354
18371
  /**
18355
- * The package exports:
18356
- * - `CellTemplateDirective`&mdash;The month cell template directive.
18357
- * - `MonthCellTemplateDirective`&mdash;The month cell template directive.
18358
- * - `YearCellTemplateDirective`&mdash;The year cell template directive.
18359
- * - `DecadeCellTemplateDirective`&mdash;The decade cell template directive.
18360
- * - `CenturyCellTemplateDirective`&mdash;The century cell template directive.
18361
- * - `WeekNumberCellTemplateDirective`&mdash;The month week number cell template directive.
18362
- * - `HeaderTitleTemplateDirective`&mdash;The header title template directive.
18363
- *
18364
- * @example
18365
- *
18366
- * ```ts-no-run
18367
- * // Import the MultiViewCalendar module
18368
- * import { MultiViewCalendarModule } from '@progress/kendo-angular-dateinputs';
18369
- *
18370
- * // The browser platform with a compiler
18371
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
18372
- *
18373
- * import { NgModule } from '@angular/core';
18374
- *
18375
- * // Import the app component
18376
- * import { AppComponent } from './app.component';
18377
- *
18378
- * // Define the app module
18379
- * _@NgModule({
18380
- * declarations: [AppComponent], // declare app component
18381
- * imports: [BrowserModule, MultiViewCalendarModule], // import MultiViewCalendar module
18382
- * bootstrap: [AppComponent]
18383
- * })
18384
- * export class AppModule {}
18385
- *
18386
- * // Compile and launch the module
18387
- * platformBrowserDynamic().bootstrapModule(AppModule);
18372
+ * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18388
18373
  */
18389
- class MultiViewCalendarModule {
18374
+ class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
18375
+ constructor(service) {
18376
+ super();
18377
+ this.service = service;
18378
+ }
18379
+ get override() {
18380
+ return true;
18381
+ }
18390
18382
  }
18391
- MultiViewCalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18392
- MultiViewCalendarModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, declarations: [HorizontalViewListComponent,
18393
- MultiViewCalendarLocalizedMessagesDirective,
18394
- MultiViewCalendarCustomMessagesComponent,
18395
- MultiViewCalendarComponent], imports: [CommonModule,
18396
- CalendarCommonModule,
18397
- IntlModule,
18398
- TemplatesModule,
18399
- PopupModule,
18400
- EventsModule], exports: [HorizontalViewListComponent,
18401
- MultiViewCalendarLocalizedMessagesDirective,
18402
- MultiViewCalendarCustomMessagesComponent,
18403
- MultiViewCalendarComponent,
18404
- CalendarCommonModule,
18405
- TemplatesModule] });
18406
- MultiViewCalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, providers: [
18407
- NavigationService,
18408
- CenturyViewService,
18409
- DecadeViewService,
18410
- MonthViewService,
18411
- YearViewService,
18412
- WeekNamesService
18413
- ], imports: [CommonModule,
18414
- CalendarCommonModule,
18415
- IntlModule,
18416
- TemplatesModule,
18417
- PopupModule,
18418
- EventsModule, CalendarCommonModule,
18419
- TemplatesModule] });
18420
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, decorators: [{
18421
- type: NgModule,
18383
+ DateTimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18384
+ DateTimePickerCustomMessagesComponentcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateTimePickerCustomMessagesComponent, isStandalone: true, selector: "kendo-datetimepicker-messages", providers: [
18385
+ {
18386
+ provide: DateTimePickerMessages,
18387
+ useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
18388
+ }
18389
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerCustomMessagesComponent, decorators: [{
18391
+ type: Component,
18422
18392
  args: [{
18423
- declarations: [
18424
- HorizontalViewListComponent,
18425
- MultiViewCalendarLocalizedMessagesDirective,
18426
- MultiViewCalendarCustomMessagesComponent,
18427
- MultiViewCalendarComponent
18428
- ],
18429
- exports: [
18430
- HorizontalViewListComponent,
18431
- MultiViewCalendarLocalizedMessagesDirective,
18432
- MultiViewCalendarCustomMessagesComponent,
18433
- MultiViewCalendarComponent,
18434
- CalendarCommonModule,
18435
- TemplatesModule
18436
- ],
18437
- imports: [
18438
- CommonModule,
18439
- CalendarCommonModule,
18440
- IntlModule,
18441
- TemplatesModule,
18442
- PopupModule,
18443
- EventsModule
18444
- ],
18445
18393
  providers: [
18446
- NavigationService,
18447
- CenturyViewService,
18448
- DecadeViewService,
18449
- MonthViewService,
18450
- YearViewService,
18451
- WeekNamesService
18452
- ]
18394
+ {
18395
+ provide: DateTimePickerMessages,
18396
+ useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
18397
+ }
18398
+ ],
18399
+ selector: 'kendo-datetimepicker-messages',
18400
+ template: ``,
18401
+ standalone: true
18453
18402
  }]
18454
- }] });
18403
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18455
18404
 
18456
- const COMPONENT_DIRECTIVES$3 = [
18457
- VirtualizationComponent
18458
- ];
18459
18405
  /**
18460
- * @hidden
18461
- *
18462
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18463
- * definition for the Virtualization component.
18406
+ * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18464
18407
  */
18465
- class VirtualizationModule {
18408
+ class TimePickerCustomMessagesComponent extends TimePickerMessages {
18409
+ constructor(service) {
18410
+ super();
18411
+ this.service = service;
18412
+ }
18413
+ get override() {
18414
+ return true;
18415
+ }
18466
18416
  }
18467
- VirtualizationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18468
- VirtualizationModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, declarations: [VirtualizationComponent], imports: [CommonModule], exports: [VirtualizationComponent] });
18469
- VirtualizationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, imports: [CommonModule] });
18470
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, decorators: [{
18471
- type: NgModule,
18417
+ TimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18418
+ TimePickerCustomMessagesComponentcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerCustomMessagesComponent, isStandalone: true, selector: "kendo-timepicker-messages", providers: [
18419
+ {
18420
+ provide: TimePickerMessages,
18421
+ useExisting: forwardRef(() => TimePickerCustomMessagesComponent)
18422
+ }
18423
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerCustomMessagesComponent, decorators: [{
18425
+ type: Component,
18472
18426
  args: [{
18473
- declarations: [COMPONENT_DIRECTIVES$3],
18474
- exports: [COMPONENT_DIRECTIVES$3],
18475
- imports: [CommonModule]
18427
+ providers: [
18428
+ {
18429
+ provide: TimePickerMessages,
18430
+ useExisting: forwardRef(() => TimePickerCustomMessagesComponent)
18431
+ }
18432
+ ],
18433
+ selector: 'kendo-timepicker-messages',
18434
+ template: ``,
18435
+ standalone: true
18476
18436
  }]
18477
- }] });
18437
+ }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18438
+
18439
+ /**
18440
+ * Utility array that contains all `Calendar` related components and directives
18441
+ */
18442
+ const KENDO_CALENDAR = [
18443
+ CalendarCustomMessagesComponent,
18444
+ CalendarComponent,
18445
+ CellTemplateDirective,
18446
+ CenturyCellTemplateDirective,
18447
+ DecadeCellTemplateDirective,
18448
+ FooterTemplateDirective,
18449
+ HeaderTemplateDirective,
18450
+ HeaderTitleTemplateDirective,
18451
+ MonthCellTemplateDirective,
18452
+ NavigationItemTemplateDirective,
18453
+ WeekNumberCellTemplateDirective,
18454
+ YearCellTemplateDirective,
18455
+ NavigationItemTemplateDirective
18456
+ ];
18457
+ /**
18458
+ * Utility array that contains all `MultiViewCalendar` related components and directives
18459
+ */
18460
+ const KENDO_MULTIVIEWCALENDAR = [
18461
+ MultiViewCalendarCustomMessagesComponent,
18462
+ MultiViewCalendarComponent,
18463
+ CellTemplateDirective,
18464
+ CenturyCellTemplateDirective,
18465
+ DecadeCellTemplateDirective,
18466
+ FooterTemplateDirective,
18467
+ HeaderTemplateDirective,
18468
+ HeaderTitleTemplateDirective,
18469
+ MonthCellTemplateDirective,
18470
+ NavigationItemTemplateDirective,
18471
+ WeekNumberCellTemplateDirective,
18472
+ YearCellTemplateDirective
18473
+ ];
18474
+ /**
18475
+ * Utility array that contains all `DateInput` related components and directives
18476
+ */
18477
+ const KENDO_DATEINPUT = [
18478
+ DateInputCustomMessagesComponent,
18479
+ DateInputComponent
18480
+ ];
18481
+ /**
18482
+ * Utility array that contains all `DatePicker` related components and directives
18483
+ */
18484
+ const KENDO_DATEPICKER = [
18485
+ DatePickerCustomMessagesComponent,
18486
+ DatePickerComponent,
18487
+ CellTemplateDirective,
18488
+ CenturyCellTemplateDirective,
18489
+ DecadeCellTemplateDirective,
18490
+ FooterTemplateDirective,
18491
+ HeaderTemplateDirective,
18492
+ HeaderTitleTemplateDirective,
18493
+ MonthCellTemplateDirective,
18494
+ NavigationItemTemplateDirective,
18495
+ WeekNumberCellTemplateDirective,
18496
+ YearCellTemplateDirective,
18497
+ NavigationItemTemplateDirective
18498
+ ];
18499
+ /**
18500
+ * Utility array that contains all `DateRange` related components and directives
18501
+ */
18502
+ const KENDO_DATERANGE = [
18503
+ DateRangePopupCustomMessagesComponent,
18504
+ ...KENDO_DATEINPUT,
18505
+ DateRangeEndInputDirective,
18506
+ DateRangePopupTemplateDirective,
18507
+ DateRangeComponent,
18508
+ DateRangePopupComponent,
18509
+ DateRangeSelectionDirective,
18510
+ DateRangeStartInputDirective
18511
+ ];
18512
+ /**
18513
+ * Utility array that contains all `DateTimePicker` related components and directives
18514
+ */
18515
+ const KENDO_DATETIMEPICKER = [
18516
+ DateTimePickerCustomMessagesComponent,
18517
+ DateTimePickerComponent,
18518
+ CellTemplateDirective,
18519
+ CenturyCellTemplateDirective,
18520
+ DecadeCellTemplateDirective,
18521
+ FooterTemplateDirective,
18522
+ HeaderTemplateDirective,
18523
+ HeaderTitleTemplateDirective,
18524
+ MonthCellTemplateDirective,
18525
+ NavigationItemTemplateDirective,
18526
+ WeekNumberCellTemplateDirective,
18527
+ YearCellTemplateDirective
18528
+ ];
18529
+ /**
18530
+ * Utility array that contains all `TimePicker` related components and directives
18531
+ */
18532
+ const KENDO_TIMEPICKER = [
18533
+ TimePickerCustomMessagesComponent,
18534
+ TimePickerComponent
18535
+ ];
18536
+ /**
18537
+ * Utility array that contains all `@progress/kendo-angular-dateinputs` related components and directives
18538
+ */
18539
+ const KENDO_DATEINPUTS = [
18540
+ ...KENDO_CALENDAR,
18541
+ ...KENDO_MULTIVIEWCALENDAR,
18542
+ ...KENDO_DATEINPUT,
18543
+ ...KENDO_DATEPICKER,
18544
+ ...KENDO_DATERANGE,
18545
+ ...KENDO_DATETIMEPICKER,
18546
+ ...KENDO_TIMEPICKER
18547
+ ];
18478
18548
 
18549
+ // IMPORTANT: NgModule export kept for backwards compatibility
18479
18550
  /**
18480
18551
  * The exported package module.
18481
18552
  *
@@ -18519,80 +18590,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
18519
18590
  class CalendarModule {
18520
18591
  }
18521
18592
  CalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18522
- CalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarModule, declarations: [CalendarComponent,
18523
- NavigationComponent,
18524
- CalendarCustomMessagesComponent,
18525
- CalendarLocalizedMessagesDirective,
18526
- ViewListComponent], imports: [CommonModule,
18527
- CalendarCommonModule,
18528
- MultiViewCalendarModule,
18529
- IntlModule,
18530
- TemplatesModule,
18531
- VirtualizationModule,
18532
- EventsModule,
18533
- ResizeSensorModule], exports: [CalendarComponent,
18534
- NavigationComponent,
18535
- CalendarCustomMessagesComponent,
18536
- CalendarLocalizedMessagesDirective,
18537
- ViewListComponent,
18538
- CalendarCommonModule,
18539
- TemplatesModule] });
18593
+ CalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarModule, imports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective], exports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective] });
18540
18594
  CalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarModule, providers: [
18595
+ IconsService,
18596
+ ResizeBatchService,
18541
18597
  CalendarDOMService,
18542
18598
  CenturyViewService,
18543
18599
  DecadeViewService,
18544
18600
  MonthViewService,
18545
18601
  YearViewService,
18546
- WeekNamesService
18547
- ], imports: [CommonModule,
18548
- CalendarCommonModule,
18549
- MultiViewCalendarModule,
18550
- IntlModule,
18551
- TemplatesModule,
18552
- VirtualizationModule,
18553
- EventsModule,
18554
- ResizeSensorModule, CalendarCommonModule,
18555
- TemplatesModule] });
18602
+ WeekNamesService,
18603
+ PopupService,
18604
+ NavigationService
18605
+ ], imports: [CalendarCustomMessagesComponent, CalendarComponent] });
18556
18606
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarModule, decorators: [{
18557
18607
  type: NgModule,
18558
18608
  args: [{
18559
- declarations: [
18560
- CalendarComponent,
18561
- NavigationComponent,
18562
- CalendarCustomMessagesComponent,
18563
- CalendarLocalizedMessagesDirective,
18564
- ViewListComponent
18565
- ],
18566
- exports: [
18567
- CalendarComponent,
18568
- NavigationComponent,
18569
- CalendarCustomMessagesComponent,
18570
- CalendarLocalizedMessagesDirective,
18571
- ViewListComponent,
18572
- CalendarCommonModule,
18573
- TemplatesModule
18574
- ],
18575
- imports: [
18576
- CommonModule,
18577
- CalendarCommonModule,
18578
- MultiViewCalendarModule,
18579
- IntlModule,
18580
- TemplatesModule,
18581
- VirtualizationModule,
18582
- EventsModule,
18583
- ResizeSensorModule
18584
- ],
18609
+ exports: [...KENDO_CALENDAR],
18610
+ imports: [...KENDO_CALENDAR],
18585
18611
  providers: [
18612
+ IconsService,
18613
+ ResizeBatchService,
18586
18614
  CalendarDOMService,
18587
18615
  CenturyViewService,
18588
18616
  DecadeViewService,
18589
18617
  MonthViewService,
18590
18618
  YearViewService,
18591
- WeekNamesService
18619
+ WeekNamesService,
18620
+ PopupService,
18621
+ NavigationService
18592
18622
  ]
18593
18623
  }]
18594
18624
  }] });
18595
18625
 
18626
+ // IMPORTANT: NgModule export kept for backwards compatibility
18596
18627
  /**
18597
18628
  * The exported package module.
18598
18629
  *
@@ -18630,26 +18661,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
18630
18661
  class CalendarsModule {
18631
18662
  }
18632
18663
  CalendarsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18633
- CalendarsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, imports: [CalendarModule,
18634
- MultiViewCalendarModule], exports: [CalendarModule,
18635
- MultiViewCalendarModule] });
18636
- CalendarsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, imports: [CalendarModule,
18637
- MultiViewCalendarModule, CalendarModule,
18638
- MultiViewCalendarModule] });
18664
+ CalendarsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, imports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective], exports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective] });
18665
+ CalendarsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, providers: [
18666
+ IconsService,
18667
+ ResizeBatchService,
18668
+ CalendarDOMService,
18669
+ CenturyViewService,
18670
+ DecadeViewService,
18671
+ MonthViewService,
18672
+ YearViewService,
18673
+ WeekNamesService,
18674
+ PopupService,
18675
+ NavigationService
18676
+ ], imports: [CalendarCustomMessagesComponent, CalendarComponent, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent] });
18639
18677
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarsModule, decorators: [{
18640
18678
  type: NgModule,
18641
18679
  args: [{
18642
- exports: [
18643
- CalendarModule,
18644
- MultiViewCalendarModule
18645
- ],
18646
- imports: [
18647
- CalendarModule,
18648
- MultiViewCalendarModule
18680
+ exports: [...KENDO_CALENDAR, ...KENDO_MULTIVIEWCALENDAR],
18681
+ imports: [...KENDO_CALENDAR, ...KENDO_MULTIVIEWCALENDAR],
18682
+ providers: [
18683
+ IconsService,
18684
+ ResizeBatchService,
18685
+ CalendarDOMService,
18686
+ CenturyViewService,
18687
+ DecadeViewService,
18688
+ MonthViewService,
18689
+ YearViewService,
18690
+ WeekNamesService,
18691
+ PopupService,
18692
+ NavigationService
18649
18693
  ]
18650
18694
  }]
18651
18695
  }] });
18652
18696
 
18697
+ // IMPORTANT: NgModule export kept for backwards compatibility
18653
18698
  /**
18654
18699
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18655
18700
  * definition for the DateInput component.
@@ -18657,90 +18702,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
18657
18702
  class DateInputModule {
18658
18703
  }
18659
18704
  DateInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18660
- DateInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, declarations: [DateInputComponent,
18661
- DateInputCustomMessagesComponent,
18662
- DateInputLocalizedMessagesDirective], imports: [CommonModule, IntlModule, EventsModule, IconsModule], exports: [DateInputComponent,
18663
- DateInputCustomMessagesComponent,
18664
- DateInputLocalizedMessagesDirective] });
18665
- DateInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, imports: [CommonModule, IntlModule, EventsModule, IconsModule] });
18705
+ DateInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, imports: [DateInputCustomMessagesComponent, DateInputComponent], exports: [DateInputCustomMessagesComponent, DateInputComponent] });
18706
+ DateInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, providers: [
18707
+ IconsService
18708
+ ], imports: [KENDO_DATEINPUT] });
18666
18709
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputModule, decorators: [{
18667
18710
  type: NgModule,
18668
18711
  args: [{
18669
- declarations: [
18670
- DateInputComponent,
18671
- DateInputCustomMessagesComponent,
18672
- DateInputLocalizedMessagesDirective
18673
- ],
18674
- exports: [
18675
- DateInputComponent,
18676
- DateInputCustomMessagesComponent,
18677
- DateInputLocalizedMessagesDirective
18678
- ],
18679
- imports: [CommonModule, IntlModule, EventsModule, IconsModule]
18680
- }]
18681
- }] });
18682
-
18683
- /**
18684
- * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18685
- */
18686
- class DatePickerCustomMessagesComponent extends DatePickerMessages {
18687
- constructor(service) {
18688
- super();
18689
- this.service = service;
18690
- }
18691
- get override() {
18692
- return true;
18693
- }
18694
- }
18695
- DatePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18696
- DatePickerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerCustomMessagesComponent, selector: "kendo-datepicker-messages", providers: [
18697
- {
18698
- provide: DatePickerMessages,
18699
- useExisting: forwardRef(() => DatePickerCustomMessagesComponent)
18700
- }
18701
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18702
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerCustomMessagesComponent, decorators: [{
18703
- type: Component,
18704
- args: [{
18712
+ exports: [...KENDO_DATEINPUT],
18713
+ imports: [...KENDO_DATEINPUT],
18705
18714
  providers: [
18706
- {
18707
- provide: DatePickerMessages,
18708
- useExisting: forwardRef(() => DatePickerCustomMessagesComponent)
18709
- }
18710
- ],
18711
- selector: 'kendo-datepicker-messages',
18712
- template: ``
18713
- }]
18714
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18715
-
18716
- const ADAPTIVE_MODULES = [
18717
- NavigationModule,
18718
- ResizeSensorModule,
18719
- ButtonModule
18720
- ];
18721
- /**
18722
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18723
- * definition for the modules specific to the Adaptive Mode.
18724
- */
18725
- class AdaptiveModule {
18726
- }
18727
- AdaptiveModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18728
- AdaptiveModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, imports: [NavigationModule,
18729
- ResizeSensorModule,
18730
- ButtonModule], exports: [NavigationModule,
18731
- ResizeSensorModule,
18732
- ButtonModule] });
18733
- AdaptiveModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, imports: [ADAPTIVE_MODULES, NavigationModule,
18734
- ResizeSensorModule,
18735
- ButtonModule] });
18736
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, decorators: [{
18737
- type: NgModule,
18738
- args: [{
18739
- imports: [...ADAPTIVE_MODULES],
18740
- exports: [...ADAPTIVE_MODULES]
18715
+ IconsService
18716
+ ]
18741
18717
  }]
18742
18718
  }] });
18743
18719
 
18720
+ // IMPORTANT: NgModule export kept for backwards compatibility
18744
18721
  /**
18745
18722
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18746
18723
  * definition for the DatePicker component.
@@ -18748,127 +18725,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
18748
18725
  class DatePickerModule {
18749
18726
  }
18750
18727
  DatePickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18751
- DatePickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, declarations: [DatePickerComponent,
18752
- DatePickerCustomMessagesComponent,
18753
- DatePickerLocalizedMessagesDirective], imports: [CommonModule,
18754
- DateInputModule,
18755
- CalendarModule,
18756
- IntlModule,
18757
- PopupModule,
18758
- TemplatesModule,
18759
- EventsModule,
18760
- IconsModule,
18761
- AdaptiveModule], exports: [DatePickerComponent,
18762
- DatePickerCustomMessagesComponent,
18763
- DatePickerLocalizedMessagesDirective,
18764
- TemplatesModule,
18765
- ToggleButtonTabStopModule] });
18766
- DatePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, providers: [{ provide: TOUCH_ENABLED, useValue: touchEnabled }], imports: [CommonModule,
18767
- DateInputModule,
18768
- CalendarModule,
18769
- IntlModule,
18770
- PopupModule,
18771
- TemplatesModule,
18772
- EventsModule,
18773
- IconsModule,
18774
- AdaptiveModule, TemplatesModule,
18775
- ToggleButtonTabStopModule] });
18728
+ DatePickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, imports: [DatePickerCustomMessagesComponent, DatePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective], exports: [DatePickerCustomMessagesComponent, DatePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective] });
18729
+ DatePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, providers: [
18730
+ // DateInputModule providers
18731
+ IconsService,
18732
+ // CalendarModule providers
18733
+ ResizeBatchService,
18734
+ CalendarDOMService,
18735
+ CenturyViewService,
18736
+ DecadeViewService,
18737
+ MonthViewService,
18738
+ YearViewService,
18739
+ WeekNamesService,
18740
+ PopupService,
18741
+ NavigationService
18742
+ ], imports: [DatePickerCustomMessagesComponent, DatePickerComponent] });
18776
18743
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerModule, decorators: [{
18777
18744
  type: NgModule,
18778
18745
  args: [{
18779
- declarations: [
18780
- DatePickerComponent,
18781
- DatePickerCustomMessagesComponent,
18782
- DatePickerLocalizedMessagesDirective
18783
- ],
18784
- exports: [
18785
- DatePickerComponent,
18786
- DatePickerCustomMessagesComponent,
18787
- DatePickerLocalizedMessagesDirective,
18788
- TemplatesModule,
18789
- ToggleButtonTabStopModule
18790
- ],
18791
- imports: [
18792
- CommonModule,
18793
- DateInputModule,
18794
- CalendarModule,
18795
- IntlModule,
18796
- PopupModule,
18797
- TemplatesModule,
18798
- EventsModule,
18799
- IconsModule,
18800
- AdaptiveModule
18801
- ],
18802
- providers: [{ provide: TOUCH_ENABLED, useValue: touchEnabled }]
18803
- }]
18804
- }] });
18805
-
18806
- /**
18807
- * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18808
- */
18809
- class DateRangePopupCustomMessagesComponent extends DateRangePopupMessages {
18810
- constructor(service) {
18811
- super();
18812
- this.service = service;
18813
- }
18814
- get override() {
18815
- return true;
18816
- }
18817
- }
18818
- DateRangePopupCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18819
- DateRangePopupCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateRangePopupCustomMessagesComponent, selector: "kendo-daterange-popup-messages", providers: [
18820
- {
18821
- provide: DateRangePopupMessages,
18822
- useExisting: forwardRef(() => DateRangePopupCustomMessagesComponent)
18823
- }
18824
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18825
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangePopupCustomMessagesComponent, decorators: [{
18826
- type: Component,
18827
- args: [{
18746
+ exports: [...KENDO_DATEPICKER],
18747
+ imports: [...KENDO_DATEPICKER],
18828
18748
  providers: [
18829
- {
18830
- provide: DateRangePopupMessages,
18831
- useExisting: forwardRef(() => DateRangePopupCustomMessagesComponent)
18832
- }
18833
- ],
18834
- selector: 'kendo-daterange-popup-messages',
18835
- template: ``
18749
+ // DateInputModule providers
18750
+ IconsService,
18751
+ // CalendarModule providers
18752
+ ResizeBatchService,
18753
+ CalendarDOMService,
18754
+ CenturyViewService,
18755
+ DecadeViewService,
18756
+ MonthViewService,
18757
+ YearViewService,
18758
+ WeekNamesService,
18759
+ PopupService,
18760
+ NavigationService
18761
+ ]
18836
18762
  }]
18837
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18763
+ }] });
18838
18764
 
18839
- const COMPONENT_DIRECTIVES$2 = [
18840
- DateRangeComponent,
18841
- DateRangePopupComponent,
18842
- DateRangePopupTemplateDirective,
18843
- DateRangeSelectionDirective,
18844
- DateRangeStartInputDirective,
18845
- DateRangeEndInputDirective,
18846
- DateRangePopupCustomMessagesComponent,
18847
- DateRangePopupLocalizedMessagesDirective
18848
- ];
18849
- const COMPONENT_MODULES$2 = [
18850
- MultiViewCalendarModule,
18851
- DateInputModule,
18852
- PopupModule,
18853
- EventsModule,
18854
- AdaptiveModule
18855
- ];
18765
+ // IMPORTANT: NgModule export kept for backwards compatibility
18856
18766
  /**
18857
- * The exported package module.
18858
- *
18859
- * The package exports:
18860
- * - `DateRangeComponent`&mdash;The DateRange component class.
18861
- * - `DateRangePopupComponent`&mdash;The DateRangePopup component class.
18862
- * - `DateRangeSelectionDirective`&mdash;The MultiviewCalendar date range selection directive.
18863
- * - `DateRangeEndInputDirective`&mdash;The end DateInput date range selection directive.
18864
- * - `DateRangeStartInputDirective`&mdash;The start DateInput date range selection directive.
18865
- * - `DateRangePopupTemplateDirective`&mdash;The DateRangePopup content template directive.
18767
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18768
+ * definition for the Date Inputs components.
18866
18769
  *
18867
18770
  * @example
18868
18771
  *
18869
18772
  * ```ts-no-run
18870
- * // Import the DateRange module
18871
- * import { DateRangeModule } from '@progress/kendo-angular-dateinputs';
18773
+ * // Import the Date Inputs module
18774
+ * import { DateInputsModule } from '@progress/kendo-angular-dateinputs';
18872
18775
  *
18873
18776
  * // The browser platform with a compiler
18874
18777
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
@@ -18880,8 +18783,8 @@ const COMPONENT_MODULES$2 = [
18880
18783
  *
18881
18784
  * // Define the app module
18882
18785
  * _@NgModule({
18883
- * declarations: [AppComponent], // declare app component
18884
- * imports: [BrowserModule, DateRangeModule], // import DateRange module
18786
+ * declarations: [AppComponent], // declare the app component
18787
+ * imports: [BrowserModule, DateInputsModule], // import the Date Inputs module
18885
18788
  * bootstrap: [AppComponent]
18886
18789
  * })
18887
18790
  * export class AppModule {}
@@ -18891,102 +18794,59 @@ const COMPONENT_MODULES$2 = [
18891
18794
  *
18892
18795
  * ```
18893
18796
  */
18894
- class DateRangeModule {
18797
+ class DateInputsModule {
18895
18798
  }
18896
- DateRangeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18897
- DateRangeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, declarations: [DateRangeComponent,
18898
- DateRangePopupComponent,
18899
- DateRangePopupTemplateDirective,
18900
- DateRangeSelectionDirective,
18901
- DateRangeStartInputDirective,
18902
- DateRangeEndInputDirective,
18903
- DateRangePopupCustomMessagesComponent,
18904
- DateRangePopupLocalizedMessagesDirective], imports: [CommonModule, MultiViewCalendarModule,
18905
- DateInputModule,
18906
- PopupModule,
18907
- EventsModule,
18908
- AdaptiveModule], exports: [DateRangeComponent,
18909
- DateRangePopupComponent,
18910
- DateRangePopupTemplateDirective,
18911
- DateRangeSelectionDirective,
18912
- DateRangeStartInputDirective,
18913
- DateRangeEndInputDirective,
18914
- DateRangePopupCustomMessagesComponent,
18915
- DateRangePopupLocalizedMessagesDirective] });
18916
- DateRangeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, imports: [CommonModule, COMPONENT_MODULES$2] });
18917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, decorators: [{
18799
+ DateInputsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18800
+ DateInputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, imports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, DateInputCustomMessagesComponent, DateInputComponent, DatePickerCustomMessagesComponent, DatePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeEndInputDirective, DateRangePopupTemplateDirective, DateRangeComponent, DateRangePopupComponent, DateRangeSelectionDirective, DateRangeStartInputDirective, DateTimePickerCustomMessagesComponent, DateTimePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, TimePickerCustomMessagesComponent, TimePickerComponent], exports: [CalendarCustomMessagesComponent, CalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, DateInputCustomMessagesComponent, DateInputComponent, DatePickerCustomMessagesComponent, DatePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, NavigationItemTemplateDirective, DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeEndInputDirective, DateRangePopupTemplateDirective, DateRangeComponent, DateRangePopupComponent, DateRangeSelectionDirective, DateRangeStartInputDirective, DateTimePickerCustomMessagesComponent, DateTimePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective, TimePickerCustomMessagesComponent, TimePickerComponent] });
18801
+ DateInputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, providers: [
18802
+ // CalendarModule providers
18803
+ IconsService,
18804
+ ResizeBatchService,
18805
+ CalendarDOMService,
18806
+ CenturyViewService,
18807
+ DecadeViewService,
18808
+ MonthViewService,
18809
+ YearViewService,
18810
+ WeekNamesService,
18811
+ PopupService,
18812
+ NavigationService,
18813
+ // TimePickerModule providers
18814
+ TimePickerDOMService,
18815
+ HoursService,
18816
+ MinutesService,
18817
+ SecondsService,
18818
+ MillisecondsService,
18819
+ DayPeriodService
18820
+ ], imports: [CalendarCustomMessagesComponent, CalendarComponent, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, DateInputCustomMessagesComponent, DateInputComponent, DatePickerCustomMessagesComponent, DatePickerComponent, DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeComponent, DateRangePopupComponent, DateTimePickerCustomMessagesComponent, DateTimePickerComponent, TimePickerCustomMessagesComponent, TimePickerComponent] });
18821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, decorators: [{
18918
18822
  type: NgModule,
18919
18823
  args: [{
18920
- declarations: [COMPONENT_DIRECTIVES$2],
18921
- exports: [COMPONENT_DIRECTIVES$2],
18922
- imports: [CommonModule, COMPONENT_MODULES$2]
18923
- }]
18924
- }] });
18925
-
18926
- /**
18927
- * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18928
- */
18929
- class TimePickerCustomMessagesComponent extends TimePickerMessages {
18930
- constructor(service) {
18931
- super();
18932
- this.service = service;
18933
- }
18934
- get override() {
18935
- return true;
18936
- }
18937
- }
18938
- TimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18939
- TimePickerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: TimePickerCustomMessagesComponent, selector: "kendo-timepicker-messages", providers: [
18940
- {
18941
- provide: TimePickerMessages,
18942
- useExisting: forwardRef(() => TimePickerCustomMessagesComponent)
18943
- }
18944
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
18945
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerCustomMessagesComponent, decorators: [{
18946
- type: Component,
18947
- args: [{
18824
+ exports: [...KENDO_DATEINPUTS],
18825
+ imports: [...KENDO_DATEINPUTS],
18948
18826
  providers: [
18949
- {
18950
- provide: TimePickerMessages,
18951
- useExisting: forwardRef(() => TimePickerCustomMessagesComponent)
18952
- }
18953
- ],
18954
- selector: 'kendo-timepicker-messages',
18955
- template: ``
18827
+ // CalendarModule providers
18828
+ IconsService,
18829
+ ResizeBatchService,
18830
+ CalendarDOMService,
18831
+ CenturyViewService,
18832
+ DecadeViewService,
18833
+ MonthViewService,
18834
+ YearViewService,
18835
+ WeekNamesService,
18836
+ PopupService,
18837
+ NavigationService,
18838
+ // TimePickerModule providers
18839
+ TimePickerDOMService,
18840
+ HoursService,
18841
+ MinutesService,
18842
+ SecondsService,
18843
+ MillisecondsService,
18844
+ DayPeriodService
18845
+ ]
18956
18846
  }]
18957
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18847
+ }] });
18958
18848
 
18959
- const COMPONENT_DIRECTIVES$1 = [
18960
- TimePickerLocalizedMessagesDirective,
18961
- TimeListComponent,
18962
- TimePickerCustomMessagesComponent,
18963
- TimePickerComponent,
18964
- TimeSelectorLocalizedMessagesDirective,
18965
- TimeSelectorCustomMessagesComponent,
18966
- TimeSelectorComponent
18967
- ];
18968
- const COMPONENT_MODULES$1 = [
18969
- DateInputModule,
18970
- IntlModule,
18971
- PopupModule,
18972
- VirtualizationModule,
18973
- EventsModule,
18974
- IconsModule,
18975
- AdaptiveModule,
18976
- ToggleButtonTabStopModule
18977
- ];
18978
- const providers = [
18979
- TimePickerDOMService,
18980
- HoursService,
18981
- MinutesService,
18982
- SecondsService,
18983
- MillisecondsService,
18984
- DayPeriodService,
18985
- {
18986
- provide: TOUCH_ENABLED,
18987
- useValue: touchEnabled
18988
- }
18989
- ];
18849
+ // IMPORTANT: NgModule export kept for backwards compatibility
18990
18850
  /**
18991
18851
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18992
18852
  * definition for the TimePicker component.
@@ -18994,156 +18854,177 @@ const providers = [
18994
18854
  class TimePickerModule {
18995
18855
  }
18996
18856
  TimePickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18997
- TimePickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, declarations: [TimePickerLocalizedMessagesDirective,
18998
- TimeListComponent,
18999
- TimePickerCustomMessagesComponent,
19000
- TimePickerComponent,
19001
- TimeSelectorLocalizedMessagesDirective,
19002
- TimeSelectorCustomMessagesComponent,
19003
- TimeSelectorComponent], imports: [CommonModule, DateInputModule,
19004
- IntlModule,
19005
- PopupModule,
19006
- VirtualizationModule,
19007
- EventsModule,
19008
- IconsModule,
19009
- AdaptiveModule,
19010
- ToggleButtonTabStopModule], exports: [TimePickerLocalizedMessagesDirective,
19011
- TimeListComponent,
19012
- TimePickerCustomMessagesComponent,
19013
- TimePickerComponent,
19014
- TimeSelectorLocalizedMessagesDirective,
19015
- TimeSelectorCustomMessagesComponent,
19016
- TimeSelectorComponent] });
19017
- TimePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, providers: providers, imports: [CommonModule, COMPONENT_MODULES$1] });
18857
+ TimePickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, imports: [TimePickerCustomMessagesComponent, TimePickerComponent], exports: [TimePickerCustomMessagesComponent, TimePickerComponent] });
18858
+ TimePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, providers: [
18859
+ IconsService,
18860
+ PopupService,
18861
+ ResizeBatchService,
18862
+ TimePickerDOMService,
18863
+ HoursService,
18864
+ MinutesService,
18865
+ SecondsService,
18866
+ MillisecondsService,
18867
+ DayPeriodService,
18868
+ ], imports: [KENDO_TIMEPICKER] });
19018
18869
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerModule, decorators: [{
19019
18870
  type: NgModule,
19020
18871
  args: [{
19021
- declarations: [COMPONENT_DIRECTIVES$1],
19022
- exports: [COMPONENT_DIRECTIVES$1],
19023
- imports: [CommonModule, ...COMPONENT_MODULES$1],
19024
- providers: providers
18872
+ exports: [...KENDO_TIMEPICKER],
18873
+ imports: [...KENDO_TIMEPICKER],
18874
+ providers: [
18875
+ IconsService,
18876
+ PopupService,
18877
+ ResizeBatchService,
18878
+ TimePickerDOMService,
18879
+ HoursService,
18880
+ MinutesService,
18881
+ SecondsService,
18882
+ MillisecondsService,
18883
+ DayPeriodService,
18884
+ ]
19025
18885
  }]
19026
18886
  }] });
19027
18887
 
18888
+ // IMPORTANT: NgModule export kept for backwards compatibility
19028
18889
  /**
19029
- * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
18890
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
18891
+ * definition for the DateTimePicker component.
19030
18892
  */
19031
- class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
19032
- constructor(service) {
19033
- super();
19034
- this.service = service;
19035
- }
19036
- get override() {
19037
- return true;
19038
- }
18893
+ class DateTimePickerModule {
19039
18894
  }
19040
- DateTimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
19041
- DateTimePickerCustomMessagesComponentcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DateTimePickerCustomMessagesComponent, selector: "kendo-datetimepicker-messages", providers: [
19042
- {
19043
- provide: DateTimePickerMessages,
19044
- useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
19045
- }
19046
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
19047
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerCustomMessagesComponent, decorators: [{
19048
- type: Component,
18895
+ DateTimePickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18896
+ DateTimePickerModulemod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, imports: [DateTimePickerCustomMessagesComponent, DateTimePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective], exports: [DateTimePickerCustomMessagesComponent, DateTimePickerComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective] });
18897
+ DateTimePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, providers: [
18898
+ // CalendarModule providers
18899
+ IconsService,
18900
+ ResizeBatchService,
18901
+ CalendarDOMService,
18902
+ CenturyViewService,
18903
+ DecadeViewService,
18904
+ MonthViewService,
18905
+ YearViewService,
18906
+ WeekNamesService,
18907
+ PopupService,
18908
+ NavigationService,
18909
+ // TimePickerModule providers
18910
+ TimePickerDOMService,
18911
+ HoursService,
18912
+ MinutesService,
18913
+ SecondsService,
18914
+ MillisecondsService,
18915
+ DayPeriodService,
18916
+ ], imports: [DateTimePickerCustomMessagesComponent, DateTimePickerComponent] });
18917
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, decorators: [{
18918
+ type: NgModule,
19049
18919
  args: [{
18920
+ exports: [...KENDO_DATETIMEPICKER],
18921
+ imports: [...KENDO_DATETIMEPICKER],
19050
18922
  providers: [
19051
- {
19052
- provide: DateTimePickerMessages,
19053
- useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
19054
- }
19055
- ],
19056
- selector: 'kendo-datetimepicker-messages',
19057
- template: ``
18923
+ // CalendarModule providers
18924
+ IconsService,
18925
+ ResizeBatchService,
18926
+ CalendarDOMService,
18927
+ CenturyViewService,
18928
+ DecadeViewService,
18929
+ MonthViewService,
18930
+ YearViewService,
18931
+ WeekNamesService,
18932
+ PopupService,
18933
+ NavigationService,
18934
+ // TimePickerModule providers
18935
+ TimePickerDOMService,
18936
+ HoursService,
18937
+ MinutesService,
18938
+ SecondsService,
18939
+ MillisecondsService,
18940
+ DayPeriodService,
18941
+ ]
19058
18942
  }]
19059
- }], ctorParameters: function () { return [{ type: i1$1.LocalizationService }]; } });
18943
+ }] });
19060
18944
 
19061
- const COMPONENT_DIRECTIVES = [
19062
- DateTimePickerComponent,
19063
- DateTimePickerCustomMessagesComponent,
19064
- LocalizedMessagesDirective
19065
- ];
18945
+ // IMPORTANT: NgModule export kept for backwards compatibility
19066
18946
  /**
19067
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
19068
- * definition for the DateTimePicker component.
18947
+ * The package exports:
18948
+ * - `CellTemplateDirective`&mdash;The month cell template directive.
18949
+ * - `MonthCellTemplateDirective`&mdash;The month cell template directive.
18950
+ * - `YearCellTemplateDirective`&mdash;The year cell template directive.
18951
+ * - `DecadeCellTemplateDirective`&mdash;The decade cell template directive.
18952
+ * - `CenturyCellTemplateDirective`&mdash;The century cell template directive.
18953
+ * - `WeekNumberCellTemplateDirective`&mdash;The month week number cell template directive.
18954
+ * - `HeaderTitleTemplateDirective`&mdash;The header title template directive.
18955
+ *
18956
+ * @example
18957
+ *
18958
+ * ```ts-no-run
18959
+ * // Import the MultiViewCalendar module
18960
+ * import { MultiViewCalendarModule } from '@progress/kendo-angular-dateinputs';
18961
+ *
18962
+ * // The browser platform with a compiler
18963
+ * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
18964
+ *
18965
+ * import { NgModule } from '@angular/core';
18966
+ *
18967
+ * // Import the app component
18968
+ * import { AppComponent } from './app.component';
18969
+ *
18970
+ * // Define the app module
18971
+ * _@NgModule({
18972
+ * declarations: [AppComponent], // declare app component
18973
+ * imports: [BrowserModule, MultiViewCalendarModule], // import MultiViewCalendar module
18974
+ * bootstrap: [AppComponent]
18975
+ * })
18976
+ * export class AppModule {}
18977
+ *
18978
+ * // Compile and launch the module
18979
+ * platformBrowserDynamic().bootstrapModule(AppModule);
19069
18980
  */
19070
- class DateTimePickerModule {
18981
+ class MultiViewCalendarModule {
19071
18982
  }
19072
- DateTimePickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19073
- DateTimePickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, declarations: [DateTimePickerComponent,
19074
- DateTimePickerCustomMessagesComponent,
19075
- LocalizedMessagesDirective], imports: [CommonModule,
19076
- IntlModule,
19077
- DateInputModule,
19078
- CalendarModule,
19079
- TimePickerModule,
19080
- PopupModule,
19081
- EventsModule,
19082
- TemplatesModule,
19083
- IconsModule,
19084
- AdaptiveModule], exports: [DateTimePickerComponent,
19085
- DateTimePickerCustomMessagesComponent,
19086
- LocalizedMessagesDirective, TemplatesModule,
19087
- ToggleButtonTabStopModule] });
19088
- DateTimePickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, providers: [
19089
- { provide: TOUCH_ENABLED, useValue: touchEnabled }
19090
- ], imports: [CommonModule,
19091
- IntlModule,
19092
- DateInputModule,
19093
- CalendarModule,
19094
- TimePickerModule,
19095
- PopupModule,
19096
- EventsModule,
19097
- TemplatesModule,
19098
- IconsModule,
19099
- AdaptiveModule, TemplatesModule,
19100
- ToggleButtonTabStopModule] });
19101
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerModule, decorators: [{
18983
+ MultiViewCalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
18984
+ MultiViewCalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, imports: [MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective], exports: [MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent, CellTemplateDirective, CenturyCellTemplateDirective, DecadeCellTemplateDirective, FooterTemplateDirective, HeaderTemplateDirective, HeaderTitleTemplateDirective, MonthCellTemplateDirective, NavigationItemTemplateDirective, WeekNumberCellTemplateDirective, YearCellTemplateDirective] });
18985
+ MultiViewCalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, providers: [
18986
+ PopupService,
18987
+ NavigationService,
18988
+ CenturyViewService,
18989
+ DecadeViewService,
18990
+ MonthViewService,
18991
+ YearViewService,
18992
+ WeekNamesService
18993
+ ], imports: [MultiViewCalendarCustomMessagesComponent, MultiViewCalendarComponent] });
18994
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MultiViewCalendarModule, decorators: [{
19102
18995
  type: NgModule,
19103
18996
  args: [{
19104
- declarations: [
19105
- ...COMPONENT_DIRECTIVES
19106
- ],
19107
- exports: [
19108
- ...COMPONENT_DIRECTIVES,
19109
- TemplatesModule,
19110
- ToggleButtonTabStopModule
19111
- ],
19112
- imports: [
19113
- CommonModule,
19114
- IntlModule,
19115
- DateInputModule,
19116
- CalendarModule,
19117
- TimePickerModule,
19118
- PopupModule,
19119
- EventsModule,
19120
- TemplatesModule,
19121
- IconsModule,
19122
- AdaptiveModule
19123
- ],
18997
+ exports: [...KENDO_MULTIVIEWCALENDAR],
18998
+ imports: [...KENDO_MULTIVIEWCALENDAR],
19124
18999
  providers: [
19125
- { provide: TOUCH_ENABLED, useValue: touchEnabled }
19000
+ PopupService,
19001
+ NavigationService,
19002
+ CenturyViewService,
19003
+ DecadeViewService,
19004
+ MonthViewService,
19005
+ YearViewService,
19006
+ WeekNamesService
19126
19007
  ]
19127
19008
  }]
19128
19009
  }] });
19129
19010
 
19130
- const COMPONENT_MODULES = [
19131
- CalendarsModule,
19132
- DateInputModule,
19133
- DatePickerModule,
19134
- TimePickerModule,
19135
- DateRangeModule,
19136
- DateTimePickerModule
19137
- ];
19011
+ // IMPORTANT: NgModule export kept for backwards compatibility
19138
19012
  /**
19139
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
19140
- * definition for the Date Inputs components.
19013
+ * The exported package module.
19014
+ *
19015
+ * The package exports:
19016
+ * - `DateRangeComponent`&mdash;The DateRange component class.
19017
+ * - `DateRangePopupComponent`&mdash;The DateRangePopup component class.
19018
+ * - `DateRangeSelectionDirective`&mdash;The MultiviewCalendar date range selection directive.
19019
+ * - `DateRangeEndInputDirective`&mdash;The end DateInput date range selection directive.
19020
+ * - `DateRangeStartInputDirective`&mdash;The start DateInput date range selection directive.
19021
+ * - `DateRangePopupTemplateDirective`&mdash;The DateRangePopup content template directive.
19141
19022
  *
19142
19023
  * @example
19143
19024
  *
19144
19025
  * ```ts-no-run
19145
- * // Import the Date Inputs module
19146
- * import { DateInputsModule } from '@progress/kendo-angular-dateinputs';
19026
+ * // Import the DateRange module
19027
+ * import { DateRangeModule } from '@progress/kendo-angular-dateinputs';
19147
19028
  *
19148
19029
  * // The browser platform with a compiler
19149
19030
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
@@ -19155,8 +19036,8 @@ const COMPONENT_MODULES = [
19155
19036
  *
19156
19037
  * // Define the app module
19157
19038
  * _@NgModule({
19158
- * declarations: [AppComponent], // declare the app component
19159
- * imports: [BrowserModule, DateInputsModule], // import the Date Inputs module
19039
+ * declarations: [AppComponent], // declare app component
19040
+ * imports: [BrowserModule, DateRangeModule], // import DateRange module
19160
19041
  * bootstrap: [AppComponent]
19161
19042
  * })
19162
19043
  * export class AppModule {}
@@ -19166,31 +19047,75 @@ const COMPONENT_MODULES = [
19166
19047
  *
19167
19048
  * ```
19168
19049
  */
19169
- class DateInputsModule {
19050
+ class DateRangeModule {
19170
19051
  }
19171
- DateInputsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19172
- DateInputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, imports: [CalendarsModule,
19173
- DateInputModule,
19174
- DatePickerModule,
19175
- TimePickerModule,
19176
- DateRangeModule,
19177
- DateTimePickerModule], exports: [CalendarsModule,
19178
- DateInputModule,
19179
- DatePickerModule,
19180
- TimePickerModule,
19181
- DateRangeModule,
19182
- DateTimePickerModule] });
19183
- DateInputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, imports: [COMPONENT_MODULES, CalendarsModule,
19184
- DateInputModule,
19185
- DatePickerModule,
19186
- TimePickerModule,
19187
- DateRangeModule,
19188
- DateTimePickerModule] });
19189
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateInputsModule, decorators: [{
19052
+ DateRangeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19053
+ DateRangeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, imports: [DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeEndInputDirective, DateRangePopupTemplateDirective, DateRangeComponent, DateRangePopupComponent, DateRangeSelectionDirective, DateRangeStartInputDirective], exports: [DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeEndInputDirective, DateRangePopupTemplateDirective, DateRangeComponent, DateRangePopupComponent, DateRangeSelectionDirective, DateRangeStartInputDirective] });
19054
+ DateRangeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, providers: [
19055
+ // MultiViewCalendarModule providers
19056
+ PopupService,
19057
+ NavigationService,
19058
+ CenturyViewService,
19059
+ DecadeViewService,
19060
+ MonthViewService,
19061
+ YearViewService,
19062
+ WeekNamesService,
19063
+ // DateInputModule providers
19064
+ IconsService,
19065
+ // AdaptiveModule providers
19066
+ ResizeBatchService
19067
+ ], imports: [DateRangePopupCustomMessagesComponent, DateInputCustomMessagesComponent, DateInputComponent, DateRangeComponent, DateRangePopupComponent] });
19068
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateRangeModule, decorators: [{
19190
19069
  type: NgModule,
19191
19070
  args: [{
19192
- exports: COMPONENT_MODULES,
19193
- imports: COMPONENT_MODULES
19071
+ exports: [...KENDO_DATERANGE],
19072
+ imports: [...KENDO_DATERANGE],
19073
+ providers: [
19074
+ // MultiViewCalendarModule providers
19075
+ PopupService,
19076
+ NavigationService,
19077
+ CenturyViewService,
19078
+ DecadeViewService,
19079
+ MonthViewService,
19080
+ YearViewService,
19081
+ WeekNamesService,
19082
+ // DateInputModule providers
19083
+ IconsService,
19084
+ // AdaptiveModule providers
19085
+ ResizeBatchService
19086
+ ]
19087
+ }]
19088
+ }] });
19089
+
19090
+ const KENDO_ADAPTIVE = [
19091
+ ...KENDO_RESIZESENSOR,
19092
+ ...KENDO_BUTTON,
19093
+ ...KENDO_NAVIGATION
19094
+ ];
19095
+ //IMPORTANT: This module is not needed and can be removed in the following major release.
19096
+ //The reason to keep it is that the module used to be public prior the migration to standalone.
19097
+ /**
19098
+ * @hidden
19099
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
19100
+ * definition for the modules specific to the Adaptive Mode.
19101
+ */
19102
+ class AdaptiveModule {
19103
+ }
19104
+ AdaptiveModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19105
+ AdaptiveModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, imports: [i1$2.ResizeSensorComponent, i2.ButtonComponent, i3.ActionSheetComponent, i3.ActionSheetHeaderTemplateDirective, i3.ActionSheetItemTemplateDirective, i3.ActionSheetContentTemplateDirective, i3.ActionSheetFooterTemplateDirective, i3.ActionSheetTemplateDirective, i3.AppBarComponent, i3.AppBarSectionComponent, i3.AppBarSpacerComponent, i3.BottomNavigationComponent, i3.BottomNavigationItemTemplateDirective, i3.BreadCrumbComponent, i3.BreadCrumbItemTemplateDirective], exports: [i1$2.ResizeSensorComponent, i2.ButtonComponent, i3.ActionSheetComponent, i3.ActionSheetHeaderTemplateDirective, i3.ActionSheetItemTemplateDirective, i3.ActionSheetContentTemplateDirective, i3.ActionSheetFooterTemplateDirective, i3.ActionSheetTemplateDirective, i3.AppBarComponent, i3.AppBarSectionComponent, i3.AppBarSpacerComponent, i3.BottomNavigationComponent, i3.BottomNavigationItemTemplateDirective, i3.BreadCrumbComponent, i3.BreadCrumbItemTemplateDirective] });
19106
+ AdaptiveModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, providers: [
19107
+ ResizeBatchService,
19108
+ IconsService
19109
+ ], imports: [i1$2.ResizeSensorComponent, i2.ButtonComponent, i3.ActionSheetComponent, i3.AppBarComponent, i3.AppBarSectionComponent, i3.AppBarSpacerComponent, i3.BottomNavigationComponent, i3.BreadCrumbComponent] });
19110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, decorators: [{
19111
+ type: NgModule,
19112
+ args: [{
19113
+ imports: [...KENDO_ADAPTIVE],
19114
+ exports: [...KENDO_ADAPTIVE],
19115
+ providers: [
19116
+ ResizeBatchService,
19117
+ IconsService
19118
+ ]
19194
19119
  }]
19195
19120
  }] });
19196
19121
 
@@ -19198,5 +19123,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
19198
19123
  * Generated bundle index. Do not edit.
19199
19124
  */
19200
19125
 
19201
- export { AdaptiveModule, CalendarCommonModule, CalendarComponent, CalendarCustomMessagesComponent, CalendarLocalizedMessagesDirective, CalendarModule, CalendarViewEnum, CalendarsModule, CellTemplateDirective, CenturyCellTemplateDirective, DateInputComponent, DateInputCustomMessagesComponent, DateInputLocalizedMessagesDirective, DateInputModule, DateInputsModule, DatePickerComponent, DatePickerCustomMessagesComponent, DatePickerLocalizedMessagesDirective, DatePickerModule, DateRangeComponent, DateRangeEndInputDirective, DateRangeModule, DateRangePopupComponent, DateRangePopupCustomMessagesComponent, DateRangePopupLocalizedMessagesDirective, DateRangePopupTemplateDirective, DateRangeSelectionDirective, DateRangeService, DateRangeStartInputDirective, DateTimePickerComponent, DateTimePickerCustomMessagesComponent, DateTimePickerModule, DecadeCellTemplateDirective, FooterComponent, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, HeaderTitleTemplateDirective, HorizontalViewListComponent, KForOf, LocalizedMessagesDirective, MonthCellTemplateDirective, MultiViewCalendarComponent, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarLocalizedMessagesDirective, MultiViewCalendarModule, NavigationComponent, NavigationItemTemplateDirective, PreventableEvent, TemplatesModule, TimeListComponent, TimePickerComponent, TimePickerCustomMessagesComponent, TimePickerLocalizedMessagesDirective, TimePickerModule, TimeSelectorComponent, TimeSelectorCustomMessagesComponent, TimeSelectorLocalizedMessagesDirective, ViewComponent, ViewListComponent, WeekNumberCellTemplateDirective, YearCellTemplateDirective };
19126
+ export { AdaptiveModule, CalendarComponent, CalendarCustomMessagesComponent, CalendarDOMService, CalendarLocalizedMessagesDirective, CalendarModule, CalendarViewEnum, CalendarsModule, CellTemplateDirective, CenturyCellTemplateDirective, CenturyViewService, DateInputComponent, DateInputCustomMessagesComponent, DateInputLocalizedMessagesDirective, DateInputModule, DateInputsModule, DatePickerComponent, DatePickerCustomMessagesComponent, DatePickerLocalizedMessagesDirective, DatePickerModule, DateRangeComponent, DateRangeEndInputDirective, DateRangeModule, DateRangePopupComponent, DateRangePopupCustomMessagesComponent, DateRangePopupLocalizedMessagesDirective, DateRangePopupTemplateDirective, DateRangeSelectionDirective, DateRangeService, DateRangeStartInputDirective, DateTimePickerComponent, DateTimePickerCustomMessagesComponent, DateTimePickerModule, DayPeriodService, DecadeCellTemplateDirective, DecadeViewService, FooterComponent, FooterTemplateDirective, HeaderComponent, HeaderTemplateDirective, HeaderTitleTemplateDirective, HorizontalViewListComponent, HoursService, KENDO_CALENDAR, KENDO_DATEINPUT, KENDO_DATEINPUTS, KENDO_DATEPICKER, KENDO_DATERANGE, KENDO_DATETIMEPICKER, KENDO_MULTIVIEWCALENDAR, KENDO_TIMEPICKER, KForOf, LocalizedMessagesDirective, MillisecondsService, MinutesService, MonthCellTemplateDirective, MonthViewService, MultiViewCalendarComponent, MultiViewCalendarCustomMessagesComponent, MultiViewCalendarLocalizedMessagesDirective, MultiViewCalendarModule, NavigationComponent, NavigationItemTemplateDirective, NavigationService, PreventableEvent, SecondsService, TimeListComponent, TimePickerComponent, TimePickerCustomMessagesComponent, TimePickerDOMService, TimePickerLocalizedMessagesDirective, TimePickerModule, TimeSelectorComponent, TimeSelectorCustomMessagesComponent, TimeSelectorLocalizedMessagesDirective, ViewComponent, ViewListComponent, WeekNamesService, WeekNumberCellTemplateDirective, YearCellTemplateDirective, YearViewService };
19202
19127