@progress/kendo-angular-scheduler 13.0.0-develop.6 → 13.0.0-develop.7
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: 1685097008,
|
|
52
|
+
version: '13.0.0-develop.7',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2557,7 +2557,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2557
2557
|
</kendo-calendar-messages>
|
|
2558
2558
|
</kendo-calendar>
|
|
2559
2559
|
</ng-template>
|
|
2560
|
-
`, isInline: true, components: [{ type:
|
|
2560
|
+
`, 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 });
|
|
2561
2561
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
|
|
2562
2562
|
type: Component,
|
|
2563
2563
|
args: [{
|
|
@@ -2748,7 +2748,7 @@ ToolbarViewSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
2748
2748
|
</span>
|
|
2749
2749
|
</button>
|
|
2750
2750
|
</span>
|
|
2751
|
-
`, isInline: true, components: [{ type:
|
|
2751
|
+
`, 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"] }] });
|
|
2752
2752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
|
|
2753
2753
|
type: Component,
|
|
2754
2754
|
args: [{
|
|
@@ -3157,6 +3157,12 @@ class SchedulerDateTimePickerComponent {
|
|
|
3157
3157
|
this.onTouchedCallback = (_) => { };
|
|
3158
3158
|
this.onChangeCallback = (_) => { };
|
|
3159
3159
|
}
|
|
3160
|
+
/**
|
|
3161
|
+
* @hidden
|
|
3162
|
+
*/
|
|
3163
|
+
get focusableId() {
|
|
3164
|
+
return this.isAllDay ? this.datePicker?.input.focusableId : this.dateTimePicker?.input.focusableId;
|
|
3165
|
+
}
|
|
3160
3166
|
writeValue(newDate) {
|
|
3161
3167
|
if (newDate instanceof Date) {
|
|
3162
3168
|
this.date = newDate;
|
|
@@ -3170,7 +3176,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3170
3176
|
* @hidden
|
|
3171
3177
|
*/
|
|
3172
3178
|
focus() {
|
|
3173
|
-
this.datePicker.focus();
|
|
3179
|
+
this.datePicker ? this.datePicker.focus() : this.dateTimePicker.focus();
|
|
3174
3180
|
}
|
|
3175
3181
|
/**
|
|
3176
3182
|
* @hidden
|
|
@@ -3188,19 +3194,20 @@ class SchedulerDateTimePickerComponent {
|
|
|
3188
3194
|
SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3189
3195
|
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: [
|
|
3190
3196
|
SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
|
|
3191
|
-
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true,
|
|
3197
|
+
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true }, { propertyName: "dateTimePicker", first: true, predicate: ["datetimepicker"], descendants: true }], ngImport: i0, template: `
|
|
3192
3198
|
<kendo-datepicker
|
|
3199
|
+
*ngIf='isAllDay'
|
|
3193
3200
|
#datepicker
|
|
3194
3201
|
[(value)]='date'
|
|
3195
3202
|
(valueChange)='onValueChange($event)'
|
|
3196
|
-
[style.width.px]="170"
|
|
3197
3203
|
></kendo-datepicker>
|
|
3198
|
-
<kendo-
|
|
3204
|
+
<kendo-datetimepicker
|
|
3205
|
+
*ngIf='!isAllDay'
|
|
3206
|
+
#datetimepicker
|
|
3199
3207
|
[(value)]='date'
|
|
3200
3208
|
(valueChange)='onValueChange($event)'
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
`, 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"] }] });
|
|
3209
|
+
>
|
|
3210
|
+
`, 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"] }] });
|
|
3204
3211
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
|
|
3205
3212
|
type: Component,
|
|
3206
3213
|
args: [{
|
|
@@ -3210,21 +3217,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3210
3217
|
selector: 'kendo-scheduler-datetime-picker',
|
|
3211
3218
|
template: `
|
|
3212
3219
|
<kendo-datepicker
|
|
3220
|
+
*ngIf='isAllDay'
|
|
3213
3221
|
#datepicker
|
|
3214
3222
|
[(value)]='date'
|
|
3215
3223
|
(valueChange)='onValueChange($event)'
|
|
3216
|
-
[style.width.px]="170"
|
|
3217
3224
|
></kendo-datepicker>
|
|
3218
|
-
<kendo-
|
|
3225
|
+
<kendo-datetimepicker
|
|
3226
|
+
*ngIf='!isAllDay'
|
|
3227
|
+
#datetimepicker
|
|
3219
3228
|
[(value)]='date'
|
|
3220
3229
|
(valueChange)='onValueChange($event)'
|
|
3221
|
-
|
|
3222
|
-
></kendo-timepicker>
|
|
3230
|
+
>
|
|
3223
3231
|
`
|
|
3224
3232
|
}]
|
|
3225
3233
|
}], propDecorators: { datePicker: [{
|
|
3226
3234
|
type: ViewChild,
|
|
3227
|
-
args: ['datepicker'
|
|
3235
|
+
args: ['datepicker']
|
|
3236
|
+
}], dateTimePicker: [{
|
|
3237
|
+
type: ViewChild,
|
|
3238
|
+
args: ['datetimepicker']
|
|
3228
3239
|
}], isAllDay: [{
|
|
3229
3240
|
type: Input
|
|
3230
3241
|
}], valueChange: [{
|
|
@@ -3259,6 +3270,12 @@ class TimeZoneEditorComponent {
|
|
|
3259
3270
|
this.tzNames = timezoneNames();
|
|
3260
3271
|
this.tzSource = this.tzNames.slice();
|
|
3261
3272
|
}
|
|
3273
|
+
/**
|
|
3274
|
+
* @hidden
|
|
3275
|
+
*/
|
|
3276
|
+
get focusableId() {
|
|
3277
|
+
return this.tzComboBox.focusableId;
|
|
3278
|
+
}
|
|
3262
3279
|
/**
|
|
3263
3280
|
* @hidden
|
|
3264
3281
|
*/
|
|
@@ -3649,12 +3666,18 @@ class RecurrenceFrequencyEditorComponent {
|
|
|
3649
3666
|
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 });
|
|
3650
3667
|
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: `
|
|
3651
3668
|
<div class='k-form-field'>
|
|
3652
|
-
<
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3669
|
+
<kendo-label
|
|
3670
|
+
[text]="textFor('repeat')"
|
|
3671
|
+
(click)="onFrequencyClick()"
|
|
3672
|
+
labelCssClass="k-form-label"
|
|
3673
|
+
></kendo-label>
|
|
3674
|
+
<div class="k-form-field-wrap">
|
|
3675
|
+
<kendo-buttongroup
|
|
3676
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3677
|
+
width="100%"
|
|
3678
|
+
selection="single"
|
|
3679
|
+
>
|
|
3656
3680
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3657
|
-
[style.width.px]="100"
|
|
3658
3681
|
[togglable]="true"
|
|
3659
3682
|
[selected]="freq.value === selected"
|
|
3660
3683
|
(click)="onClick(freq)"
|
|
@@ -3662,19 +3685,25 @@ RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersio
|
|
|
3662
3685
|
</kendo-buttongroup>
|
|
3663
3686
|
</div>
|
|
3664
3687
|
</div>
|
|
3665
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3688
|
+
`, 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"] }] });
|
|
3666
3689
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, decorators: [{
|
|
3667
3690
|
type: Component,
|
|
3668
3691
|
args: [{
|
|
3669
3692
|
selector: 'kendo-recurrence-frequency-editor',
|
|
3670
3693
|
template: `
|
|
3671
3694
|
<div class='k-form-field'>
|
|
3672
|
-
<
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3695
|
+
<kendo-label
|
|
3696
|
+
[text]="textFor('repeat')"
|
|
3697
|
+
(click)="onFrequencyClick()"
|
|
3698
|
+
labelCssClass="k-form-label"
|
|
3699
|
+
></kendo-label>
|
|
3700
|
+
<div class="k-form-field-wrap">
|
|
3701
|
+
<kendo-buttongroup
|
|
3702
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3703
|
+
width="100%"
|
|
3704
|
+
selection="single"
|
|
3705
|
+
>
|
|
3676
3706
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3677
|
-
[style.width.px]="100"
|
|
3678
3707
|
[togglable]="true"
|
|
3679
3708
|
[selected]="freq.value === selected"
|
|
3680
3709
|
(click)="onClick(freq)"
|
|
@@ -3696,6 +3725,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3696
3725
|
constructor(recurrence, localization) {
|
|
3697
3726
|
this.recurrence = recurrence;
|
|
3698
3727
|
this.localization = localization;
|
|
3728
|
+
this.cssClass = true;
|
|
3699
3729
|
this.numericOptions = {
|
|
3700
3730
|
min: 1,
|
|
3701
3731
|
format: '#',
|
|
@@ -3756,13 +3786,18 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3756
3786
|
}
|
|
3757
3787
|
}
|
|
3758
3788
|
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 });
|
|
3759
|
-
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: `
|
|
3760
|
-
<div class=
|
|
3761
|
-
<kendo-label
|
|
3789
|
+
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: `
|
|
3790
|
+
<div class="k-form-field">
|
|
3791
|
+
<kendo-label
|
|
3792
|
+
[for]="intervalNumeric"
|
|
3793
|
+
[text]="textForRepeatEvery()"
|
|
3794
|
+
labelCssClass="k-form-label"
|
|
3795
|
+
(click)="intervalNumeric.focus()"
|
|
3796
|
+
></kendo-label>
|
|
3762
3797
|
<div class="k-form-field-wrap">
|
|
3763
3798
|
<kendo-numerictextbox
|
|
3764
3799
|
#intervalNumeric
|
|
3765
|
-
|
|
3800
|
+
class="k-recur-interval"
|
|
3766
3801
|
[min]="numericOptions.min"
|
|
3767
3802
|
[max]="numericOptions.max"
|
|
3768
3803
|
[decimals]="0"
|
|
@@ -3777,22 +3812,26 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3777
3812
|
(blur)="onIntervalBlur()"
|
|
3778
3813
|
(valueChange)="onIntervalChange($event)">
|
|
3779
3814
|
</kendo-numerictextbox>
|
|
3780
|
-
|
|
3781
|
-
<span>{{ textForFrequency() }}</span>
|
|
3815
|
+
<span> {{ textForFrequency() }}</span>
|
|
3782
3816
|
</div>
|
|
3783
3817
|
</div>
|
|
3784
|
-
`, isInline: true, components: [{ type:
|
|
3818
|
+
`, 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"] }] });
|
|
3785
3819
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
|
|
3786
3820
|
type: Component,
|
|
3787
3821
|
args: [{
|
|
3788
3822
|
selector: 'kendo-recurrence-interval-editor',
|
|
3789
3823
|
template: `
|
|
3790
|
-
<div class=
|
|
3791
|
-
<kendo-label
|
|
3824
|
+
<div class="k-form-field">
|
|
3825
|
+
<kendo-label
|
|
3826
|
+
[for]="intervalNumeric"
|
|
3827
|
+
[text]="textForRepeatEvery()"
|
|
3828
|
+
labelCssClass="k-form-label"
|
|
3829
|
+
(click)="intervalNumeric.focus()"
|
|
3830
|
+
></kendo-label>
|
|
3792
3831
|
<div class="k-form-field-wrap">
|
|
3793
3832
|
<kendo-numerictextbox
|
|
3794
3833
|
#intervalNumeric
|
|
3795
|
-
|
|
3834
|
+
class="k-recur-interval"
|
|
3796
3835
|
[min]="numericOptions.min"
|
|
3797
3836
|
[max]="numericOptions.max"
|
|
3798
3837
|
[decimals]="0"
|
|
@@ -3807,13 +3846,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3807
3846
|
(blur)="onIntervalBlur()"
|
|
3808
3847
|
(valueChange)="onIntervalChange($event)">
|
|
3809
3848
|
</kendo-numerictextbox>
|
|
3810
|
-
|
|
3811
|
-
<span>{{ textForFrequency() }}</span>
|
|
3849
|
+
<span> {{ textForFrequency() }}</span>
|
|
3812
3850
|
</div>
|
|
3813
3851
|
</div>
|
|
3814
3852
|
`
|
|
3815
3853
|
}]
|
|
3816
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
3854
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3855
|
+
type: HostBinding,
|
|
3856
|
+
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3857
|
+
}], userNumericOptions: [{
|
|
3817
3858
|
type: Input
|
|
3818
3859
|
}] } });
|
|
3819
3860
|
|
|
@@ -3872,36 +3913,52 @@ class RecurrenceWeekdayRuleEditorComponent {
|
|
|
3872
3913
|
}
|
|
3873
3914
|
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 });
|
|
3874
3915
|
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: `
|
|
3875
|
-
<div class=
|
|
3876
|
-
<
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3916
|
+
<div class="k-form-field">
|
|
3917
|
+
<kendo-label
|
|
3918
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3919
|
+
labelCssClass="k-form-label"
|
|
3920
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3921
|
+
></kendo-label>
|
|
3922
|
+
<div class="k-form-field-wrap">
|
|
3923
|
+
<kendo-buttongroup
|
|
3924
|
+
class="k-button-group-solid"
|
|
3925
|
+
width="100%"
|
|
3926
|
+
selection="multiple"
|
|
3927
|
+
>
|
|
3928
|
+
<button
|
|
3929
|
+
*ngFor='let day of weekDays'
|
|
3930
|
+
kendoButton
|
|
3931
|
+
[toggleable]="true"
|
|
3932
|
+
[selected]="isSelected(day)"
|
|
3933
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3885
3934
|
>{{ capitalize(day.text) }}</button>
|
|
3886
3935
|
</kendo-buttongroup>
|
|
3887
3936
|
</div>
|
|
3888
3937
|
</div>
|
|
3889
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3938
|
+
`, 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"] }] });
|
|
3890
3939
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, decorators: [{
|
|
3891
3940
|
type: Component,
|
|
3892
3941
|
args: [{
|
|
3893
3942
|
selector: 'kendo-recurrence-weekday-rule-editor',
|
|
3894
3943
|
template: `
|
|
3895
|
-
<div class=
|
|
3896
|
-
<
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3944
|
+
<div class="k-form-field">
|
|
3945
|
+
<kendo-label
|
|
3946
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3947
|
+
labelCssClass="k-form-label"
|
|
3948
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3949
|
+
></kendo-label>
|
|
3950
|
+
<div class="k-form-field-wrap">
|
|
3951
|
+
<kendo-buttongroup
|
|
3952
|
+
class="k-button-group-solid"
|
|
3953
|
+
width="100%"
|
|
3954
|
+
selection="multiple"
|
|
3955
|
+
>
|
|
3956
|
+
<button
|
|
3957
|
+
*ngFor='let day of weekDays'
|
|
3958
|
+
kendoButton
|
|
3959
|
+
[toggleable]="true"
|
|
3960
|
+
[selected]="isSelected(day)"
|
|
3961
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3905
3962
|
>{{ capitalize(day.text) }}</button>
|
|
3906
3963
|
</kendo-buttongroup>
|
|
3907
3964
|
</div>
|
|
@@ -4201,192 +4258,200 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4201
4258
|
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 });
|
|
4202
4259
|
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: `
|
|
4203
4260
|
<div class='k-form-field'>
|
|
4204
|
-
<
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4261
|
+
<kendo-label
|
|
4262
|
+
[text]="textForRepeatOn()"
|
|
4263
|
+
labelCssClass="k-form-label"
|
|
4264
|
+
(click)="onRepeatOnLabelClick()"
|
|
4265
|
+
></kendo-label>
|
|
4266
|
+
<div class="k-form-field-wrap">
|
|
4267
|
+
<ul class='k-radio-list'>
|
|
4268
|
+
<li class='k-radio-list-item'>
|
|
4269
|
+
<span class="k-radio-wrap">
|
|
4270
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4271
|
+
</span>
|
|
4272
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4273
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4274
|
+
{{ textFor('monthlyDay') }}
|
|
4275
|
+
</ng-template>
|
|
4276
|
+
</label>
|
|
4277
|
+
|
|
4278
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4279
|
+
<kendo-dropdownlist
|
|
4280
|
+
[data]='months'
|
|
4281
|
+
textField='text'
|
|
4282
|
+
valueField='value'
|
|
4283
|
+
[value]='currentMonthMonthDay'
|
|
4284
|
+
[valuePrimitive]='true'
|
|
4285
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4286
|
+
[disabled]="isDisabled('monthday')"
|
|
4287
|
+
[style.width.px]="170"
|
|
4288
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4289
|
+
</kendo-dropdownlist>
|
|
4213
4290
|
</ng-template>
|
|
4214
|
-
</label>
|
|
4215
4291
|
|
|
4216
|
-
|
|
4292
|
+
<kendo-numerictextbox
|
|
4293
|
+
class="k-recur-monthday"
|
|
4294
|
+
[min]="numericOptions.min"
|
|
4295
|
+
[max]="numericOptions.max"
|
|
4296
|
+
[decimals]="0"
|
|
4297
|
+
[format]="numericOptions.format"
|
|
4298
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4299
|
+
[readonly]="numericOptions.readonly"
|
|
4300
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4301
|
+
[spinners]="numericOptions.spinners"
|
|
4302
|
+
[step]="numericOptions.step"
|
|
4303
|
+
[title]="numericOptions.title"
|
|
4304
|
+
[value]='monthDay'
|
|
4305
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4306
|
+
[disabled]="isDisabled('monthday')">
|
|
4307
|
+
</kendo-numerictextbox>
|
|
4308
|
+
</li>
|
|
4309
|
+
<li class='k-radio-list-item'>
|
|
4310
|
+
<span class="k-radio-wrap">
|
|
4311
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4312
|
+
</span>
|
|
4313
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4314
|
+
|
|
4217
4315
|
<kendo-dropdownlist
|
|
4218
|
-
[data]='
|
|
4316
|
+
[data]='offsetPositions'
|
|
4219
4317
|
textField='text'
|
|
4220
4318
|
valueField='value'
|
|
4221
|
-
[value]='
|
|
4319
|
+
[value]='offset'
|
|
4222
4320
|
[valuePrimitive]='true'
|
|
4223
|
-
(valueChange)=
|
|
4224
|
-
[disabled]="isDisabled('
|
|
4225
|
-
[style.width.px]="170"
|
|
4321
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4322
|
+
[disabled]="isDisabled('weekday')"
|
|
4226
4323
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4227
4324
|
</kendo-dropdownlist>
|
|
4228
|
-
</ng-template>
|
|
4229
|
-
|
|
4230
|
-
<kendo-numerictextbox
|
|
4231
|
-
[style.width.px]='70'
|
|
4232
|
-
[min]="numericOptions.min"
|
|
4233
|
-
[max]="numericOptions.max"
|
|
4234
|
-
[decimals]="0"
|
|
4235
|
-
[format]="numericOptions.format"
|
|
4236
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4237
|
-
[readonly]="numericOptions.readonly"
|
|
4238
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4239
|
-
[spinners]="numericOptions.spinners"
|
|
4240
|
-
[step]="numericOptions.step"
|
|
4241
|
-
[title]="numericOptions.title"
|
|
4242
|
-
[value]='monthDay'
|
|
4243
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4244
|
-
[disabled]="isDisabled('monthday')"
|
|
4245
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4246
|
-
</kendo-numerictextbox>
|
|
4247
|
-
</li>
|
|
4248
|
-
<li class='k-radio-item'>
|
|
4249
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4250
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4251
|
-
|
|
4252
|
-
<kendo-dropdownlist
|
|
4253
|
-
[data]='offsetPositions'
|
|
4254
|
-
textField='text'
|
|
4255
|
-
valueField='value'
|
|
4256
|
-
[value]='offset'
|
|
4257
|
-
[valuePrimitive]='true'
|
|
4258
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4259
|
-
[disabled]="isDisabled('weekday')"
|
|
4260
|
-
[style.width.px]="170"
|
|
4261
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4262
|
-
</kendo-dropdownlist>
|
|
4263
|
-
|
|
4264
|
-
<kendo-dropdownlist
|
|
4265
|
-
[data]="extendedWeekDays"
|
|
4266
|
-
textField='text'
|
|
4267
|
-
valueField='value'
|
|
4268
|
-
[value]='weekDay'
|
|
4269
|
-
[valuePrimitive]='true'
|
|
4270
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4271
|
-
[disabled]="isDisabled('weekday')"
|
|
4272
|
-
[style.width.px]="170"
|
|
4273
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4274
|
-
</kendo-dropdownlist>
|
|
4275
|
-
|
|
4276
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4277
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4278
4325
|
|
|
4279
4326
|
<kendo-dropdownlist
|
|
4280
|
-
[data]=
|
|
4327
|
+
[data]="extendedWeekDays"
|
|
4281
4328
|
textField='text'
|
|
4282
4329
|
valueField='value'
|
|
4283
|
-
[value]='
|
|
4330
|
+
[value]='weekDay'
|
|
4284
4331
|
[valuePrimitive]='true'
|
|
4285
|
-
(valueChange)=
|
|
4332
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4286
4333
|
[disabled]="isDisabled('weekday')"
|
|
4287
|
-
[style.width.px]="170"
|
|
4288
4334
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4289
4335
|
</kendo-dropdownlist>
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4336
|
+
|
|
4337
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4338
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4339
|
+
|
|
4340
|
+
<kendo-dropdownlist
|
|
4341
|
+
[data]='months'
|
|
4342
|
+
textField='text'
|
|
4343
|
+
valueField='value'
|
|
4344
|
+
[value]='currentMonthWeekDay'
|
|
4345
|
+
[valuePrimitive]='true'
|
|
4346
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4347
|
+
[disabled]="isDisabled('weekday')"
|
|
4348
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4349
|
+
</kendo-dropdownlist>
|
|
4350
|
+
</ng-template>
|
|
4351
|
+
</li>
|
|
4352
|
+
</ul>
|
|
4353
|
+
</div>
|
|
4293
4354
|
</div>
|
|
4294
|
-
`, 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:
|
|
4355
|
+
`, 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"] }] });
|
|
4295
4356
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
|
|
4296
4357
|
type: Component,
|
|
4297
4358
|
args: [{
|
|
4298
4359
|
selector: 'kendo-recurrence-monthly-yearly-editor',
|
|
4299
4360
|
template: `
|
|
4300
4361
|
<div class='k-form-field'>
|
|
4301
|
-
<
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4307
|
-
|
|
4308
|
-
|
|
4309
|
-
|
|
4362
|
+
<kendo-label
|
|
4363
|
+
[text]="textForRepeatOn()"
|
|
4364
|
+
labelCssClass="k-form-label"
|
|
4365
|
+
(click)="onRepeatOnLabelClick()"
|
|
4366
|
+
></kendo-label>
|
|
4367
|
+
<div class="k-form-field-wrap">
|
|
4368
|
+
<ul class='k-radio-list'>
|
|
4369
|
+
<li class='k-radio-list-item'>
|
|
4370
|
+
<span class="k-radio-wrap">
|
|
4371
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4372
|
+
</span>
|
|
4373
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4374
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4375
|
+
{{ textFor('monthlyDay') }}
|
|
4376
|
+
</ng-template>
|
|
4377
|
+
</label>
|
|
4378
|
+
|
|
4379
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4380
|
+
<kendo-dropdownlist
|
|
4381
|
+
[data]='months'
|
|
4382
|
+
textField='text'
|
|
4383
|
+
valueField='value'
|
|
4384
|
+
[value]='currentMonthMonthDay'
|
|
4385
|
+
[valuePrimitive]='true'
|
|
4386
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4387
|
+
[disabled]="isDisabled('monthday')"
|
|
4388
|
+
[style.width.px]="170"
|
|
4389
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4390
|
+
</kendo-dropdownlist>
|
|
4310
4391
|
</ng-template>
|
|
4311
|
-
</label>
|
|
4312
4392
|
|
|
4313
|
-
|
|
4393
|
+
<kendo-numerictextbox
|
|
4394
|
+
class="k-recur-monthday"
|
|
4395
|
+
[min]="numericOptions.min"
|
|
4396
|
+
[max]="numericOptions.max"
|
|
4397
|
+
[decimals]="0"
|
|
4398
|
+
[format]="numericOptions.format"
|
|
4399
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4400
|
+
[readonly]="numericOptions.readonly"
|
|
4401
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4402
|
+
[spinners]="numericOptions.spinners"
|
|
4403
|
+
[step]="numericOptions.step"
|
|
4404
|
+
[title]="numericOptions.title"
|
|
4405
|
+
[value]='monthDay'
|
|
4406
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4407
|
+
[disabled]="isDisabled('monthday')">
|
|
4408
|
+
</kendo-numerictextbox>
|
|
4409
|
+
</li>
|
|
4410
|
+
<li class='k-radio-list-item'>
|
|
4411
|
+
<span class="k-radio-wrap">
|
|
4412
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4413
|
+
</span>
|
|
4414
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4415
|
+
|
|
4314
4416
|
<kendo-dropdownlist
|
|
4315
|
-
[data]='
|
|
4417
|
+
[data]='offsetPositions'
|
|
4316
4418
|
textField='text'
|
|
4317
4419
|
valueField='value'
|
|
4318
|
-
[value]='
|
|
4420
|
+
[value]='offset'
|
|
4319
4421
|
[valuePrimitive]='true'
|
|
4320
|
-
(valueChange)=
|
|
4321
|
-
[disabled]="isDisabled('
|
|
4322
|
-
[style.width.px]="170"
|
|
4422
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4423
|
+
[disabled]="isDisabled('weekday')"
|
|
4323
4424
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4324
4425
|
</kendo-dropdownlist>
|
|
4325
|
-
</ng-template>
|
|
4326
|
-
|
|
4327
|
-
<kendo-numerictextbox
|
|
4328
|
-
[style.width.px]='70'
|
|
4329
|
-
[min]="numericOptions.min"
|
|
4330
|
-
[max]="numericOptions.max"
|
|
4331
|
-
[decimals]="0"
|
|
4332
|
-
[format]="numericOptions.format"
|
|
4333
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4334
|
-
[readonly]="numericOptions.readonly"
|
|
4335
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4336
|
-
[spinners]="numericOptions.spinners"
|
|
4337
|
-
[step]="numericOptions.step"
|
|
4338
|
-
[title]="numericOptions.title"
|
|
4339
|
-
[value]='monthDay'
|
|
4340
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4341
|
-
[disabled]="isDisabled('monthday')"
|
|
4342
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4343
|
-
</kendo-numerictextbox>
|
|
4344
|
-
</li>
|
|
4345
|
-
<li class='k-radio-item'>
|
|
4346
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4347
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4348
|
-
|
|
4349
|
-
<kendo-dropdownlist
|
|
4350
|
-
[data]='offsetPositions'
|
|
4351
|
-
textField='text'
|
|
4352
|
-
valueField='value'
|
|
4353
|
-
[value]='offset'
|
|
4354
|
-
[valuePrimitive]='true'
|
|
4355
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4356
|
-
[disabled]="isDisabled('weekday')"
|
|
4357
|
-
[style.width.px]="170"
|
|
4358
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4359
|
-
</kendo-dropdownlist>
|
|
4360
|
-
|
|
4361
|
-
<kendo-dropdownlist
|
|
4362
|
-
[data]="extendedWeekDays"
|
|
4363
|
-
textField='text'
|
|
4364
|
-
valueField='value'
|
|
4365
|
-
[value]='weekDay'
|
|
4366
|
-
[valuePrimitive]='true'
|
|
4367
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4368
|
-
[disabled]="isDisabled('weekday')"
|
|
4369
|
-
[style.width.px]="170"
|
|
4370
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4371
|
-
</kendo-dropdownlist>
|
|
4372
|
-
|
|
4373
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4374
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4375
4426
|
|
|
4376
4427
|
<kendo-dropdownlist
|
|
4377
|
-
[data]=
|
|
4428
|
+
[data]="extendedWeekDays"
|
|
4378
4429
|
textField='text'
|
|
4379
4430
|
valueField='value'
|
|
4380
|
-
[value]='
|
|
4431
|
+
[value]='weekDay'
|
|
4381
4432
|
[valuePrimitive]='true'
|
|
4382
|
-
(valueChange)=
|
|
4433
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4383
4434
|
[disabled]="isDisabled('weekday')"
|
|
4384
|
-
[style.width.px]="170"
|
|
4385
4435
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4386
4436
|
</kendo-dropdownlist>
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4437
|
+
|
|
4438
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4439
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4440
|
+
|
|
4441
|
+
<kendo-dropdownlist
|
|
4442
|
+
[data]='months'
|
|
4443
|
+
textField='text'
|
|
4444
|
+
valueField='value'
|
|
4445
|
+
[value]='currentMonthWeekDay'
|
|
4446
|
+
[valuePrimitive]='true'
|
|
4447
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4448
|
+
[disabled]="isDisabled('weekday')"
|
|
4449
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4450
|
+
</kendo-dropdownlist>
|
|
4451
|
+
</ng-template>
|
|
4452
|
+
</li>
|
|
4453
|
+
</ul>
|
|
4454
|
+
</div>
|
|
4390
4455
|
</div>
|
|
4391
4456
|
`
|
|
4392
4457
|
}]
|
|
@@ -4466,6 +4531,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4466
4531
|
constructor(recurrence, localization) {
|
|
4467
4532
|
this.recurrence = recurrence;
|
|
4468
4533
|
this.localization = localization;
|
|
4534
|
+
this.cssClass = true;
|
|
4469
4535
|
this.numericOptions = {
|
|
4470
4536
|
min: 1,
|
|
4471
4537
|
format: '#',
|
|
@@ -4565,142 +4631,167 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4565
4631
|
}
|
|
4566
4632
|
}
|
|
4567
4633
|
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 });
|
|
4568
|
-
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: `
|
|
4569
|
-
<div class=
|
|
4570
|
-
<
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
[
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4593
|
-
|
|
4594
|
-
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
[
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4634
|
+
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: `
|
|
4635
|
+
<div class="k-form-field">
|
|
4636
|
+
<kendo-label
|
|
4637
|
+
[text]="textFor('endLabel')"
|
|
4638
|
+
(click)="onEndLabelClick()"
|
|
4639
|
+
labelCssClass="k-form-label"
|
|
4640
|
+
></kendo-label>
|
|
4641
|
+
<div class="k-form-field-wrap">
|
|
4642
|
+
<ul class='k-radio-list'>
|
|
4643
|
+
<li class='k-radio-list-item'>
|
|
4644
|
+
<span class="k-radio-wrap">
|
|
4645
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4646
|
+
</span>
|
|
4647
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4648
|
+
</li>
|
|
4649
|
+
<li class='k-radio-list-item'>
|
|
4650
|
+
<span class="k-radio-wrap">
|
|
4651
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4652
|
+
</span>
|
|
4653
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4654
|
+
<kendo-numerictextbox
|
|
4655
|
+
#afterOccurances
|
|
4656
|
+
class="k-recur-count"
|
|
4657
|
+
[style.width.px]='70'
|
|
4658
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4659
|
+
[decimals]='0'
|
|
4660
|
+
[disabled]='isCountDisabled'
|
|
4661
|
+
[format]="numericOptions.format"
|
|
4662
|
+
[min]='numericOptions.min'
|
|
4663
|
+
[max]="numericOptions.max"
|
|
4664
|
+
[readonly]="numericOptions.readonly"
|
|
4665
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4666
|
+
[spinners]="numericOptions.spinners"
|
|
4667
|
+
[step]="numericOptions.step"
|
|
4668
|
+
[title]="numericOptions.title"
|
|
4669
|
+
[(value)]='countValue'
|
|
4670
|
+
(blur)="onCountBlur()"
|
|
4671
|
+
(valueChange)='onCountChange($event)'>
|
|
4672
|
+
</kendo-numerictextbox>
|
|
4673
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4674
|
+
</li>
|
|
4675
|
+
<li class='k-radio-list-item'>
|
|
4676
|
+
<span class="k-radio-wrap">
|
|
4677
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4678
|
+
</span>
|
|
4679
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4680
|
+
<kendo-datepicker
|
|
4681
|
+
class="k-recur-until"
|
|
4682
|
+
[style.width.px]='150'
|
|
4683
|
+
[disabled]='isUntilDisabled'
|
|
4684
|
+
[activeView]="datePickerOptions.activeView"
|
|
4685
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4686
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4687
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4688
|
+
[format]="datePickerOptions.format"
|
|
4689
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4690
|
+
[max]="datePickerOptions.max"
|
|
4691
|
+
[min]="datePickerOptions.min"
|
|
4692
|
+
[navigation]="datePickerOptions.navigation"
|
|
4693
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4694
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4695
|
+
[readonly]="datePickerOptions.readonly"
|
|
4696
|
+
[title]="datePickerOptions.title"
|
|
4697
|
+
[topView]="datePickerOptions.topView"
|
|
4698
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4699
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4700
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4701
|
+
[(value)]='untilValue'
|
|
4702
|
+
(blur)="onUntilBlur()"
|
|
4703
|
+
(valueChange)='onUntilChange($event)'>
|
|
4704
|
+
</kendo-datepicker>
|
|
4705
|
+
</li>
|
|
4706
|
+
</ul>
|
|
4707
|
+
</div>
|
|
4631
4708
|
</div>
|
|
4632
|
-
`, isInline: true, components: [{ type:
|
|
4709
|
+
`, 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"] }] });
|
|
4633
4710
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
|
|
4634
4711
|
type: Component,
|
|
4635
4712
|
args: [{
|
|
4636
4713
|
selector: 'kendo-recurrence-end-rule-editor',
|
|
4637
4714
|
template: `
|
|
4638
|
-
<div class=
|
|
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
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
[
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4715
|
+
<div class="k-form-field">
|
|
4716
|
+
<kendo-label
|
|
4717
|
+
[text]="textFor('endLabel')"
|
|
4718
|
+
(click)="onEndLabelClick()"
|
|
4719
|
+
labelCssClass="k-form-label"
|
|
4720
|
+
></kendo-label>
|
|
4721
|
+
<div class="k-form-field-wrap">
|
|
4722
|
+
<ul class='k-radio-list'>
|
|
4723
|
+
<li class='k-radio-list-item'>
|
|
4724
|
+
<span class="k-radio-wrap">
|
|
4725
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4726
|
+
</span>
|
|
4727
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4728
|
+
</li>
|
|
4729
|
+
<li class='k-radio-list-item'>
|
|
4730
|
+
<span class="k-radio-wrap">
|
|
4731
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4732
|
+
</span>
|
|
4733
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4734
|
+
<kendo-numerictextbox
|
|
4735
|
+
#afterOccurances
|
|
4736
|
+
class="k-recur-count"
|
|
4737
|
+
[style.width.px]='70'
|
|
4738
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4739
|
+
[decimals]='0'
|
|
4740
|
+
[disabled]='isCountDisabled'
|
|
4741
|
+
[format]="numericOptions.format"
|
|
4742
|
+
[min]='numericOptions.min'
|
|
4743
|
+
[max]="numericOptions.max"
|
|
4744
|
+
[readonly]="numericOptions.readonly"
|
|
4745
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4746
|
+
[spinners]="numericOptions.spinners"
|
|
4747
|
+
[step]="numericOptions.step"
|
|
4748
|
+
[title]="numericOptions.title"
|
|
4749
|
+
[(value)]='countValue'
|
|
4750
|
+
(blur)="onCountBlur()"
|
|
4751
|
+
(valueChange)='onCountChange($event)'>
|
|
4752
|
+
</kendo-numerictextbox>
|
|
4753
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4754
|
+
</li>
|
|
4755
|
+
<li class='k-radio-list-item'>
|
|
4756
|
+
<span class="k-radio-wrap">
|
|
4757
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4758
|
+
</span>
|
|
4759
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4760
|
+
<kendo-datepicker
|
|
4761
|
+
class="k-recur-until"
|
|
4762
|
+
[style.width.px]='150'
|
|
4763
|
+
[disabled]='isUntilDisabled'
|
|
4764
|
+
[activeView]="datePickerOptions.activeView"
|
|
4765
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4766
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4767
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4768
|
+
[format]="datePickerOptions.format"
|
|
4769
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4770
|
+
[max]="datePickerOptions.max"
|
|
4771
|
+
[min]="datePickerOptions.min"
|
|
4772
|
+
[navigation]="datePickerOptions.navigation"
|
|
4773
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4774
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4775
|
+
[readonly]="datePickerOptions.readonly"
|
|
4776
|
+
[title]="datePickerOptions.title"
|
|
4777
|
+
[topView]="datePickerOptions.topView"
|
|
4778
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4779
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4780
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4781
|
+
[(value)]='untilValue'
|
|
4782
|
+
(blur)="onUntilBlur()"
|
|
4783
|
+
(valueChange)='onUntilChange($event)'>
|
|
4784
|
+
</kendo-datepicker>
|
|
4785
|
+
</li>
|
|
4786
|
+
</ul>
|
|
4787
|
+
</div>
|
|
4700
4788
|
</div>
|
|
4701
4789
|
`
|
|
4702
4790
|
}]
|
|
4703
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
4791
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4792
|
+
type: HostBinding,
|
|
4793
|
+
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4794
|
+
}], userNumericOptions: [{
|
|
4704
4795
|
type: Input
|
|
4705
4796
|
}], userDatePickerOptions: [{
|
|
4706
4797
|
type: Input
|
|
@@ -5017,24 +5108,26 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5017
5108
|
<kendo-recurrence-frequency-editor>
|
|
5018
5109
|
</kendo-recurrence-frequency-editor>
|
|
5019
5110
|
|
|
5020
|
-
<
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5111
|
+
<div class="k-recur-view">
|
|
5112
|
+
<kendo-recurrence-interval-editor
|
|
5113
|
+
*ngIf="currentFreq !== 'never'"
|
|
5114
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5115
|
+
</kendo-recurrence-interval-editor>
|
|
5116
|
+
|
|
5117
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5118
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5119
|
+
|
|
5120
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5121
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5122
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5123
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5124
|
+
|
|
5125
|
+
<kendo-recurrence-end-rule-editor
|
|
5126
|
+
*ngIf="currentFreq !== 'never'"
|
|
5127
|
+
[userNumericOptions]="endAfterOptions"
|
|
5128
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5129
|
+
</kendo-recurrence-end-rule-editor>
|
|
5130
|
+
</div>
|
|
5038
5131
|
`, 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"] }] });
|
|
5039
5132
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEditorComponent, decorators: [{
|
|
5040
5133
|
type: Component,
|
|
@@ -5157,24 +5250,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5157
5250
|
<kendo-recurrence-frequency-editor>
|
|
5158
5251
|
</kendo-recurrence-frequency-editor>
|
|
5159
5252
|
|
|
5160
|
-
<
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5253
|
+
<div class="k-recur-view">
|
|
5254
|
+
<kendo-recurrence-interval-editor
|
|
5255
|
+
*ngIf="currentFreq !== 'never'"
|
|
5256
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5257
|
+
</kendo-recurrence-interval-editor>
|
|
5258
|
+
|
|
5259
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5260
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5261
|
+
|
|
5262
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5263
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5264
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5265
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5266
|
+
|
|
5267
|
+
<kendo-recurrence-end-rule-editor
|
|
5268
|
+
*ngIf="currentFreq !== 'never'"
|
|
5269
|
+
[userNumericOptions]="endAfterOptions"
|
|
5270
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5271
|
+
</kendo-recurrence-end-rule-editor>
|
|
5272
|
+
</div>
|
|
5178
5273
|
`
|
|
5179
5274
|
}]
|
|
5180
5275
|
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$4.IntlService }]; }, propDecorators: { cssClass: [{
|
|
@@ -5213,6 +5308,8 @@ class EditDialogComponent {
|
|
|
5213
5308
|
this.timezone = 'Etc/UTC';
|
|
5214
5309
|
this.setTimeZone = false;
|
|
5215
5310
|
this.setSeparateStartEndTimeZones = false;
|
|
5311
|
+
this.saveIcon = saveIcon;
|
|
5312
|
+
this.cancelIcon = cancelOutlineIcon;
|
|
5216
5313
|
this.subs = this.editService.changed.subscribe(() => {
|
|
5217
5314
|
this.ngZone.run(() => { this.onChange(); });
|
|
5218
5315
|
});
|
|
@@ -5232,7 +5329,7 @@ class EditDialogComponent {
|
|
|
5232
5329
|
if (this.editTemplate) {
|
|
5233
5330
|
return this.editTemplate.autoFocusedElement;
|
|
5234
5331
|
}
|
|
5235
|
-
return '.k-form-field
|
|
5332
|
+
return '.k-form-field input';
|
|
5236
5333
|
}
|
|
5237
5334
|
get isEditingSeries() {
|
|
5238
5335
|
return this.editMode === EditMode.Series && Boolean(this.formGroup.get(this.fields.recurrenceRule));
|
|
@@ -5401,121 +5498,163 @@ class EditDialogComponent {
|
|
|
5401
5498
|
}
|
|
5402
5499
|
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 });
|
|
5403
5500
|
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: `
|
|
5404
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5501
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5405
5502
|
<ng-container *ngIf='!editTemplate'>
|
|
5406
|
-
<
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
5424
|
-
|
|
5425
|
-
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
|
|
5432
|
-
|
|
5433
|
-
<
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5503
|
+
<form
|
|
5504
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5505
|
+
novalidate
|
|
5506
|
+
[formGroup]='formGroup'
|
|
5507
|
+
>
|
|
5508
|
+
<!-- Title -->
|
|
5509
|
+
<kendo-formfield>
|
|
5510
|
+
<kendo-label
|
|
5511
|
+
[for]="title"
|
|
5512
|
+
[text]="textFor('editorEventTitle')"
|
|
5513
|
+
labelCssClass="k-form-label"
|
|
5514
|
+
></kendo-label>
|
|
5515
|
+
<input
|
|
5516
|
+
#title
|
|
5517
|
+
kendoTextBox
|
|
5518
|
+
placeholder='Title'
|
|
5519
|
+
[formControl]='getControl(fields.title)'
|
|
5520
|
+
/>
|
|
5521
|
+
</kendo-formfield>
|
|
5522
|
+
|
|
5523
|
+
<!-- Start -->
|
|
5524
|
+
<kendo-formfield>
|
|
5525
|
+
<kendo-label
|
|
5526
|
+
[for]="startDateTimePicker"
|
|
5527
|
+
[text]="textFor('editorEventStart')"
|
|
5528
|
+
labelCssClass="k-form-label"
|
|
5529
|
+
></kendo-label>
|
|
5530
|
+
<kendo-scheduler-datetime-picker
|
|
5531
|
+
#startDateTimePicker
|
|
5532
|
+
[formControl]='getControl(fields.start)'
|
|
5533
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5534
|
+
></kendo-scheduler-datetime-picker>
|
|
5535
|
+
</kendo-formfield>
|
|
5536
|
+
|
|
5537
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5538
|
+
<ng-container>
|
|
5539
|
+
<span class="k-checkbox-wrap">
|
|
5540
|
+
<input
|
|
5541
|
+
id='k-set-timezone'
|
|
5542
|
+
type='checkbox'
|
|
5543
|
+
kendoCheckBox
|
|
5544
|
+
formControlName='startTimezoneCheckbox'
|
|
5545
|
+
/>
|
|
5546
|
+
</span>
|
|
5547
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5441
5548
|
</ng-container>
|
|
5442
|
-
|
|
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
|
-
|
|
5549
|
+
</kendo-formfield>
|
|
5550
|
+
|
|
5551
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5552
|
+
<kendo-label
|
|
5553
|
+
[for]="startTzPicker"
|
|
5554
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5555
|
+
labelCssClass="k-form-label"
|
|
5556
|
+
></kendo-label>
|
|
5557
|
+
<kendo-timezone-editor
|
|
5558
|
+
#startTzPicker
|
|
5559
|
+
[width]="undefined"
|
|
5560
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5561
|
+
></kendo-timezone-editor>
|
|
5562
|
+
</kendo-formfield>
|
|
5563
|
+
|
|
5564
|
+
<!-- End -->
|
|
5565
|
+
<kendo-formfield>
|
|
5566
|
+
<kendo-label
|
|
5567
|
+
[for]="endDateTimePicker"
|
|
5568
|
+
[text]="textFor('editorEventEnd')"
|
|
5569
|
+
labelCssClass="k-form-label"
|
|
5570
|
+
></kendo-label>
|
|
5571
|
+
<kendo-scheduler-datetime-picker
|
|
5572
|
+
#endDateTimePicker
|
|
5573
|
+
[formControl]='getControl(fields.end)'
|
|
5574
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5575
|
+
></kendo-scheduler-datetime-picker>
|
|
5576
|
+
</kendo-formfield>
|
|
5577
|
+
|
|
5578
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5579
|
+
<ng-container>
|
|
5580
|
+
<span class="k-checkbox-wrap">
|
|
5581
|
+
<input
|
|
5582
|
+
id='k-use-separate'
|
|
5583
|
+
type='checkbox'
|
|
5584
|
+
kendoCheckBox
|
|
5585
|
+
formControlName='endTimezoneCheckbox'
|
|
5586
|
+
/>
|
|
5587
|
+
</span>
|
|
5588
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5468
5589
|
</ng-container>
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
</
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
<!-- Resources -->
|
|
5498
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5499
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5500
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5501
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5502
|
-
</label>
|
|
5503
|
-
<div class='k-form-field-wrap'>
|
|
5504
|
-
<kendo-multiple-resource-editor
|
|
5505
|
-
*ngIf='resource.multiple'
|
|
5506
|
-
[formControl]='getControl(resource.field)'
|
|
5507
|
-
[resource]='resource'>
|
|
5508
|
-
</kendo-multiple-resource-editor>
|
|
5509
|
-
<kendo-single-resource-editor
|
|
5510
|
-
*ngIf='!resource.multiple'
|
|
5511
|
-
[formControl]='getControl(resource.field)'
|
|
5512
|
-
[resource]='resource'>
|
|
5513
|
-
</kendo-single-resource-editor>
|
|
5514
|
-
</div>
|
|
5515
|
-
</div>
|
|
5590
|
+
</kendo-formfield>
|
|
5591
|
+
|
|
5592
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5593
|
+
<kendo-label
|
|
5594
|
+
[for]="endTzPicker"
|
|
5595
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5596
|
+
labelCssClass="k-form-label"
|
|
5597
|
+
></kendo-label>
|
|
5598
|
+
<kendo-timezone-editor
|
|
5599
|
+
#endTzPicker
|
|
5600
|
+
[width]="undefined"
|
|
5601
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5602
|
+
></kendo-timezone-editor>
|
|
5603
|
+
</kendo-formfield>
|
|
5604
|
+
|
|
5605
|
+
<!-- All day -->
|
|
5606
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5607
|
+
<ng-container>
|
|
5608
|
+
<span class="k-checkbox-wrap">
|
|
5609
|
+
<input
|
|
5610
|
+
id='k-is-allday-chkbox'
|
|
5611
|
+
type='checkbox'
|
|
5612
|
+
kendoCheckBox
|
|
5613
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5614
|
+
/>
|
|
5615
|
+
</span>
|
|
5616
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5516
5617
|
</ng-container>
|
|
5517
|
-
</
|
|
5518
|
-
|
|
5618
|
+
</kendo-formfield>
|
|
5619
|
+
|
|
5620
|
+
<!-- Series -->
|
|
5621
|
+
<kendo-recurrence-editor
|
|
5622
|
+
*ngIf="isEditingSeries"
|
|
5623
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5624
|
+
[start]='recurrenceStart'
|
|
5625
|
+
[timezone]='eventTimezone'
|
|
5626
|
+
[weekStart]='weekStart'
|
|
5627
|
+
></kendo-recurrence-editor>
|
|
5628
|
+
|
|
5629
|
+
<!-- Description -->
|
|
5630
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5631
|
+
<kendo-label
|
|
5632
|
+
[for]="description"
|
|
5633
|
+
[text]="textFor('editorEventDescription')"
|
|
5634
|
+
labelCssClass="k-form-label"
|
|
5635
|
+
></kendo-label>
|
|
5636
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5637
|
+
</kendo-formfield>
|
|
5638
|
+
|
|
5639
|
+
<!-- Resources -->
|
|
5640
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5641
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5642
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5643
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5644
|
+
</label>
|
|
5645
|
+
<kendo-multiple-resource-editor
|
|
5646
|
+
*ngIf='resource.multiple'
|
|
5647
|
+
[formControl]='getControl(resource.field)'
|
|
5648
|
+
[resource]='resource'>
|
|
5649
|
+
</kendo-multiple-resource-editor>
|
|
5650
|
+
<kendo-single-resource-editor
|
|
5651
|
+
*ngIf='!resource.multiple'
|
|
5652
|
+
[formControl]='getControl(resource.field)'
|
|
5653
|
+
[resource]='resource'>
|
|
5654
|
+
</kendo-single-resource-editor>
|
|
5655
|
+
</kendo-formfield>
|
|
5656
|
+
</ng-container>
|
|
5657
|
+
</form>
|
|
5519
5658
|
</ng-container>
|
|
5520
5659
|
|
|
5521
5660
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5532,132 +5671,186 @@ EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
5532
5671
|
</form>
|
|
5533
5672
|
</ng-container>
|
|
5534
5673
|
|
|
5535
|
-
<kendo-dialog-actions>
|
|
5536
|
-
<button
|
|
5537
|
-
|
|
5674
|
+
<kendo-dialog-actions layout="start">
|
|
5675
|
+
<button
|
|
5676
|
+
kendoButton
|
|
5677
|
+
themeColor="primary"
|
|
5678
|
+
icon="save"
|
|
5679
|
+
[svgIcon]="saveIcon"
|
|
5680
|
+
[disabled]="!formGroup.valid"
|
|
5681
|
+
(click)="onSave($event)"
|
|
5682
|
+
>{{ textFor('save') }}</button>
|
|
5683
|
+
<button
|
|
5684
|
+
kendoButton
|
|
5685
|
+
icon="cancel-outline"
|
|
5686
|
+
[svgIcon]="cancelIcon"
|
|
5687
|
+
(click)="onCancel($event)"
|
|
5688
|
+
>{{ textFor('cancel') }}</button>
|
|
5538
5689
|
</kendo-dialog-actions>
|
|
5539
5690
|
</kendo-dialog>
|
|
5540
|
-
`, 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:
|
|
5691
|
+
`, 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"] }] });
|
|
5541
5692
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, decorators: [{
|
|
5542
5693
|
type: Component,
|
|
5543
5694
|
args: [{
|
|
5544
5695
|
selector: 'kendo-scheduler-edit-dialog',
|
|
5545
5696
|
template: `
|
|
5546
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5697
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5547
5698
|
<ng-container *ngIf='!editTemplate'>
|
|
5548
|
-
<
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
<
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5699
|
+
<form
|
|
5700
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5701
|
+
novalidate
|
|
5702
|
+
[formGroup]='formGroup'
|
|
5703
|
+
>
|
|
5704
|
+
<!-- Title -->
|
|
5705
|
+
<kendo-formfield>
|
|
5706
|
+
<kendo-label
|
|
5707
|
+
[for]="title"
|
|
5708
|
+
[text]="textFor('editorEventTitle')"
|
|
5709
|
+
labelCssClass="k-form-label"
|
|
5710
|
+
></kendo-label>
|
|
5711
|
+
<input
|
|
5712
|
+
#title
|
|
5713
|
+
kendoTextBox
|
|
5714
|
+
placeholder='Title'
|
|
5715
|
+
[formControl]='getControl(fields.title)'
|
|
5716
|
+
/>
|
|
5717
|
+
</kendo-formfield>
|
|
5718
|
+
|
|
5719
|
+
<!-- Start -->
|
|
5720
|
+
<kendo-formfield>
|
|
5721
|
+
<kendo-label
|
|
5722
|
+
[for]="startDateTimePicker"
|
|
5723
|
+
[text]="textFor('editorEventStart')"
|
|
5724
|
+
labelCssClass="k-form-label"
|
|
5725
|
+
></kendo-label>
|
|
5726
|
+
<kendo-scheduler-datetime-picker
|
|
5727
|
+
#startDateTimePicker
|
|
5728
|
+
[formControl]='getControl(fields.start)'
|
|
5729
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5730
|
+
></kendo-scheduler-datetime-picker>
|
|
5731
|
+
</kendo-formfield>
|
|
5732
|
+
|
|
5733
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5734
|
+
<ng-container>
|
|
5735
|
+
<span class="k-checkbox-wrap">
|
|
5736
|
+
<input
|
|
5737
|
+
id='k-set-timezone'
|
|
5738
|
+
type='checkbox'
|
|
5739
|
+
kendoCheckBox
|
|
5740
|
+
formControlName='startTimezoneCheckbox'
|
|
5741
|
+
/>
|
|
5742
|
+
</span>
|
|
5743
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5583
5744
|
</ng-container>
|
|
5584
|
-
|
|
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
|
-
|
|
5745
|
+
</kendo-formfield>
|
|
5746
|
+
|
|
5747
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5748
|
+
<kendo-label
|
|
5749
|
+
[for]="startTzPicker"
|
|
5750
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5751
|
+
labelCssClass="k-form-label"
|
|
5752
|
+
></kendo-label>
|
|
5753
|
+
<kendo-timezone-editor
|
|
5754
|
+
#startTzPicker
|
|
5755
|
+
[width]="undefined"
|
|
5756
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5757
|
+
></kendo-timezone-editor>
|
|
5758
|
+
</kendo-formfield>
|
|
5759
|
+
|
|
5760
|
+
<!-- End -->
|
|
5761
|
+
<kendo-formfield>
|
|
5762
|
+
<kendo-label
|
|
5763
|
+
[for]="endDateTimePicker"
|
|
5764
|
+
[text]="textFor('editorEventEnd')"
|
|
5765
|
+
labelCssClass="k-form-label"
|
|
5766
|
+
></kendo-label>
|
|
5767
|
+
<kendo-scheduler-datetime-picker
|
|
5768
|
+
#endDateTimePicker
|
|
5769
|
+
[formControl]='getControl(fields.end)'
|
|
5770
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5771
|
+
></kendo-scheduler-datetime-picker>
|
|
5772
|
+
</kendo-formfield>
|
|
5773
|
+
|
|
5774
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5775
|
+
<ng-container>
|
|
5776
|
+
<span class="k-checkbox-wrap">
|
|
5777
|
+
<input
|
|
5778
|
+
id='k-use-separate'
|
|
5779
|
+
type='checkbox'
|
|
5780
|
+
kendoCheckBox
|
|
5781
|
+
formControlName='endTimezoneCheckbox'
|
|
5782
|
+
/>
|
|
5783
|
+
</span>
|
|
5784
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5610
5785
|
</ng-container>
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
</
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
<!-- Resources -->
|
|
5640
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5641
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5642
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5643
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5644
|
-
</label>
|
|
5645
|
-
<div class='k-form-field-wrap'>
|
|
5646
|
-
<kendo-multiple-resource-editor
|
|
5647
|
-
*ngIf='resource.multiple'
|
|
5648
|
-
[formControl]='getControl(resource.field)'
|
|
5649
|
-
[resource]='resource'>
|
|
5650
|
-
</kendo-multiple-resource-editor>
|
|
5651
|
-
<kendo-single-resource-editor
|
|
5652
|
-
*ngIf='!resource.multiple'
|
|
5653
|
-
[formControl]='getControl(resource.field)'
|
|
5654
|
-
[resource]='resource'>
|
|
5655
|
-
</kendo-single-resource-editor>
|
|
5656
|
-
</div>
|
|
5657
|
-
</div>
|
|
5786
|
+
</kendo-formfield>
|
|
5787
|
+
|
|
5788
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5789
|
+
<kendo-label
|
|
5790
|
+
[for]="endTzPicker"
|
|
5791
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5792
|
+
labelCssClass="k-form-label"
|
|
5793
|
+
></kendo-label>
|
|
5794
|
+
<kendo-timezone-editor
|
|
5795
|
+
#endTzPicker
|
|
5796
|
+
[width]="undefined"
|
|
5797
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5798
|
+
></kendo-timezone-editor>
|
|
5799
|
+
</kendo-formfield>
|
|
5800
|
+
|
|
5801
|
+
<!-- All day -->
|
|
5802
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5803
|
+
<ng-container>
|
|
5804
|
+
<span class="k-checkbox-wrap">
|
|
5805
|
+
<input
|
|
5806
|
+
id='k-is-allday-chkbox'
|
|
5807
|
+
type='checkbox'
|
|
5808
|
+
kendoCheckBox
|
|
5809
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5810
|
+
/>
|
|
5811
|
+
</span>
|
|
5812
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5658
5813
|
</ng-container>
|
|
5659
|
-
</
|
|
5660
|
-
|
|
5814
|
+
</kendo-formfield>
|
|
5815
|
+
|
|
5816
|
+
<!-- Series -->
|
|
5817
|
+
<kendo-recurrence-editor
|
|
5818
|
+
*ngIf="isEditingSeries"
|
|
5819
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5820
|
+
[start]='recurrenceStart'
|
|
5821
|
+
[timezone]='eventTimezone'
|
|
5822
|
+
[weekStart]='weekStart'
|
|
5823
|
+
></kendo-recurrence-editor>
|
|
5824
|
+
|
|
5825
|
+
<!-- Description -->
|
|
5826
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5827
|
+
<kendo-label
|
|
5828
|
+
[for]="description"
|
|
5829
|
+
[text]="textFor('editorEventDescription')"
|
|
5830
|
+
labelCssClass="k-form-label"
|
|
5831
|
+
></kendo-label>
|
|
5832
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5833
|
+
</kendo-formfield>
|
|
5834
|
+
|
|
5835
|
+
<!-- Resources -->
|
|
5836
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5837
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5838
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5839
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5840
|
+
</label>
|
|
5841
|
+
<kendo-multiple-resource-editor
|
|
5842
|
+
*ngIf='resource.multiple'
|
|
5843
|
+
[formControl]='getControl(resource.field)'
|
|
5844
|
+
[resource]='resource'>
|
|
5845
|
+
</kendo-multiple-resource-editor>
|
|
5846
|
+
<kendo-single-resource-editor
|
|
5847
|
+
*ngIf='!resource.multiple'
|
|
5848
|
+
[formControl]='getControl(resource.field)'
|
|
5849
|
+
[resource]='resource'>
|
|
5850
|
+
</kendo-single-resource-editor>
|
|
5851
|
+
</kendo-formfield>
|
|
5852
|
+
</ng-container>
|
|
5853
|
+
</form>
|
|
5661
5854
|
</ng-container>
|
|
5662
5855
|
|
|
5663
5856
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5674,9 +5867,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5674
5867
|
</form>
|
|
5675
5868
|
</ng-container>
|
|
5676
5869
|
|
|
5677
|
-
<kendo-dialog-actions>
|
|
5678
|
-
<button
|
|
5679
|
-
|
|
5870
|
+
<kendo-dialog-actions layout="start">
|
|
5871
|
+
<button
|
|
5872
|
+
kendoButton
|
|
5873
|
+
themeColor="primary"
|
|
5874
|
+
icon="save"
|
|
5875
|
+
[svgIcon]="saveIcon"
|
|
5876
|
+
[disabled]="!formGroup.valid"
|
|
5877
|
+
(click)="onSave($event)"
|
|
5878
|
+
>{{ textFor('save') }}</button>
|
|
5879
|
+
<button
|
|
5880
|
+
kendoButton
|
|
5881
|
+
icon="cancel-outline"
|
|
5882
|
+
[svgIcon]="cancelIcon"
|
|
5883
|
+
(click)="onCancel($event)"
|
|
5884
|
+
>{{ textFor('cancel') }}</button>
|
|
5680
5885
|
</kendo-dialog-actions>
|
|
5681
5886
|
</kendo-dialog>
|
|
5682
5887
|
`
|
|
@@ -11900,7 +12105,7 @@ ViewFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
11900
12105
|
<span class="k-button-text">{{ item.text }}</span>
|
|
11901
12106
|
</button>
|
|
11902
12107
|
</span>
|
|
11903
|
-
`, isInline: true, components: [{ type:
|
|
12108
|
+
`, 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"] }] });
|
|
11904
12109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ViewFooterComponent, decorators: [{
|
|
11905
12110
|
type: Component,
|
|
11906
12111
|
args: [{
|
|
@@ -16711,7 +16916,8 @@ const importedKendoModules = [
|
|
|
16711
16916
|
DropDownsModule,
|
|
16712
16917
|
ReactiveFormsModule,
|
|
16713
16918
|
SharedModule,
|
|
16714
|
-
LabelModule
|
|
16919
|
+
LabelModule,
|
|
16920
|
+
FormFieldModule
|
|
16715
16921
|
];
|
|
16716
16922
|
/**
|
|
16717
16923
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -16798,7 +17004,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
16798
17004
|
DropDownsModule,
|
|
16799
17005
|
ReactiveFormsModule,
|
|
16800
17006
|
SharedModule,
|
|
16801
|
-
LabelModule
|
|
17007
|
+
LabelModule,
|
|
17008
|
+
FormFieldModule], exports: [AgendaViewComponent,
|
|
16802
17009
|
MonthViewModule,
|
|
16803
17010
|
MultiDayViewModule,
|
|
16804
17011
|
ReactiveEditingDirective,
|