@progress/kendo-angular-dateinputs 11.4.1-develop.2 → 11.4.1-develop.3

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.
@@ -3,12 +3,12 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
6
- import { Messages } from './messages';
6
+ import { DateTimePickerMessages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
10
10
  */
11
- export declare class DateTimePickerCustomMessagesComponent extends Messages {
11
+ export declare class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
12
12
  protected service: LocalizationService;
13
13
  constructor(service: LocalizationService);
14
14
  protected get override(): boolean;
@@ -3,12 +3,12 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { LocalizationService } from '@progress/kendo-angular-l10n';
6
- import { Messages } from './messages';
6
+ import { DateTimePickerMessages } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * @hidden
10
10
  */
11
- export declare class LocalizedMessagesDirective extends Messages {
11
+ export declare class LocalizedMessagesDirective extends DateTimePickerMessages {
12
12
  protected service: LocalizationService;
13
13
  constructor(service: LocalizationService);
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  /**
8
8
  * @hidden
9
9
  */
10
- export declare class Messages extends ComponentMessages {
10
+ export declare class DateTimePickerMessages extends ComponentMessages {
11
11
  /**
12
12
  * The title of the **Toggle** button of the DateTimePicker.
13
13
  */
@@ -64,6 +64,26 @@ export declare class Messages extends ComponentMessages {
64
64
  * The title of the **Next** button in the header of the Classic Calendar.
65
65
  */
66
66
  nextButtonTitle: string;
67
- static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
68
- static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-datetimepicker-messages-base", never, { "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"; }, {}, never>;
67
+ /**
68
+ * The label of the **Hour** part in the TimePicker.
69
+ */
70
+ hour: string;
71
+ /**
72
+ * The label of the **Minute** part in the TimePicker.
73
+ */
74
+ minute: string;
75
+ /**
76
+ * The label of the **Second** part in the TimePicker.
77
+ */
78
+ second: string;
79
+ /**
80
+ * The label of the **Millisecond** part in the TimePicker.
81
+ */
82
+ millisecond: string;
83
+ /**
84
+ * The label of the **Dayperiod** part in the TimePicker.
85
+ */
86
+ dayperiod: string;
87
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateTimePickerMessages, never>;
88
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateTimePickerMessages, "kendo-datetimepicker-messages-base", never, { "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"; "hour": "hour"; "minute": "minute"; "second": "second"; "millisecond": "millisecond"; "dayperiod": "dayperiod"; }, {}, never>;
69
89
  }
@@ -1209,6 +1209,21 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
1209
1209
 
1210
1210
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
1211
1211
  nextButtonTitle="Navigate to next view"
1212
+
1213
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
1214
+ hour="Hour"
1215
+
1216
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
1217
+ minute="Minute"
1218
+
1219
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
1220
+ second="Second"
1221
+
1222
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
1223
+ millisecond="Millisecond"
1224
+
1225
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
1226
+ dayperiod="Dayperiod"
1212
1227
  >
1213
1228
  </ng-container>
1214
1229
 
@@ -1434,8 +1449,17 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
1434
1449
  [isDateTimePicker]="true"
1435
1450
  >
1436
1451
  <kendo-timeselector-messages
1437
- [now]="localization.get('now')"
1452
+ [acceptLabel]="localization.get('acceptLabel')"
1453
+ [accept]="localization.get('accept')"
1454
+ [cancelLabel]="localization.get('cancelLabel')"
1455
+ [cancel]="localization.get('cancel')"
1438
1456
  [nowLabel]="localization.get('nowLabel')"
1457
+ [now]="localization.get('now')"
1458
+ [hour]="localization.get('hour')"
1459
+ [minute]="localization.get('minute')"
1460
+ [second]="localization.get('second')"
1461
+ [millisecond]="localization.get('millisecond')"
1462
+ [dayperiod]="localization.get('dayperiod')"
1439
1463
  >
1440
1464
  </kendo-timeselector-messages>
1441
1465
  </kendo-timeselector>
@@ -1543,6 +1567,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1543
1567
 
1544
1568
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
1545
1569
  nextButtonTitle="Navigate to next view"
1570
+
1571
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
1572
+ hour="Hour"
1573
+
1574
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
1575
+ minute="Minute"
1576
+
1577
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
1578
+ second="Second"
1579
+
1580
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
1581
+ millisecond="Millisecond"
1582
+
1583
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
1584
+ dayperiod="Dayperiod"
1546
1585
  >
1547
1586
  </ng-container>
1548
1587
 
@@ -1768,8 +1807,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
1768
1807
  [isDateTimePicker]="true"
1769
1808
  >
1770
1809
  <kendo-timeselector-messages
1771
- [now]="localization.get('now')"
1810
+ [acceptLabel]="localization.get('acceptLabel')"
1811
+ [accept]="localization.get('accept')"
1812
+ [cancelLabel]="localization.get('cancelLabel')"
1813
+ [cancel]="localization.get('cancel')"
1772
1814
  [nowLabel]="localization.get('nowLabel')"
1815
+ [now]="localization.get('now')"
1816
+ [hour]="localization.get('hour')"
1817
+ [minute]="localization.get('minute')"
1818
+ [second]="localization.get('second')"
1819
+ [millisecond]="localization.get('millisecond')"
1820
+ [dayperiod]="localization.get('dayperiod')"
1773
1821
  >
1774
1822
  </kendo-timeselector-messages>
1775
1823
  </kendo-timeselector>
@@ -4,13 +4,13 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, forwardRef } from '@angular/core';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
- import { Messages } from './messages';
7
+ import { DateTimePickerMessages } from './messages';
8
8
  import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
12
12
  */
13
- export class DateTimePickerCustomMessagesComponent extends Messages {
13
+ export class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
14
14
  constructor(service) {
15
15
  super();
16
16
  this.service = service;
@@ -22,7 +22,7 @@ export class DateTimePickerCustomMessagesComponent extends Messages {
22
22
  DateTimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerCustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
23
23
  DateTimePickerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerCustomMessagesComponent, selector: "kendo-datetimepicker-messages", providers: [
24
24
  {
25
- provide: Messages,
25
+ provide: DateTimePickerMessages,
26
26
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
27
27
  }
28
28
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
@@ -31,7 +31,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
31
31
  args: [{
32
32
  providers: [
33
33
  {
34
- provide: Messages,
34
+ provide: DateTimePickerMessages,
35
35
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
36
36
  }
37
37
  ],
@@ -4,13 +4,13 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Directive, forwardRef } from '@angular/core';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
- import { Messages } from './messages';
7
+ import { DateTimePickerMessages } from './messages';
8
8
  import * as i0 from "@angular/core";
9
9
  import * as i1 from "@progress/kendo-angular-l10n";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
- export class LocalizedMessagesDirective extends Messages {
13
+ export class LocalizedMessagesDirective extends DateTimePickerMessages {
14
14
  constructor(service) {
15
15
  super();
16
16
  this.service = service;
@@ -19,7 +19,7 @@ export class LocalizedMessagesDirective extends Messages {
19
19
  LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
20
20
  LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]", providers: [
21
21
  {
22
- provide: Messages,
22
+ provide: DateTimePickerMessages,
23
23
  useExisting: forwardRef(() => LocalizedMessagesDirective)
24
24
  }
25
25
  ], usesInheritance: true, ngImport: i0 });
@@ -28,7 +28,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
28
28
  args: [{
29
29
  providers: [
30
30
  {
31
- provide: Messages,
31
+ provide: DateTimePickerMessages,
32
32
  useExisting: forwardRef(() => LocalizedMessagesDirective)
33
33
  }
34
34
  ],
@@ -8,11 +8,11 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * @hidden
10
10
  */
11
- export class Messages extends ComponentMessages {
11
+ export class DateTimePickerMessages extends ComponentMessages {
12
12
  }
13
- Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, 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" }, usesInheritance: true, ngImport: i0 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
13
+ DateTimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
+ DateTimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", 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", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod" }, usesInheritance: true, ngImport: i0 });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, decorators: [{
16
16
  type: Directive,
17
17
  args: [{
18
18
  // eslint-disable-next-line
@@ -46,4 +46,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
46
46
  type: Input
47
47
  }], nextButtonTitle: [{
48
48
  type: Input
49
+ }], hour: [{
50
+ type: Input
51
+ }], minute: [{
52
+ type: Input
53
+ }], second: [{
54
+ type: Input
55
+ }], millisecond: [{
56
+ type: Input
57
+ }], dayperiod: [{
58
+ type: Input
49
59
  }] } });
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-dateinputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1678967999,
13
- version: '11.4.1-develop.2',
12
+ publishDate: 1679040031,
13
+ version: '11.4.1-develop.3',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  name: '@progress/kendo-angular-dateinputs',
37
37
  productName: 'Kendo UI for Angular',
38
38
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
39
- publishDate: 1678967999,
40
- version: '11.4.1-develop.2',
39
+ publishDate: 1679040031,
40
+ version: '11.4.1-develop.3',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -3134,11 +3134,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3134
3134
  /**
3135
3135
  * @hidden
3136
3136
  */
3137
- class Messages$1 extends ComponentMessages {
3137
+ class Messages extends ComponentMessages {
3138
3138
  }
3139
- Messages$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3140
- Messages$1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages$1, selector: "kendo-multiview-calendar-messages-base", inputs: { today: "today", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle" }, usesInheritance: true, ngImport: i0 });
3141
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
3139
+ Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3140
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, selector: "kendo-multiview-calendar-messages-base", inputs: { today: "today", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle" }, usesInheritance: true, ngImport: i0 });
3141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
3142
3142
  type: Directive,
3143
3143
  args: [{
3144
3144
  // eslint-disable-next-line
@@ -3157,7 +3157,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3157
3157
  /**
3158
3158
  * @hidden
3159
3159
  */
3160
- class MultiViewCalendarLocalizedMessagesDirective extends Messages$1 {
3160
+ class MultiViewCalendarLocalizedMessagesDirective extends Messages {
3161
3161
  constructor(service) {
3162
3162
  super();
3163
3163
  this.service = service;
@@ -3166,7 +3166,7 @@ class MultiViewCalendarLocalizedMessagesDirective extends Messages$1 {
3166
3166
  MultiViewCalendarLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultiViewCalendarLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
3167
3167
  MultiViewCalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]", providers: [
3168
3168
  {
3169
- provide: Messages$1,
3169
+ provide: Messages,
3170
3170
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
3171
3171
  }
3172
3172
  ], usesInheritance: true, ngImport: i0 });
@@ -3175,7 +3175,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3175
3175
  args: [{
3176
3176
  providers: [
3177
3177
  {
3178
- provide: Messages$1,
3178
+ provide: Messages,
3179
3179
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
3180
3180
  }
3181
3181
  ],
@@ -5546,7 +5546,7 @@ class PickerService {
5546
5546
  /**
5547
5547
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
5548
5548
  */
5549
- class MultiViewCalendarCustomMessagesComponent extends Messages$1 {
5549
+ class MultiViewCalendarCustomMessagesComponent extends Messages {
5550
5550
  constructor(service) {
5551
5551
  super();
5552
5552
  this.service = service;
@@ -5558,7 +5558,7 @@ class MultiViewCalendarCustomMessagesComponent extends Messages$1 {
5558
5558
  MultiViewCalendarCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultiViewCalendarCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
5559
5559
  MultiViewCalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages", providers: [
5560
5560
  {
5561
- provide: Messages$1,
5561
+ provide: Messages,
5562
5562
  useExisting: forwardRef(() => MultiViewCalendarCustomMessagesComponent)
5563
5563
  }
5564
5564
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
@@ -5567,7 +5567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5567
5567
  args: [{
5568
5568
  providers: [
5569
5569
  {
5570
- provide: Messages$1,
5570
+ provide: Messages,
5571
5571
  useExisting: forwardRef(() => MultiViewCalendarCustomMessagesComponent)
5572
5572
  }
5573
5573
  ],
@@ -13406,11 +13406,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13406
13406
  /**
13407
13407
  * @hidden
13408
13408
  */
13409
- class Messages extends ComponentMessages {
13409
+ class DateTimePickerMessages extends ComponentMessages {
13410
13410
  }
13411
- Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
13412
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, 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" }, usesInheritance: true, ngImport: i0 });
13413
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
13411
+ DateTimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
13412
+ DateTimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", 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", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod" }, usesInheritance: true, ngImport: i0 });
13413
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, decorators: [{
13414
13414
  type: Directive,
13415
13415
  args: [{
13416
13416
  // eslint-disable-next-line
@@ -13444,12 +13444,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13444
13444
  type: Input
13445
13445
  }], nextButtonTitle: [{
13446
13446
  type: Input
13447
+ }], hour: [{
13448
+ type: Input
13449
+ }], minute: [{
13450
+ type: Input
13451
+ }], second: [{
13452
+ type: Input
13453
+ }], millisecond: [{
13454
+ type: Input
13455
+ }], dayperiod: [{
13456
+ type: Input
13447
13457
  }] } });
13448
13458
 
13449
13459
  /**
13450
13460
  * @hidden
13451
13461
  */
13452
- class LocalizedMessagesDirective extends Messages {
13462
+ class LocalizedMessagesDirective extends DateTimePickerMessages {
13453
13463
  constructor(service) {
13454
13464
  super();
13455
13465
  this.service = service;
@@ -13458,7 +13468,7 @@ class LocalizedMessagesDirective extends Messages {
13458
13468
  LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
13459
13469
  LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]", providers: [
13460
13470
  {
13461
- provide: Messages,
13471
+ provide: DateTimePickerMessages,
13462
13472
  useExisting: forwardRef(() => LocalizedMessagesDirective)
13463
13473
  }
13464
13474
  ], usesInheritance: true, ngImport: i0 });
@@ -13467,7 +13477,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13467
13477
  args: [{
13468
13478
  providers: [
13469
13479
  {
13470
- provide: Messages,
13480
+ provide: DateTimePickerMessages,
13471
13481
  useExisting: forwardRef(() => LocalizedMessagesDirective)
13472
13482
  }
13473
13483
  ],
@@ -14634,6 +14644,21 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
14634
14644
 
14635
14645
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
14636
14646
  nextButtonTitle="Navigate to next view"
14647
+
14648
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
14649
+ hour="Hour"
14650
+
14651
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
14652
+ minute="Minute"
14653
+
14654
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
14655
+ second="Second"
14656
+
14657
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
14658
+ millisecond="Millisecond"
14659
+
14660
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
14661
+ dayperiod="Dayperiod"
14637
14662
  >
14638
14663
  </ng-container>
14639
14664
 
@@ -14859,8 +14884,17 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
14859
14884
  [isDateTimePicker]="true"
14860
14885
  >
14861
14886
  <kendo-timeselector-messages
14862
- [now]="localization.get('now')"
14887
+ [acceptLabel]="localization.get('acceptLabel')"
14888
+ [accept]="localization.get('accept')"
14889
+ [cancelLabel]="localization.get('cancelLabel')"
14890
+ [cancel]="localization.get('cancel')"
14863
14891
  [nowLabel]="localization.get('nowLabel')"
14892
+ [now]="localization.get('now')"
14893
+ [hour]="localization.get('hour')"
14894
+ [minute]="localization.get('minute')"
14895
+ [second]="localization.get('second')"
14896
+ [millisecond]="localization.get('millisecond')"
14897
+ [dayperiod]="localization.get('dayperiod')"
14864
14898
  >
14865
14899
  </kendo-timeselector-messages>
14866
14900
  </kendo-timeselector>
@@ -14968,6 +15002,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
14968
15002
 
14969
15003
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
14970
15004
  nextButtonTitle="Navigate to next view"
15005
+
15006
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
15007
+ hour="Hour"
15008
+
15009
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
15010
+ minute="Minute"
15011
+
15012
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
15013
+ second="Second"
15014
+
15015
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
15016
+ millisecond="Millisecond"
15017
+
15018
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
15019
+ dayperiod="Dayperiod"
14971
15020
  >
14972
15021
  </ng-container>
14973
15022
 
@@ -15193,8 +15242,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15193
15242
  [isDateTimePicker]="true"
15194
15243
  >
15195
15244
  <kendo-timeselector-messages
15196
- [now]="localization.get('now')"
15245
+ [acceptLabel]="localization.get('acceptLabel')"
15246
+ [accept]="localization.get('accept')"
15247
+ [cancelLabel]="localization.get('cancelLabel')"
15248
+ [cancel]="localization.get('cancel')"
15197
15249
  [nowLabel]="localization.get('nowLabel')"
15250
+ [now]="localization.get('now')"
15251
+ [hour]="localization.get('hour')"
15252
+ [minute]="localization.get('minute')"
15253
+ [second]="localization.get('second')"
15254
+ [millisecond]="localization.get('millisecond')"
15255
+ [dayperiod]="localization.get('dayperiod')"
15198
15256
  >
15199
15257
  </kendo-timeselector-messages>
15200
15258
  </kendo-timeselector>
@@ -17668,7 +17726,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17668
17726
  /**
17669
17727
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
17670
17728
  */
17671
- class DateTimePickerCustomMessagesComponent extends Messages {
17729
+ class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
17672
17730
  constructor(service) {
17673
17731
  super();
17674
17732
  this.service = service;
@@ -17680,7 +17738,7 @@ class DateTimePickerCustomMessagesComponent extends Messages {
17680
17738
  DateTimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17681
17739
  DateTimePickerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerCustomMessagesComponent, selector: "kendo-datetimepicker-messages", providers: [
17682
17740
  {
17683
- provide: Messages,
17741
+ provide: DateTimePickerMessages,
17684
17742
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
17685
17743
  }
17686
17744
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
@@ -17689,7 +17747,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17689
17747
  args: [{
17690
17748
  providers: [
17691
17749
  {
17692
- provide: Messages,
17750
+ provide: DateTimePickerMessages,
17693
17751
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
17694
17752
  }
17695
17753
  ],
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  name: '@progress/kendo-angular-dateinputs',
37
37
  productName: 'Kendo UI for Angular',
38
38
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
39
- publishDate: 1678967999,
40
- version: '11.4.1-develop.2',
39
+ publishDate: 1679040031,
40
+ version: '11.4.1-develop.3',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -3134,11 +3134,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3134
3134
  /**
3135
3135
  * @hidden
3136
3136
  */
3137
- class Messages$1 extends ComponentMessages {
3137
+ class Messages extends ComponentMessages {
3138
3138
  }
3139
- Messages$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3140
- Messages$1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages$1, selector: "kendo-multiview-calendar-messages-base", inputs: { today: "today", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle" }, usesInheritance: true, ngImport: i0 });
3141
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
3139
+ Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
3140
+ Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, selector: "kendo-multiview-calendar-messages-base", inputs: { today: "today", prevButtonTitle: "prevButtonTitle", nextButtonTitle: "nextButtonTitle", parentViewButtonTitle: "parentViewButtonTitle" }, usesInheritance: true, ngImport: i0 });
3141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
3142
3142
  type: Directive,
3143
3143
  args: [{
3144
3144
  // eslint-disable-next-line
@@ -3157,7 +3157,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3157
3157
  /**
3158
3158
  * @hidden
3159
3159
  */
3160
- class MultiViewCalendarLocalizedMessagesDirective extends Messages$1 {
3160
+ class MultiViewCalendarLocalizedMessagesDirective extends Messages {
3161
3161
  constructor(service) {
3162
3162
  super();
3163
3163
  this.service = service;
@@ -3166,7 +3166,7 @@ class MultiViewCalendarLocalizedMessagesDirective extends Messages$1 {
3166
3166
  MultiViewCalendarLocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultiViewCalendarLocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
3167
3167
  MultiViewCalendarLocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: MultiViewCalendarLocalizedMessagesDirective, selector: "[kendoMultiViewCalendarLocalizedMessages]", providers: [
3168
3168
  {
3169
- provide: Messages$1,
3169
+ provide: Messages,
3170
3170
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
3171
3171
  }
3172
3172
  ], usesInheritance: true, ngImport: i0 });
@@ -3175,7 +3175,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3175
3175
  args: [{
3176
3176
  providers: [
3177
3177
  {
3178
- provide: Messages$1,
3178
+ provide: Messages,
3179
3179
  useExisting: forwardRef(() => MultiViewCalendarLocalizedMessagesDirective)
3180
3180
  }
3181
3181
  ],
@@ -5544,7 +5544,7 @@ class PickerService {
5544
5544
  /**
5545
5545
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
5546
5546
  */
5547
- class MultiViewCalendarCustomMessagesComponent extends Messages$1 {
5547
+ class MultiViewCalendarCustomMessagesComponent extends Messages {
5548
5548
  constructor(service) {
5549
5549
  super();
5550
5550
  this.service = service;
@@ -5556,7 +5556,7 @@ class MultiViewCalendarCustomMessagesComponent extends Messages$1 {
5556
5556
  MultiViewCalendarCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MultiViewCalendarCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
5557
5557
  MultiViewCalendarCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: MultiViewCalendarCustomMessagesComponent, selector: "kendo-multiviewcalendar-messages", providers: [
5558
5558
  {
5559
- provide: Messages$1,
5559
+ provide: Messages,
5560
5560
  useExisting: forwardRef(() => MultiViewCalendarCustomMessagesComponent)
5561
5561
  }
5562
5562
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
@@ -5565,7 +5565,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
5565
5565
  args: [{
5566
5566
  providers: [
5567
5567
  {
5568
- provide: Messages$1,
5568
+ provide: Messages,
5569
5569
  useExisting: forwardRef(() => MultiViewCalendarCustomMessagesComponent)
5570
5570
  }
5571
5571
  ],
@@ -13388,11 +13388,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13388
13388
  /**
13389
13389
  * @hidden
13390
13390
  */
13391
- class Messages extends ComponentMessages {
13391
+ class DateTimePickerMessages extends ComponentMessages {
13392
13392
  }
13393
- Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
13394
- Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, 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" }, usesInheritance: true, ngImport: i0 });
13395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
13393
+ DateTimePickerMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
13394
+ DateTimePickerMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", 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", hour: "hour", minute: "minute", second: "second", millisecond: "millisecond", dayperiod: "dayperiod" }, usesInheritance: true, ngImport: i0 });
13395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerMessages, decorators: [{
13396
13396
  type: Directive,
13397
13397
  args: [{
13398
13398
  // eslint-disable-next-line
@@ -13426,12 +13426,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13426
13426
  type: Input
13427
13427
  }], nextButtonTitle: [{
13428
13428
  type: Input
13429
+ }], hour: [{
13430
+ type: Input
13431
+ }], minute: [{
13432
+ type: Input
13433
+ }], second: [{
13434
+ type: Input
13435
+ }], millisecond: [{
13436
+ type: Input
13437
+ }], dayperiod: [{
13438
+ type: Input
13429
13439
  }] } });
13430
13440
 
13431
13441
  /**
13432
13442
  * @hidden
13433
13443
  */
13434
- class LocalizedMessagesDirective extends Messages {
13444
+ class LocalizedMessagesDirective extends DateTimePickerMessages {
13435
13445
  constructor(service) {
13436
13446
  super();
13437
13447
  this.service = service;
@@ -13440,7 +13450,7 @@ class LocalizedMessagesDirective extends Messages {
13440
13450
  LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
13441
13451
  LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: LocalizedMessagesDirective, selector: "[kendoDateTimePickerLocalizedMessages]", providers: [
13442
13452
  {
13443
- provide: Messages,
13453
+ provide: DateTimePickerMessages,
13444
13454
  useExisting: forwardRef(() => LocalizedMessagesDirective)
13445
13455
  }
13446
13456
  ], usesInheritance: true, ngImport: i0 });
@@ -13449,7 +13459,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
13449
13459
  args: [{
13450
13460
  providers: [
13451
13461
  {
13452
- provide: Messages,
13462
+ provide: DateTimePickerMessages,
13453
13463
  useExisting: forwardRef(() => LocalizedMessagesDirective)
13454
13464
  }
13455
13465
  ],
@@ -14615,6 +14625,21 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
14615
14625
 
14616
14626
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
14617
14627
  nextButtonTitle="Navigate to next view"
14628
+
14629
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
14630
+ hour="Hour"
14631
+
14632
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
14633
+ minute="Minute"
14634
+
14635
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
14636
+ second="Second"
14637
+
14638
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
14639
+ millisecond="Millisecond"
14640
+
14641
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
14642
+ dayperiod="Dayperiod"
14618
14643
  >
14619
14644
  </ng-container>
14620
14645
 
@@ -14840,8 +14865,17 @@ DateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
14840
14865
  [isDateTimePicker]="true"
14841
14866
  >
14842
14867
  <kendo-timeselector-messages
14843
- [now]="localization.get('now')"
14868
+ [acceptLabel]="localization.get('acceptLabel')"
14869
+ [accept]="localization.get('accept')"
14870
+ [cancelLabel]="localization.get('cancelLabel')"
14871
+ [cancel]="localization.get('cancel')"
14844
14872
  [nowLabel]="localization.get('nowLabel')"
14873
+ [now]="localization.get('now')"
14874
+ [hour]="localization.get('hour')"
14875
+ [minute]="localization.get('minute')"
14876
+ [second]="localization.get('second')"
14877
+ [millisecond]="localization.get('millisecond')"
14878
+ [dayperiod]="localization.get('dayperiod')"
14845
14879
  >
14846
14880
  </kendo-timeselector-messages>
14847
14881
  </kendo-timeselector>
@@ -14949,6 +14983,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
14949
14983
 
14950
14984
  i18n-nextButtonTitle="kendo.datetimepicker.nextButtonTitle|The title of the next button in the Classic calendar"
14951
14985
  nextButtonTitle="Navigate to next view"
14986
+
14987
+ i18n-hour="kendo.datetimepicker.hour|The label for the hour part in the timepicker component"
14988
+ hour="Hour"
14989
+
14990
+ i18n-minute="kendo.datetimepicker.minute|The label for the minute part in the timepicker component"
14991
+ minute="Minute"
14992
+
14993
+ i18n-second="kendo.datetimepicker.second|The label for the second part in the timepicker component"
14994
+ second="Second"
14995
+
14996
+ i18n-millisecond="kendo.datetimepicker.millisecond|The label for the millisecond part in the timepicker component"
14997
+ millisecond="Millisecond"
14998
+
14999
+ i18n-dayperiod="kendo.datetimepicker.dayperiod|The label for the dayperiod part in the timepicker component"
15000
+ dayperiod="Dayperiod"
14952
15001
  >
14953
15002
  </ng-container>
14954
15003
 
@@ -15174,8 +15223,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
15174
15223
  [isDateTimePicker]="true"
15175
15224
  >
15176
15225
  <kendo-timeselector-messages
15177
- [now]="localization.get('now')"
15226
+ [acceptLabel]="localization.get('acceptLabel')"
15227
+ [accept]="localization.get('accept')"
15228
+ [cancelLabel]="localization.get('cancelLabel')"
15229
+ [cancel]="localization.get('cancel')"
15178
15230
  [nowLabel]="localization.get('nowLabel')"
15231
+ [now]="localization.get('now')"
15232
+ [hour]="localization.get('hour')"
15233
+ [minute]="localization.get('minute')"
15234
+ [second]="localization.get('second')"
15235
+ [millisecond]="localization.get('millisecond')"
15236
+ [dayperiod]="localization.get('dayperiod')"
15179
15237
  >
15180
15238
  </kendo-timeselector-messages>
15181
15239
  </kendo-timeselector>
@@ -17640,7 +17698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17640
17698
  /**
17641
17699
  * Custom component messages override default component messages ([see example]({% slug globalization_dateinputs %}#toc-custom-messages)).
17642
17700
  */
17643
- class DateTimePickerCustomMessagesComponent extends Messages {
17701
+ class DateTimePickerCustomMessagesComponent extends DateTimePickerMessages {
17644
17702
  constructor(service) {
17645
17703
  super();
17646
17704
  this.service = service;
@@ -17652,7 +17710,7 @@ class DateTimePickerCustomMessagesComponent extends Messages {
17652
17710
  DateTimePickerCustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DateTimePickerCustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17653
17711
  DateTimePickerCustomMessagesComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: DateTimePickerCustomMessagesComponent, selector: "kendo-datetimepicker-messages", providers: [
17654
17712
  {
17655
- provide: Messages,
17713
+ provide: DateTimePickerMessages,
17656
17714
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
17657
17715
  }
17658
17716
  ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
@@ -17661,7 +17719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
17661
17719
  args: [{
17662
17720
  providers: [
17663
17721
  {
17664
- provide: Messages,
17722
+ provide: DateTimePickerMessages,
17665
17723
  useExisting: forwardRef(() => DateTimePickerCustomMessagesComponent)
17666
17724
  }
17667
17725
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "11.4.1-develop.2",
3
+ "version": "11.4.1-develop.3",
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",
@@ -33,20 +33,20 @@
33
33
  "@angular/core": "13 - 15",
34
34
  "@angular/platform-browser": "13 - 15",
35
35
  "@progress/kendo-licensing": "^1.0.2",
36
- "@progress/kendo-angular-common": "11.4.1-develop.2",
37
- "@progress/kendo-angular-intl": "11.4.1-develop.2",
38
- "@progress/kendo-angular-l10n": "11.4.1-develop.2",
39
- "@progress/kendo-angular-icons": "11.4.1-develop.2",
40
- "@progress/kendo-angular-popup": "11.4.1-develop.2",
41
- "@progress/kendo-angular-navigation": "11.4.1-develop.2",
36
+ "@progress/kendo-angular-common": "11.4.1-develop.3",
37
+ "@progress/kendo-angular-intl": "11.4.1-develop.3",
38
+ "@progress/kendo-angular-l10n": "11.4.1-develop.3",
39
+ "@progress/kendo-angular-icons": "11.4.1-develop.3",
40
+ "@progress/kendo-angular-popup": "11.4.1-develop.3",
41
+ "@progress/kendo-angular-navigation": "11.4.1-develop.3",
42
42
  "rxjs": "^6.5.3 || ^7.0.0",
43
- "@progress/kendo-angular-buttons": "11.4.1-develop.2",
44
- "@progress/kendo-angular-inputs": "11.4.1-develop.2",
45
- "@progress/kendo-angular-label": "11.4.1-develop.2"
43
+ "@progress/kendo-angular-buttons": "11.4.1-develop.3",
44
+ "@progress/kendo-angular-inputs": "11.4.1-develop.3",
45
+ "@progress/kendo-angular-label": "11.4.1-develop.3"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.3.1",
49
- "@progress/kendo-angular-schematics": "11.4.1-develop.2",
49
+ "@progress/kendo-angular-schematics": "11.4.1-develop.3",
50
50
  "@progress/kendo-common": "^0.2.0",
51
51
  "@progress/kendo-date-math": "^1.1.0"
52
52
  },