@progress/kendo-angular-scheduler 15.0.2-develop.3 → 15.0.2-develop.5
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.
- package/editing/recurrence/localization/messages.d.ts +21 -1
- package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +2 -2
- package/editing/recurrence/recurrence-interval-editor.component.d.ts +2 -2
- package/editing/recurrence/recurrence-monthly-yearly-editor.component.d.ts +2 -2
- package/esm2020/editing/recurrence/localization/messages.mjs +11 -1
- package/esm2020/editing/recurrence/recurrence-editor.component.mjs +30 -0
- package/esm2020/editing/recurrence/recurrence-end-rule-editor.component.mjs +14 -14
- package/esm2020/editing/recurrence/recurrence-interval-editor.component.mjs +8 -8
- package/esm2020/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +8 -8
- package/esm2020/localization/messages.mjs +7 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/scheduler.component.mjs +22 -4
- package/esm2020/toolbar/navigation.component.mjs +12 -0
- package/fesm2015/progress-kendo-angular-scheduler.mjs +108 -32
- package/fesm2020/progress-kendo-angular-scheduler.mjs +108 -32
- package/localization/messages.d.ts +13 -1
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +2 -2
- package/toolbar/navigation.component.d.ts +6 -2
|
@@ -50,8 +50,8 @@ const packageMetadata = {
|
|
|
50
50
|
name: '@progress/kendo-angular-scheduler',
|
|
51
51
|
productName: 'Kendo UI for Angular',
|
|
52
52
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
53
|
-
publishDate:
|
|
54
|
-
version: '15.0.2-develop.
|
|
53
|
+
publishDate: 1707731800,
|
|
54
|
+
version: '15.0.2-develop.5',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -2306,6 +2306,18 @@ class ToolbarNavigationComponent {
|
|
|
2306
2306
|
this.cd = cd;
|
|
2307
2307
|
this.viewContext = viewContext;
|
|
2308
2308
|
this.hostClass = true;
|
|
2309
|
+
/**
|
|
2310
|
+
* Sets the [`activeView`]({% slug api_dateinputs_calendarcomponent %}#toc-activeview) of the Calendar in the navigation component.
|
|
2311
|
+
*
|
|
2312
|
+
* @default month
|
|
2313
|
+
*/
|
|
2314
|
+
this.activeView = 'month';
|
|
2315
|
+
/**
|
|
2316
|
+
* Sets the [`bottomView`]({% slug api_dateinputs_calendarcomponent %}#toc-bottomview) of the Calendar in the navigation component.
|
|
2317
|
+
*
|
|
2318
|
+
* @default month
|
|
2319
|
+
*/
|
|
2320
|
+
this.bottomView = 'month';
|
|
2309
2321
|
/**
|
|
2310
2322
|
* @hidden
|
|
2311
2323
|
*/
|
|
@@ -3835,7 +3847,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3835
3847
|
return this.localization.get(key);
|
|
3836
3848
|
}
|
|
3837
3849
|
}
|
|
3838
|
-
RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
3850
|
+
RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3839
3851
|
RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: { userNumericOptions: "userNumericOptions" }, host: { properties: { "class.k-scheduler-recurrence-interval-editor": "this.cssClass" } }, ngImport: i0, template: `
|
|
3840
3852
|
<div class="k-form-field">
|
|
3841
3853
|
<kendo-label
|
|
@@ -3863,8 +3875,8 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3863
3875
|
(valueChange)="onIntervalChange($event)"
|
|
3864
3876
|
>
|
|
3865
3877
|
<kendo-numerictextbox-messages
|
|
3866
|
-
[increment]="textFor('
|
|
3867
|
-
[decrement]="textFor('
|
|
3878
|
+
[increment]="textFor('numericIncrement')"
|
|
3879
|
+
[decrement]="textFor('numericDecrement')"
|
|
3868
3880
|
>
|
|
3869
3881
|
</kendo-numerictextbox-messages>
|
|
3870
3882
|
</kendo-numerictextbox>
|
|
@@ -3903,8 +3915,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3903
3915
|
(valueChange)="onIntervalChange($event)"
|
|
3904
3916
|
>
|
|
3905
3917
|
<kendo-numerictextbox-messages
|
|
3906
|
-
[increment]="textFor('
|
|
3907
|
-
[decrement]="textFor('
|
|
3918
|
+
[increment]="textFor('numericIncrement')"
|
|
3919
|
+
[decrement]="textFor('numericDecrement')"
|
|
3908
3920
|
>
|
|
3909
3921
|
</kendo-numerictextbox-messages>
|
|
3910
3922
|
</kendo-numerictextbox>
|
|
@@ -3913,7 +3925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3913
3925
|
</div>
|
|
3914
3926
|
`
|
|
3915
3927
|
}]
|
|
3916
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
3928
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3917
3929
|
type: HostBinding,
|
|
3918
3930
|
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3919
3931
|
}], userNumericOptions: [{
|
|
@@ -4317,7 +4329,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4317
4329
|
}
|
|
4318
4330
|
}
|
|
4319
4331
|
}
|
|
4320
|
-
RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
4332
|
+
RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4321
4333
|
RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceMonthlyYearlyEditorComponent, selector: "kendo-recurrence-monthly-yearly-editor", inputs: { userNumericOptions: "userNumericOptions" }, viewQueries: [{ propertyName: "repeatOnRadioButtons", predicate: RepeatOnRadioButtonDirective, descendants: true }], ngImport: i0, template: `
|
|
4322
4334
|
<div class='k-form-field'>
|
|
4323
4335
|
<kendo-label
|
|
@@ -4368,8 +4380,8 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
|
|
|
4368
4380
|
[disabled]="isDisabled('monthday')"
|
|
4369
4381
|
>
|
|
4370
4382
|
<kendo-numerictextbox-messages
|
|
4371
|
-
[increment]="textFor('
|
|
4372
|
-
[decrement]="textFor('
|
|
4383
|
+
[increment]="textFor('numericIncrement')"
|
|
4384
|
+
[decrement]="textFor('numericDecrement')"
|
|
4373
4385
|
>
|
|
4374
4386
|
</kendo-numerictextbox-messages>
|
|
4375
4387
|
</kendo-numerictextbox>
|
|
@@ -4475,8 +4487,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4475
4487
|
[disabled]="isDisabled('monthday')"
|
|
4476
4488
|
>
|
|
4477
4489
|
<kendo-numerictextbox-messages
|
|
4478
|
-
[increment]="textFor('
|
|
4479
|
-
[decrement]="textFor('
|
|
4490
|
+
[increment]="textFor('numericIncrement')"
|
|
4491
|
+
[decrement]="textFor('numericDecrement')"
|
|
4480
4492
|
>
|
|
4481
4493
|
</kendo-numerictextbox-messages>
|
|
4482
4494
|
</kendo-numerictextbox>
|
|
@@ -4529,7 +4541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4529
4541
|
</div>
|
|
4530
4542
|
`
|
|
4531
4543
|
}]
|
|
4532
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4544
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
|
|
4533
4545
|
type: Input
|
|
4534
4546
|
}], repeatOnRadioButtons: [{
|
|
4535
4547
|
type: ViewChildren,
|
|
@@ -4704,7 +4716,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4704
4716
|
return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
|
|
4705
4717
|
}
|
|
4706
4718
|
}
|
|
4707
|
-
RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
4719
|
+
RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4708
4720
|
RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceEndRuleEditorComponent, selector: "kendo-recurrence-end-rule-editor", inputs: { userNumericOptions: "userNumericOptions", userDatePickerOptions: "userDatePickerOptions" }, host: { properties: { "class.k-scheduler-recurrence-end-rule-editor": "this.cssClass" } }, viewQueries: [{ propertyName: "endRuleRadioButtons", predicate: EndRuleRadioButtonDirective, descendants: true }], ngImport: i0, template: `
|
|
4709
4721
|
<div class="k-form-field">
|
|
4710
4722
|
<kendo-label
|
|
@@ -4745,8 +4757,8 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4745
4757
|
(valueChange)='onCountChange($event)'
|
|
4746
4758
|
>
|
|
4747
4759
|
<kendo-numerictextbox-messages
|
|
4748
|
-
[increment]="textFor('
|
|
4749
|
-
[decrement]="textFor('
|
|
4760
|
+
[increment]="textFor('numericIncrement')"
|
|
4761
|
+
[decrement]="textFor('numericDecrement')"
|
|
4750
4762
|
>
|
|
4751
4763
|
</kendo-numerictextbox-messages>
|
|
4752
4764
|
</kendo-numerictextbox>
|
|
@@ -4783,9 +4795,9 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4783
4795
|
(valueChange)='onUntilChange($event)'
|
|
4784
4796
|
>
|
|
4785
4797
|
<kendo-datepicker-messages
|
|
4786
|
-
[today]="textFor('
|
|
4787
|
-
[toggle]="textFor('
|
|
4788
|
-
[parentViewButtonTitle]="textFor('
|
|
4798
|
+
[today]="textFor('dateInputsToday')"
|
|
4799
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4800
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4789
4801
|
>
|
|
4790
4802
|
</kendo-datepicker-messages>
|
|
4791
4803
|
</kendo-datepicker>
|
|
@@ -4838,8 +4850,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4838
4850
|
(valueChange)='onCountChange($event)'
|
|
4839
4851
|
>
|
|
4840
4852
|
<kendo-numerictextbox-messages
|
|
4841
|
-
[increment]="textFor('
|
|
4842
|
-
[decrement]="textFor('
|
|
4853
|
+
[increment]="textFor('numericIncrement')"
|
|
4854
|
+
[decrement]="textFor('numericDecrement')"
|
|
4843
4855
|
>
|
|
4844
4856
|
</kendo-numerictextbox-messages>
|
|
4845
4857
|
</kendo-numerictextbox>
|
|
@@ -4876,9 +4888,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4876
4888
|
(valueChange)='onUntilChange($event)'
|
|
4877
4889
|
>
|
|
4878
4890
|
<kendo-datepicker-messages
|
|
4879
|
-
[today]="textFor('
|
|
4880
|
-
[toggle]="textFor('
|
|
4881
|
-
[parentViewButtonTitle]="textFor('
|
|
4891
|
+
[today]="textFor('dateInputsToday')"
|
|
4892
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4893
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4882
4894
|
>
|
|
4883
4895
|
</kendo-datepicker-messages>
|
|
4884
4896
|
</kendo-datepicker>
|
|
@@ -4888,7 +4900,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4888
4900
|
</div>
|
|
4889
4901
|
`
|
|
4890
4902
|
}]
|
|
4891
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4903
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4892
4904
|
type: HostBinding,
|
|
4893
4905
|
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4894
4906
|
}], userNumericOptions: [{
|
|
@@ -4906,7 +4918,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4906
4918
|
class Messages$1 extends ComponentMessages {
|
|
4907
4919
|
}
|
|
4908
4920
|
Messages$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4909
|
-
Messages$1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages$1, inputs: { repeat: "repeat", dailyInterval: "dailyInterval", dailyRepeatEvery: "dailyRepeatEvery", weeklyInterval: "weeklyInterval", weeklyRepeatEvery: "weeklyRepeatEvery", weeklyRepeatOn: "weeklyRepeatOn", monthlyDay: "monthlyDay", monthlyInterval: "monthlyInterval", monthlyRepeatEvery: "monthlyRepeatEvery", monthlyRepeatOn: "monthlyRepeatOn", yearlyOf: "yearlyOf", yearlyRepeatEvery: "yearlyRepeatEvery", yearlyRepeatOn: "yearlyRepeatOn", yearlyInterval: "yearlyInterval", frequenciesDaily: "frequenciesDaily", frequenciesMonthly: "frequenciesMonthly", frequenciesNever: "frequenciesNever", frequenciesWeekly: "frequenciesWeekly", frequenciesYearly: "frequenciesYearly", offsetPositionsFirst: "offsetPositionsFirst", offsetPositionsSecond: "offsetPositionsSecond", offsetPositionsThird: "offsetPositionsThird", offsetPositionsFourth: "offsetPositionsFourth", offsetPositionsLast: "offsetPositionsLast", weekdaysDay: "weekdaysDay", weekdaysWeekday: "weekdaysWeekday", weekdaysWeekendday: "weekdaysWeekendday", endAfter: "endAfter", endOccurrence: "endOccurrence", endLabel: "endLabel", endNever: "endNever", endOn: "endOn" }, usesInheritance: true, ngImport: i0 });
|
|
4921
|
+
Messages$1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages$1, inputs: { repeat: "repeat", dailyInterval: "dailyInterval", dailyRepeatEvery: "dailyRepeatEvery", weeklyInterval: "weeklyInterval", weeklyRepeatEvery: "weeklyRepeatEvery", weeklyRepeatOn: "weeklyRepeatOn", monthlyDay: "monthlyDay", monthlyInterval: "monthlyInterval", monthlyRepeatEvery: "monthlyRepeatEvery", monthlyRepeatOn: "monthlyRepeatOn", yearlyOf: "yearlyOf", yearlyRepeatEvery: "yearlyRepeatEvery", yearlyRepeatOn: "yearlyRepeatOn", yearlyInterval: "yearlyInterval", frequenciesDaily: "frequenciesDaily", frequenciesMonthly: "frequenciesMonthly", frequenciesNever: "frequenciesNever", frequenciesWeekly: "frequenciesWeekly", frequenciesYearly: "frequenciesYearly", offsetPositionsFirst: "offsetPositionsFirst", offsetPositionsSecond: "offsetPositionsSecond", offsetPositionsThird: "offsetPositionsThird", offsetPositionsFourth: "offsetPositionsFourth", offsetPositionsLast: "offsetPositionsLast", weekdaysDay: "weekdaysDay", weekdaysWeekday: "weekdaysWeekday", weekdaysWeekendday: "weekdaysWeekendday", endAfter: "endAfter", endOccurrence: "endOccurrence", endLabel: "endLabel", endNever: "endNever", endOn: "endOn", numericIncrement: "numericIncrement", numericDecrement: "numericDecrement", dateInputsToday: "dateInputsToday", dateInputsToggle: "dateInputsToggle", dateInputsParentViewButton: "dateInputsParentViewButton" }, usesInheritance: true, ngImport: i0 });
|
|
4910
4922
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
|
|
4911
4923
|
type: Directive
|
|
4912
4924
|
}], propDecorators: { repeat: [{
|
|
@@ -4973,6 +4985,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4973
4985
|
type: Input
|
|
4974
4986
|
}], endOn: [{
|
|
4975
4987
|
type: Input
|
|
4988
|
+
}], numericIncrement: [{
|
|
4989
|
+
type: Input
|
|
4990
|
+
}], numericDecrement: [{
|
|
4991
|
+
type: Input
|
|
4992
|
+
}], dateInputsToday: [{
|
|
4993
|
+
type: Input
|
|
4994
|
+
}], dateInputsToggle: [{
|
|
4995
|
+
type: Input
|
|
4996
|
+
}], dateInputsParentViewButton: [{
|
|
4997
|
+
type: Input
|
|
4976
4998
|
}] } });
|
|
4977
4999
|
|
|
4978
5000
|
/**
|
|
@@ -5203,6 +5225,21 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5203
5225
|
|
|
5204
5226
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5205
5227
|
endOn='On'
|
|
5228
|
+
|
|
5229
|
+
i18n-numericIncrement="kendo.recurrenceeditor.numericIncrement|The title of the 'Increment' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5230
|
+
numericIncrement='Increase value'
|
|
5231
|
+
|
|
5232
|
+
i18n-numericDecrement="kendo.recurrenceeditor.numericDecrement|The title of the 'Decrement' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5233
|
+
numericDecrement='Decrease value'
|
|
5234
|
+
|
|
5235
|
+
i18n-dateInputsToday="kendo.recurrenceeditor.dateInputsToday|The title of the 'Today' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5236
|
+
dateInputsToday='Today'
|
|
5237
|
+
|
|
5238
|
+
i18n-dateInputsToggle="kendo.recurrenceeditor.dateInputsToggle|The title of the 'Toggle' button of the DatePickers displayed in the recurrence editor."
|
|
5239
|
+
dateInputsToggle='Toggle calendar'
|
|
5240
|
+
|
|
5241
|
+
i18n-dateInputsParentViewButton="kendo.recurrenceeditor.dateInputsParentViewButton|The title of the 'Parent View' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5242
|
+
dateInputsParentViewButton='Navigate to parent view'
|
|
5206
5243
|
>
|
|
5207
5244
|
</ng-container>
|
|
5208
5245
|
|
|
@@ -5345,6 +5382,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5345
5382
|
|
|
5346
5383
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5347
5384
|
endOn='On'
|
|
5385
|
+
|
|
5386
|
+
i18n-numericIncrement="kendo.recurrenceeditor.numericIncrement|The title of the 'Increment' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5387
|
+
numericIncrement='Increase value'
|
|
5388
|
+
|
|
5389
|
+
i18n-numericDecrement="kendo.recurrenceeditor.numericDecrement|The title of the 'Decrement' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5390
|
+
numericDecrement='Decrease value'
|
|
5391
|
+
|
|
5392
|
+
i18n-dateInputsToday="kendo.recurrenceeditor.dateInputsToday|The title of the 'Today' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5393
|
+
dateInputsToday='Today'
|
|
5394
|
+
|
|
5395
|
+
i18n-dateInputsToggle="kendo.recurrenceeditor.dateInputsToggle|The title of the 'Toggle' button of the DatePickers displayed in the recurrence editor."
|
|
5396
|
+
dateInputsToggle='Toggle calendar'
|
|
5397
|
+
|
|
5398
|
+
i18n-dateInputsParentViewButton="kendo.recurrenceeditor.dateInputsParentViewButton|The title of the 'Parent View' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5399
|
+
dateInputsParentViewButton='Navigate to parent view'
|
|
5348
5400
|
>
|
|
5349
5401
|
</ng-container>
|
|
5350
5402
|
|
|
@@ -6011,7 +6063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6011
6063
|
class Messages extends ComponentMessages {
|
|
6012
6064
|
}
|
|
6013
6065
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6014
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { allEvents: "allEvents", allDay: "allDay", dateHeader: "dateHeader", timeHeader: "timeHeader", eventHeader: "eventHeader", deleteTitle: "deleteTitle", nextTitle: "nextTitle", previousTitle: "previousTitle", today: "today", calendarToday: "calendarToday", showFullDay: "showFullDay", showWorkDay: "showWorkDay", dayViewTitle: "dayViewTitle", multiDayViewTitle: "multiDayViewTitle", weekViewTitle: "weekViewTitle", workWeekViewTitle: "workWeekViewTitle", monthViewTitle: "monthViewTitle", multiWeekViewTitle: "multiWeekViewTitle", timelineViewTitle: "timelineViewTitle", timelineWeekViewTitle: "timelineWeekViewTitle", timelineMonthViewTitle: "timelineMonthViewTitle", agendaViewTitle: "agendaViewTitle", yearViewTitle: "yearViewTitle", yearViewNoEvents: "yearViewNoEvents", cancel: "cancel", save: "save", editorEventTitle: "editorEventTitle", editorEventStart: "editorEventStart", editorEventStartTimeZone: "editorEventStartTimeZone", editorEventEnd: "editorEventEnd", editorEventEndTimeZone: "editorEventEndTimeZone", editorEventAllDay: "editorEventAllDay", editorEventDescription: "editorEventDescription", editorEventSeparateTimeZones: "editorEventSeparateTimeZones", editorEventTimeZone: "editorEventTimeZone", editorDateInputsToday: "editorDateInputsToday", editorDateInputsToggle: "editorDateInputsToggle", editorDateInputsParentViewButton: "editorDateInputsParentViewButton", editorDateInputsNow: "editorDateInputsNow", editorDateInputsNowLabel: "editorDateInputsNowLabel", editorDateInputsAccept: "editorDateInputsAccept", editorDateInputsAcceptLabel: "editorDateInputsAcceptLabel", editorDateInputsCancel: "editorDateInputsCancel", editorDateInputsCancelLabel: "editorDateInputsCancelLabel", editorDateInputsDateTab: "editorDateInputsDateTab", editorDateInputsDateTabLabel: "editorDateInputsDateTabLabel", editorDateInputsTimeTab: "editorDateInputsTimeTab", editorDateInputsTimeTabLabel: "editorDateInputsTimeTabLabel", recurrenceEditorNumericIncrement: "recurrenceEditorNumericIncrement", recurrenceEditorNumericDecrement: "recurrenceEditorNumericDecrement", recurrenceEditorRepeat: "recurrenceEditorRepeat", recurrenceEditorDailyInterval: "recurrenceEditorDailyInterval", recurrenceEditorDailyRepeatEvery: "recurrenceEditorDailyRepeatEvery", recurrenceEditorWeeklyInterval: "recurrenceEditorWeeklyInterval", recurrenceEditorWeeklyRepeatEvery: "recurrenceEditorWeeklyRepeatEvery", recurrenceEditorWeeklyRepeatOn: "recurrenceEditorWeeklyRepeatOn", recurrenceEditorMonthlyDay: "recurrenceEditorMonthlyDay", recurrenceEditorMonthlyInterval: "recurrenceEditorMonthlyInterval", recurrenceEditorMonthlyRepeatEvery: "recurrenceEditorMonthlyRepeatEvery", recurrenceEditorMonthlyRepeatOn: "recurrenceEditorMonthlyRepeatOn", recurrenceEditorYearlyOf: "recurrenceEditorYearlyOf", recurrenceEditorYearlyRepeatEvery: "recurrenceEditorYearlyRepeatEvery", recurrenceEditorYearlyRepeatOn: "recurrenceEditorYearlyRepeatOn", recurrenceEditorYearlyInterval: "recurrenceEditorYearlyInterval", recurrenceEditorFrequenciesDaily: "recurrenceEditorFrequenciesDaily", recurrenceEditorFrequenciesMonthly: "recurrenceEditorFrequenciesMonthly", recurrenceEditorFrequenciesNever: "recurrenceEditorFrequenciesNever", recurrenceEditorFrequenciesWeekly: "recurrenceEditorFrequenciesWeekly", recurrenceEditorFrequenciesYearly: "recurrenceEditorFrequenciesYearly", recurrenceEditorOffsetPositionsFirst: "recurrenceEditorOffsetPositionsFirst", recurrenceEditorOffsetPositionsSecond: "recurrenceEditorOffsetPositionsSecond", recurrenceEditorOffsetPositionsThird: "recurrenceEditorOffsetPositionsThird", recurrenceEditorOffsetPositionsFourth: "recurrenceEditorOffsetPositionsFourth", recurrenceEditorOffsetPositionsLast: "recurrenceEditorOffsetPositionsLast", recurrenceEditorWeekdaysDay: "recurrenceEditorWeekdaysDay", recurrenceEditorWeekdaysWeekday: "recurrenceEditorWeekdaysWeekday", recurrenceEditorWeekdaysWeekendday: "recurrenceEditorWeekdaysWeekendday", recurrenceEditorEndAfter: "recurrenceEditorEndAfter", recurrenceEditorEndOccurrence: "recurrenceEditorEndOccurrence", recurrenceEditorEndLabel: "recurrenceEditorEndLabel", recurrenceEditorEndNever: "recurrenceEditorEndNever", recurrenceEditorEndOn: "recurrenceEditorEndOn", editorTitle: "editorTitle", destroy: "destroy", deleteConfirmation: "deleteConfirmation", editRecurringConfirmation: "editRecurringConfirmation", editOccurrence: "editOccurrence", editSeries: "editSeries", deleteRecurringConfirmation: "deleteRecurringConfirmation", deleteOccurrence: "deleteOccurrence", deleteSeries: "deleteSeries", deleteDialogTitle: "deleteDialogTitle", deleteRecurringDialogTitle: "deleteRecurringDialogTitle", editRecurringDialogTitle: "editRecurringDialogTitle", selectView: "selectView" }, usesInheritance: true, ngImport: i0 });
|
|
6066
|
+
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: Messages, inputs: { allEvents: "allEvents", allDay: "allDay", dateHeader: "dateHeader", timeHeader: "timeHeader", eventHeader: "eventHeader", deleteTitle: "deleteTitle", nextTitle: "nextTitle", previousTitle: "previousTitle", today: "today", calendarToday: "calendarToday", showFullDay: "showFullDay", showWorkDay: "showWorkDay", dayViewTitle: "dayViewTitle", multiDayViewTitle: "multiDayViewTitle", weekViewTitle: "weekViewTitle", workWeekViewTitle: "workWeekViewTitle", monthViewTitle: "monthViewTitle", multiWeekViewTitle: "multiWeekViewTitle", timelineViewTitle: "timelineViewTitle", timelineWeekViewTitle: "timelineWeekViewTitle", timelineMonthViewTitle: "timelineMonthViewTitle", agendaViewTitle: "agendaViewTitle", yearViewTitle: "yearViewTitle", yearViewNoEvents: "yearViewNoEvents", cancel: "cancel", save: "save", editorEventTitle: "editorEventTitle", editorEventStart: "editorEventStart", editorEventStartTimeZone: "editorEventStartTimeZone", editorEventEnd: "editorEventEnd", editorEventEndTimeZone: "editorEventEndTimeZone", editorEventAllDay: "editorEventAllDay", editorEventDescription: "editorEventDescription", editorEventSeparateTimeZones: "editorEventSeparateTimeZones", editorEventTimeZone: "editorEventTimeZone", editorDateInputsToday: "editorDateInputsToday", editorDateInputsToggle: "editorDateInputsToggle", editorDateInputsParentViewButton: "editorDateInputsParentViewButton", editorDateInputsNow: "editorDateInputsNow", editorDateInputsNowLabel: "editorDateInputsNowLabel", editorDateInputsAccept: "editorDateInputsAccept", editorDateInputsAcceptLabel: "editorDateInputsAcceptLabel", editorDateInputsCancel: "editorDateInputsCancel", editorDateInputsCancelLabel: "editorDateInputsCancelLabel", editorDateInputsDateTab: "editorDateInputsDateTab", editorDateInputsDateTabLabel: "editorDateInputsDateTabLabel", editorDateInputsTimeTab: "editorDateInputsTimeTab", editorDateInputsTimeTabLabel: "editorDateInputsTimeTabLabel", recurrenceEditorDateInputsToday: "recurrenceEditorDateInputsToday", recurrenceEditorDateInputsToggle: "recurrenceEditorDateInputsToggle", recurrenceEditorDateInputsParentViewButton: "recurrenceEditorDateInputsParentViewButton", recurrenceEditorNumericIncrement: "recurrenceEditorNumericIncrement", recurrenceEditorNumericDecrement: "recurrenceEditorNumericDecrement", recurrenceEditorRepeat: "recurrenceEditorRepeat", recurrenceEditorDailyInterval: "recurrenceEditorDailyInterval", recurrenceEditorDailyRepeatEvery: "recurrenceEditorDailyRepeatEvery", recurrenceEditorWeeklyInterval: "recurrenceEditorWeeklyInterval", recurrenceEditorWeeklyRepeatEvery: "recurrenceEditorWeeklyRepeatEvery", recurrenceEditorWeeklyRepeatOn: "recurrenceEditorWeeklyRepeatOn", recurrenceEditorMonthlyDay: "recurrenceEditorMonthlyDay", recurrenceEditorMonthlyInterval: "recurrenceEditorMonthlyInterval", recurrenceEditorMonthlyRepeatEvery: "recurrenceEditorMonthlyRepeatEvery", recurrenceEditorMonthlyRepeatOn: "recurrenceEditorMonthlyRepeatOn", recurrenceEditorYearlyOf: "recurrenceEditorYearlyOf", recurrenceEditorYearlyRepeatEvery: "recurrenceEditorYearlyRepeatEvery", recurrenceEditorYearlyRepeatOn: "recurrenceEditorYearlyRepeatOn", recurrenceEditorYearlyInterval: "recurrenceEditorYearlyInterval", recurrenceEditorFrequenciesDaily: "recurrenceEditorFrequenciesDaily", recurrenceEditorFrequenciesMonthly: "recurrenceEditorFrequenciesMonthly", recurrenceEditorFrequenciesNever: "recurrenceEditorFrequenciesNever", recurrenceEditorFrequenciesWeekly: "recurrenceEditorFrequenciesWeekly", recurrenceEditorFrequenciesYearly: "recurrenceEditorFrequenciesYearly", recurrenceEditorOffsetPositionsFirst: "recurrenceEditorOffsetPositionsFirst", recurrenceEditorOffsetPositionsSecond: "recurrenceEditorOffsetPositionsSecond", recurrenceEditorOffsetPositionsThird: "recurrenceEditorOffsetPositionsThird", recurrenceEditorOffsetPositionsFourth: "recurrenceEditorOffsetPositionsFourth", recurrenceEditorOffsetPositionsLast: "recurrenceEditorOffsetPositionsLast", recurrenceEditorWeekdaysDay: "recurrenceEditorWeekdaysDay", recurrenceEditorWeekdaysWeekday: "recurrenceEditorWeekdaysWeekday", recurrenceEditorWeekdaysWeekendday: "recurrenceEditorWeekdaysWeekendday", recurrenceEditorEndAfter: "recurrenceEditorEndAfter", recurrenceEditorEndOccurrence: "recurrenceEditorEndOccurrence", recurrenceEditorEndLabel: "recurrenceEditorEndLabel", recurrenceEditorEndNever: "recurrenceEditorEndNever", recurrenceEditorEndOn: "recurrenceEditorEndOn", editorTitle: "editorTitle", destroy: "destroy", deleteConfirmation: "deleteConfirmation", editRecurringConfirmation: "editRecurringConfirmation", editOccurrence: "editOccurrence", editSeries: "editSeries", deleteRecurringConfirmation: "deleteRecurringConfirmation", deleteOccurrence: "deleteOccurrence", deleteSeries: "deleteSeries", deleteDialogTitle: "deleteDialogTitle", deleteRecurringDialogTitle: "deleteRecurringDialogTitle", editRecurringDialogTitle: "editRecurringDialogTitle", selectView: "selectView" }, usesInheritance: true, ngImport: i0 });
|
|
6015
6067
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
6016
6068
|
type: Directive
|
|
6017
6069
|
}], propDecorators: { allEvents: [{
|
|
@@ -6110,6 +6162,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6110
6162
|
type: Input
|
|
6111
6163
|
}], editorDateInputsTimeTabLabel: [{
|
|
6112
6164
|
type: Input
|
|
6165
|
+
}], recurrenceEditorDateInputsToday: [{
|
|
6166
|
+
type: Input
|
|
6167
|
+
}], recurrenceEditorDateInputsToggle: [{
|
|
6168
|
+
type: Input
|
|
6169
|
+
}], recurrenceEditorDateInputsParentViewButton: [{
|
|
6170
|
+
type: Input
|
|
6113
6171
|
}], recurrenceEditorNumericIncrement: [{
|
|
6114
6172
|
type: Input
|
|
6115
6173
|
}], recurrenceEditorNumericDecrement: [{
|
|
@@ -7215,10 +7273,19 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
7215
7273
|
i18n-editorDateInputsTimeTabLabel="kendo.scheduler.editorDateInputsTimeTabLabel|The label of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
|
|
7216
7274
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7217
7275
|
|
|
7218
|
-
i18n-
|
|
7276
|
+
i18n-recurrenceEditorDateInputsToday="kendo.scheduler.recurrenceEditorDateInputsToday|The Today button text in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7277
|
+
recurrenceEditorDateInputsToday='Today'
|
|
7278
|
+
|
|
7279
|
+
i18n-recurrenceEditorDateInputsToggle="kendo.scheduler.recurrenceEditorDateInputsToggle|The title of the Toggle button of the DatePickers in the Scheduler recurrence editor."
|
|
7280
|
+
recurrenceEditorDateInputsToggle='Toggle calendar'
|
|
7281
|
+
|
|
7282
|
+
i18n-recurrenceEditorDateInputsParentViewButton="kendo.scheduler.recurrenceEditorDateInputsParentViewButton|The title of the Parent View button in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7283
|
+
recurrenceEditorDateInputsParentViewButton='Navigate to parent view'
|
|
7284
|
+
|
|
7285
|
+
i18n-recurrenceEditorNumericIncrement="kendo.scheduler.recurrenceEditorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7219
7286
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7220
7287
|
|
|
7221
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7288
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7222
7289
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7223
7290
|
|
|
7224
7291
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|
|
@@ -7562,10 +7629,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7562
7629
|
i18n-editorDateInputsTimeTabLabel="kendo.scheduler.editorDateInputsTimeTabLabel|The label of the Time tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor."
|
|
7563
7630
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7564
7631
|
|
|
7565
|
-
i18n-
|
|
7632
|
+
i18n-recurrenceEditorDateInputsToday="kendo.scheduler.recurrenceEditorDateInputsToday|The Today button text in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7633
|
+
recurrenceEditorDateInputsToday='Today'
|
|
7634
|
+
|
|
7635
|
+
i18n-recurrenceEditorDateInputsToggle="kendo.scheduler.recurrenceEditorDateInputsToggle|The title of the Toggle button of the DatePickers in the Scheduler recurrence editor."
|
|
7636
|
+
recurrenceEditorDateInputsToggle='Toggle calendar'
|
|
7637
|
+
|
|
7638
|
+
i18n-recurrenceEditorDateInputsParentViewButton="kendo.scheduler.recurrenceEditorDateInputsParentViewButton|The title of the Parent View button in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7639
|
+
recurrenceEditorDateInputsParentViewButton='Navigate to parent view'
|
|
7640
|
+
|
|
7641
|
+
i18n-recurrenceEditorNumericIncrement="kendo.scheduler.recurrenceEditorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7566
7642
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7567
7643
|
|
|
7568
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7644
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7569
7645
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7570
7646
|
|
|
7571
7647
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|