@progress/kendo-angular-dateinputs 17.0.0-develop.8 → 17.0.0

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 (185) hide show
  1. package/calendar/calendar.component.d.ts +1 -1
  2. package/calendar/footer.component.d.ts +1 -1
  3. package/calendar/for.directive.d.ts +1 -1
  4. package/calendar/header.component.d.ts +1 -1
  5. package/calendar/horizontal-view-list.component.d.ts +1 -1
  6. package/calendar/localization/calendar-messages.d.ts +1 -1
  7. package/calendar/localization/multiview-calendar-messages.d.ts +1 -1
  8. package/calendar/models/orientation.d.ts +1 -1
  9. package/calendar/models/selection-range-end.type.d.ts +1 -1
  10. package/calendar/models/selection.d.ts +1 -1
  11. package/calendar/models/type.d.ts +1 -1
  12. package/calendar/models/view.type.d.ts +1 -1
  13. package/calendar/multiview-calendar.component.d.ts +1 -1
  14. package/calendar/navigation.component.d.ts +1 -1
  15. package/calendar/view-list.component.d.ts +1 -1
  16. package/calendar/view.component.d.ts +1 -1
  17. package/common/models/fillmode.d.ts +1 -1
  18. package/common/models/rounded.d.ts +1 -1
  19. package/common/models/size.d.ts +1 -1
  20. package/common/models/week-days-format.d.ts +1 -1
  21. package/dateinput/dateinput.component.d.ts +2 -2
  22. package/dateinput/localization/messages.d.ts +1 -1
  23. package/dateinput/models/format-placeholder.model.d.ts +1 -1
  24. package/datepicker/datepicker.component.d.ts +1 -1
  25. package/datepicker/localization/messages.d.ts +1 -1
  26. package/daterange/auto-correct-on.type.d.ts +1 -1
  27. package/daterange/date-range-end-input.directive.d.ts +1 -1
  28. package/daterange/date-range-popup.component.d.ts +86 -2
  29. package/daterange/date-range-selection.directive.d.ts +1 -1
  30. package/daterange/date-range-start-input.directive.d.ts +1 -1
  31. package/daterange/date-range.component.d.ts +1 -1
  32. package/daterange/localization/messages.d.ts +1 -1
  33. package/datetimepicker/datetimepicker.component.d.ts +1 -1
  34. package/datetimepicker/localization/messages.d.ts +1 -1
  35. package/datetimepicker/models/active-tab.type.d.ts +1 -1
  36. package/{esm2020 → esm2022}/calendar/calendar.component.mjs +277 -167
  37. package/{esm2020 → esm2022}/calendar/calendar.module.mjs +14 -14
  38. package/{esm2020 → esm2022}/calendar/calendars.module.mjs +14 -14
  39. package/{esm2020 → esm2022}/calendar/footer.component.mjs +10 -6
  40. package/{esm2020 → esm2022}/calendar/for.directive.mjs +13 -4
  41. package/{esm2020 → esm2022}/calendar/header.component.mjs +46 -29
  42. package/{esm2020 → esm2022}/calendar/horizontal-view-list.component.mjs +63 -40
  43. package/{esm2020 → esm2022}/calendar/localization/calendar-custom-messages.component.mjs +9 -8
  44. package/{esm2020 → esm2022}/calendar/localization/calendar-localized-messages.directive.mjs +9 -8
  45. package/{esm2020/calendar/localization/multiview-calendar-messages.mjs → esm2022/calendar/localization/calendar-messages.mjs} +21 -5
  46. package/{esm2020 → esm2022}/calendar/localization/multiview-calendar-custom-messages.component.mjs +9 -8
  47. package/{esm2020 → esm2022}/calendar/localization/multiview-calendar-localized-messages.directive.mjs +9 -8
  48. package/esm2022/calendar/localization/multiview-calendar-messages.mjs +45 -0
  49. package/{esm2020 → esm2022}/calendar/multiview-calendar.component.mjs +300 -212
  50. package/{esm2020 → esm2022}/calendar/multiview-calendar.module.mjs +11 -11
  51. package/{esm2020 → esm2022}/calendar/navigation.component.mjs +34 -15
  52. package/{esm2020 → esm2022}/calendar/services/bus-view.service.mjs +8 -6
  53. package/{esm2020 → esm2022}/calendar/services/century-view.service.mjs +15 -17
  54. package/{esm2020 → esm2022}/calendar/services/decade-view.service.mjs +15 -17
  55. package/{esm2020 → esm2022}/calendar/services/disabled-dates.service.mjs +12 -14
  56. package/{esm2020 → esm2022}/calendar/services/dom.service.mjs +21 -3
  57. package/{esm2020 → esm2022}/calendar/services/month-view.service.mjs +16 -15
  58. package/{esm2020 → esm2022}/calendar/services/navigation.service.mjs +4 -3
  59. package/{esm2020 → esm2022}/calendar/services/scroll-sync.service.mjs +11 -3
  60. package/{esm2020 → esm2022}/calendar/services/selection.service.mjs +5 -3
  61. package/{esm2020 → esm2022}/calendar/services/weeknames.service.mjs +4 -3
  62. package/{esm2020 → esm2022}/calendar/services/year-view.service.mjs +16 -15
  63. package/{esm2020 → esm2022}/calendar/templates/cell-template.directive.mjs +4 -3
  64. package/{esm2020 → esm2022}/calendar/templates/century-cell-template.directive.mjs +4 -3
  65. package/{esm2020 → esm2022}/calendar/templates/decade-cell-template.directive.mjs +4 -3
  66. package/{esm2020 → esm2022}/calendar/templates/footer-template.directive.mjs +4 -3
  67. package/{esm2020 → esm2022}/calendar/templates/header-template.directive.mjs +4 -3
  68. package/{esm2020 → esm2022}/calendar/templates/header-title-template.directive.mjs +4 -3
  69. package/{esm2020 → esm2022}/calendar/templates/month-cell-template.directive.mjs +4 -3
  70. package/{esm2020 → esm2022}/calendar/templates/navigation-item-template.directive.mjs +4 -3
  71. package/{esm2020 → esm2022}/calendar/templates/weeknumber-cell-template.directive.mjs +4 -3
  72. package/{esm2020 → esm2022}/calendar/templates/year-cell-template.directive.mjs +4 -3
  73. package/{esm2020 → esm2022}/calendar/view-list.component.mjs +68 -37
  74. package/{esm2020 → esm2022}/calendar/view.component.mjs +50 -24
  75. package/{esm2020 → esm2022}/common/picker.service.mjs +7 -6
  76. package/{esm2020 → esm2022}/dateinput/dateinput.component.mjs +282 -231
  77. package/{esm2020 → esm2022}/dateinput/dateinput.module.mjs +6 -6
  78. package/{esm2020 → esm2022}/dateinput/localization/dateinput-custom-messages.component.mjs +9 -8
  79. package/{esm2020 → esm2022}/dateinput/localization/dateinput-localized-messages.directive.mjs +9 -8
  80. package/{esm2020 → esm2022}/dateinput/localization/messages.mjs +15 -3
  81. package/{esm2020 → esm2022}/dateinputs.module.mjs +22 -22
  82. package/{esm2020 → esm2022}/datepicker/datepicker.component.mjs +403 -282
  83. package/{esm2020 → esm2022}/datepicker/datepicker.module.mjs +16 -16
  84. package/{esm2020 → esm2022}/datepicker/localization/datepicker-custom-messages.component.mjs +9 -8
  85. package/{esm2020 → esm2022}/datepicker/localization/datepicker-localized-messages.directive.mjs +9 -8
  86. package/esm2022/datepicker/localization/messages.mjs +57 -0
  87. package/{esm2020 → esm2022}/daterange/date-range-end-input.directive.mjs +38 -28
  88. package/{esm2020 → esm2022}/daterange/date-range-input.mjs +19 -13
  89. package/{esm2020 → esm2022}/daterange/date-range-popup-template.directive.mjs +4 -3
  90. package/{esm2020 → esm2022}/daterange/date-range-popup.component.mjs +324 -87
  91. package/{esm2020 → esm2022}/daterange/date-range-selection.directive.mjs +41 -36
  92. package/{esm2020 → esm2022}/daterange/date-range-start-input.directive.mjs +40 -29
  93. package/{esm2020 → esm2022}/daterange/date-range.component.mjs +31 -14
  94. package/{esm2020 → esm2022}/daterange/date-range.module.mjs +16 -16
  95. package/{esm2020 → esm2022}/daterange/date-range.service.mjs +34 -33
  96. package/{esm2020 → esm2022}/daterange/localization/daterange-popup-custom-messages.component.mjs +9 -8
  97. package/{esm2020 → esm2022}/daterange/localization/daterange-popup-localized-messages.directive.mjs +9 -8
  98. package/{esm2020 → esm2022}/daterange/localization/messages.mjs +19 -3
  99. package/{esm2020 → esm2022}/datetimepicker/datetimepicker.component.mjs +390 -292
  100. package/{esm2020 → esm2022}/datetimepicker/datetimepicker.module.mjs +22 -22
  101. package/{esm2020 → esm2022}/datetimepicker/localization/datetimepicker-custom-messages.component.mjs +9 -8
  102. package/{esm2020 → esm2022}/datetimepicker/localization/localized-messages.directive.mjs +9 -8
  103. package/esm2022/datetimepicker/localization/messages.mjs +147 -0
  104. package/{esm2020 → esm2022}/index.mjs +0 -1
  105. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  106. package/{esm2020 → esm2022}/preventable-event.mjs +2 -3
  107. package/esm2022/timepicker/localization/messages.mjs +99 -0
  108. package/{esm2020 → esm2022}/timepicker/localization/timepicker-custom-messages.component.mjs +9 -8
  109. package/{esm2020 → esm2022}/timepicker/localization/timepicker-localized-messages.directive.mjs +9 -8
  110. package/{esm2020 → esm2022}/timepicker/localization/timeselector-custom-messages.component.mjs +9 -8
  111. package/{esm2020 → esm2022}/timepicker/localization/timeselector-localized-messages.directive.mjs +9 -8
  112. package/{esm2020 → esm2022}/timepicker/services/dayperiod.service.mjs +7 -3
  113. package/{esm2020 → esm2022}/timepicker/services/dom.service.mjs +7 -3
  114. package/{esm2020 → esm2022}/timepicker/services/hours.service.mjs +10 -5
  115. package/{esm2020 → esm2022}/timepicker/services/milliseconds.service.mjs +9 -4
  116. package/{esm2020 → esm2022}/timepicker/services/minutes.service.mjs +9 -4
  117. package/{esm2020 → esm2022}/timepicker/services/seconds.service.mjs +9 -4
  118. package/{esm2020 → esm2022}/timepicker/timelist.component.mjs +45 -27
  119. package/{esm2020 → esm2022}/timepicker/timepicker.component.mjs +301 -219
  120. package/{esm2020 → esm2022}/timepicker/timepicker.module.mjs +14 -14
  121. package/{esm2020 → esm2022}/timepicker/timeselector.component.mjs +96 -73
  122. package/{esm2020 → esm2022}/virtualization/services/row-height.service.mjs +5 -2
  123. package/{esm2020 → esm2022}/virtualization/services/scroller.service.mjs +14 -3
  124. package/{esm2020 → esm2022}/virtualization/virtualization.component.mjs +42 -28
  125. package/{fesm2020 → fesm2022}/progress-kendo-angular-dateinputs.mjs +3758 -2455
  126. package/index.d.ts +0 -1
  127. package/package.json +20 -26
  128. package/schematics/ngAdd/index.js +1 -1
  129. package/timepicker/localization/messages.d.ts +1 -1
  130. package/timepicker/timelist.component.d.ts +1 -1
  131. package/timepicker/timepicker.component.d.ts +2 -1
  132. package/timepicker/timeselector.component.d.ts +1 -1
  133. package/util.d.ts +1 -1
  134. package/virtualization/services/scroller.service.d.ts +2 -2
  135. package/virtualization/virtualization.component.d.ts +1 -1
  136. package/common/adaptive.module.d.ts +0 -18
  137. package/esm2020/calendar/localization/calendar-messages.mjs +0 -29
  138. package/esm2020/common/adaptive.module.mjs +0 -44
  139. package/esm2020/datepicker/localization/messages.mjs +0 -33
  140. package/esm2020/datetimepicker/localization/messages.mjs +0 -63
  141. package/esm2020/timepicker/localization/messages.mjs +0 -47
  142. package/fesm2015/progress-kendo-angular-dateinputs.mjs +0 -19188
  143. /package/{esm2020 → esm2022}/calendar/models/cell-context.interface.mjs +0 -0
  144. /package/{esm2020 → esm2022}/calendar/models/keydown.interface.mjs +0 -0
  145. /package/{esm2020 → esm2022}/calendar/models/navigation-action.enum.mjs +0 -0
  146. /package/{esm2020 → esm2022}/calendar/models/orientation.mjs +0 -0
  147. /package/{esm2020 → esm2022}/calendar/models/row-length-options.interface.mjs +0 -0
  148. /package/{esm2020 → esm2022}/calendar/models/scrollable.interface.mjs +0 -0
  149. /package/{esm2020 → esm2022}/calendar/models/selection-range-end.type.mjs +0 -0
  150. /package/{esm2020 → esm2022}/calendar/models/selection-range.interface.mjs +0 -0
  151. /package/{esm2020 → esm2022}/calendar/models/selection.mjs +0 -0
  152. /package/{esm2020 → esm2022}/calendar/models/type.mjs +0 -0
  153. /package/{esm2020 → esm2022}/calendar/models/view-service.interface.mjs +0 -0
  154. /package/{esm2020 → esm2022}/calendar/models/view.enum.mjs +0 -0
  155. /package/{esm2020 → esm2022}/calendar/models/view.type.mjs +0 -0
  156. /package/{esm2020 → esm2022}/common/dom-queries.mjs +0 -0
  157. /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
  158. /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
  159. /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
  160. /package/{esm2020 → esm2022}/common/models/week-days-format.mjs +0 -0
  161. /package/{esm2020 → esm2022}/common/utils.mjs +0 -0
  162. /package/{esm2020 → esm2022}/dateinput/arrow.enum.mjs +0 -0
  163. /package/{esm2020 → esm2022}/dateinput/models/format-placeholder.model.mjs +0 -0
  164. /package/{esm2020 → esm2022}/dateinput/models/format-settings.model.mjs +0 -0
  165. /package/{esm2020 → esm2022}/dateinput/models/incremental-steps.model.mjs +0 -0
  166. /package/{esm2020 → esm2022}/daterange/auto-correct-on.type.mjs +0 -0
  167. /package/{esm2020 → esm2022}/datetimepicker/models/active-tab.type.mjs +0 -0
  168. /package/{esm2020 → esm2022}/defaults.mjs +0 -0
  169. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  170. /package/{esm2020 → esm2022}/popup-settings.model.mjs +0 -0
  171. /package/{esm2020 → esm2022}/progress-kendo-angular-dateinputs.mjs +0 -0
  172. /package/{esm2020 → esm2022}/timepicker/models/incremental-steps.model.mjs +0 -0
  173. /package/{esm2020 → esm2022}/timepicker/models/list-item.interface.mjs +0 -0
  174. /package/{esm2020 → esm2022}/timepicker/models/list-service-settings.mjs +0 -0
  175. /package/{esm2020 → esm2022}/timepicker/models/list-service.interface.mjs +0 -0
  176. /package/{esm2020 → esm2022}/timepicker/models/time-part.default.mjs +0 -0
  177. /package/{esm2020 → esm2022}/timepicker/util.mjs +0 -0
  178. /package/{esm2020 → esm2022}/util.mjs +0 -0
  179. /package/{esm2020 → esm2022}/validators/disabled-date.validator.mjs +0 -0
  180. /package/{esm2020 → esm2022}/validators/disabled-dates-range.validator.mjs +0 -0
  181. /package/{esm2020 → esm2022}/validators/incomplete-date.validator.mjs +0 -0
  182. /package/{esm2020 → esm2022}/validators/max.validator.mjs +0 -0
  183. /package/{esm2020 → esm2022}/validators/min.validator.mjs +0 -0
  184. /package/{esm2020 → esm2022}/validators/time-range.validator.mjs +0 -0
  185. /package/{esm2020 → esm2022}/virtualization/models/scrollable.interface.mjs +0 -0
package/index.d.ts CHANGED
@@ -90,6 +90,5 @@ export { DateInputRounded } from './common/models/rounded';
90
90
  export { DateInputFillMode } from './common/models/fillmode';
91
91
  export { WeekDaysFormat } from './common/models/week-days-format';
92
92
  export { AdaptiveMode } from './util';
93
- export { AdaptiveModule } from './common/adaptive.module';
94
93
  export { ToggleButtonTabStopDirective } from '@progress/kendo-angular-common';
95
94
  export * from './directives';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "17.0.0-develop.8",
3
+ "version": "17.0.0",
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",
@@ -28,34 +28,30 @@
28
28
  "friendlyName": "DateInputs"
29
29
  },
30
30
  "peerDependencies": {
31
- "@angular/animations": "15 - 18",
32
- "@angular/common": "15 - 18",
33
- "@angular/core": "15 - 18",
34
- "@angular/forms": "15 - 18",
35
- "@angular/platform-browser": "15 - 18",
31
+ "@angular/animations": "16 - 18",
32
+ "@angular/common": "16 - 18",
33
+ "@angular/core": "16 - 18",
34
+ "@angular/forms": "16 - 18",
35
+ "@angular/platform-browser": "16 - 18",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "17.0.0-develop.8",
38
- "@progress/kendo-angular-common": "17.0.0-develop.8",
39
- "@progress/kendo-angular-intl": "17.0.0-develop.8",
40
- "@progress/kendo-angular-l10n": "17.0.0-develop.8",
41
- "@progress/kendo-angular-icons": "17.0.0-develop.8",
42
- "@progress/kendo-angular-popup": "17.0.0-develop.8",
43
- "@progress/kendo-angular-navigation": "17.0.0-develop.8",
37
+ "@progress/kendo-angular-buttons": "17.0.0",
38
+ "@progress/kendo-angular-common": "17.0.0",
39
+ "@progress/kendo-angular-intl": "17.0.0",
40
+ "@progress/kendo-angular-l10n": "17.0.0",
41
+ "@progress/kendo-angular-icons": "17.0.0",
42
+ "@progress/kendo-angular-popup": "17.0.0",
43
+ "@progress/kendo-angular-navigation": "17.0.0",
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": "17.0.0-develop.8",
49
- "@progress/kendo-common": "^0.2.0",
48
+ "@progress/kendo-angular-schematics": "17.0.0",
49
+ "@progress/kendo-common": "^1.0.1",
50
50
  "@progress/kendo-date-math": "^1.1.0",
51
- "@progress/kendo-dateinputs-common": "^0.3.5"
51
+ "@progress/kendo-dateinputs-common": "^0.4.0"
52
52
  },
53
53
  "schematics": "./schematics/collection.json",
54
- "module": "fesm2015/progress-kendo-angular-dateinputs.mjs",
55
- "es2020": "fesm2020/progress-kendo-angular-dateinputs.mjs",
56
- "esm2020": "esm2020/progress-kendo-angular-dateinputs.mjs",
57
- "fesm2020": "fesm2020/progress-kendo-angular-dateinputs.mjs",
58
- "fesm2015": "fesm2015/progress-kendo-angular-dateinputs.mjs",
54
+ "module": "fesm2022/progress-kendo-angular-dateinputs.mjs",
59
55
  "typings": "index.d.ts",
60
56
  "exports": {
61
57
  "./package.json": {
@@ -63,11 +59,9 @@
63
59
  },
64
60
  ".": {
65
61
  "types": "./index.d.ts",
66
- "esm2020": "./esm2020/progress-kendo-angular-dateinputs.mjs",
67
- "es2020": "./fesm2020/progress-kendo-angular-dateinputs.mjs",
68
- "es2015": "./fesm2015/progress-kendo-angular-dateinputs.mjs",
69
- "node": "./fesm2015/progress-kendo-angular-dateinputs.mjs",
70
- "default": "./fesm2020/progress-kendo-angular-dateinputs.mjs"
62
+ "esm2022": "./esm2022/progress-kendo-angular-dateinputs.mjs",
63
+ "esm": "./esm2022/progress-kendo-angular-dateinputs.mjs",
64
+ "default": "./fesm2022/progress-kendo-angular-dateinputs.mjs"
71
65
  }
72
66
  },
73
67
  "sideEffects": false
@@ -4,7 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DateInputsModule', package: 'dateinputs', peerDependencies: {
6
6
  // Peer dependency of icons
7
- '@progress/kendo-svg-icons': '^3.0.0'
7
+ '@progress/kendo-svg-icons': '^4.0.0'
8
8
  } });
9
9
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
10
10
  }
@@ -61,5 +61,5 @@ export declare class TimePickerMessages extends ComponentMessages {
61
61
  */
62
62
  clearTitle: string;
63
63
  static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerMessages, never>;
64
- static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerMessages, "kendo-timepicker-messages-base", never, { "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"; }, {}, never, never, false, never>;
64
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TimePickerMessages, "kendo-timepicker-messages-base", never, { "accept": { "alias": "accept"; "required": false; }; "acceptLabel": { "alias": "acceptLabel"; "required": false; }; "cancel": { "alias": "cancel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "now": { "alias": "now"; "required": false; }; "nowLabel": { "alias": "nowLabel"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "hour": { "alias": "hour"; "required": false; }; "minute": { "alias": "minute"; "required": false; }; "second": { "alias": "second"; "required": false; }; "millisecond": { "alias": "millisecond"; "required": false; }; "dayperiod": { "alias": "dayperiod"; "required": false; }; "clearTitle": { "alias": "clearTitle"; "required": false; }; }, {}, never, never, false, never>;
65
65
  }
@@ -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, true, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeListComponent, "kendo-timelist", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "part": { "alias": "part"; "required": false; }; "step": { "alias": "step"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; }, { "valueChange": "valueChange"; "tabOutLastPart": "tabOutLastPart"; }, never, never, true, never>;
94
94
  }
@@ -359,6 +359,7 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
359
359
  */
360
360
  get isControlRequired(): boolean;
361
361
  private get adaptiveAcceptButton();
362
+ private get adaptiveCancelButton();
362
363
  private get inputElement();
363
364
  private onControlChange;
364
365
  private onControlTouched;
@@ -546,5 +547,5 @@ export declare class TimePickerComponent extends MultiTabStop implements Control
546
547
  private handleDateCompletenessChange;
547
548
  private setComponentClasses;
548
549
  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>;
550
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "kendo-timepicker", ["kendo-timepicker"], { "focusableId": { "alias": "focusableId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readOnlyInput": { "alias": "readOnlyInput"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "format": { "alias": "format"; "required": false; }; "formatPlaceholder": { "alias": "formatPlaceholder"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "incompleteDateValidation": { "alias": "incompleteDateValidation"; "required": false; }; "autoSwitchParts": { "alias": "autoSwitchParts"; "required": false; }; "autoSwitchKeys": { "alias": "autoSwitchKeys"; "required": false; }; "enableMouseWheel": { "alias": "enableMouseWheel"; "required": false; }; "allowCaretMode": { "alias": "allowCaretMode"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; "nowButton": { "alias": "nowButton"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "rangeValidation": { "alias": "rangeValidation"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "value": { "alias": "value"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "valueChange": "valueChange"; "onFocus": "focus"; "onBlur": "blur"; "open": "open"; "close": "close"; "escape": "escape"; }, never, never, true, never>;
550
551
  }
@@ -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, true, never>;
200
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeSelectorComponent, "kendo-timeselector", ["kendo-timeselector"], { "format": { "alias": "format"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; "setButton": { "alias": "setButton"; "required": false; }; "nowButton": { "alias": "nowButton"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isAdaptiveEnabled": { "alias": "isAdaptiveEnabled"; "required": false; }; "isDateTimePicker": { "alias": "isDateTimePicker"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "valueReject": "valueReject"; "tabOutLastPart": "tabOutLastPart"; "tabOutNow": "tabOutNow"; }, never, never, true, never>;
201
201
  }
package/util.d.ts CHANGED
@@ -208,4 +208,4 @@ export declare const windowSize: () => 'large' | 'medium' | 'small';
208
208
  * * `none`&mdash;(default)
209
209
  * * `auto`
210
210
  */
211
- export declare type AdaptiveMode = 'none' | 'auto';
211
+ export type AdaptiveMode = 'none' | 'auto';
@@ -21,11 +21,11 @@ export declare class PageAction {
21
21
  /**
22
22
  * @hidden
23
23
  */
24
- export declare type Action = ScrollAction | PageAction;
24
+ export type Action = ScrollAction | PageAction;
25
25
  /**
26
26
  * @hidden
27
27
  */
28
- export declare type ScrollElement = {
28
+ export type ScrollElement = {
29
29
  offsetHeight: number;
30
30
  offsetWidth: number;
31
31
  scrollLeft: number;
@@ -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, ["*"], true, never>;
87
+ static ɵcmp: i0.ɵɵComponentDeclaration<VirtualizationComponent, "kendo-virtualization", never, { "direction": { "alias": "direction"; "required": false; }; "itemHeight": { "alias": "itemHeight"; "required": false; }; "itemWidth": { "alias": "itemWidth"; "required": false; }; "topOffset": { "alias": "topOffset"; "required": false; }; "bottomOffset": { "alias": "bottomOffset"; "required": false; }; "maxScrollDifference": { "alias": "maxScrollDifference"; "required": false; }; "scrollOffsetSize": { "alias": "scrollOffsetSize"; "required": false; }; "scrollDuration": { "alias": "scrollDuration"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "take": { "alias": "take"; "required": false; }; "total": { "alias": "total"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; "pageChange": "pageChange"; "scrollChange": "scrollChange"; }, never, ["*"], true, never>;
88
88
  }
@@ -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 "@progress/kendo-angular-common";
7
- import * as i2 from "@progress/kendo-angular-buttons";
8
- import * as i3 from "@progress/kendo-angular-navigation";
9
- /**
10
- * @hidden
11
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
- * definition for the modules specific to the Adaptive Mode.
13
- */
14
- export declare class AdaptiveModule {
15
- static ɵfac: i0.ɵɵFactoryDeclaration<AdaptiveModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<AdaptiveModule, never, [typeof i1.ResizeSensorComponent, typeof i2.ButtonComponent, typeof i3.ActionSheetComponent, typeof i3.ActionSheetHeaderTemplateDirective, typeof i3.ActionSheetItemTemplateDirective, typeof i3.ActionSheetContentTemplateDirective, typeof i3.ActionSheetFooterTemplateDirective, typeof i3.ActionSheetTemplateDirective, typeof i3.AppBarComponent, typeof i3.AppBarSectionComponent, typeof i3.AppBarSpacerComponent, typeof i3.BottomNavigationComponent, typeof i3.BottomNavigationItemTemplateDirective, typeof i3.BreadCrumbComponent, typeof i3.BreadCrumbItemTemplateDirective], [typeof i1.ResizeSensorComponent, typeof i2.ButtonComponent, typeof i3.ActionSheetComponent, typeof i3.ActionSheetHeaderTemplateDirective, typeof i3.ActionSheetItemTemplateDirective, typeof i3.ActionSheetContentTemplateDirective, typeof i3.ActionSheetFooterTemplateDirective, typeof i3.ActionSheetTemplateDirective, typeof i3.AppBarComponent, typeof i3.AppBarSectionComponent, typeof i3.AppBarSpacerComponent, typeof i3.BottomNavigationComponent, typeof i3.BottomNavigationItemTemplateDirective, typeof i3.BreadCrumbComponent, typeof i3.BreadCrumbItemTemplateDirective]>;
17
- static ɵinj: i0.ɵɵInjectorDeclaration<AdaptiveModule>;
18
- }
@@ -1,29 +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 { Directive, Input } from '@angular/core';
6
- import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export class CalendarMessages extends ComponentMessages {
12
- }
13
- CalendarMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- CalendarMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CalendarMessages, selector: "kendo-calendar-messages-base", inputs: { today: "today", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle" }, usesInheritance: true, ngImport: i0 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CalendarMessages, decorators: [{
16
- type: Directive,
17
- args: [{
18
- // eslint-disable-next-line
19
- selector: 'kendo-calendar-messages-base'
20
- }]
21
- }], propDecorators: { today: [{
22
- type: Input
23
- }], prevButtonTitle: [{
24
- type: Input
25
- }], nextButtonTitle: [{
26
- type: Input
27
- }], parentViewButtonTitle: [{
28
- type: Input
29
- }] } });
@@ -1,44 +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 { KENDO_BUTTON } from '@progress/kendo-angular-buttons';
7
- import { KENDO_NAVIGATION } from '@progress/kendo-angular-navigation';
8
- import { KENDO_RESIZESENSOR, ResizeBatchService } from '@progress/kendo-angular-common';
9
- import { IconsService } from '@progress/kendo-angular-icons';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "@progress/kendo-angular-common";
12
- import * as i2 from "@progress/kendo-angular-buttons";
13
- import * as i3 from "@progress/kendo-angular-navigation";
14
- const KENDO_ADAPTIVE = [
15
- ...KENDO_RESIZESENSOR,
16
- ...KENDO_BUTTON,
17
- ...KENDO_NAVIGATION
18
- ];
19
- //IMPORTANT: This module is not needed and can be removed in the following major release.
20
- //The reason to keep it is that the module used to be public prior the migration to standalone.
21
- /**
22
- * @hidden
23
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
24
- * definition for the modules specific to the Adaptive Mode.
25
- */
26
- export class AdaptiveModule {
27
- }
28
- AdaptiveModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
29
- AdaptiveModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, imports: [i1.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.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] });
30
- AdaptiveModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, providers: [
31
- ResizeBatchService,
32
- IconsService
33
- ], imports: [i1.ResizeSensorComponent, i2.ButtonComponent, i3.ActionSheetComponent, i3.AppBarComponent, i3.AppBarSectionComponent, i3.AppBarSpacerComponent, i3.BottomNavigationComponent, i3.BreadCrumbComponent] });
34
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AdaptiveModule, decorators: [{
35
- type: NgModule,
36
- args: [{
37
- imports: [...KENDO_ADAPTIVE],
38
- exports: [...KENDO_ADAPTIVE],
39
- providers: [
40
- ResizeBatchService,
41
- IconsService
42
- ]
43
- }]
44
- }] });
@@ -1,33 +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 { Directive, Input } from '@angular/core';
6
- import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export class DatePickerMessages extends ComponentMessages {
12
- }
13
- DatePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- DatePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DatePickerMessages, selector: "kendo-datepicker-messages-base", inputs: { today: "today", toggle: "toggle", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle", clearTitle: "clearTitle" }, usesInheritance: true, ngImport: i0 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DatePickerMessages, decorators: [{
16
- type: Directive,
17
- args: [{
18
- // eslint-disable-next-line
19
- selector: 'kendo-datepicker-messages-base'
20
- }]
21
- }], propDecorators: { today: [{
22
- type: Input
23
- }], toggle: [{
24
- type: Input
25
- }], prevButtonTitle: [{
26
- type: Input
27
- }], nextButtonTitle: [{
28
- type: Input
29
- }], parentViewButtonTitle: [{
30
- type: Input
31
- }], clearTitle: [{
32
- type: Input
33
- }] } });
@@ -1,63 +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 { Directive, Input } from '@angular/core';
6
- import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export class DateTimePickerMessages extends ComponentMessages {
12
- }
13
- DateTimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- DateTimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DateTimePickerMessages, selector: "kendo-datetimepicker-messages-base", inputs: { toggle: "toggle", dateTab: "dateTab", dateTabLabel: "dateTabLabel", timeTab: "timeTab", timeTabLabel: "timeTabLabel", accept: "accept", acceptLabel: "acceptLabel", cancel: "cancel", cancelLabel: "cancelLabel", today: "today", now: "now", nowLabel: "nowLabel", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod", clearTitle: "clearTitle" }, usesInheritance: true, ngImport: i0 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DateTimePickerMessages, decorators: [{
16
- type: Directive,
17
- args: [{
18
- // eslint-disable-next-line
19
- selector: 'kendo-datetimepicker-messages-base'
20
- }]
21
- }], propDecorators: { toggle: [{
22
- type: Input
23
- }], dateTab: [{
24
- type: Input
25
- }], dateTabLabel: [{
26
- type: Input
27
- }], timeTab: [{
28
- type: Input
29
- }], timeTabLabel: [{
30
- type: Input
31
- }], accept: [{
32
- type: Input
33
- }], acceptLabel: [{
34
- type: Input
35
- }], cancel: [{
36
- type: Input
37
- }], cancelLabel: [{
38
- type: Input
39
- }], today: [{
40
- type: Input
41
- }], now: [{
42
- type: Input
43
- }], nowLabel: [{
44
- type: Input
45
- }], prevButtonTitle: [{
46
- type: Input
47
- }], nextButtonTitle: [{
48
- type: Input
49
- }], parentViewButtonTitle: [{
50
- type: Input
51
- }], hour: [{
52
- type: Input
53
- }], minute: [{
54
- type: Input
55
- }], second: [{
56
- type: Input
57
- }], millisecond: [{
58
- type: Input
59
- }], dayperiod: [{
60
- type: Input
61
- }], clearTitle: [{
62
- type: Input
63
- }] } });
@@ -1,47 +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 { Directive, Input } from '@angular/core';
6
- import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export class TimePickerMessages extends ComponentMessages {
12
- }
13
- TimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- 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 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TimePickerMessages, decorators: [{
16
- type: Directive,
17
- args: [{
18
- // eslint-disable-next-line
19
- selector: 'kendo-timepicker-messages-base'
20
- }]
21
- }], propDecorators: { accept: [{
22
- type: Input
23
- }], acceptLabel: [{
24
- type: Input
25
- }], cancel: [{
26
- type: Input
27
- }], cancelLabel: [{
28
- type: Input
29
- }], now: [{
30
- type: Input
31
- }], nowLabel: [{
32
- type: Input
33
- }], toggle: [{
34
- type: Input
35
- }], hour: [{
36
- type: Input
37
- }], minute: [{
38
- type: Input
39
- }], second: [{
40
- type: Input
41
- }], millisecond: [{
42
- type: Input
43
- }], dayperiod: [{
44
- type: Input
45
- }], clearTitle: [{
46
- type: Input
47
- }] } });