@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
|
|
|
@@ -2271,6 +2271,18 @@ class ToolbarNavigationComponent {
|
|
|
2271
2271
|
this.cd = cd;
|
|
2272
2272
|
this.viewContext = viewContext;
|
|
2273
2273
|
this.hostClass = true;
|
|
2274
|
+
/**
|
|
2275
|
+
* Sets the [`activeView`]({% slug api_dateinputs_calendarcomponent %}#toc-activeview) of the Calendar in the navigation component.
|
|
2276
|
+
*
|
|
2277
|
+
* @default month
|
|
2278
|
+
*/
|
|
2279
|
+
this.activeView = 'month';
|
|
2280
|
+
/**
|
|
2281
|
+
* Sets the [`bottomView`]({% slug api_dateinputs_calendarcomponent %}#toc-bottomview) of the Calendar in the navigation component.
|
|
2282
|
+
*
|
|
2283
|
+
* @default month
|
|
2284
|
+
*/
|
|
2285
|
+
this.bottomView = 'month';
|
|
2274
2286
|
/**
|
|
2275
2287
|
* @hidden
|
|
2276
2288
|
*/
|
|
@@ -3795,7 +3807,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3795
3807
|
return this.localization.get(key);
|
|
3796
3808
|
}
|
|
3797
3809
|
}
|
|
3798
|
-
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 });
|
|
3799
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: `
|
|
3800
3812
|
<div class="k-form-field">
|
|
3801
3813
|
<kendo-label
|
|
@@ -3823,8 +3835,8 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3823
3835
|
(valueChange)="onIntervalChange($event)"
|
|
3824
3836
|
>
|
|
3825
3837
|
<kendo-numerictextbox-messages
|
|
3826
|
-
[increment]="textFor('
|
|
3827
|
-
[decrement]="textFor('
|
|
3838
|
+
[increment]="textFor('numericIncrement')"
|
|
3839
|
+
[decrement]="textFor('numericDecrement')"
|
|
3828
3840
|
>
|
|
3829
3841
|
</kendo-numerictextbox-messages>
|
|
3830
3842
|
</kendo-numerictextbox>
|
|
@@ -3863,8 +3875,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
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>
|
|
@@ -3873,7 +3885,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3873
3885
|
</div>
|
|
3874
3886
|
`
|
|
3875
3887
|
}]
|
|
3876
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
3888
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3877
3889
|
type: HostBinding,
|
|
3878
3890
|
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3879
3891
|
}], userNumericOptions: [{
|
|
@@ -4277,7 +4289,7 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4277
4289
|
}
|
|
4278
4290
|
}
|
|
4279
4291
|
}
|
|
4280
|
-
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 });
|
|
4281
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: `
|
|
4282
4294
|
<div class='k-form-field'>
|
|
4283
4295
|
<kendo-label
|
|
@@ -4328,8 +4340,8 @@ RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVe
|
|
|
4328
4340
|
[disabled]="isDisabled('monthday')"
|
|
4329
4341
|
>
|
|
4330
4342
|
<kendo-numerictextbox-messages
|
|
4331
|
-
[increment]="textFor('
|
|
4332
|
-
[decrement]="textFor('
|
|
4343
|
+
[increment]="textFor('numericIncrement')"
|
|
4344
|
+
[decrement]="textFor('numericDecrement')"
|
|
4333
4345
|
>
|
|
4334
4346
|
</kendo-numerictextbox-messages>
|
|
4335
4347
|
</kendo-numerictextbox>
|
|
@@ -4435,8 +4447,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4435
4447
|
[disabled]="isDisabled('monthday')"
|
|
4436
4448
|
>
|
|
4437
4449
|
<kendo-numerictextbox-messages
|
|
4438
|
-
[increment]="textFor('
|
|
4439
|
-
[decrement]="textFor('
|
|
4450
|
+
[increment]="textFor('numericIncrement')"
|
|
4451
|
+
[decrement]="textFor('numericDecrement')"
|
|
4440
4452
|
>
|
|
4441
4453
|
</kendo-numerictextbox-messages>
|
|
4442
4454
|
</kendo-numerictextbox>
|
|
@@ -4489,7 +4501,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4489
4501
|
</div>
|
|
4490
4502
|
`
|
|
4491
4503
|
}]
|
|
4492
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4504
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { userNumericOptions: [{
|
|
4493
4505
|
type: Input
|
|
4494
4506
|
}], repeatOnRadioButtons: [{
|
|
4495
4507
|
type: ViewChildren,
|
|
@@ -4664,7 +4676,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4664
4676
|
return ZonedDate.fromUTCDate(untilDate, this.recurrence.timezone).toLocalDate();
|
|
4665
4677
|
}
|
|
4666
4678
|
}
|
|
4667
|
-
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 });
|
|
4668
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: `
|
|
4669
4681
|
<div class="k-form-field">
|
|
4670
4682
|
<kendo-label
|
|
@@ -4705,8 +4717,8 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4705
4717
|
(valueChange)='onCountChange($event)'
|
|
4706
4718
|
>
|
|
4707
4719
|
<kendo-numerictextbox-messages
|
|
4708
|
-
[increment]="textFor('
|
|
4709
|
-
[decrement]="textFor('
|
|
4720
|
+
[increment]="textFor('numericIncrement')"
|
|
4721
|
+
[decrement]="textFor('numericDecrement')"
|
|
4710
4722
|
>
|
|
4711
4723
|
</kendo-numerictextbox-messages>
|
|
4712
4724
|
</kendo-numerictextbox>
|
|
@@ -4743,9 +4755,9 @@ RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4743
4755
|
(valueChange)='onUntilChange($event)'
|
|
4744
4756
|
>
|
|
4745
4757
|
<kendo-datepicker-messages
|
|
4746
|
-
[today]="textFor('
|
|
4747
|
-
[toggle]="textFor('
|
|
4748
|
-
[parentViewButtonTitle]="textFor('
|
|
4758
|
+
[today]="textFor('dateInputsToday')"
|
|
4759
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4760
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4749
4761
|
>
|
|
4750
4762
|
</kendo-datepicker-messages>
|
|
4751
4763
|
</kendo-datepicker>
|
|
@@ -4798,8 +4810,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4798
4810
|
(valueChange)='onCountChange($event)'
|
|
4799
4811
|
>
|
|
4800
4812
|
<kendo-numerictextbox-messages
|
|
4801
|
-
[increment]="textFor('
|
|
4802
|
-
[decrement]="textFor('
|
|
4813
|
+
[increment]="textFor('numericIncrement')"
|
|
4814
|
+
[decrement]="textFor('numericDecrement')"
|
|
4803
4815
|
>
|
|
4804
4816
|
</kendo-numerictextbox-messages>
|
|
4805
4817
|
</kendo-numerictextbox>
|
|
@@ -4836,9 +4848,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4836
4848
|
(valueChange)='onUntilChange($event)'
|
|
4837
4849
|
>
|
|
4838
4850
|
<kendo-datepicker-messages
|
|
4839
|
-
[today]="textFor('
|
|
4840
|
-
[toggle]="textFor('
|
|
4841
|
-
[parentViewButtonTitle]="textFor('
|
|
4851
|
+
[today]="textFor('dateInputsToday')"
|
|
4852
|
+
[toggle]="textFor('dateInputsToggle')"
|
|
4853
|
+
[parentViewButtonTitle]="textFor('dateInputsParentViewButton')"
|
|
4842
4854
|
>
|
|
4843
4855
|
</kendo-datepicker-messages>
|
|
4844
4856
|
</kendo-datepicker>
|
|
@@ -4848,7 +4860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4848
4860
|
</div>
|
|
4849
4861
|
`
|
|
4850
4862
|
}]
|
|
4851
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type:
|
|
4863
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4852
4864
|
type: HostBinding,
|
|
4853
4865
|
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4854
4866
|
}], userNumericOptions: [{
|
|
@@ -4866,7 +4878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4866
4878
|
class Messages$1 extends ComponentMessages {
|
|
4867
4879
|
}
|
|
4868
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 });
|
|
4869
|
-
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 });
|
|
4870
4882
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages$1, decorators: [{
|
|
4871
4883
|
type: Directive
|
|
4872
4884
|
}], propDecorators: { repeat: [{
|
|
@@ -4933,6 +4945,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4933
4945
|
type: Input
|
|
4934
4946
|
}], endOn: [{
|
|
4935
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
|
|
4936
4958
|
}] } });
|
|
4937
4959
|
|
|
4938
4960
|
/**
|
|
@@ -5163,6 +5185,21 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5163
5185
|
|
|
5164
5186
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5165
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'
|
|
5166
5203
|
>
|
|
5167
5204
|
</ng-container>
|
|
5168
5205
|
|
|
@@ -5305,6 +5342,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5305
5342
|
|
|
5306
5343
|
i18n-endOn="kendo.recurrenceeditor.endOn|The text similar to 'On' displayed in the recurrence editor."
|
|
5307
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'
|
|
5308
5360
|
>
|
|
5309
5361
|
</ng-container>
|
|
5310
5362
|
|
|
@@ -5971,7 +6023,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5971
6023
|
class Messages extends ComponentMessages {
|
|
5972
6024
|
}
|
|
5973
6025
|
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
5974
|
-
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 });
|
|
5975
6027
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: Messages, decorators: [{
|
|
5976
6028
|
type: Directive
|
|
5977
6029
|
}], propDecorators: { allEvents: [{
|
|
@@ -6070,6 +6122,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6070
6122
|
type: Input
|
|
6071
6123
|
}], editorDateInputsTimeTabLabel: [{
|
|
6072
6124
|
type: Input
|
|
6125
|
+
}], recurrenceEditorDateInputsToday: [{
|
|
6126
|
+
type: Input
|
|
6127
|
+
}], recurrenceEditorDateInputsToggle: [{
|
|
6128
|
+
type: Input
|
|
6129
|
+
}], recurrenceEditorDateInputsParentViewButton: [{
|
|
6130
|
+
type: Input
|
|
6073
6131
|
}], recurrenceEditorNumericIncrement: [{
|
|
6074
6132
|
type: Input
|
|
6075
6133
|
}], recurrenceEditorNumericDecrement: [{
|
|
@@ -7175,10 +7233,19 @@ SchedulerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
7175
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."
|
|
7176
7234
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7177
7235
|
|
|
7178
|
-
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."
|
|
7179
7246
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7180
7247
|
|
|
7181
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7248
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7182
7249
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7183
7250
|
|
|
7184
7251
|
i18n-recurrenceEditorRepeat="kendo.scheduler.recurrenceEditorRepeat|The text similar to 'Repeat' displayed in the Scheduler recurrence editor."
|
|
@@ -7522,10 +7589,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7522
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."
|
|
7523
7590
|
editorDateInputsTimeTabLabel='Time tab'
|
|
7524
7591
|
|
|
7525
|
-
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."
|
|
7526
7602
|
recurrenceEditorNumericIncrement='Increase value'
|
|
7527
7603
|
|
|
7528
|
-
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.
|
|
7604
|
+
i18n-recurrenceEditorNumericDecrement="kendo.scheduler.recurrenceEditorNumericDecrement|The title of the Decrement button of the NumericTextBox in the Scheduler recurrence editor."
|
|
7529
7605
|
recurrenceEditorNumericDecrement='Decrease value'
|
|
7530
7606
|
|
|
7531
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.5",
|
|
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.5",
|
|
30
|
+
"@progress/kendo-angular-buttons": "15.0.2-develop.5",
|
|
31
|
+
"@progress/kendo-angular-common": "15.0.2-develop.5",
|
|
32
|
+
"@progress/kendo-angular-dateinputs": "15.0.2-develop.5",
|
|
33
|
+
"@progress/kendo-angular-dialog": "15.0.2-develop.5",
|
|
34
|
+
"@progress/kendo-angular-dropdowns": "15.0.2-develop.5",
|
|
35
|
+
"@progress/kendo-angular-icons": "15.0.2-develop.5",
|
|
36
|
+
"@progress/kendo-angular-inputs": "15.0.2-develop.5",
|
|
37
|
+
"@progress/kendo-angular-intl": "15.0.2-develop.5",
|
|
38
|
+
"@progress/kendo-angular-l10n": "15.0.2-develop.5",
|
|
39
|
+
"@progress/kendo-angular-popup": "15.0.2-develop.5",
|
|
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.5",
|
|
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.5',
|
|
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.5',
|
|
10
10
|
// peer dependency of kendo-angular-icons
|
|
11
11
|
'@progress/kendo-svg-icons': '^2.0.0'
|
|
12
12
|
} });
|
|
@@ -48,11 +48,15 @@ export declare class ToolbarNavigationComponent implements OnDestroy {
|
|
|
48
48
|
*/
|
|
49
49
|
get todayText(): string;
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Sets the [`activeView`]({% slug api_dateinputs_calendarcomponent %}#toc-activeview) of the Calendar in the navigation component.
|
|
52
|
+
*
|
|
53
|
+
* @default month
|
|
52
54
|
*/
|
|
53
55
|
activeView: CalendarView;
|
|
54
56
|
/**
|
|
55
|
-
*
|
|
57
|
+
* Sets the [`bottomView`]({% slug api_dateinputs_calendarcomponent %}#toc-bottomview) of the Calendar in the navigation component.
|
|
58
|
+
*
|
|
59
|
+
* @default month
|
|
56
60
|
*/
|
|
57
61
|
bottomView: CalendarView;
|
|
58
62
|
/**
|