@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
|
|
|
@@ -3807,7 +3807,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3807
3807
|
return this.localization.get(key);
|
|
3808
3808
|
}
|
|
3809
3809
|
}
|
|
3810
|
-
RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
3810
|
+
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 });
|
|
3811
3811
|
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: `
|
|
3812
3812
|
<div class="k-form-field">
|
|
3813
3813
|
<kendo-label
|
|
@@ -3835,8 +3835,8 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3835
3835
|
(valueChange)="onIntervalChange($event)"
|
|
3836
3836
|
>
|
|
3837
3837
|
<kendo-numerictextbox-messages
|
|
3838
|
-
[increment]="textFor('
|
|
3839
|
-
[decrement]="textFor('
|
|
3838
|
+
[increment]="textFor('numericIncrement')"
|
|
3839
|
+
[decrement]="textFor('numericDecrement')"
|
|
3840
3840
|
>
|
|
3841
3841
|
</kendo-numerictextbox-messages>
|
|
3842
3842
|
</kendo-numerictextbox>
|
|
@@ -3875,8 +3875,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
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>
|
|
@@ -3885,7 +3885,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3885
3885
|
</div>
|
|
3886
3886
|
`
|
|
3887
3887
|
}]
|
|
3888
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
3888
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3889
3889
|
type: HostBinding,
|
|
3890
3890
|
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3891
3891
|
}], userNumericOptions: [{
|
|
@@ -4289,7 +4289,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4289
4289
|
}
|
|
4290
4290
|
}
|
|
4291
4291
|
}
|
|
4292
|
-
RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
4292
|
+
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 });
|
|
4293
4293
|
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: `
|
|
4294
4294
|
<div class='k-form-field'>
|
|
4295
4295
|
<kendo-label
|
|
@@ -4340,8 +4340,8 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
|
|
|
4340
4340
|
[disabled]="isDisabled('monthday')"
|
|
4341
4341
|
>
|
|
4342
4342
|
<kendo-numerictextbox-messages
|
|
4343
|
-
[increment]="textFor('
|
|
4344
|
-
[decrement]="textFor('
|
|
4343
|
+
[increment]="textFor('numericIncrement')"
|
|
4344
|
+
[decrement]="textFor('numericDecrement')"
|
|
4345
4345
|
>
|
|
4346
4346
|
</kendo-numerictextbox-messages>
|
|
4347
4347
|
</kendo-numerictextbox>
|
|
@@ -4447,8 +4447,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4447
4447
|
[disabled]="isDisabled('monthday')"
|
|
4448
4448
|
>
|
|
4449
4449
|
<kendo-numerictextbox-messages
|
|
4450
|
-
[increment]="textFor('
|
|
4451
|
-
[decrement]="textFor('
|
|
4450
|
+
[increment]="textFor('numericIncrement')"
|
|
4451
|
+
[decrement]="textFor('numericDecrement')"
|
|
4452
4452
|
>
|
|
4453
4453
|
</kendo-numerictextbox-messages>
|
|
4454
4454
|
</kendo-numerictextbox>
|
|
@@ -4501,7 +4501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4501
4501
|
</div>
|
|
4502
4502
|
`
|
|
4503
4503
|
}]
|
|
4504
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4504
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
|
|
4505
4505
|
type: Input
|
|
4506
4506
|
}], repeatOnRadioButtons: [{
|
|
4507
4507
|
type: ViewChildren,
|
|
@@ -4676,7 +4676,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4676
4676
|
return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
|
|
4677
4677
|
}
|
|
4678
4678
|
}
|
|
4679
|
-
RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token:
|
|
4679
|
+
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 });
|
|
4680
4680
|
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: `
|
|
4681
4681
|
<div class="k-form-field">
|
|
4682
4682
|
<kendo-label
|
|
@@ -4717,8 +4717,8 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4717
4717
|
(valueChange)='onCountChange($event)'
|
|
4718
4718
|
>
|
|
4719
4719
|
<kendo-numerictextbox-messages
|
|
4720
|
-
[increment]="textFor('
|
|
4721
|
-
[decrement]="textFor('
|
|
4720
|
+
[increment]="textFor('numericIncrement')"
|
|
4721
|
+
[decrement]="textFor('numericDecrement')"
|
|
4722
4722
|
>
|
|
4723
4723
|
</kendo-numerictextbox-messages>
|
|
4724
4724
|
</kendo-numerictextbox>
|
|
@@ -4755,9 +4755,9 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4755
4755
|
(valueChange)='onUntilChange($event)'
|
|
4756
4756
|
>
|
|
4757
4757
|
<kendo-datepicker-messages
|
|
4758
|
-
[today]="textFor('
|
|
4759
|
-
[toggle]="textFor('
|
|
4760
|
-
[parentViewButtonTitle]="textFor('
|
|
4758
|
+
[today]="textFor('dateInputsToday')"
|
|
4759
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4760
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4761
4761
|
>
|
|
4762
4762
|
</kendo-datepicker-messages>
|
|
4763
4763
|
</kendo-datepicker>
|
|
@@ -4810,8 +4810,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4810
4810
|
(valueChange)='onCountChange($event)'
|
|
4811
4811
|
>
|
|
4812
4812
|
<kendo-numerictextbox-messages
|
|
4813
|
-
[increment]="textFor('
|
|
4814
|
-
[decrement]="textFor('
|
|
4813
|
+
[increment]="textFor('numericIncrement')"
|
|
4814
|
+
[decrement]="textFor('numericDecrement')"
|
|
4815
4815
|
>
|
|
4816
4816
|
</kendo-numerictextbox-messages>
|
|
4817
4817
|
</kendo-numerictextbox>
|
|
@@ -4848,9 +4848,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4848
4848
|
(valueChange)='onUntilChange($event)'
|
|
4849
4849
|
>
|
|
4850
4850
|
<kendo-datepicker-messages
|
|
4851
|
-
[today]="textFor('
|
|
4852
|
-
[toggle]="textFor('
|
|
4853
|
-
[parentViewButtonTitle]="textFor('
|
|
4851
|
+
[today]="textFor('dateInputsToday')"
|
|
4852
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4853
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4854
4854
|
>
|
|
4855
4855
|
</kendo-datepicker-messages>
|
|
4856
4856
|
</kendo-datepicker>
|
|
@@ -4860,7 +4860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4860
4860
|
</div>
|
|
4861
4861
|
`
|
|
4862
4862
|
}]
|
|
4863
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4863
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4864
4864
|
type: HostBinding,
|
|
4865
4865
|
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4866
4866
|
}], userNumericOptions: [{
|
|
@@ -4878,7 +4878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4878
4878
|
class Messages$1 extends ComponentMessages {
|
|
4879
4879
|
}
|
|
4880
4880
|
Messages$1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4881
|
-
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 });
|
|
4881
|
+
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 });
|
|
4882
4882
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
|
|
4883
4883
|
type: Directive
|
|
4884
4884
|
}], propDecorators: { repeat: [{
|
|
@@ -4945,6 +4945,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4945
4945
|
type: Input
|
|
4946
4946
|
}], endOn: [{
|
|
4947
4947
|
type: Input
|
|
4948
|
+
}], numericIncrement: [{
|
|
4949
|
+
type: Input
|
|
4950
|
+
}], numericDecrement: [{
|
|
4951
|
+
type: Input
|
|
4952
|
+
}], dateInputsToday: [{
|
|
4953
|
+
type: Input
|
|
4954
|
+
}], dateInputsToggle: [{
|
|
4955
|
+
type: Input
|
|
4956
|
+
}], dateInputsParentViewButton: [{
|
|
4957
|
+
type: Input
|
|
4948
4958
|
}] } });
|
|
4949
4959
|
|
|
4950
4960
|
/**
|
|
@@ -5175,6 +5185,21 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5175
5185
|
|
|
5176
5186
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5177
5187
|
endOn='On'
|
|
5188
|
+
|
|
5189
|
+
i18n-numericIncrement="kendo.recurrenceeditor.numericIncrement|The title of the 'Increment' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5190
|
+
numericIncrement='Increase value'
|
|
5191
|
+
|
|
5192
|
+
i18n-numericDecrement="kendo.recurrenceeditor.numericDecrement|The title of the 'Decrement' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5193
|
+
numericDecrement='Decrease value'
|
|
5194
|
+
|
|
5195
|
+
i18n-dateInputsToday="kendo.recurrenceeditor.dateInputsToday|The title of the 'Today' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5196
|
+
dateInputsToday='Today'
|
|
5197
|
+
|
|
5198
|
+
i18n-dateInputsToggle="kendo.recurrenceeditor.dateInputsToggle|The title of the 'Toggle' button of the DatePickers displayed in the recurrence editor."
|
|
5199
|
+
dateInputsToggle='Toggle calendar'
|
|
5200
|
+
|
|
5201
|
+
i18n-dateInputsParentViewButton="kendo.recurrenceeditor.dateInputsParentViewButton|The title of the 'Parent View' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5202
|
+
dateInputsParentViewButton='Navigate to parent view'
|
|
5178
5203
|
>
|
|
5179
5204
|
</ng-container>
|
|
5180
5205
|
|
|
@@ -5317,6 +5342,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5317
5342
|
|
|
5318
5343
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5319
5344
|
endOn='On'
|
|
5345
|
+
|
|
5346
|
+
i18n-numericIncrement="kendo.recurrenceeditor.numericIncrement|The title of the 'Increment' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5347
|
+
numericIncrement='Increase value'
|
|
5348
|
+
|
|
5349
|
+
i18n-numericDecrement="kendo.recurrenceeditor.numericDecrement|The title of the 'Decrement' button of the NumericTextBoxes displayed in the recurrence editor."
|
|
5350
|
+
numericDecrement='Decrease value'
|
|
5351
|
+
|
|
5352
|
+
i18n-dateInputsToday="kendo.recurrenceeditor.dateInputsToday|The title of the 'Today' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5353
|
+
dateInputsToday='Today'
|
|
5354
|
+
|
|
5355
|
+
i18n-dateInputsToggle="kendo.recurrenceeditor.dateInputsToggle|The title of the 'Toggle' button of the DatePickers displayed in the recurrence editor."
|
|
5356
|
+
dateInputsToggle='Toggle calendar'
|
|
5357
|
+
|
|
5358
|
+
i18n-dateInputsParentViewButton="kendo.recurrenceeditor.dateInputsParentViewButton|The title of the 'Parent View' button in the popup of the DatePickers displayed in the recurrence editor."
|
|
5359
|
+
dateInputsParentViewButton='Navigate to parent view'
|
|
5320
5360
|
>
|
|
5321
5361
|
</ng-container>
|
|
5322
5362
|
|
|
@@ -5983,7 +6023,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5983
6023
|
class Messages extends ComponentMessages {
|
|
5984
6024
|
}
|
|
5985
6025
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
5986
|
-
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 });
|
|
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", 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 });
|
|
5987
6027
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
5988
6028
|
type: Directive
|
|
5989
6029
|
}], propDecorators: { allEvents: [{
|
|
@@ -6082,6 +6122,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6082
6122
|
type: Input
|
|
6083
6123
|
}], editorDateInputsTimeTabLabel: [{
|
|
6084
6124
|
type: Input
|
|
6125
|
+
}], recurrenceEditorDateInputsToday: [{
|
|
6126
|
+
type: Input
|
|
6127
|
+
}], recurrenceEditorDateInputsToggle: [{
|
|
6128
|
+
type: Input
|
|
6129
|
+
}], recurrenceEditorDateInputsParentViewButton: [{
|
|
6130
|
+
type: Input
|
|
6085
6131
|
}], recurrenceEditorNumericIncrement: [{
|
|
6086
6132
|
type: Input
|
|
6087
6133
|
}], recurrenceEditorNumericDecrement: [{
|
|
@@ -7187,10 +7233,19 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
7187
7233
|
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."
|
|
7188
7234
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7189
7235
|
|
|
7190
|
-
i18n-
|
|
7236
|
+
i18n-recurrenceEditorDateInputsToday="kendo.scheduler.recurrenceEditorDateInputsToday|The Today button text in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7237
|
+
recurrenceEditorDateInputsToday='Today'
|
|
7238
|
+
|
|
7239
|
+
i18n-recurrenceEditorDateInputsToggle="kendo.scheduler.recurrenceEditorDateInputsToggle|The title of the Toggle button of the DatePickers in the Scheduler recurrence editor."
|
|
7240
|
+
recurrenceEditorDateInputsToggle='Toggle calendar'
|
|
7241
|
+
|
|
7242
|
+
i18n-recurrenceEditorDateInputsParentViewButton="kendo.scheduler.recurrenceEditorDateInputsParentViewButton|The title of the Parent View button in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7243
|
+
recurrenceEditorDateInputsParentViewButton='Navigate to parent view'
|
|
7244
|
+
|
|
7245
|
+
i18n-recurrenceEditorNumericIncrement="kendo.scheduler.recurrenceEditorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7191
7246
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7192
7247
|
|
|
7193
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7248
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7194
7249
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7195
7250
|
|
|
7196
7251
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|
|
@@ -7534,10 +7589,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7534
7589
|
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."
|
|
7535
7590
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7536
7591
|
|
|
7537
|
-
i18n-
|
|
7592
|
+
i18n-recurrenceEditorDateInputsToday="kendo.scheduler.recurrenceEditorDateInputsToday|The Today button text in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7593
|
+
recurrenceEditorDateInputsToday='Today'
|
|
7594
|
+
|
|
7595
|
+
i18n-recurrenceEditorDateInputsToggle="kendo.scheduler.recurrenceEditorDateInputsToggle|The title of the Toggle button of the DatePickers in the Scheduler recurrence editor."
|
|
7596
|
+
recurrenceEditorDateInputsToggle='Toggle calendar'
|
|
7597
|
+
|
|
7598
|
+
i18n-recurrenceEditorDateInputsParentViewButton="kendo.scheduler.recurrenceEditorDateInputsParentViewButton|The title of the Parent View button in the popup of the DatePickers in the Scheduler recurrence editor."
|
|
7599
|
+
recurrenceEditorDateInputsParentViewButton='Navigate to parent view'
|
|
7600
|
+
|
|
7601
|
+
i18n-recurrenceEditorNumericIncrement="kendo.scheduler.recurrenceEditorNumericIncrement|The title of the Increment button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7538
7602
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7539
7603
|
|
|
7540
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7604
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7541
7605
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7542
7606
|
|
|
7543
7607
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|
|
@@ -200,6 +200,18 @@ export declare class Messages extends ComponentMessages {
|
|
|
200
200
|
* The label of the **Time** tab in the popup header of the DateTimePickers and DatePickers in the Scheduler event editor.
|
|
201
201
|
*/
|
|
202
202
|
editorDateInputsTimeTabLabel: string;
|
|
203
|
+
/**
|
|
204
|
+
* The **Today** button text in the popup of the DatePickers in the Scheduler recurrence editor.
|
|
205
|
+
*/
|
|
206
|
+
recurrenceEditorDateInputsToday: string;
|
|
207
|
+
/**
|
|
208
|
+
* The title of the **Toggle** button in the popup of the DatePickers in the Scheduler recurrence editor.
|
|
209
|
+
*/
|
|
210
|
+
recurrenceEditorDateInputsToggle: string;
|
|
211
|
+
/**
|
|
212
|
+
* The title of the **Parent View** button in the popup of the DatePickers in the Scheduler recurrence editor.
|
|
213
|
+
*/
|
|
214
|
+
recurrenceEditorDateInputsParentViewButton: string;
|
|
203
215
|
/**
|
|
204
216
|
* The title of the **Increment** button of the NumericTextBox in the Scheduler recurrence editor.
|
|
205
217
|
*/
|
|
@@ -389,5 +401,5 @@ export declare class Messages extends ComponentMessages {
|
|
|
389
401
|
*/
|
|
390
402
|
selectView: string;
|
|
391
403
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
392
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "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"; }, {}, never>;
|
|
404
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, never, never, { "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"; }, {}, never>;
|
|
393
405
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scheduler",
|
|
3
|
-
"version": "15.0.2-develop.
|
|
3
|
+
"version": "15.0.2-develop.6",
|
|
4
4
|
"description": "Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -26,22 +26,22 @@
|
|
|
26
26
|
"@progress/kendo-data-query": "^1.0.0",
|
|
27
27
|
"@progress/kendo-drawing": "^1.19.0",
|
|
28
28
|
"@progress/kendo-licensing": "^1.0.2",
|
|
29
|
-
"@progress/kendo-angular-tooltip": "15.0.2-develop.
|
|
30
|
-
"@progress/kendo-angular-buttons": "15.0.2-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "15.0.2-develop.
|
|
32
|
-
"@progress/kendo-angular-dateinputs": "15.0.2-develop.
|
|
33
|
-
"@progress/kendo-angular-dialog": "15.0.2-develop.
|
|
34
|
-
"@progress/kendo-angular-dropdowns": "15.0.2-develop.
|
|
35
|
-
"@progress/kendo-angular-icons": "15.0.2-develop.
|
|
36
|
-
"@progress/kendo-angular-inputs": "15.0.2-develop.
|
|
37
|
-
"@progress/kendo-angular-intl": "15.0.2-develop.
|
|
38
|
-
"@progress/kendo-angular-l10n": "15.0.2-develop.
|
|
39
|
-
"@progress/kendo-angular-popup": "15.0.2-develop.
|
|
29
|
+
"@progress/kendo-angular-tooltip": "15.0.2-develop.6",
|
|
30
|
+
"@progress/kendo-angular-buttons": "15.0.2-develop.6",
|
|
31
|
+
"@progress/kendo-angular-common": "15.0.2-develop.6",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "15.0.2-develop.6",
|
|
33
|
+
"@progress/kendo-angular-dialog": "15.0.2-develop.6",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "15.0.2-develop.6",
|
|
35
|
+
"@progress/kendo-angular-icons": "15.0.2-develop.6",
|
|
36
|
+
"@progress/kendo-angular-inputs": "15.0.2-develop.6",
|
|
37
|
+
"@progress/kendo-angular-intl": "15.0.2-develop.6",
|
|
38
|
+
"@progress/kendo-angular-l10n": "15.0.2-develop.6",
|
|
39
|
+
"@progress/kendo-angular-popup": "15.0.2-develop.6",
|
|
40
40
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"tslib": "^2.3.1",
|
|
44
|
-
"@progress/kendo-angular-schematics": "15.0.2-develop.
|
|
44
|
+
"@progress/kendo-angular-schematics": "15.0.2-develop.6",
|
|
45
45
|
"@progress/kendo-date-math": "^1.3.2",
|
|
46
46
|
"@progress/kendo-draggable": "^3.0.2",
|
|
47
47
|
"@progress/kendo-file-saver": "^1.0.7",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'SchedulerModule', package: 'scheduler', peerDependencies: {
|
|
6
6
|
// peer dep of the dropdowns
|
|
7
|
-
'@progress/kendo-angular-treeview': '15.0.2-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '15.0.2-develop.6',
|
|
8
8
|
// peer dependency of kendo-angular-inputs
|
|
9
|
-
'@progress/kendo-angular-dialog': '15.0.2-develop.
|
|
9
|
+
'@progress/kendo-angular-dialog': '15.0.2-develop.6',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0'
|
|
12
12
|
} });
|