@progress/kendo-angular-dateinputs 7.1.4 → 7.1.5-dev.202211101635

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 (36) hide show
  1. package/bundles/kendo-angular-dateinputs.umd.js +1 -1
  2. package/calendar/calendar.component.d.ts +13 -1
  3. package/calendar/horizontal-view-list.component.d.ts +5 -4
  4. package/calendar/multiview-calendar.component.d.ts +6 -2
  5. package/dateinput/dateinput.component.d.ts +7 -3
  6. package/dateinput/dateinput.module.d.ts +1 -1
  7. package/dateinputs.module.d.ts +1 -1
  8. package/datepicker/datepicker.module.d.ts +1 -1
  9. package/daterange/date-range.service.d.ts +15 -3
  10. package/datetimepicker/datetimepicker.module.d.ts +1 -1
  11. package/esm2015/calendar/calendar.component.js +27 -3
  12. package/esm2015/calendar/horizontal-view-list.component.js +27 -12
  13. package/esm2015/calendar/multiview-calendar.component.js +14 -10
  14. package/esm2015/calendar/view-list.component.js +2 -2
  15. package/esm2015/dateinput/dateinput.component.js +18 -12
  16. package/esm2015/dateinput/dateinput.module.js +1 -1
  17. package/esm2015/dateinputs.module.js +1 -1
  18. package/esm2015/datepicker/datepicker.component.js +4 -4
  19. package/esm2015/datepicker/datepicker.module.js +1 -1
  20. package/esm2015/daterange/date-range-end-input.directive.js +2 -3
  21. package/esm2015/daterange/date-range-input.js +2 -0
  22. package/esm2015/daterange/date-range-popup.component.js +7 -2
  23. package/esm2015/daterange/date-range-start-input.directive.js +2 -5
  24. package/esm2015/daterange/date-range.service.js +32 -16
  25. package/esm2015/datetimepicker/datetimepicker.component.js +10 -6
  26. package/esm2015/datetimepicker/datetimepicker.module.js +1 -1
  27. package/esm2015/package-metadata.js +1 -1
  28. package/esm2015/timepicker/timelist.component.js +11 -25
  29. package/esm2015/timepicker/timepicker.component.js +7 -3
  30. package/esm2015/timepicker/timepicker.module.js +1 -1
  31. package/esm2015/virtualization/virtualization.module.js +1 -1
  32. package/fesm2015/kendo-angular-dateinputs.js +172 -108
  33. package/package.json +1 -1
  34. package/timepicker/timelist.component.d.ts +1 -3
  35. package/timepicker/timepicker.module.d.ts +1 -1
  36. package/virtualization/virtualization.module.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "7.1.4",
3
+ "version": "7.1.5-dev.202211101635",
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",
@@ -30,11 +30,10 @@ export declare class TimeListComponent implements OnChanges, OnInit, OnDestroy {
30
30
  virtualization: VirtualizationComponent;
31
31
  get roleAttribute(): string;
32
32
  get ariaLabel(): string;
33
- get valueMin(): string;
34
- get valueMax(): string;
35
33
  get tabIndex(): number;
36
34
  componentClass: boolean;
37
35
  get isDayPeriod(): boolean;
36
+ get currentSelectedIndex(): number;
38
37
  animateToIndex: boolean;
39
38
  isActive: boolean;
40
39
  skip: number;
@@ -51,7 +50,6 @@ export declare class TimeListComponent implements OnChanges, OnInit, OnDestroy {
51
50
  private indexToScroll;
52
51
  private scrollSubscription;
53
52
  private domEvents;
54
- private hostElement;
55
53
  constructor(element: ElementRef, injector: Injector, dom: TimePickerDOMService, renderer: Renderer2, zone: NgZone, localization: LocalizationService);
56
54
  ngOnChanges(changes: any): void;
57
55
  ngOnInit(): void;
@@ -17,7 +17,7 @@ import * as i11 from "@progress/kendo-angular-popup";
17
17
  import * as i12 from "../virtualization/virtualization.module";
18
18
  import * as i13 from "@progress/kendo-angular-common";
19
19
  /**
20
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
20
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
21
21
  * definition for the TimePicker component.
22
22
  */
23
23
  export declare class TimePickerModule {
@@ -8,7 +8,7 @@ import * as i2 from "@angular/common";
8
8
  /**
9
9
  * @hidden
10
10
  *
11
- * Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
11
+ * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
12
  * definition for the Virtualization component.
13
13
  */
14
14
  export declare class VirtualizationModule {