@progress/kendo-angular-scheduler 13.0.0-develop.6 → 13.0.0-develop.8
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/date-time-picker.component.d.ts +6 -1
- package/editing/edit-dialog.component.d.ts +3 -0
- package/editing/recurrence/recurrence-end-rule-editor.component.d.ts +1 -0
- package/editing/recurrence/recurrence-interval-editor.component.d.ts +1 -0
- package/editing/timezone-editor.component.d.ts +4 -0
- package/esm2020/editing/date-time-picker.component.mjs +24 -13
- package/esm2020/editing/edit-dialog.component.mjs +351 -240
- package/esm2020/editing/recurrence/recurrence-editor.component.mjs +40 -36
- package/esm2020/editing/recurrence/recurrence-end-rule-editor.component.mjs +156 -130
- package/esm2020/editing/recurrence/recurrence-frequency-editor.component.mjs +26 -13
- package/esm2020/editing/recurrence/recurrence-interval-editor.component.mjs +26 -14
- package/esm2020/editing/recurrence/recurrence-monthly-yearly-editor.component.mjs +157 -149
- package/esm2020/editing/recurrence/recurrence-weekday-rule-editor.component.mjs +40 -23
- package/esm2020/editing/timezone-editor.component.mjs +6 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/scheduler.module.mjs +5 -3
- package/fesm2015/progress-kendo-angular-scheduler.mjs +819 -611
- package/fesm2020/progress-kendo-angular-scheduler.mjs +818 -611
- package/package.json +12 -12
- package/scheduler.module.d.ts +1 -1
- package/schematics/ngAdd/index.js +2 -2
|
@@ -14,7 +14,7 @@ import { validatePackage } from '@progress/kendo-licensing';
|
|
|
14
14
|
import * as i6 from '@progress/kendo-angular-dateinputs';
|
|
15
15
|
import { PreventableEvent as PreventableEvent$1, CalendarModule, DateInputsModule } from '@progress/kendo-angular-dateinputs';
|
|
16
16
|
import { Subject, BehaviorSubject, fromEvent, Subscription, combineLatest, merge } from 'rxjs';
|
|
17
|
-
import * as
|
|
17
|
+
import * as i14 from '@angular/forms';
|
|
18
18
|
import { NG_VALUE_ACCESSOR, FormControl, FormGroup, ReactiveFormsModule } from '@angular/forms';
|
|
19
19
|
import * as i1 from '@progress/kendo-angular-dialog';
|
|
20
20
|
import { DialogCloseResult, DialogModule } from '@progress/kendo-angular-dialog';
|
|
@@ -22,18 +22,18 @@ import * as i1$4 from '@progress/kendo-angular-intl';
|
|
|
22
22
|
import { formatDate, IntlModule, IntlService, CldrIntlService, parseDate } from '@progress/kendo-angular-intl';
|
|
23
23
|
import * as i1$2 from '@progress/kendo-angular-popup';
|
|
24
24
|
import { PopupService, PopupModule } from '@progress/kendo-angular-popup';
|
|
25
|
-
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
26
|
-
import * as
|
|
25
|
+
import { caretAltLeftIcon, caretAltRightIcon, calendarIcon, saveIcon, cancelOutlineIcon, arrowRotateCwIcon, arrowsNoRepeatIcon, xIcon, moreHorizontalIcon, clockIcon, caretAltUpIcon, caretAltDownIcon } from '@progress/kendo-svg-icons';
|
|
26
|
+
import * as i4 from '@progress/kendo-angular-buttons';
|
|
27
27
|
import { Button, ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
28
28
|
import * as i11 from '@angular/common';
|
|
29
29
|
import { CommonModule } from '@angular/common';
|
|
30
30
|
import * as i1$3 from '@progress/kendo-angular-dropdowns';
|
|
31
31
|
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
32
|
-
import
|
|
33
|
-
import
|
|
32
|
+
import * as i5 from '@progress/kendo-angular-inputs';
|
|
33
|
+
import { CheckBoxModule, TextAreaModule, NumericTextBoxModule, TextBoxModule, FormFieldModule } from '@progress/kendo-angular-inputs';
|
|
34
|
+
import * as i3 from '@progress/kendo-angular-label';
|
|
34
35
|
import { LabelModule } from '@progress/kendo-angular-label';
|
|
35
|
-
import
|
|
36
|
-
import { CheckBoxModule, TextAreaModule, NumericTextBoxModule, TextBoxModule } from '@progress/kendo-angular-inputs';
|
|
36
|
+
import { parseRule, serializeRule, expand } from '@progress/kendo-recurrence';
|
|
37
37
|
import { orderBy, groupBy } from '@progress/kendo-data-query';
|
|
38
38
|
import * as i4$1 from '@progress/kendo-angular-icons';
|
|
39
39
|
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
@@ -48,8 +48,8 @@ const packageMetadata = {
|
|
|
48
48
|
name: '@progress/kendo-angular-scheduler',
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
|
50
50
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
51
|
-
publishDate:
|
|
52
|
-
version: '13.0.0-develop.
|
|
51
|
+
publishDate: 1685107183,
|
|
52
|
+
version: '13.0.0-develop.8',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2592,7 +2592,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2592
2592
|
</kendo-calendar-messages>
|
|
2593
2593
|
</kendo-calendar>
|
|
2594
2594
|
</ng-template>
|
|
2595
|
-
`, isInline: true, components: [{ type:
|
|
2595
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i6.CalendarComponent, selector: "kendo-calendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i6.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }], pipes: { "async": i11.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2596
2596
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
|
|
2597
2597
|
type: Component,
|
|
2598
2598
|
args: [{
|
|
@@ -2783,7 +2783,7 @@ ToolbarViewSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
2783
2783
|
</span>
|
|
2784
2784
|
</button>
|
|
2785
2785
|
</span>
|
|
2786
|
-
`, isInline: true, components: [{ type:
|
|
2786
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
2787
2787
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
|
|
2788
2788
|
type: Component,
|
|
2789
2789
|
args: [{
|
|
@@ -3192,6 +3192,13 @@ class SchedulerDateTimePickerComponent {
|
|
|
3192
3192
|
this.onTouchedCallback = (_) => { };
|
|
3193
3193
|
this.onChangeCallback = (_) => { };
|
|
3194
3194
|
}
|
|
3195
|
+
/**
|
|
3196
|
+
* @hidden
|
|
3197
|
+
*/
|
|
3198
|
+
get focusableId() {
|
|
3199
|
+
var _a, _b;
|
|
3200
|
+
return this.isAllDay ? (_a = this.datePicker) === null || _a === void 0 ? void 0 : _a.input.focusableId : (_b = this.dateTimePicker) === null || _b === void 0 ? void 0 : _b.input.focusableId;
|
|
3201
|
+
}
|
|
3195
3202
|
writeValue(newDate) {
|
|
3196
3203
|
if (newDate instanceof Date) {
|
|
3197
3204
|
this.date = newDate;
|
|
@@ -3205,7 +3212,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3205
3212
|
* @hidden
|
|
3206
3213
|
*/
|
|
3207
3214
|
focus() {
|
|
3208
|
-
this.datePicker.focus();
|
|
3215
|
+
this.datePicker ? this.datePicker.focus() : this.dateTimePicker.focus();
|
|
3209
3216
|
}
|
|
3210
3217
|
/**
|
|
3211
3218
|
* @hidden
|
|
@@ -3223,19 +3230,20 @@ class SchedulerDateTimePickerComponent {
|
|
|
3223
3230
|
SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3224
3231
|
SchedulerDateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: { isAllDay: "isAllDay" }, outputs: { valueChange: "valueChange" }, providers: [
|
|
3225
3232
|
SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
|
|
3226
|
-
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true,
|
|
3233
|
+
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true }, { propertyName: "dateTimePicker", first: true, predicate: ["datetimepicker"], descendants: true }], ngImport: i0, template: `
|
|
3227
3234
|
<kendo-datepicker
|
|
3235
|
+
*ngIf='isAllDay'
|
|
3228
3236
|
#datepicker
|
|
3229
3237
|
[(value)]='date'
|
|
3230
3238
|
(valueChange)='onValueChange($event)'
|
|
3231
|
-
[style.width.px]="170"
|
|
3232
3239
|
></kendo-datepicker>
|
|
3233
|
-
<kendo-
|
|
3240
|
+
<kendo-datetimepicker
|
|
3241
|
+
*ngIf='!isAllDay'
|
|
3242
|
+
#datetimepicker
|
|
3234
3243
|
[(value)]='date'
|
|
3235
3244
|
(valueChange)='onValueChange($event)'
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
`, isInline: true, components: [{ type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i6.TimePickerComponent, selector: "kendo-timepicker", inputs: ["focusableId", "disabled", "readonly", "readOnlyInput", "format", "formatPlaceholder", "placeholder", "min", "max", "incompleteDateValidation", "cancelButton", "nowButton", "steps", "popupSettings", "tabindex", "tabIndex", "title", "subtitle", "rangeValidation", "adaptiveMode", "value", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-timepicker"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3245
|
+
>
|
|
3246
|
+
`, isInline: true, components: [{ type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i6.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["focusableId", "value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "subtitle", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "adaptiveMode", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3239
3247
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
|
|
3240
3248
|
type: Component,
|
|
3241
3249
|
args: [{
|
|
@@ -3245,21 +3253,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3245
3253
|
selector: 'kendo-scheduler-datetime-picker',
|
|
3246
3254
|
template: `
|
|
3247
3255
|
<kendo-datepicker
|
|
3256
|
+
*ngIf='isAllDay'
|
|
3248
3257
|
#datepicker
|
|
3249
3258
|
[(value)]='date'
|
|
3250
3259
|
(valueChange)='onValueChange($event)'
|
|
3251
|
-
[style.width.px]="170"
|
|
3252
3260
|
></kendo-datepicker>
|
|
3253
|
-
<kendo-
|
|
3261
|
+
<kendo-datetimepicker
|
|
3262
|
+
*ngIf='!isAllDay'
|
|
3263
|
+
#datetimepicker
|
|
3254
3264
|
[(value)]='date'
|
|
3255
3265
|
(valueChange)='onValueChange($event)'
|
|
3256
|
-
|
|
3257
|
-
></kendo-timepicker>
|
|
3266
|
+
>
|
|
3258
3267
|
`
|
|
3259
3268
|
}]
|
|
3260
3269
|
}], propDecorators: { datePicker: [{
|
|
3261
3270
|
type: ViewChild,
|
|
3262
|
-
args: ['datepicker'
|
|
3271
|
+
args: ['datepicker']
|
|
3272
|
+
}], dateTimePicker: [{
|
|
3273
|
+
type: ViewChild,
|
|
3274
|
+
args: ['datetimepicker']
|
|
3263
3275
|
}], isAllDay: [{
|
|
3264
3276
|
type: Input
|
|
3265
3277
|
}], valueChange: [{
|
|
@@ -3294,6 +3306,12 @@ class TimeZoneEditorComponent {
|
|
|
3294
3306
|
this.tzNames = timezoneNames();
|
|
3295
3307
|
this.tzSource = this.tzNames.slice();
|
|
3296
3308
|
}
|
|
3309
|
+
/**
|
|
3310
|
+
* @hidden
|
|
3311
|
+
*/
|
|
3312
|
+
get focusableId() {
|
|
3313
|
+
return this.tzComboBox.focusableId;
|
|
3314
|
+
}
|
|
3297
3315
|
/**
|
|
3298
3316
|
* @hidden
|
|
3299
3317
|
*/
|
|
@@ -3686,12 +3704,18 @@ class RecurrenceFrequencyEditorComponent {
|
|
|
3686
3704
|
RecurrenceFrequencyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3687
3705
|
RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceFrequencyEditorComponent, selector: "kendo-recurrence-frequency-editor", viewQueries: [{ propertyName: "weekDayButtons", predicate: Button, descendants: true }], ngImport: i0, template: `
|
|
3688
3706
|
<div class='k-form-field'>
|
|
3689
|
-
<
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3707
|
+
<kendo-label
|
|
3708
|
+
[text]="textFor('repeat')"
|
|
3709
|
+
(click)="onFrequencyClick()"
|
|
3710
|
+
labelCssClass="k-form-label"
|
|
3711
|
+
></kendo-label>
|
|
3712
|
+
<div class="k-form-field-wrap">
|
|
3713
|
+
<kendo-buttongroup
|
|
3714
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3715
|
+
width="100%"
|
|
3716
|
+
selection="single"
|
|
3717
|
+
>
|
|
3693
3718
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3694
|
-
[style.width.px]="100"
|
|
3695
3719
|
[togglable]="true"
|
|
3696
3720
|
[selected]="freq.value === selected"
|
|
3697
3721
|
(click)="onClick(freq)"
|
|
@@ -3699,19 +3723,25 @@ RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersio
|
|
|
3699
3723
|
</kendo-buttongroup>
|
|
3700
3724
|
</div>
|
|
3701
3725
|
</div>
|
|
3702
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3726
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i4.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3703
3727
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, decorators: [{
|
|
3704
3728
|
type: Component,
|
|
3705
3729
|
args: [{
|
|
3706
3730
|
selector: 'kendo-recurrence-frequency-editor',
|
|
3707
3731
|
template: `
|
|
3708
3732
|
<div class='k-form-field'>
|
|
3709
|
-
<
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3733
|
+
<kendo-label
|
|
3734
|
+
[text]="textFor('repeat')"
|
|
3735
|
+
(click)="onFrequencyClick()"
|
|
3736
|
+
labelCssClass="k-form-label"
|
|
3737
|
+
></kendo-label>
|
|
3738
|
+
<div class="k-form-field-wrap">
|
|
3739
|
+
<kendo-buttongroup
|
|
3740
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3741
|
+
width="100%"
|
|
3742
|
+
selection="single"
|
|
3743
|
+
>
|
|
3713
3744
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3714
|
-
[style.width.px]="100"
|
|
3715
3745
|
[togglable]="true"
|
|
3716
3746
|
[selected]="freq.value === selected"
|
|
3717
3747
|
(click)="onClick(freq)"
|
|
@@ -3733,6 +3763,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3733
3763
|
constructor(recurrence, localization) {
|
|
3734
3764
|
this.recurrence = recurrence;
|
|
3735
3765
|
this.localization = localization;
|
|
3766
|
+
this.cssClass = true;
|
|
3736
3767
|
this.numericOptions = {
|
|
3737
3768
|
min: 1,
|
|
3738
3769
|
format: '#',
|
|
@@ -3793,13 +3824,18 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3793
3824
|
}
|
|
3794
3825
|
}
|
|
3795
3826
|
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 });
|
|
3796
|
-
RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: { userNumericOptions: "userNumericOptions" }, ngImport: i0, template: `
|
|
3797
|
-
<div class=
|
|
3798
|
-
<kendo-label
|
|
3827
|
+
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: `
|
|
3828
|
+
<div class="k-form-field">
|
|
3829
|
+
<kendo-label
|
|
3830
|
+
[for]="intervalNumeric"
|
|
3831
|
+
[text]="textForRepeatEvery()"
|
|
3832
|
+
labelCssClass="k-form-label"
|
|
3833
|
+
(click)="intervalNumeric.focus()"
|
|
3834
|
+
></kendo-label>
|
|
3799
3835
|
<div class="k-form-field-wrap">
|
|
3800
3836
|
<kendo-numerictextbox
|
|
3801
3837
|
#intervalNumeric
|
|
3802
|
-
|
|
3838
|
+
class="k-recur-interval"
|
|
3803
3839
|
[min]="numericOptions.min"
|
|
3804
3840
|
[max]="numericOptions.max"
|
|
3805
3841
|
[decimals]="0"
|
|
@@ -3814,22 +3850,26 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3814
3850
|
(blur)="onIntervalBlur()"
|
|
3815
3851
|
(valueChange)="onIntervalChange($event)">
|
|
3816
3852
|
</kendo-numerictextbox>
|
|
3817
|
-
|
|
3818
|
-
<span>{{ textForFrequency() }}</span>
|
|
3853
|
+
<span> {{ textForFrequency() }}</span>
|
|
3819
3854
|
</div>
|
|
3820
3855
|
</div>
|
|
3821
|
-
`, isInline: true, components: [{ type:
|
|
3856
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }] });
|
|
3822
3857
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
|
|
3823
3858
|
type: Component,
|
|
3824
3859
|
args: [{
|
|
3825
3860
|
selector: 'kendo-recurrence-interval-editor',
|
|
3826
3861
|
template: `
|
|
3827
|
-
<div class=
|
|
3828
|
-
<kendo-label
|
|
3862
|
+
<div class="k-form-field">
|
|
3863
|
+
<kendo-label
|
|
3864
|
+
[for]="intervalNumeric"
|
|
3865
|
+
[text]="textForRepeatEvery()"
|
|
3866
|
+
labelCssClass="k-form-label"
|
|
3867
|
+
(click)="intervalNumeric.focus()"
|
|
3868
|
+
></kendo-label>
|
|
3829
3869
|
<div class="k-form-field-wrap">
|
|
3830
3870
|
<kendo-numerictextbox
|
|
3831
3871
|
#intervalNumeric
|
|
3832
|
-
|
|
3872
|
+
class="k-recur-interval"
|
|
3833
3873
|
[min]="numericOptions.min"
|
|
3834
3874
|
[max]="numericOptions.max"
|
|
3835
3875
|
[decimals]="0"
|
|
@@ -3844,13 +3884,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3844
3884
|
(blur)="onIntervalBlur()"
|
|
3845
3885
|
(valueChange)="onIntervalChange($event)">
|
|
3846
3886
|
</kendo-numerictextbox>
|
|
3847
|
-
|
|
3848
|
-
<span>{{ textForFrequency() }}</span>
|
|
3887
|
+
<span> {{ textForFrequency() }}</span>
|
|
3849
3888
|
</div>
|
|
3850
3889
|
</div>
|
|
3851
3890
|
`
|
|
3852
3891
|
}]
|
|
3853
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
3892
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3893
|
+
type: HostBinding,
|
|
3894
|
+
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3895
|
+
}], userNumericOptions: [{
|
|
3854
3896
|
type: Input
|
|
3855
3897
|
}] } });
|
|
3856
3898
|
|
|
@@ -3909,36 +3951,52 @@ class RecurrenceWeekdayRuleEditorComponent {
|
|
|
3909
3951
|
}
|
|
3910
3952
|
RecurrenceWeekdayRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3911
3953
|
RecurrenceWeekdayRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceWeekdayRuleEditorComponent, selector: "kendo-recurrence-weekday-rule-editor", viewQueries: [{ propertyName: "weekDayButtons", predicate: Button, descendants: true }], ngImport: i0, template: `
|
|
3912
|
-
<div class=
|
|
3913
|
-
<
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3954
|
+
<div class="k-form-field">
|
|
3955
|
+
<kendo-label
|
|
3956
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3957
|
+
labelCssClass="k-form-label"
|
|
3958
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3959
|
+
></kendo-label>
|
|
3960
|
+
<div class="k-form-field-wrap">
|
|
3961
|
+
<kendo-buttongroup
|
|
3962
|
+
class="k-button-group-solid"
|
|
3963
|
+
width="100%"
|
|
3964
|
+
selection="multiple"
|
|
3965
|
+
>
|
|
3966
|
+
<button
|
|
3967
|
+
*ngFor='let day of weekDays'
|
|
3968
|
+
kendoButton
|
|
3969
|
+
[toggleable]="true"
|
|
3970
|
+
[selected]="isSelected(day)"
|
|
3971
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3922
3972
|
>{{ capitalize(day.text) }}</button>
|
|
3923
3973
|
</kendo-buttongroup>
|
|
3924
3974
|
</div>
|
|
3925
3975
|
</div>
|
|
3926
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3976
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i4.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3927
3977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, decorators: [{
|
|
3928
3978
|
type: Component,
|
|
3929
3979
|
args: [{
|
|
3930
3980
|
selector: 'kendo-recurrence-weekday-rule-editor',
|
|
3931
3981
|
template: `
|
|
3932
|
-
<div class=
|
|
3933
|
-
<
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3982
|
+
<div class="k-form-field">
|
|
3983
|
+
<kendo-label
|
|
3984
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3985
|
+
labelCssClass="k-form-label"
|
|
3986
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3987
|
+
></kendo-label>
|
|
3988
|
+
<div class="k-form-field-wrap">
|
|
3989
|
+
<kendo-buttongroup
|
|
3990
|
+
class="k-button-group-solid"
|
|
3991
|
+
width="100%"
|
|
3992
|
+
selection="multiple"
|
|
3993
|
+
>
|
|
3994
|
+
<button
|
|
3995
|
+
*ngFor='let day of weekDays'
|
|
3996
|
+
kendoButton
|
|
3997
|
+
[toggleable]="true"
|
|
3998
|
+
[selected]="isSelected(day)"
|
|
3999
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3942
4000
|
>{{ capitalize(day.text) }}</button>
|
|
3943
4001
|
</kendo-buttongroup>
|
|
3944
4002
|
</div>
|
|
@@ -4238,192 +4296,200 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4238
4296
|
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 });
|
|
4239
4297
|
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: `
|
|
4240
4298
|
<div class='k-form-field'>
|
|
4241
|
-
<
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4299
|
+
<kendo-label
|
|
4300
|
+
[text]="textForRepeatOn()"
|
|
4301
|
+
labelCssClass="k-form-label"
|
|
4302
|
+
(click)="onRepeatOnLabelClick()"
|
|
4303
|
+
></kendo-label>
|
|
4304
|
+
<div class="k-form-field-wrap">
|
|
4305
|
+
<ul class='k-radio-list'>
|
|
4306
|
+
<li class='k-radio-list-item'>
|
|
4307
|
+
<span class="k-radio-wrap">
|
|
4308
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4309
|
+
</span>
|
|
4310
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4311
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4312
|
+
{{ textFor('monthlyDay') }}
|
|
4313
|
+
</ng-template>
|
|
4314
|
+
</label>
|
|
4315
|
+
|
|
4316
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4317
|
+
<kendo-dropdownlist
|
|
4318
|
+
[data]='months'
|
|
4319
|
+
textField='text'
|
|
4320
|
+
valueField='value'
|
|
4321
|
+
[value]='currentMonthMonthDay'
|
|
4322
|
+
[valuePrimitive]='true'
|
|
4323
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4324
|
+
[disabled]="isDisabled('monthday')"
|
|
4325
|
+
[style.width.px]="170"
|
|
4326
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4327
|
+
</kendo-dropdownlist>
|
|
4250
4328
|
</ng-template>
|
|
4251
|
-
</label>
|
|
4252
4329
|
|
|
4253
|
-
|
|
4330
|
+
<kendo-numerictextbox
|
|
4331
|
+
class="k-recur-monthday"
|
|
4332
|
+
[min]="numericOptions.min"
|
|
4333
|
+
[max]="numericOptions.max"
|
|
4334
|
+
[decimals]="0"
|
|
4335
|
+
[format]="numericOptions.format"
|
|
4336
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4337
|
+
[readonly]="numericOptions.readonly"
|
|
4338
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4339
|
+
[spinners]="numericOptions.spinners"
|
|
4340
|
+
[step]="numericOptions.step"
|
|
4341
|
+
[title]="numericOptions.title"
|
|
4342
|
+
[value]='monthDay'
|
|
4343
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4344
|
+
[disabled]="isDisabled('monthday')">
|
|
4345
|
+
</kendo-numerictextbox>
|
|
4346
|
+
</li>
|
|
4347
|
+
<li class='k-radio-list-item'>
|
|
4348
|
+
<span class="k-radio-wrap">
|
|
4349
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4350
|
+
</span>
|
|
4351
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4352
|
+
|
|
4254
4353
|
<kendo-dropdownlist
|
|
4255
|
-
[data]='
|
|
4354
|
+
[data]='offsetPositions'
|
|
4256
4355
|
textField='text'
|
|
4257
4356
|
valueField='value'
|
|
4258
|
-
[value]='
|
|
4357
|
+
[value]='offset'
|
|
4259
4358
|
[valuePrimitive]='true'
|
|
4260
|
-
(valueChange)=
|
|
4261
|
-
[disabled]="isDisabled('
|
|
4262
|
-
[style.width.px]="170"
|
|
4359
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4360
|
+
[disabled]="isDisabled('weekday')"
|
|
4263
4361
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4264
4362
|
</kendo-dropdownlist>
|
|
4265
|
-
</ng-template>
|
|
4266
|
-
|
|
4267
|
-
<kendo-numerictextbox
|
|
4268
|
-
[style.width.px]='70'
|
|
4269
|
-
[min]="numericOptions.min"
|
|
4270
|
-
[max]="numericOptions.max"
|
|
4271
|
-
[decimals]="0"
|
|
4272
|
-
[format]="numericOptions.format"
|
|
4273
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4274
|
-
[readonly]="numericOptions.readonly"
|
|
4275
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4276
|
-
[spinners]="numericOptions.spinners"
|
|
4277
|
-
[step]="numericOptions.step"
|
|
4278
|
-
[title]="numericOptions.title"
|
|
4279
|
-
[value]='monthDay'
|
|
4280
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4281
|
-
[disabled]="isDisabled('monthday')"
|
|
4282
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4283
|
-
</kendo-numerictextbox>
|
|
4284
|
-
</li>
|
|
4285
|
-
<li class='k-radio-item'>
|
|
4286
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4287
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4288
|
-
|
|
4289
|
-
<kendo-dropdownlist
|
|
4290
|
-
[data]='offsetPositions'
|
|
4291
|
-
textField='text'
|
|
4292
|
-
valueField='value'
|
|
4293
|
-
[value]='offset'
|
|
4294
|
-
[valuePrimitive]='true'
|
|
4295
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4296
|
-
[disabled]="isDisabled('weekday')"
|
|
4297
|
-
[style.width.px]="170"
|
|
4298
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4299
|
-
</kendo-dropdownlist>
|
|
4300
|
-
|
|
4301
|
-
<kendo-dropdownlist
|
|
4302
|
-
[data]="extendedWeekDays"
|
|
4303
|
-
textField='text'
|
|
4304
|
-
valueField='value'
|
|
4305
|
-
[value]='weekDay'
|
|
4306
|
-
[valuePrimitive]='true'
|
|
4307
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4308
|
-
[disabled]="isDisabled('weekday')"
|
|
4309
|
-
[style.width.px]="170"
|
|
4310
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4311
|
-
</kendo-dropdownlist>
|
|
4312
|
-
|
|
4313
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4314
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4315
4363
|
|
|
4316
4364
|
<kendo-dropdownlist
|
|
4317
|
-
[data]=
|
|
4365
|
+
[data]="extendedWeekDays"
|
|
4318
4366
|
textField='text'
|
|
4319
4367
|
valueField='value'
|
|
4320
|
-
[value]='
|
|
4368
|
+
[value]='weekDay'
|
|
4321
4369
|
[valuePrimitive]='true'
|
|
4322
|
-
(valueChange)=
|
|
4370
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4323
4371
|
[disabled]="isDisabled('weekday')"
|
|
4324
|
-
[style.width.px]="170"
|
|
4325
4372
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4326
4373
|
</kendo-dropdownlist>
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4374
|
+
|
|
4375
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4376
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4377
|
+
|
|
4378
|
+
<kendo-dropdownlist
|
|
4379
|
+
[data]='months'
|
|
4380
|
+
textField='text'
|
|
4381
|
+
valueField='value'
|
|
4382
|
+
[value]='currentMonthWeekDay'
|
|
4383
|
+
[valuePrimitive]='true'
|
|
4384
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4385
|
+
[disabled]="isDisabled('weekday')"
|
|
4386
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4387
|
+
</kendo-dropdownlist>
|
|
4388
|
+
</ng-template>
|
|
4389
|
+
</li>
|
|
4390
|
+
</ul>
|
|
4391
|
+
</div>
|
|
4330
4392
|
</div>
|
|
4331
|
-
`, isInline: true, components: [{ type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type:
|
|
4393
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: RepeatOnRadioButtonDirective, selector: "[kendoRecurrenceRepeatOnRadioButton]", inputs: ["kendoRecurrenceRepeatOnRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4332
4394
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
|
|
4333
4395
|
type: Component,
|
|
4334
4396
|
args: [{
|
|
4335
4397
|
selector: 'kendo-recurrence-monthly-yearly-editor',
|
|
4336
4398
|
template: `
|
|
4337
4399
|
<div class='k-form-field'>
|
|
4338
|
-
<
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4400
|
+
<kendo-label
|
|
4401
|
+
[text]="textForRepeatOn()"
|
|
4402
|
+
labelCssClass="k-form-label"
|
|
4403
|
+
(click)="onRepeatOnLabelClick()"
|
|
4404
|
+
></kendo-label>
|
|
4405
|
+
<div class="k-form-field-wrap">
|
|
4406
|
+
<ul class='k-radio-list'>
|
|
4407
|
+
<li class='k-radio-list-item'>
|
|
4408
|
+
<span class="k-radio-wrap">
|
|
4409
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4410
|
+
</span>
|
|
4411
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4412
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4413
|
+
{{ textFor('monthlyDay') }}
|
|
4414
|
+
</ng-template>
|
|
4415
|
+
</label>
|
|
4416
|
+
|
|
4417
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4418
|
+
<kendo-dropdownlist
|
|
4419
|
+
[data]='months'
|
|
4420
|
+
textField='text'
|
|
4421
|
+
valueField='value'
|
|
4422
|
+
[value]='currentMonthMonthDay'
|
|
4423
|
+
[valuePrimitive]='true'
|
|
4424
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4425
|
+
[disabled]="isDisabled('monthday')"
|
|
4426
|
+
[style.width.px]="170"
|
|
4427
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4428
|
+
</kendo-dropdownlist>
|
|
4347
4429
|
</ng-template>
|
|
4348
|
-
</label>
|
|
4349
4430
|
|
|
4350
|
-
|
|
4431
|
+
<kendo-numerictextbox
|
|
4432
|
+
class="k-recur-monthday"
|
|
4433
|
+
[min]="numericOptions.min"
|
|
4434
|
+
[max]="numericOptions.max"
|
|
4435
|
+
[decimals]="0"
|
|
4436
|
+
[format]="numericOptions.format"
|
|
4437
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4438
|
+
[readonly]="numericOptions.readonly"
|
|
4439
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4440
|
+
[spinners]="numericOptions.spinners"
|
|
4441
|
+
[step]="numericOptions.step"
|
|
4442
|
+
[title]="numericOptions.title"
|
|
4443
|
+
[value]='monthDay'
|
|
4444
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4445
|
+
[disabled]="isDisabled('monthday')">
|
|
4446
|
+
</kendo-numerictextbox>
|
|
4447
|
+
</li>
|
|
4448
|
+
<li class='k-radio-list-item'>
|
|
4449
|
+
<span class="k-radio-wrap">
|
|
4450
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4451
|
+
</span>
|
|
4452
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4453
|
+
|
|
4351
4454
|
<kendo-dropdownlist
|
|
4352
|
-
[data]='
|
|
4455
|
+
[data]='offsetPositions'
|
|
4353
4456
|
textField='text'
|
|
4354
4457
|
valueField='value'
|
|
4355
|
-
[value]='
|
|
4458
|
+
[value]='offset'
|
|
4356
4459
|
[valuePrimitive]='true'
|
|
4357
|
-
(valueChange)=
|
|
4358
|
-
[disabled]="isDisabled('
|
|
4359
|
-
[style.width.px]="170"
|
|
4460
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4461
|
+
[disabled]="isDisabled('weekday')"
|
|
4360
4462
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4361
4463
|
</kendo-dropdownlist>
|
|
4362
|
-
</ng-template>
|
|
4363
|
-
|
|
4364
|
-
<kendo-numerictextbox
|
|
4365
|
-
[style.width.px]='70'
|
|
4366
|
-
[min]="numericOptions.min"
|
|
4367
|
-
[max]="numericOptions.max"
|
|
4368
|
-
[decimals]="0"
|
|
4369
|
-
[format]="numericOptions.format"
|
|
4370
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4371
|
-
[readonly]="numericOptions.readonly"
|
|
4372
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4373
|
-
[spinners]="numericOptions.spinners"
|
|
4374
|
-
[step]="numericOptions.step"
|
|
4375
|
-
[title]="numericOptions.title"
|
|
4376
|
-
[value]='monthDay'
|
|
4377
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4378
|
-
[disabled]="isDisabled('monthday')"
|
|
4379
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4380
|
-
</kendo-numerictextbox>
|
|
4381
|
-
</li>
|
|
4382
|
-
<li class='k-radio-item'>
|
|
4383
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4384
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4385
|
-
|
|
4386
|
-
<kendo-dropdownlist
|
|
4387
|
-
[data]='offsetPositions'
|
|
4388
|
-
textField='text'
|
|
4389
|
-
valueField='value'
|
|
4390
|
-
[value]='offset'
|
|
4391
|
-
[valuePrimitive]='true'
|
|
4392
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4393
|
-
[disabled]="isDisabled('weekday')"
|
|
4394
|
-
[style.width.px]="170"
|
|
4395
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4396
|
-
</kendo-dropdownlist>
|
|
4397
|
-
|
|
4398
|
-
<kendo-dropdownlist
|
|
4399
|
-
[data]="extendedWeekDays"
|
|
4400
|
-
textField='text'
|
|
4401
|
-
valueField='value'
|
|
4402
|
-
[value]='weekDay'
|
|
4403
|
-
[valuePrimitive]='true'
|
|
4404
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4405
|
-
[disabled]="isDisabled('weekday')"
|
|
4406
|
-
[style.width.px]="170"
|
|
4407
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4408
|
-
</kendo-dropdownlist>
|
|
4409
|
-
|
|
4410
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4411
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4412
4464
|
|
|
4413
4465
|
<kendo-dropdownlist
|
|
4414
|
-
[data]=
|
|
4466
|
+
[data]="extendedWeekDays"
|
|
4415
4467
|
textField='text'
|
|
4416
4468
|
valueField='value'
|
|
4417
|
-
[value]='
|
|
4469
|
+
[value]='weekDay'
|
|
4418
4470
|
[valuePrimitive]='true'
|
|
4419
|
-
(valueChange)=
|
|
4471
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4420
4472
|
[disabled]="isDisabled('weekday')"
|
|
4421
|
-
[style.width.px]="170"
|
|
4422
4473
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4423
4474
|
</kendo-dropdownlist>
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4475
|
+
|
|
4476
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4477
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4478
|
+
|
|
4479
|
+
<kendo-dropdownlist
|
|
4480
|
+
[data]='months'
|
|
4481
|
+
textField='text'
|
|
4482
|
+
valueField='value'
|
|
4483
|
+
[value]='currentMonthWeekDay'
|
|
4484
|
+
[valuePrimitive]='true'
|
|
4485
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4486
|
+
[disabled]="isDisabled('weekday')"
|
|
4487
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4488
|
+
</kendo-dropdownlist>
|
|
4489
|
+
</ng-template>
|
|
4490
|
+
</li>
|
|
4491
|
+
</ul>
|
|
4492
|
+
</div>
|
|
4427
4493
|
</div>
|
|
4428
4494
|
`
|
|
4429
4495
|
}]
|
|
@@ -4503,6 +4569,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4503
4569
|
constructor(recurrence, localization) {
|
|
4504
4570
|
this.recurrence = recurrence;
|
|
4505
4571
|
this.localization = localization;
|
|
4572
|
+
this.cssClass = true;
|
|
4506
4573
|
this.numericOptions = {
|
|
4507
4574
|
min: 1,
|
|
4508
4575
|
format: '#',
|
|
@@ -4602,142 +4669,167 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4602
4669
|
}
|
|
4603
4670
|
}
|
|
4604
4671
|
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 });
|
|
4605
|
-
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" }, viewQueries: [{ propertyName: "endRuleRadioButtons", predicate: EndRuleRadioButtonDirective, descendants: true }], ngImport: i0, template: `
|
|
4606
|
-
<div class=
|
|
4607
|
-
<
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
[
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
[
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4672
|
+
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: `
|
|
4673
|
+
<div class="k-form-field">
|
|
4674
|
+
<kendo-label
|
|
4675
|
+
[text]="textFor('endLabel')"
|
|
4676
|
+
(click)="onEndLabelClick()"
|
|
4677
|
+
labelCssClass="k-form-label"
|
|
4678
|
+
></kendo-label>
|
|
4679
|
+
<div class="k-form-field-wrap">
|
|
4680
|
+
<ul class='k-radio-list'>
|
|
4681
|
+
<li class='k-radio-list-item'>
|
|
4682
|
+
<span class="k-radio-wrap">
|
|
4683
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4684
|
+
</span>
|
|
4685
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4686
|
+
</li>
|
|
4687
|
+
<li class='k-radio-list-item'>
|
|
4688
|
+
<span class="k-radio-wrap">
|
|
4689
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4690
|
+
</span>
|
|
4691
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4692
|
+
<kendo-numerictextbox
|
|
4693
|
+
#afterOccurances
|
|
4694
|
+
class="k-recur-count"
|
|
4695
|
+
[style.width.px]='70'
|
|
4696
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4697
|
+
[decimals]='0'
|
|
4698
|
+
[disabled]='isCountDisabled'
|
|
4699
|
+
[format]="numericOptions.format"
|
|
4700
|
+
[min]='numericOptions.min'
|
|
4701
|
+
[max]="numericOptions.max"
|
|
4702
|
+
[readonly]="numericOptions.readonly"
|
|
4703
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4704
|
+
[spinners]="numericOptions.spinners"
|
|
4705
|
+
[step]="numericOptions.step"
|
|
4706
|
+
[title]="numericOptions.title"
|
|
4707
|
+
[(value)]='countValue'
|
|
4708
|
+
(blur)="onCountBlur()"
|
|
4709
|
+
(valueChange)='onCountChange($event)'>
|
|
4710
|
+
</kendo-numerictextbox>
|
|
4711
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4712
|
+
</li>
|
|
4713
|
+
<li class='k-radio-list-item'>
|
|
4714
|
+
<span class="k-radio-wrap">
|
|
4715
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4716
|
+
</span>
|
|
4717
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4718
|
+
<kendo-datepicker
|
|
4719
|
+
class="k-recur-until"
|
|
4720
|
+
[style.width.px]='150'
|
|
4721
|
+
[disabled]='isUntilDisabled'
|
|
4722
|
+
[activeView]="datePickerOptions.activeView"
|
|
4723
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4724
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4725
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4726
|
+
[format]="datePickerOptions.format"
|
|
4727
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4728
|
+
[max]="datePickerOptions.max"
|
|
4729
|
+
[min]="datePickerOptions.min"
|
|
4730
|
+
[navigation]="datePickerOptions.navigation"
|
|
4731
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4732
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4733
|
+
[readonly]="datePickerOptions.readonly"
|
|
4734
|
+
[title]="datePickerOptions.title"
|
|
4735
|
+
[topView]="datePickerOptions.topView"
|
|
4736
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4737
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4738
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4739
|
+
[(value)]='untilValue'
|
|
4740
|
+
(blur)="onUntilBlur()"
|
|
4741
|
+
(valueChange)='onUntilChange($event)'>
|
|
4742
|
+
</kendo-datepicker>
|
|
4743
|
+
</li>
|
|
4744
|
+
</ul>
|
|
4745
|
+
</div>
|
|
4668
4746
|
</div>
|
|
4669
|
-
`, isInline: true, components: [{ type:
|
|
4747
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: EndRuleRadioButtonDirective, selector: "[kendoRecurrenceEndRuleRadioButton]", inputs: ["kendoRecurrenceEndRuleRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }] });
|
|
4670
4748
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
|
|
4671
4749
|
type: Component,
|
|
4672
4750
|
args: [{
|
|
4673
4751
|
selector: 'kendo-recurrence-end-rule-editor',
|
|
4674
4752
|
template: `
|
|
4675
|
-
<div class=
|
|
4676
|
-
<
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
[
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
[
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4753
|
+
<div class="k-form-field">
|
|
4754
|
+
<kendo-label
|
|
4755
|
+
[text]="textFor('endLabel')"
|
|
4756
|
+
(click)="onEndLabelClick()"
|
|
4757
|
+
labelCssClass="k-form-label"
|
|
4758
|
+
></kendo-label>
|
|
4759
|
+
<div class="k-form-field-wrap">
|
|
4760
|
+
<ul class='k-radio-list'>
|
|
4761
|
+
<li class='k-radio-list-item'>
|
|
4762
|
+
<span class="k-radio-wrap">
|
|
4763
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4764
|
+
</span>
|
|
4765
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4766
|
+
</li>
|
|
4767
|
+
<li class='k-radio-list-item'>
|
|
4768
|
+
<span class="k-radio-wrap">
|
|
4769
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4770
|
+
</span>
|
|
4771
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4772
|
+
<kendo-numerictextbox
|
|
4773
|
+
#afterOccurances
|
|
4774
|
+
class="k-recur-count"
|
|
4775
|
+
[style.width.px]='70'
|
|
4776
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4777
|
+
[decimals]='0'
|
|
4778
|
+
[disabled]='isCountDisabled'
|
|
4779
|
+
[format]="numericOptions.format"
|
|
4780
|
+
[min]='numericOptions.min'
|
|
4781
|
+
[max]="numericOptions.max"
|
|
4782
|
+
[readonly]="numericOptions.readonly"
|
|
4783
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4784
|
+
[spinners]="numericOptions.spinners"
|
|
4785
|
+
[step]="numericOptions.step"
|
|
4786
|
+
[title]="numericOptions.title"
|
|
4787
|
+
[(value)]='countValue'
|
|
4788
|
+
(blur)="onCountBlur()"
|
|
4789
|
+
(valueChange)='onCountChange($event)'>
|
|
4790
|
+
</kendo-numerictextbox>
|
|
4791
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4792
|
+
</li>
|
|
4793
|
+
<li class='k-radio-list-item'>
|
|
4794
|
+
<span class="k-radio-wrap">
|
|
4795
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4796
|
+
</span>
|
|
4797
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4798
|
+
<kendo-datepicker
|
|
4799
|
+
class="k-recur-until"
|
|
4800
|
+
[style.width.px]='150'
|
|
4801
|
+
[disabled]='isUntilDisabled'
|
|
4802
|
+
[activeView]="datePickerOptions.activeView"
|
|
4803
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4804
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4805
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4806
|
+
[format]="datePickerOptions.format"
|
|
4807
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4808
|
+
[max]="datePickerOptions.max"
|
|
4809
|
+
[min]="datePickerOptions.min"
|
|
4810
|
+
[navigation]="datePickerOptions.navigation"
|
|
4811
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4812
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4813
|
+
[readonly]="datePickerOptions.readonly"
|
|
4814
|
+
[title]="datePickerOptions.title"
|
|
4815
|
+
[topView]="datePickerOptions.topView"
|
|
4816
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4817
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4818
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4819
|
+
[(value)]='untilValue'
|
|
4820
|
+
(blur)="onUntilBlur()"
|
|
4821
|
+
(valueChange)='onUntilChange($event)'>
|
|
4822
|
+
</kendo-datepicker>
|
|
4823
|
+
</li>
|
|
4824
|
+
</ul>
|
|
4825
|
+
</div>
|
|
4737
4826
|
</div>
|
|
4738
4827
|
`
|
|
4739
4828
|
}]
|
|
4740
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
4829
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4830
|
+
type: HostBinding,
|
|
4831
|
+
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4832
|
+
}], userNumericOptions: [{
|
|
4741
4833
|
type: Input
|
|
4742
4834
|
}], userDatePickerOptions: [{
|
|
4743
4835
|
type: Input
|
|
@@ -5054,24 +5146,26 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5054
5146
|
<kendo-recurrence-frequency-editor>
|
|
5055
5147
|
</kendo-recurrence-frequency-editor>
|
|
5056
5148
|
|
|
5057
|
-
<
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5149
|
+
<div class="k-recur-view">
|
|
5150
|
+
<kendo-recurrence-interval-editor
|
|
5151
|
+
*ngIf="currentFreq !== 'never'"
|
|
5152
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5153
|
+
</kendo-recurrence-interval-editor>
|
|
5154
|
+
|
|
5155
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5156
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5157
|
+
|
|
5158
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5159
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5160
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5161
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5162
|
+
|
|
5163
|
+
<kendo-recurrence-end-rule-editor
|
|
5164
|
+
*ngIf="currentFreq !== 'never'"
|
|
5165
|
+
[userNumericOptions]="endAfterOptions"
|
|
5166
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5167
|
+
</kendo-recurrence-end-rule-editor>
|
|
5168
|
+
</div>
|
|
5075
5169
|
`, isInline: true, components: [{ type: RecurrenceFrequencyEditorComponent, selector: "kendo-recurrence-frequency-editor" }, { type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: ["userNumericOptions"] }, { type: RecurrenceWeekdayRuleEditorComponent, selector: "kendo-recurrence-weekday-rule-editor" }, { type: RecurrenceMonthlyYearlyEditorComponent, selector: "kendo-recurrence-monthly-yearly-editor", inputs: ["userNumericOptions"] }, { type: RecurrenceEndRuleEditorComponent, selector: "kendo-recurrence-end-rule-editor", inputs: ["userNumericOptions", "userDatePickerOptions"] }], directives: [{ type: RecurrenceEditorLocalizedMessagesDirective, selector: "[kendoRecurrenceEditorLocalizedMessages]" }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
5076
5170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEditorComponent, decorators: [{
|
|
5077
5171
|
type: Component,
|
|
@@ -5194,24 +5288,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5194
5288
|
<kendo-recurrence-frequency-editor>
|
|
5195
5289
|
</kendo-recurrence-frequency-editor>
|
|
5196
5290
|
|
|
5197
|
-
<
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5291
|
+
<div class="k-recur-view">
|
|
5292
|
+
<kendo-recurrence-interval-editor
|
|
5293
|
+
*ngIf="currentFreq !== 'never'"
|
|
5294
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5295
|
+
</kendo-recurrence-interval-editor>
|
|
5296
|
+
|
|
5297
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5298
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5299
|
+
|
|
5300
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5301
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5302
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5303
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5304
|
+
|
|
5305
|
+
<kendo-recurrence-end-rule-editor
|
|
5306
|
+
*ngIf="currentFreq !== 'never'"
|
|
5307
|
+
[userNumericOptions]="endAfterOptions"
|
|
5308
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5309
|
+
</kendo-recurrence-end-rule-editor>
|
|
5310
|
+
</div>
|
|
5215
5311
|
`
|
|
5216
5312
|
}]
|
|
5217
5313
|
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$4.IntlService }]; }, propDecorators: { cssClass: [{
|
|
@@ -5250,6 +5346,8 @@ class EditDialogComponent {
|
|
|
5250
5346
|
this.timezone = 'Etc/UTC';
|
|
5251
5347
|
this.setTimeZone = false;
|
|
5252
5348
|
this.setSeparateStartEndTimeZones = false;
|
|
5349
|
+
this.saveIcon = saveIcon;
|
|
5350
|
+
this.cancelIcon = cancelOutlineIcon;
|
|
5253
5351
|
this.subs = this.editService.changed.subscribe(() => {
|
|
5254
5352
|
this.ngZone.run(() => { this.onChange(); });
|
|
5255
5353
|
});
|
|
@@ -5269,7 +5367,7 @@ class EditDialogComponent {
|
|
|
5269
5367
|
if (this.editTemplate) {
|
|
5270
5368
|
return this.editTemplate.autoFocusedElement;
|
|
5271
5369
|
}
|
|
5272
|
-
return '.k-form-field
|
|
5370
|
+
return '.k-form-field input';
|
|
5273
5371
|
}
|
|
5274
5372
|
get isEditingSeries() {
|
|
5275
5373
|
return this.editMode === EditMode.Series && Boolean(this.formGroup.get(this.fields.recurrenceRule));
|
|
@@ -5438,121 +5536,163 @@ class EditDialogComponent {
|
|
|
5438
5536
|
}
|
|
5439
5537
|
EditDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, deps: [{ token: i0.NgZone }, { token: EditService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: FocusService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5440
5538
|
EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: EditDialogComponent, selector: "kendo-scheduler-edit-dialog", inputs: { resources: "resources", timezone: "timezone", weekStart: "weekStart", fields: "fields", editTemplate: "editTemplate" }, viewQueries: [{ propertyName: "multipleResourceEditors", predicate: MultipleResourceEditorComponent, descendants: true }, { propertyName: "singleResourceEditors", predicate: SingleResourceEditorComponent, descendants: true }], ngImport: i0, template: `
|
|
5441
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5539
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5442
5540
|
<ng-container *ngIf='!editTemplate'>
|
|
5443
|
-
<
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5460
|
-
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
<
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5541
|
+
<form
|
|
5542
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5543
|
+
novalidate
|
|
5544
|
+
[formGroup]='formGroup'
|
|
5545
|
+
>
|
|
5546
|
+
<!-- Title -->
|
|
5547
|
+
<kendo-formfield>
|
|
5548
|
+
<kendo-label
|
|
5549
|
+
[for]="title"
|
|
5550
|
+
[text]="textFor('editorEventTitle')"
|
|
5551
|
+
labelCssClass="k-form-label"
|
|
5552
|
+
></kendo-label>
|
|
5553
|
+
<input
|
|
5554
|
+
#title
|
|
5555
|
+
kendoTextBox
|
|
5556
|
+
placeholder='Title'
|
|
5557
|
+
[formControl]='getControl(fields.title)'
|
|
5558
|
+
/>
|
|
5559
|
+
</kendo-formfield>
|
|
5560
|
+
|
|
5561
|
+
<!-- Start -->
|
|
5562
|
+
<kendo-formfield>
|
|
5563
|
+
<kendo-label
|
|
5564
|
+
[for]="startDateTimePicker"
|
|
5565
|
+
[text]="textFor('editorEventStart')"
|
|
5566
|
+
labelCssClass="k-form-label"
|
|
5567
|
+
></kendo-label>
|
|
5568
|
+
<kendo-scheduler-datetime-picker
|
|
5569
|
+
#startDateTimePicker
|
|
5570
|
+
[formControl]='getControl(fields.start)'
|
|
5571
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5572
|
+
></kendo-scheduler-datetime-picker>
|
|
5573
|
+
</kendo-formfield>
|
|
5574
|
+
|
|
5575
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5576
|
+
<ng-container>
|
|
5577
|
+
<span class="k-checkbox-wrap">
|
|
5578
|
+
<input
|
|
5579
|
+
id='k-set-timezone'
|
|
5580
|
+
type='checkbox'
|
|
5581
|
+
kendoCheckBox
|
|
5582
|
+
formControlName='startTimezoneCheckbox'
|
|
5583
|
+
/>
|
|
5584
|
+
</span>
|
|
5585
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5478
5586
|
</ng-container>
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5587
|
+
</kendo-formfield>
|
|
5588
|
+
|
|
5589
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5590
|
+
<kendo-label
|
|
5591
|
+
[for]="startTzPicker"
|
|
5592
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5593
|
+
labelCssClass="k-form-label"
|
|
5594
|
+
></kendo-label>
|
|
5595
|
+
<kendo-timezone-editor
|
|
5596
|
+
#startTzPicker
|
|
5597
|
+
[width]="undefined"
|
|
5598
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5599
|
+
></kendo-timezone-editor>
|
|
5600
|
+
</kendo-formfield>
|
|
5601
|
+
|
|
5602
|
+
<!-- End -->
|
|
5603
|
+
<kendo-formfield>
|
|
5604
|
+
<kendo-label
|
|
5605
|
+
[for]="endDateTimePicker"
|
|
5606
|
+
[text]="textFor('editorEventEnd')"
|
|
5607
|
+
labelCssClass="k-form-label"
|
|
5608
|
+
></kendo-label>
|
|
5609
|
+
<kendo-scheduler-datetime-picker
|
|
5610
|
+
#endDateTimePicker
|
|
5611
|
+
[formControl]='getControl(fields.end)'
|
|
5612
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5613
|
+
></kendo-scheduler-datetime-picker>
|
|
5614
|
+
</kendo-formfield>
|
|
5615
|
+
|
|
5616
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5617
|
+
<ng-container>
|
|
5618
|
+
<span class="k-checkbox-wrap">
|
|
5619
|
+
<input
|
|
5620
|
+
id='k-use-separate'
|
|
5621
|
+
type='checkbox'
|
|
5622
|
+
kendoCheckBox
|
|
5623
|
+
formControlName='endTimezoneCheckbox'
|
|
5624
|
+
/>
|
|
5625
|
+
</span>
|
|
5626
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5505
5627
|
</ng-container>
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
</
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
<!-- Resources -->
|
|
5535
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5536
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5537
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5538
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5539
|
-
</label>
|
|
5540
|
-
<div class='k-form-field-wrap'>
|
|
5541
|
-
<kendo-multiple-resource-editor
|
|
5542
|
-
*ngIf='resource.multiple'
|
|
5543
|
-
[formControl]='getControl(resource.field)'
|
|
5544
|
-
[resource]='resource'>
|
|
5545
|
-
</kendo-multiple-resource-editor>
|
|
5546
|
-
<kendo-single-resource-editor
|
|
5547
|
-
*ngIf='!resource.multiple'
|
|
5548
|
-
[formControl]='getControl(resource.field)'
|
|
5549
|
-
[resource]='resource'>
|
|
5550
|
-
</kendo-single-resource-editor>
|
|
5551
|
-
</div>
|
|
5552
|
-
</div>
|
|
5628
|
+
</kendo-formfield>
|
|
5629
|
+
|
|
5630
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5631
|
+
<kendo-label
|
|
5632
|
+
[for]="endTzPicker"
|
|
5633
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5634
|
+
labelCssClass="k-form-label"
|
|
5635
|
+
></kendo-label>
|
|
5636
|
+
<kendo-timezone-editor
|
|
5637
|
+
#endTzPicker
|
|
5638
|
+
[width]="undefined"
|
|
5639
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5640
|
+
></kendo-timezone-editor>
|
|
5641
|
+
</kendo-formfield>
|
|
5642
|
+
|
|
5643
|
+
<!-- All day -->
|
|
5644
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5645
|
+
<ng-container>
|
|
5646
|
+
<span class="k-checkbox-wrap">
|
|
5647
|
+
<input
|
|
5648
|
+
id='k-is-allday-chkbox'
|
|
5649
|
+
type='checkbox'
|
|
5650
|
+
kendoCheckBox
|
|
5651
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5652
|
+
/>
|
|
5653
|
+
</span>
|
|
5654
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5553
5655
|
</ng-container>
|
|
5554
|
-
</
|
|
5555
|
-
|
|
5656
|
+
</kendo-formfield>
|
|
5657
|
+
|
|
5658
|
+
<!-- Series -->
|
|
5659
|
+
<kendo-recurrence-editor
|
|
5660
|
+
*ngIf="isEditingSeries"
|
|
5661
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5662
|
+
[start]='recurrenceStart'
|
|
5663
|
+
[timezone]='eventTimezone'
|
|
5664
|
+
[weekStart]='weekStart'
|
|
5665
|
+
></kendo-recurrence-editor>
|
|
5666
|
+
|
|
5667
|
+
<!-- Description -->
|
|
5668
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5669
|
+
<kendo-label
|
|
5670
|
+
[for]="description"
|
|
5671
|
+
[text]="textFor('editorEventDescription')"
|
|
5672
|
+
labelCssClass="k-form-label"
|
|
5673
|
+
></kendo-label>
|
|
5674
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5675
|
+
</kendo-formfield>
|
|
5676
|
+
|
|
5677
|
+
<!-- Resources -->
|
|
5678
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5679
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5680
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5681
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5682
|
+
</label>
|
|
5683
|
+
<kendo-multiple-resource-editor
|
|
5684
|
+
*ngIf='resource.multiple'
|
|
5685
|
+
[formControl]='getControl(resource.field)'
|
|
5686
|
+
[resource]='resource'>
|
|
5687
|
+
</kendo-multiple-resource-editor>
|
|
5688
|
+
<kendo-single-resource-editor
|
|
5689
|
+
*ngIf='!resource.multiple'
|
|
5690
|
+
[formControl]='getControl(resource.field)'
|
|
5691
|
+
[resource]='resource'>
|
|
5692
|
+
</kendo-single-resource-editor>
|
|
5693
|
+
</kendo-formfield>
|
|
5694
|
+
</ng-container>
|
|
5695
|
+
</form>
|
|
5556
5696
|
</ng-container>
|
|
5557
5697
|
|
|
5558
5698
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5569,132 +5709,186 @@ EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
5569
5709
|
</form>
|
|
5570
5710
|
</ng-container>
|
|
5571
5711
|
|
|
5572
|
-
<kendo-dialog-actions>
|
|
5573
|
-
<button
|
|
5574
|
-
|
|
5712
|
+
<kendo-dialog-actions layout="start">
|
|
5713
|
+
<button
|
|
5714
|
+
kendoButton
|
|
5715
|
+
themeColor="primary"
|
|
5716
|
+
icon="save"
|
|
5717
|
+
[svgIcon]="saveIcon"
|
|
5718
|
+
[disabled]="!formGroup.valid"
|
|
5719
|
+
(click)="onSave($event)"
|
|
5720
|
+
>{{ textFor('save') }}</button>
|
|
5721
|
+
<button
|
|
5722
|
+
kendoButton
|
|
5723
|
+
icon="cancel-outline"
|
|
5724
|
+
[svgIcon]="cancelIcon"
|
|
5725
|
+
(click)="onCancel($event)"
|
|
5726
|
+
>{{ textFor('cancel') }}</button>
|
|
5575
5727
|
</kendo-dialog-actions>
|
|
5576
5728
|
</kendo-dialog>
|
|
5577
|
-
`, isInline: true, components: [{ type: i1.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation", "themeColor"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: ["isAllDay"], outputs: ["valueChange"] }, { type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type:
|
|
5729
|
+
`, isInline: true, components: [{ type: i1.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation", "themeColor"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i5.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: ["isAllDay"], outputs: ["valueChange"] }, { type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i14.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i14.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i14.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i5.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i14.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i14.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i14.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i14.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i5.CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { type: i14.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i5.TextAreaDirective, selector: "textarea[kendoTextArea]", inputs: ["autoSize", "value"], outputs: ["valueChange"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
5578
5730
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, decorators: [{
|
|
5579
5731
|
type: Component,
|
|
5580
5732
|
args: [{
|
|
5581
5733
|
selector: 'kendo-scheduler-edit-dialog',
|
|
5582
5734
|
template: `
|
|
5583
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5735
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5584
5736
|
<ng-container *ngIf='!editTemplate'>
|
|
5585
|
-
<
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
<
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5737
|
+
<form
|
|
5738
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5739
|
+
novalidate
|
|
5740
|
+
[formGroup]='formGroup'
|
|
5741
|
+
>
|
|
5742
|
+
<!-- Title -->
|
|
5743
|
+
<kendo-formfield>
|
|
5744
|
+
<kendo-label
|
|
5745
|
+
[for]="title"
|
|
5746
|
+
[text]="textFor('editorEventTitle')"
|
|
5747
|
+
labelCssClass="k-form-label"
|
|
5748
|
+
></kendo-label>
|
|
5749
|
+
<input
|
|
5750
|
+
#title
|
|
5751
|
+
kendoTextBox
|
|
5752
|
+
placeholder='Title'
|
|
5753
|
+
[formControl]='getControl(fields.title)'
|
|
5754
|
+
/>
|
|
5755
|
+
</kendo-formfield>
|
|
5756
|
+
|
|
5757
|
+
<!-- Start -->
|
|
5758
|
+
<kendo-formfield>
|
|
5759
|
+
<kendo-label
|
|
5760
|
+
[for]="startDateTimePicker"
|
|
5761
|
+
[text]="textFor('editorEventStart')"
|
|
5762
|
+
labelCssClass="k-form-label"
|
|
5763
|
+
></kendo-label>
|
|
5764
|
+
<kendo-scheduler-datetime-picker
|
|
5765
|
+
#startDateTimePicker
|
|
5766
|
+
[formControl]='getControl(fields.start)'
|
|
5767
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5768
|
+
></kendo-scheduler-datetime-picker>
|
|
5769
|
+
</kendo-formfield>
|
|
5770
|
+
|
|
5771
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5772
|
+
<ng-container>
|
|
5773
|
+
<span class="k-checkbox-wrap">
|
|
5774
|
+
<input
|
|
5775
|
+
id='k-set-timezone'
|
|
5776
|
+
type='checkbox'
|
|
5777
|
+
kendoCheckBox
|
|
5778
|
+
formControlName='startTimezoneCheckbox'
|
|
5779
|
+
/>
|
|
5780
|
+
</span>
|
|
5781
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5620
5782
|
</ng-container>
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5783
|
+
</kendo-formfield>
|
|
5784
|
+
|
|
5785
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5786
|
+
<kendo-label
|
|
5787
|
+
[for]="startTzPicker"
|
|
5788
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5789
|
+
labelCssClass="k-form-label"
|
|
5790
|
+
></kendo-label>
|
|
5791
|
+
<kendo-timezone-editor
|
|
5792
|
+
#startTzPicker
|
|
5793
|
+
[width]="undefined"
|
|
5794
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5795
|
+
></kendo-timezone-editor>
|
|
5796
|
+
</kendo-formfield>
|
|
5797
|
+
|
|
5798
|
+
<!-- End -->
|
|
5799
|
+
<kendo-formfield>
|
|
5800
|
+
<kendo-label
|
|
5801
|
+
[for]="endDateTimePicker"
|
|
5802
|
+
[text]="textFor('editorEventEnd')"
|
|
5803
|
+
labelCssClass="k-form-label"
|
|
5804
|
+
></kendo-label>
|
|
5805
|
+
<kendo-scheduler-datetime-picker
|
|
5806
|
+
#endDateTimePicker
|
|
5807
|
+
[formControl]='getControl(fields.end)'
|
|
5808
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5809
|
+
></kendo-scheduler-datetime-picker>
|
|
5810
|
+
</kendo-formfield>
|
|
5811
|
+
|
|
5812
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5813
|
+
<ng-container>
|
|
5814
|
+
<span class="k-checkbox-wrap">
|
|
5815
|
+
<input
|
|
5816
|
+
id='k-use-separate'
|
|
5817
|
+
type='checkbox'
|
|
5818
|
+
kendoCheckBox
|
|
5819
|
+
formControlName='endTimezoneCheckbox'
|
|
5820
|
+
/>
|
|
5821
|
+
</span>
|
|
5822
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5647
5823
|
</ng-container>
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
</
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
<!-- Resources -->
|
|
5677
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5678
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5679
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5680
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5681
|
-
</label>
|
|
5682
|
-
<div class='k-form-field-wrap'>
|
|
5683
|
-
<kendo-multiple-resource-editor
|
|
5684
|
-
*ngIf='resource.multiple'
|
|
5685
|
-
[formControl]='getControl(resource.field)'
|
|
5686
|
-
[resource]='resource'>
|
|
5687
|
-
</kendo-multiple-resource-editor>
|
|
5688
|
-
<kendo-single-resource-editor
|
|
5689
|
-
*ngIf='!resource.multiple'
|
|
5690
|
-
[formControl]='getControl(resource.field)'
|
|
5691
|
-
[resource]='resource'>
|
|
5692
|
-
</kendo-single-resource-editor>
|
|
5693
|
-
</div>
|
|
5694
|
-
</div>
|
|
5824
|
+
</kendo-formfield>
|
|
5825
|
+
|
|
5826
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5827
|
+
<kendo-label
|
|
5828
|
+
[for]="endTzPicker"
|
|
5829
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5830
|
+
labelCssClass="k-form-label"
|
|
5831
|
+
></kendo-label>
|
|
5832
|
+
<kendo-timezone-editor
|
|
5833
|
+
#endTzPicker
|
|
5834
|
+
[width]="undefined"
|
|
5835
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5836
|
+
></kendo-timezone-editor>
|
|
5837
|
+
</kendo-formfield>
|
|
5838
|
+
|
|
5839
|
+
<!-- All day -->
|
|
5840
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5841
|
+
<ng-container>
|
|
5842
|
+
<span class="k-checkbox-wrap">
|
|
5843
|
+
<input
|
|
5844
|
+
id='k-is-allday-chkbox'
|
|
5845
|
+
type='checkbox'
|
|
5846
|
+
kendoCheckBox
|
|
5847
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5848
|
+
/>
|
|
5849
|
+
</span>
|
|
5850
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5695
5851
|
</ng-container>
|
|
5696
|
-
</
|
|
5697
|
-
|
|
5852
|
+
</kendo-formfield>
|
|
5853
|
+
|
|
5854
|
+
<!-- Series -->
|
|
5855
|
+
<kendo-recurrence-editor
|
|
5856
|
+
*ngIf="isEditingSeries"
|
|
5857
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5858
|
+
[start]='recurrenceStart'
|
|
5859
|
+
[timezone]='eventTimezone'
|
|
5860
|
+
[weekStart]='weekStart'
|
|
5861
|
+
></kendo-recurrence-editor>
|
|
5862
|
+
|
|
5863
|
+
<!-- Description -->
|
|
5864
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5865
|
+
<kendo-label
|
|
5866
|
+
[for]="description"
|
|
5867
|
+
[text]="textFor('editorEventDescription')"
|
|
5868
|
+
labelCssClass="k-form-label"
|
|
5869
|
+
></kendo-label>
|
|
5870
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5871
|
+
</kendo-formfield>
|
|
5872
|
+
|
|
5873
|
+
<!-- Resources -->
|
|
5874
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5875
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5876
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5877
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5878
|
+
</label>
|
|
5879
|
+
<kendo-multiple-resource-editor
|
|
5880
|
+
*ngIf='resource.multiple'
|
|
5881
|
+
[formControl]='getControl(resource.field)'
|
|
5882
|
+
[resource]='resource'>
|
|
5883
|
+
</kendo-multiple-resource-editor>
|
|
5884
|
+
<kendo-single-resource-editor
|
|
5885
|
+
*ngIf='!resource.multiple'
|
|
5886
|
+
[formControl]='getControl(resource.field)'
|
|
5887
|
+
[resource]='resource'>
|
|
5888
|
+
</kendo-single-resource-editor>
|
|
5889
|
+
</kendo-formfield>
|
|
5890
|
+
</ng-container>
|
|
5891
|
+
</form>
|
|
5698
5892
|
</ng-container>
|
|
5699
5893
|
|
|
5700
5894
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5711,9 +5905,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5711
5905
|
</form>
|
|
5712
5906
|
</ng-container>
|
|
5713
5907
|
|
|
5714
|
-
<kendo-dialog-actions>
|
|
5715
|
-
<button
|
|
5716
|
-
|
|
5908
|
+
<kendo-dialog-actions layout="start">
|
|
5909
|
+
<button
|
|
5910
|
+
kendoButton
|
|
5911
|
+
themeColor="primary"
|
|
5912
|
+
icon="save"
|
|
5913
|
+
[svgIcon]="saveIcon"
|
|
5914
|
+
[disabled]="!formGroup.valid"
|
|
5915
|
+
(click)="onSave($event)"
|
|
5916
|
+
>{{ textFor('save') }}</button>
|
|
5917
|
+
<button
|
|
5918
|
+
kendoButton
|
|
5919
|
+
icon="cancel-outline"
|
|
5920
|
+
[svgIcon]="cancelIcon"
|
|
5921
|
+
(click)="onCancel($event)"
|
|
5922
|
+
>{{ textFor('cancel') }}</button>
|
|
5717
5923
|
</kendo-dialog-actions>
|
|
5718
5924
|
</kendo-dialog>
|
|
5719
5925
|
`
|
|
@@ -11936,7 +12142,7 @@ ViewFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
11936
12142
|
<span class="k-button-text">{{ item.text }}</span>
|
|
11937
12143
|
</button>
|
|
11938
12144
|
</span>
|
|
11939
|
-
`, isInline: true, components: [{ type:
|
|
12145
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
11940
12146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ViewFooterComponent, decorators: [{
|
|
11941
12147
|
type: Component,
|
|
11942
12148
|
args: [{
|
|
@@ -16755,7 +16961,8 @@ const importedKendoModules = [
|
|
|
16755
16961
|
DropDownsModule,
|
|
16756
16962
|
ReactiveFormsModule,
|
|
16757
16963
|
SharedModule,
|
|
16758
|
-
LabelModule
|
|
16964
|
+
LabelModule,
|
|
16965
|
+
FormFieldModule
|
|
16759
16966
|
];
|
|
16760
16967
|
/**
|
|
16761
16968
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -16842,7 +17049,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
16842
17049
|
DropDownsModule,
|
|
16843
17050
|
ReactiveFormsModule,
|
|
16844
17051
|
SharedModule,
|
|
16845
|
-
LabelModule
|
|
17052
|
+
LabelModule,
|
|
17053
|
+
FormFieldModule], exports: [AgendaViewComponent,
|
|
16846
17054
|
MonthViewModule,
|
|
16847
17055
|
MultiDayViewModule,
|
|
16848
17056
|
ReactiveEditingDirective,
|