@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
package/index.d.ts CHANGED
@@ -27,14 +27,25 @@ export { HeaderTemplateDirective } from './calendar/templates/header-template.di
27
27
  export { FooterTemplateDirective } from './calendar/templates/footer-template.directive';
28
28
  export { NavigationItemTemplateDirective } from './calendar/templates/navigation-item-template.directive';
29
29
  export { KForOf } from './calendar/for.directive';
30
+ export { CalendarDOMService } from './calendar/services/dom.service';
31
+ export { CenturyViewService } from './calendar/services/century-view.service';
32
+ export { DecadeViewService } from './calendar/services/decade-view.service';
33
+ export { MonthViewService } from './calendar/services/month-view.service';
34
+ export { YearViewService } from './calendar/services/year-view.service';
35
+ export { WeekNamesService } from './calendar/services/weeknames.service';
36
+ export { NavigationService } from './calendar/services/navigation.service';
37
+ export { TimePickerDOMService } from './timepicker/services/dom.service';
38
+ export { HoursService } from './timepicker/services/hours.service';
39
+ export { MinutesService } from './timepicker/services/minutes.service';
40
+ export { SecondsService } from './timepicker/services/seconds.service';
41
+ export { MillisecondsService } from './timepicker/services/milliseconds.service';
42
+ export { DayPeriodService } from './timepicker/services/dayperiod.service';
30
43
  export { DateRangeComponent } from './daterange/date-range.component';
31
44
  export { DateRangePopupComponent } from './daterange/date-range-popup.component';
32
45
  export { DateRangeEndInputDirective } from './daterange/date-range-end-input.directive';
33
46
  export { DateRangeStartInputDirective } from './daterange/date-range-start-input.directive';
34
47
  export { DateRangeSelectionDirective } from './daterange/date-range-selection.directive';
35
48
  export { DateRangePopupTemplateDirective } from './daterange/date-range-popup-template.directive';
36
- export { CalendarCommonModule } from './calendar/calendar-common.module';
37
- export { TemplatesModule } from './calendar/templates.module';
38
49
  export { CalendarModule } from './calendar/calendar.module';
39
50
  export { CalendarsModule } from './calendar/calendars.module';
40
51
  export { DateInputModule } from './dateinput/dateinput.module';
@@ -81,3 +92,4 @@ export { WeekDaysFormat } from './common/models/week-days-format';
81
92
  export { AdaptiveMode } from './util';
82
93
  export { AdaptiveModule } from './common/adaptive.module';
83
94
  export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
95
+ export * from './directives';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "16.5.0",
3
+ "version": "16.6.0-develop.10",
4
4
  "description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,21 +34,21 @@
34
34
  "@angular/forms": "15 - 18",
35
35
  "@angular/platform-browser": "15 - 18",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "16.5.0",
38
- "@progress/kendo-angular-common": "16.5.0",
39
- "@progress/kendo-angular-intl": "16.5.0",
40
- "@progress/kendo-angular-l10n": "16.5.0",
41
- "@progress/kendo-angular-icons": "16.5.0",
42
- "@progress/kendo-angular-popup": "16.5.0",
43
- "@progress/kendo-angular-navigation": "16.5.0",
37
+ "@progress/kendo-angular-buttons": "16.6.0-develop.10",
38
+ "@progress/kendo-angular-common": "16.6.0-develop.10",
39
+ "@progress/kendo-angular-intl": "16.6.0-develop.10",
40
+ "@progress/kendo-angular-l10n": "16.6.0-develop.10",
41
+ "@progress/kendo-angular-icons": "16.6.0-develop.10",
42
+ "@progress/kendo-angular-popup": "16.6.0-develop.10",
43
+ "@progress/kendo-angular-navigation": "16.6.0-develop.10",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "16.5.0",
48
+ "@progress/kendo-angular-schematics": "16.6.0-develop.10",
49
49
  "@progress/kendo-common": "^0.2.0",
50
50
  "@progress/kendo-date-math": "^1.1.0",
51
- "@progress/kendo-dateinputs-common": "^0.3.3"
51
+ "@progress/kendo-dateinputs-common": "^0.3.4"
52
52
  },
53
53
  "schematics": "./schematics/collection.json",
54
54
  "module": "fesm2015/progress-kendo-angular-dateinputs.mjs",
@@ -13,5 +13,5 @@ export declare class TimePickerCustomMessagesComponent extends TimePickerMessage
13
13
  constructor(service: LocalizationService);
14
14
  protected get override(): boolean;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerCustomMessagesComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerCustomMessagesComponent, "kendo-timepicker-messages", never, {}, {}, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerCustomMessagesComponent, "kendo-timepicker-messages", never, {}, {}, never, never, true, never>;
17
17
  }
@@ -12,5 +12,5 @@ export declare class TimePickerLocalizedMessagesDirective extends TimePickerMess
12
12
  protected service: LocalizationService;
13
13
  constructor(service: LocalizationService);
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerLocalizedMessagesDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerLocalizedMessagesDirective, "[kendoTimePickerLocalizedMessages]", never, {}, {}, never, never, false, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerLocalizedMessagesDirective, "[kendoTimePickerLocalizedMessages]", never, {}, {}, never, never, true, never>;
16
16
  }
@@ -15,5 +15,5 @@ export declare class TimeSelectorCustomMessagesComponent extends TimePickerMessa
15
15
  constructor(service: LocalizationService);
16
16
  protected get override(): boolean;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeSelectorCustomMessagesComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeSelectorCustomMessagesComponent, "kendo-timeselector-messages", never, {}, {}, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeSelectorCustomMessagesComponent, "kendo-timeselector-messages", never, {}, {}, never, never, true, never>;
19
19
  }
@@ -12,5 +12,5 @@ export declare class TimeSelectorLocalizedMessagesDirective extends TimePickerMe
12
12
  protected service: LocalizationService;
13
13
  constructor(service: LocalizationService);
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeSelectorLocalizedMessagesDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<TimeSelectorLocalizedMessagesDirective, "[kendoTimeSelectorLocalizedMessages]", never, {}, {}, never, never, false, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimeSelectorLocalizedMessagesDirective, "[kendoTimeSelectorLocalizedMessages]", never, {}, {}, never, never, true, never>;
16
16
  }
@@ -90,5 +90,5 @@ export declare class TimeListComponent implements OnChanges, OnInit, OnDestroy {
90
90
  private handleKeyDown;
91
91
  private bindEvents;
92
92
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeListComponent, never>;
93
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeListComponent, "kendo-timelist", never, { "min": "min"; "max": "max"; "part": "part"; "step": "step"; "disabled": "disabled"; "value": "value"; "isLast": "isLast"; }, { "valueChange": "valueChange"; "tabOutLastPart": "tabOutLastPart"; }, never, never, false, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeListComponent, "kendo-timelist", never, { "min": "min"; "max": "max"; "part": "part"; "step": "step"; "disabled": "disabled"; "value": "value"; "isLast": "isLast"; }, { "valueChange": "valueChange"; "tabOutLastPart": "tabOutLastPart"; }, never, never, true, never>;
94
94
  }
@@ -37,7 +37,6 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
37
37
  private injector;
38
38
  private pickerService;
39
39
  private intl;
40
- private touchEnabled;
41
40
  /**
42
41
  * @hidden
43
42
  */
@@ -160,15 +159,6 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
160
159
  * Determines whether the built-in validation for incomplete dates is to be enforced when a form is being validated.
161
160
  */
162
161
  incompleteDateValidation: boolean;
163
- /**
164
- * @hidden
165
- *
166
- * Determines whether to auto correct invalid segments automatically.
167
- * TODO: To be fixed in common package before enabling: https://github.com/telerik/kendo-dateinputs-common/issues/24
168
- *
169
- * @default true
170
- */
171
- autoCorrectParts: boolean;
172
162
  /**
173
163
  * Determines whether to automatically move to the next segment after the user completes the current one.
174
164
  *
@@ -392,7 +382,7 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
392
382
  private _rounded;
393
383
  private _fillMode;
394
384
  private windowSize;
395
- constructor(bus: BusViewService, zone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, popupService: PopupService, wrapper: ElementRef, renderer: Renderer2, injector: Injector, pickerService: PickerService, intl: IntlService, touchEnabled: boolean);
385
+ constructor(bus: BusViewService, zone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, popupService: PopupService, wrapper: ElementRef, renderer: Renderer2, injector: Injector, pickerService: PickerService, intl: IntlService);
396
386
  /**
397
387
  * @hidden
398
388
  * Used by the TextBoxContainer to determine if the component is empty
@@ -555,6 +545,6 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
555
545
  private blurComponent;
556
546
  private handleDateCompletenessChange;
557
547
  private setComponentClasses;
558
- static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, [null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
559
- static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "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"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, never, never, false, never>;
548
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
549
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "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"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, never, never, true, never>;
560
550
  }
@@ -3,27 +3,14 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from "@angular/core";
6
- import * as i1 from "./localization/timepicker-localized-messages.directive";
7
- import * as i2 from "./timelist.component";
8
- import * as i3 from "./localization/timepicker-custom-messages.component";
9
- import * as i4 from "./timepicker.component";
10
- import * as i5 from "./localization/timeselector-localized-messages.directive";
11
- import * as i6 from "./localization/timeselector-custom-messages.component";
12
- import * as i7 from "./timeselector.component";
13
- import * as i8 from "@angular/common";
14
- import * as i9 from "../dateinput/dateinput.module";
15
- import * as i10 from "@progress/kendo-angular-intl";
16
- import * as i11 from "@progress/kendo-angular-popup";
17
- import * as i12 from "../virtualization/virtualization.module";
18
- import * as i13 from "@progress/kendo-angular-common";
19
- import * as i14 from "@progress/kendo-angular-icons";
20
- import * as i15 from "../common/adaptive.module";
6
+ import * as i1 from "./localization/timepicker-custom-messages.component";
7
+ import * as i2 from "./timepicker.component";
21
8
  /**
22
9
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
23
10
  * definition for the TimePicker component.
24
11
  */
25
12
  export declare class TimePickerModule {
26
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerModule, never>;
27
- static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, [typeof i1.TimePickerLocalizedMessagesDirective, typeof i2.TimeListComponent, typeof i3.TimePickerCustomMessagesComponent, typeof i4.TimePickerComponent, typeof i5.TimeSelectorLocalizedMessagesDirective, typeof i6.TimeSelectorCustomMessagesComponent, typeof i7.TimeSelectorComponent], [typeof i8.CommonModule, typeof i9.DateInputModule, typeof i10.IntlModule, typeof i11.PopupModule, typeof i12.VirtualizationModule, typeof i13.EventsModule, typeof i14.IconsModule, typeof i15.AdaptiveModule, typeof i13.ToggleButtonTabStopModule], [typeof i1.TimePickerLocalizedMessagesDirective, typeof i2.TimeListComponent, typeof i3.TimePickerCustomMessagesComponent, typeof i4.TimePickerComponent, typeof i5.TimeSelectorLocalizedMessagesDirective, typeof i6.TimeSelectorCustomMessagesComponent, typeof i7.TimeSelectorComponent]>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, never, [typeof i1.TimePickerCustomMessagesComponent, typeof i2.TimePickerComponent], [typeof i1.TimePickerCustomMessagesComponent, typeof i2.TimePickerComponent]>;
28
15
  static ɵinj: i0.ɵɵInjectorDeclaration<TimePickerModule>;
29
16
  }
@@ -197,5 +197,5 @@ export declare class TimeSelectorComponent implements OnChanges, OnInit, OnDestr
197
197
  private emitFocus;
198
198
  private listIndex;
199
199
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeSelectorComponent, [null, null, null, null, null, null, null, { optional: true; }]>;
200
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeSelectorComponent, "kendo-timeselector", ["kendo-timeselector"], { "format": "format"; "min": "min"; "max": "max"; "cancelButton": "cancelButton"; "setButton": "setButton"; "nowButton": "nowButton"; "disabled": "disabled"; "isAdaptiveEnabled": "isAdaptiveEnabled"; "isDateTimePicker": "isDateTimePicker"; "steps": "steps"; "value": "value"; }, { "valueChange": "valueChange"; "valueReject": "valueReject"; "tabOutLastPart": "tabOutLastPart"; "tabOutNow": "tabOutNow"; }, never, never, false, never>;
200
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeSelectorComponent, "kendo-timeselector", ["kendo-timeselector"], { "format": "format"; "min": "min"; "max": "max"; "cancelButton": "cancelButton"; "setButton": "setButton"; "nowButton": "nowButton"; "disabled": "disabled"; "isAdaptiveEnabled": "isAdaptiveEnabled"; "isDateTimePicker": "isDateTimePicker"; "steps": "steps"; "value": "value"; }, { "valueChange": "valueChange"; "valueReject": "valueReject"; "tabOutLastPart": "tabOutLastPart"; "tabOutNow": "tabOutNow"; }, never, never, true, never>;
201
201
  }
@@ -84,5 +84,5 @@ export declare class VirtualizationComponent implements OnChanges, OnInit, OnDes
84
84
  private containerMaxScroll;
85
85
  private getContainerScrollDirection;
86
86
  static ɵfac: i0.ɵɵFactoryDeclaration<VirtualizationComponent, never>;
87
- static ɵcmp: i0.ɵɵComponentDeclaration<VirtualizationComponent, "kendo-virtualization", never, { "direction": "direction"; "itemHeight": "itemHeight"; "itemWidth": "itemWidth"; "topOffset": "topOffset"; "bottomOffset": "bottomOffset"; "maxScrollDifference": "maxScrollDifference"; "scrollOffsetSize": "scrollOffsetSize"; "scrollDuration": "scrollDuration"; "skip": "skip"; "take": "take"; "total": "total"; }, { "activeIndexChange": "activeIndexChange"; "pageChange": "pageChange"; "scrollChange": "scrollChange"; }, never, ["*"], false, never>;
87
+ static ɵcmp: i0.ɵɵComponentDeclaration<VirtualizationComponent, "kendo-virtualization", never, { "direction": "direction"; "itemHeight": "itemHeight"; "itemWidth": "itemWidth"; "topOffset": "topOffset"; "bottomOffset": "bottomOffset"; "maxScrollDifference": "maxScrollDifference"; "scrollOffsetSize": "scrollOffsetSize"; "scrollDuration": "scrollDuration"; "skip": "skip"; "take": "take"; "total": "total"; }, { "activeIndexChange": "activeIndexChange"; "pageChange": "pageChange"; "scrollChange": "scrollChange"; }, never, ["*"], true, never>;
88
88
  }
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./for.directive";
7
- import * as i2 from "./header.component";
8
- import * as i3 from "./footer.component";
9
- import * as i4 from "./view.component";
10
- import * as i5 from "@angular/common";
11
- import * as i6 from "@progress/kendo-angular-common";
12
- import * as i7 from "@progress/kendo-angular-buttons";
13
- /**
14
- * @hidden
15
- *
16
- * The exported package module.
17
- *
18
- * The package exports:
19
- * - `HeaderComponent`&mdash;The component that renders the UI for vertical navigation.
20
- * - `ViewComponent`&mdash;The component that renders the active Calendar view.
21
- * - `FooterComponent`&mdash;The component that renders the Calendar footer.
22
- */
23
- export declare class CalendarCommonModule {
24
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarCommonModule, never>;
25
- static ɵmod: i0.ɵɵNgModuleDeclaration<CalendarCommonModule, [typeof i1.KForOf, typeof i2.HeaderComponent, typeof i3.FooterComponent, typeof i4.ViewComponent], [typeof i5.CommonModule, typeof i6.EventsModule, typeof i7.ButtonModule], [typeof i1.KForOf, typeof i2.HeaderComponent, typeof i3.FooterComponent, typeof i4.ViewComponent]>;
26
- static ɵinj: i0.ɵɵInjectorDeclaration<CalendarCommonModule>;
27
- }
@@ -1,35 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./templates/cell-template.directive";
7
- import * as i2 from "./templates/month-cell-template.directive";
8
- import * as i3 from "./templates/year-cell-template.directive";
9
- import * as i4 from "./templates/decade-cell-template.directive";
10
- import * as i5 from "./templates/century-cell-template.directive";
11
- import * as i6 from "./templates/weeknumber-cell-template.directive";
12
- import * as i7 from "./templates/header-title-template.directive";
13
- import * as i8 from "./templates/navigation-item-template.directive";
14
- import * as i9 from "./templates/header-template.directive";
15
- import * as i10 from "./templates/footer-template.directive";
16
- /**
17
- * @hidden
18
- *
19
- * The exported package module.
20
- *
21
- * The package exports:
22
- * - `CellTemplateDirective`&mdash;The month cell template directive.
23
- * - `MonthCellTemplateDirective`&mdash;The month cell template directive.
24
- * - `YearCellTemplateDirective`&mdash;The year cell template directive.
25
- * - `DecadeCellTemplateDirective`&mdash;The decade cell template directive.
26
- * - `CenturyCellTemplateDirective`&mdash;The century cell template directive.
27
- * - `WeekNumberCellTemplateDirective`&mdash;The month week number cell template directive.
28
- * - `HeaderTitleTemplateDirective`&mdash;The header title template directive.
29
- * - `NavigationItemTemplateDirective`&mdash;The navigation item template directive.
30
- */
31
- export declare class TemplatesModule {
32
- static ɵfac: i0.ɵɵFactoryDeclaration<TemplatesModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<TemplatesModule, [typeof i1.CellTemplateDirective, typeof i2.MonthCellTemplateDirective, typeof i3.YearCellTemplateDirective, typeof i4.DecadeCellTemplateDirective, typeof i5.CenturyCellTemplateDirective, typeof i6.WeekNumberCellTemplateDirective, typeof i7.HeaderTitleTemplateDirective, typeof i8.NavigationItemTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.FooterTemplateDirective], never, [typeof i1.CellTemplateDirective, typeof i2.MonthCellTemplateDirective, typeof i3.YearCellTemplateDirective, typeof i4.DecadeCellTemplateDirective, typeof i5.CenturyCellTemplateDirective, typeof i6.WeekNumberCellTemplateDirective, typeof i7.HeaderTitleTemplateDirective, typeof i8.NavigationItemTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.FooterTemplateDirective]>;
34
- static ɵinj: i0.ɵɵInjectorDeclaration<TemplatesModule>;
35
- }
@@ -1,52 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgModule } from '@angular/core';
6
- import { CommonModule } from '@angular/common';
7
- import { KForOf } from './for.directive';
8
- import { HeaderComponent } from './header.component';
9
- import { ViewComponent } from './view.component';
10
- import { EventsModule } from '@progress/kendo-angular-common';
11
- import { ButtonModule } from '@progress/kendo-angular-buttons';
12
- import { FooterComponent } from './footer.component';
13
- import * as i0 from "@angular/core";
14
- /**
15
- * @hidden
16
- *
17
- * The exported package module.
18
- *
19
- * The package exports:
20
- * - `HeaderComponent`&mdash;The component that renders the UI for vertical navigation.
21
- * - `ViewComponent`&mdash;The component that renders the active Calendar view.
22
- * - `FooterComponent`&mdash;The component that renders the Calendar footer.
23
- */
24
- export class CalendarCommonModule {
25
- }
26
- CalendarCommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
27
- CalendarCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, declarations: [KForOf,
28
- HeaderComponent,
29
- FooterComponent,
30
- ViewComponent], imports: [CommonModule, EventsModule, ButtonModule], exports: [KForOf,
31
- HeaderComponent,
32
- FooterComponent,
33
- ViewComponent] });
34
- CalendarCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, imports: [CommonModule, EventsModule, ButtonModule] });
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarCommonModule, decorators: [{
36
- type: NgModule,
37
- args: [{
38
- declarations: [
39
- KForOf,
40
- HeaderComponent,
41
- FooterComponent,
42
- ViewComponent
43
- ],
44
- exports: [
45
- KForOf,
46
- HeaderComponent,
47
- FooterComponent,
48
- ViewComponent
49
- ],
50
- imports: [CommonModule, EventsModule, ButtonModule]
51
- }]
52
- }] });
@@ -1,83 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgModule } from '@angular/core';
6
- import { CellTemplateDirective } from './templates/cell-template.directive';
7
- import { MonthCellTemplateDirective } from './templates/month-cell-template.directive';
8
- import { YearCellTemplateDirective } from './templates/year-cell-template.directive';
9
- import { DecadeCellTemplateDirective } from './templates/decade-cell-template.directive';
10
- import { CenturyCellTemplateDirective } from './templates/century-cell-template.directive';
11
- import { WeekNumberCellTemplateDirective } from './templates/weeknumber-cell-template.directive';
12
- import { HeaderTitleTemplateDirective } from './templates/header-title-template.directive';
13
- import { NavigationItemTemplateDirective } from './templates/navigation-item-template.directive';
14
- import { HeaderTemplateDirective } from './templates/header-template.directive';
15
- import { FooterTemplateDirective } from './templates/footer-template.directive';
16
- import * as i0 from "@angular/core";
17
- /**
18
- * @hidden
19
- *
20
- * The exported package module.
21
- *
22
- * The package exports:
23
- * - `CellTemplateDirective`&mdash;The month cell template directive.
24
- * - `MonthCellTemplateDirective`&mdash;The month cell template directive.
25
- * - `YearCellTemplateDirective`&mdash;The year cell template directive.
26
- * - `DecadeCellTemplateDirective`&mdash;The decade cell template directive.
27
- * - `CenturyCellTemplateDirective`&mdash;The century cell template directive.
28
- * - `WeekNumberCellTemplateDirective`&mdash;The month week number cell template directive.
29
- * - `HeaderTitleTemplateDirective`&mdash;The header title template directive.
30
- * - `NavigationItemTemplateDirective`&mdash;The navigation item template directive.
31
- */
32
- export class TemplatesModule {
33
- }
34
- TemplatesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
35
- TemplatesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, declarations: [CellTemplateDirective,
36
- MonthCellTemplateDirective,
37
- YearCellTemplateDirective,
38
- DecadeCellTemplateDirective,
39
- CenturyCellTemplateDirective,
40
- WeekNumberCellTemplateDirective,
41
- HeaderTitleTemplateDirective,
42
- NavigationItemTemplateDirective,
43
- HeaderTemplateDirective,
44
- FooterTemplateDirective], exports: [CellTemplateDirective,
45
- MonthCellTemplateDirective,
46
- YearCellTemplateDirective,
47
- DecadeCellTemplateDirective,
48
- CenturyCellTemplateDirective,
49
- WeekNumberCellTemplateDirective,
50
- HeaderTitleTemplateDirective,
51
- NavigationItemTemplateDirective,
52
- HeaderTemplateDirective,
53
- FooterTemplateDirective] });
54
- TemplatesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule });
55
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TemplatesModule, decorators: [{
56
- type: NgModule,
57
- args: [{
58
- declarations: [
59
- CellTemplateDirective,
60
- MonthCellTemplateDirective,
61
- YearCellTemplateDirective,
62
- DecadeCellTemplateDirective,
63
- CenturyCellTemplateDirective,
64
- WeekNumberCellTemplateDirective,
65
- HeaderTitleTemplateDirective,
66
- NavigationItemTemplateDirective,
67
- HeaderTemplateDirective,
68
- FooterTemplateDirective
69
- ],
70
- exports: [
71
- CellTemplateDirective,
72
- MonthCellTemplateDirective,
73
- YearCellTemplateDirective,
74
- DecadeCellTemplateDirective,
75
- CenturyCellTemplateDirective,
76
- WeekNumberCellTemplateDirective,
77
- HeaderTitleTemplateDirective,
78
- NavigationItemTemplateDirective,
79
- HeaderTemplateDirective,
80
- FooterTemplateDirective
81
- ]
82
- }]
83
- }] });
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { InjectionToken } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export const TOUCH_ENABLED = new InjectionToken('dateinputs-touch-enabled');
@@ -1,30 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NgModule } from '@angular/core';
6
- import { CommonModule } from '@angular/common';
7
- import { VirtualizationComponent } from '../virtualization/virtualization.component';
8
- import * as i0 from "@angular/core";
9
- const COMPONENT_DIRECTIVES = [
10
- VirtualizationComponent
11
- ];
12
- /**
13
- * @hidden
14
- *
15
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
16
- * definition for the Virtualization component.
17
- */
18
- export class VirtualizationModule {
19
- }
20
- VirtualizationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
21
- VirtualizationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, declarations: [VirtualizationComponent], imports: [CommonModule], exports: [VirtualizationComponent] });
22
- VirtualizationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, imports: [CommonModule] });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: VirtualizationModule, decorators: [{
24
- type: NgModule,
25
- args: [{
26
- declarations: [COMPONENT_DIRECTIVES],
27
- exports: [COMPONENT_DIRECTIVES],
28
- imports: [CommonModule]
29
- }]
30
- }] });
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { InjectionToken } from '@angular/core';
6
- /**
7
- * @hidden
8
- */
9
- export declare const TOUCH_ENABLED: InjectionToken<boolean>;
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./virtualization.component";
7
- import * as i2 from "@angular/common";
8
- /**
9
- * @hidden
10
- *
11
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
- * definition for the Virtualization component.
13
- */
14
- export declare class VirtualizationModule {
15
- static ɵfac: i0.ɵɵFactoryDeclaration<VirtualizationModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<VirtualizationModule, [typeof i1.VirtualizationComponent], [typeof i2.CommonModule], [typeof i1.VirtualizationComponent]>;
17
- static ɵinj: i0.ɵɵInjectorDeclaration<VirtualizationModule>;
18
- }