@progress/kendo-angular-dateinputs 15.3.1-develop.2 → 15.4.0-develop.1

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 (35) hide show
  1. package/calendar/calendar-common.module.d.ts +7 -5
  2. package/calendar/calendar.component.d.ts +45 -1
  3. package/calendar/footer.component.d.ts +22 -0
  4. package/calendar/header.component.d.ts +3 -2
  5. package/calendar/horizontal-view-list.component.d.ts +3 -1
  6. package/calendar/multiview-calendar.component.d.ts +44 -1
  7. package/calendar/services/weeknames.service.d.ts +2 -1
  8. package/calendar/templates/footer-template.directiv/320/265.d.ts +36 -0
  9. package/calendar/templates/header-template.directive.d.ts +37 -0
  10. package/calendar/templates.module.d.ts +3 -1
  11. package/calendar/view-list.component.d.ts +8 -1
  12. package/common/models/week-days-format.d.ts +10 -0
  13. package/datepicker/datepicker.component.d.ts +30 -1
  14. package/datetimepicker/datetimepicker.component.d.ts +30 -1
  15. package/esm2020/calendar/calendar-common.module.mjs +6 -0
  16. package/esm2020/calendar/calendar.component.mjs +70 -3
  17. package/esm2020/calendar/footer.component.mjs +69 -0
  18. package/esm2020/calendar/header.component.mjs +139 -125
  19. package/esm2020/calendar/horizontal-view-list.component.mjs +6 -3
  20. package/esm2020/calendar/multiview-calendar.component.mjs +76 -7
  21. package/esm2020/calendar/templates/footer-template.directiv/320/265.mjs +43 -0
  22. package/esm2020/calendar/templates/header-template.directive.mjs +44 -0
  23. package/esm2020/calendar/templates.module.mjs +14 -4
  24. package/esm2020/calendar/view-list.component.mjs +37 -9
  25. package/esm2020/calendar/view.component.mjs +3 -8
  26. package/esm2020/common/models/week-days-format.mjs +5 -0
  27. package/esm2020/datepicker/datepicker.component.mjs +51 -3
  28. package/esm2020/daterange/date-range-popup.component.mjs +1 -1
  29. package/esm2020/datetimepicker/datetimepicker.component.mjs +51 -3
  30. package/esm2020/index.mjs +3 -0
  31. package/esm2020/package-metadata.mjs +2 -2
  32. package/fesm2015/progress-kendo-angular-dateinputs.mjs +584 -172
  33. package/fesm2020/progress-kendo-angular-dateinputs.mjs +584 -172
  34. package/index.d.ts +4 -0
  35. package/package.json +11 -11
package/index.d.ts CHANGED
@@ -14,6 +14,7 @@ export { TimeListComponent } from './timepicker/timelist.component';
14
14
  export { TimeSelectorComponent } from './timepicker/timeselector.component';
15
15
  export { HorizontalViewListComponent } from './calendar/horizontal-view-list.component';
16
16
  export { HeaderComponent } from './calendar/header.component';
17
+ export { FooterComponent } from './calendar/footer.component';
17
18
  export { ViewComponent } from './calendar/view.component';
18
19
  export { CellTemplateDirective } from './calendar/templates/cell-template.directive';
19
20
  export { MonthCellTemplateDirective } from './calendar/templates/month-cell-template.directive';
@@ -22,6 +23,8 @@ export { DecadeCellTemplateDirective } from './calendar/templates/decade-cell-te
22
23
  export { CenturyCellTemplateDirective } from './calendar/templates/century-cell-template.directive';
23
24
  export { WeekNumberCellTemplateDirective } from './calendar/templates/weeknumber-cell-template.directive';
24
25
  export { HeaderTitleTemplateDirective } from './calendar/templates/header-title-template.directive';
26
+ export { HeaderTemplateDirective } from './calendar/templates/header-template.directive';
27
+ export { FooterTemplateDirective } from './calendar/templates/footer-template.directivе';
25
28
  export { NavigationItemTemplateDirective } from './calendar/templates/navigation-item-template.directive';
26
29
  export { KForOf } from './calendar/for.directive';
27
30
  export { DateRangeComponent } from './daterange/date-range.component';
@@ -74,5 +77,6 @@ export { DateRangePopupLocalizedMessagesDirective } from './daterange/localizati
74
77
  export { DateInputSize } from './common/models/size';
75
78
  export { DateInputRounded } from './common/models/rounded';
76
79
  export { DateInputFillMode } from './common/models/fillmode';
80
+ export { WeekDaysFormat } from './common/models/week-days-format';
77
81
  export { AdaptiveMode } from './util';
78
82
  export { AdaptiveModule } from './common/adaptive.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "15.3.1-develop.2",
3
+ "version": "15.4.0-develop.1",
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,20 +34,20 @@
34
34
  "@angular/forms": "13 - 17",
35
35
  "@angular/platform-browser": "13 - 17",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-common": "15.3.1-develop.2",
38
- "@progress/kendo-angular-intl": "15.3.1-develop.2",
39
- "@progress/kendo-angular-l10n": "15.3.1-develop.2",
40
- "@progress/kendo-angular-icons": "15.3.1-develop.2",
41
- "@progress/kendo-angular-popup": "15.3.1-develop.2",
42
- "@progress/kendo-angular-navigation": "15.3.1-develop.2",
37
+ "@progress/kendo-angular-common": "15.4.0-develop.1",
38
+ "@progress/kendo-angular-intl": "15.4.0-develop.1",
39
+ "@progress/kendo-angular-l10n": "15.4.0-develop.1",
40
+ "@progress/kendo-angular-icons": "15.4.0-develop.1",
41
+ "@progress/kendo-angular-popup": "15.4.0-develop.1",
42
+ "@progress/kendo-angular-navigation": "15.4.0-develop.1",
43
43
  "rxjs": "^6.5.3 || ^7.0.0",
44
- "@progress/kendo-angular-buttons": "15.3.1-develop.2",
45
- "@progress/kendo-angular-inputs": "15.3.1-develop.2",
46
- "@progress/kendo-angular-label": "15.3.1-develop.2"
44
+ "@progress/kendo-angular-buttons": "15.4.0-develop.1",
45
+ "@progress/kendo-angular-inputs": "15.4.0-develop.1",
46
+ "@progress/kendo-angular-label": "15.4.0-develop.1"
47
47
  },
48
48
  "dependencies": {
49
49
  "tslib": "^2.3.1",
50
- "@progress/kendo-angular-schematics": "15.3.1-develop.2",
50
+ "@progress/kendo-angular-schematics": "15.4.0-develop.1",
51
51
  "@progress/kendo-common": "^0.2.0",
52
52
  "@progress/kendo-date-math": "^1.1.0",
53
53
  "@progress/kendo-dateinputs-common": "^0.3.2"