@progress/kendo-angular-scheduler 15.0.2-develop.4 → 15.0.2-develop.6
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/fesm2015/progress-kendo-angular-scheduler.mjs +96 -32
- package/fesm2020/progress-kendo-angular-scheduler.mjs +96 -32
- package/localization/messages.d.ts +13 -1
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +2 -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: 1707905994,
|
|
54
|
+
version: '15.0.2-develop.6',
|
|
55
55
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
56
56
|
};
|
|
57
57
|
|
|
@@ -3847,7 +3847,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3847
3847
|
return this.localization.get(key);
|
|
3848
3848
|
}
|
|
3849
3849
|
}
|
|
3850
|
-
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 });
|
|
3851
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: `
|
|
3852
3852
|
<div class="k-form-field">
|
|
3853
3853
|
<kendo-label
|
|
@@ -3875,8 +3875,8 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3875
3875
|
(valueChange)="onIntervalChange($event)"
|
|
3876
3876
|
>
|
|
3877
3877
|
<kendo-numerictextbox-messages
|
|
3878
|
-
[increment]="textFor('
|
|
3879
|
-
[decrement]="textFor('
|
|
3878
|
+
[increment]="textFor('numericIncrement')"
|
|
3879
|
+
[decrement]="textFor('numericDecrement')"
|
|
3880
3880
|
>
|
|
3881
3881
|
</kendo-numerictextbox-messages>
|
|
3882
3882
|
</kendo-numerictextbox>
|
|
@@ -3915,8 +3915,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3915
3915
|
(valueChange)="onIntervalChange($event)"
|
|
3916
3916
|
>
|
|
3917
3917
|
<kendo-numerictextbox-messages
|
|
3918
|
-
[increment]="textFor('
|
|
3919
|
-
[decrement]="textFor('
|
|
3918
|
+
[increment]="textFor('numericIncrement')"
|
|
3919
|
+
[decrement]="textFor('numericDecrement')"
|
|
3920
3920
|
>
|
|
3921
3921
|
</kendo-numerictextbox-messages>
|
|
3922
3922
|
</kendo-numerictextbox>
|
|
@@ -3925,7 +3925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3925
3925
|
</div>
|
|
3926
3926
|
`
|
|
3927
3927
|
}]
|
|
3928
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
3928
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3929
3929
|
type: HostBinding,
|
|
3930
3930
|
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3931
3931
|
}], userNumericOptions: [{
|
|
@@ -4329,7 +4329,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4329
4329
|
}
|
|
4330
4330
|
}
|
|
4331
4331
|
}
|
|
4332
|
-
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 });
|
|
4333
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: `
|
|
4334
4334
|
<div class='k-form-field'>
|
|
4335
4335
|
<kendo-label
|
|
@@ -4380,8 +4380,8 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
|
|
|
4380
4380
|
[disabled]="isDisabled('monthday')"
|
|
4381
4381
|
>
|
|
4382
4382
|
<kendo-numerictextbox-messages
|
|
4383
|
-
[increment]="textFor('
|
|
4384
|
-
[decrement]="textFor('
|
|
4383
|
+
[increment]="textFor('numericIncrement')"
|
|
4384
|
+
[decrement]="textFor('numericDecrement')"
|
|
4385
4385
|
>
|
|
4386
4386
|
</kendo-numerictextbox-messages>
|
|
4387
4387
|
</kendo-numerictextbox>
|
|
@@ -4487,8 +4487,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4487
4487
|
[disabled]="isDisabled('monthday')"
|
|
4488
4488
|
>
|
|
4489
4489
|
<kendo-numerictextbox-messages
|
|
4490
|
-
[increment]="textFor('
|
|
4491
|
-
[decrement]="textFor('
|
|
4490
|
+
[increment]="textFor('numericIncrement')"
|
|
4491
|
+
[decrement]="textFor('numericDecrement')"
|
|
4492
4492
|
>
|
|
4493
4493
|
</kendo-numerictextbox-messages>
|
|
4494
4494
|
</kendo-numerictextbox>
|
|
@@ -4541,7 +4541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4541
4541
|
</div>
|
|
4542
4542
|
`
|
|
4543
4543
|
}]
|
|
4544
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4544
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
|
|
4545
4545
|
type: Input
|
|
4546
4546
|
}], repeatOnRadioButtons: [{
|
|
4547
4547
|
type: ViewChildren,
|
|
@@ -4716,7 +4716,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4716
4716
|
return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
|
|
4717
4717
|
}
|
|
4718
4718
|
}
|
|
4719
|
-
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 });
|
|
4720
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: `
|
|
4721
4721
|
<div class="k-form-field">
|
|
4722
4722
|
<kendo-label
|
|
@@ -4757,8 +4757,8 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4757
4757
|
(valueChange)='onCountChange($event)'
|
|
4758
4758
|
>
|
|
4759
4759
|
<kendo-numerictextbox-messages
|
|
4760
|
-
[increment]="textFor('
|
|
4761
|
-
[decrement]="textFor('
|
|
4760
|
+
[increment]="textFor('numericIncrement')"
|
|
4761
|
+
[decrement]="textFor('numericDecrement')"
|
|
4762
4762
|
>
|
|
4763
4763
|
</kendo-numerictextbox-messages>
|
|
4764
4764
|
</kendo-numerictextbox>
|
|
@@ -4795,9 +4795,9 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4795
4795
|
(valueChange)='onUntilChange($event)'
|
|
4796
4796
|
>
|
|
4797
4797
|
<kendo-datepicker-messages
|
|
4798
|
-
[today]="textFor('
|
|
4799
|
-
[toggle]="textFor('
|
|
4800
|
-
[parentViewButtonTitle]="textFor('
|
|
4798
|
+
[today]="textFor('dateInputsToday')"
|
|
4799
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4800
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4801
4801
|
>
|
|
4802
4802
|
</kendo-datepicker-messages>
|
|
4803
4803
|
</kendo-datepicker>
|
|
@@ -4850,8 +4850,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4850
4850
|
(valueChange)='onCountChange($event)'
|
|
4851
4851
|
>
|
|
4852
4852
|
<kendo-numerictextbox-messages
|
|
4853
|
-
[increment]="textFor('
|
|
4854
|
-
[decrement]="textFor('
|
|
4853
|
+
[increment]="textFor('numericIncrement')"
|
|
4854
|
+
[decrement]="textFor('numericDecrement')"
|
|
4855
4855
|
>
|
|
4856
4856
|
</kendo-numerictextbox-messages>
|
|
4857
4857
|
</kendo-numerictextbox>
|
|
@@ -4888,9 +4888,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4888
4888
|
(valueChange)='onUntilChange($event)'
|
|
4889
4889
|
>
|
|
4890
4890
|
<kendo-datepicker-messages
|
|
4891
|
-
[today]="textFor('
|
|
4892
|
-
[toggle]="textFor('
|
|
4893
|
-
[parentViewButtonTitle]="textFor('
|
|
4891
|
+
[today]="textFor('dateInputsToday')"
|
|
4892
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4893
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4894
4894
|
>
|
|
4895
4895
|
</kendo-datepicker-messages>
|
|
4896
4896
|
</kendo-datepicker>
|
|
@@ -4900,7 +4900,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4900
4900
|
</div>
|
|
4901
4901
|
`
|
|
4902
4902
|
}]
|
|
4903
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4903
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4904
4904
|
type: HostBinding,
|
|
4905
4905
|
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4906
4906
|
}], userNumericOptions: [{
|
|
@@ -4918,7 +4918,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4918
4918
|
class Messages$1 extends ComponentMessages {
|
|
4919
4919
|
}
|
|
4920
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 });
|
|
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" }, 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 });
|
|
4922
4922
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
|
|
4923
4923
|
type: Directive
|
|
4924
4924
|
}], propDecorators: { repeat: [{
|
|
@@ -4985,6 +4985,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4985
4985
|
type: Input
|
|
4986
4986
|
}], endOn: [{
|
|
4987
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
|
|
4988
4998
|
}] } });
|
|
4989
4999
|
|
|
4990
5000
|
/**
|
|
@@ -5215,6 +5225,21 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5215
5225
|
|
|
5216
5226
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5217
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'
|
|
5218
5243
|
>
|
|
5219
5244
|
</ng-container>
|
|
5220
5245
|
|
|
@@ -5357,6 +5382,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5357
5382
|
|
|
5358
5383
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5359
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'
|
|
5360
5400
|
>
|
|
5361
5401
|
</ng-container>
|
|
5362
5402
|
|
|
@@ -6023,7 +6063,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6023
6063
|
class Messages extends ComponentMessages {
|
|
6024
6064
|
}
|
|
6025
6065
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6026
|
-
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 });
|
|
6027
6067
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
6028
6068
|
type: Directive
|
|
6029
6069
|
}], propDecorators: { allEvents: [{
|
|
@@ -6122,6 +6162,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6122
6162
|
type: Input
|
|
6123
6163
|
}], editorDateInputsTimeTabLabel: [{
|
|
6124
6164
|
type: Input
|
|
6165
|
+
}], recurrenceEditorDateInputsToday: [{
|
|
6166
|
+
type: Input
|
|
6167
|
+
}], recurrenceEditorDateInputsToggle: [{
|
|
6168
|
+
type: Input
|
|
6169
|
+
}], recurrenceEditorDateInputsParentViewButton: [{
|
|
6170
|
+
type: Input
|
|
6125
6171
|
}], recurrenceEditorNumericIncrement: [{
|
|
6126
6172
|
type: Input
|
|
6127
6173
|
}], recurrenceEditorNumericDecrement: [{
|
|
@@ -7227,10 +7273,19 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
7227
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."
|
|
7228
7274
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7229
7275
|
|
|
7230
|
-
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."
|
|
7231
7286
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7232
7287
|
|
|
7233
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7288
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7234
7289
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7235
7290
|
|
|
7236
7291
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|
|
@@ -7574,10 +7629,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7574
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."
|
|
7575
7630
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7576
7631
|
|
|
7577
|
-
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."
|
|
7578
7642
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7579
7643
|
|
|
7580
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7644
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7581
7645
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7582
7646
|
|
|
7583
7647
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|