@progress/kendo-angular-scheduler 13.0.0-develop.2 → 13.0.0-develop.21
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/pdf/pdf-command.directive.mjs +1 -1
- package/esm2020/scheduler.module.mjs +5 -3
- package/esm2020/toolbar/navigation.component.mjs +14 -8
- package/esm2020/views/agenda/agenda-task-item.component.mjs +1 -1
- package/esm2020/views/agenda/agenda-view-list.component.mjs +16 -10
- package/esm2020/views/day-time/day-time-view-item.component.mjs +9 -9
- package/esm2020/views/month/month-slot.component.mjs +1 -1
- package/esm2020/views/month/month-view-item.component.mjs +9 -9
- package/esm2020/views/view-items/base-view-item.mjs +9 -0
- package/fesm2015/progress-kendo-angular-scheduler.mjs +878 -650
- package/fesm2020/progress-kendo-angular-scheduler.mjs +877 -650
- package/package.json +12 -12
- package/scheduler.module.d.ts +1 -1
- package/schematics/ngAdd/index.js +2 -2
- package/toolbar/navigation.component.d.ts +2 -0
- package/views/agenda/agenda-view-list.component.d.ts +4 -2
- package/views/view-items/base-view-item.d.ts +5 -0
|
@@ -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: 1685972982,
|
|
52
|
+
version: '13.0.0-develop.21',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2485,6 +2485,12 @@ class ToolbarNavigationComponent {
|
|
|
2485
2485
|
this.dateRangeText.current = isDesktop ? this.dateRangeText.long : this.dateRangeText.short;
|
|
2486
2486
|
this.cd.detectChanges();
|
|
2487
2487
|
}
|
|
2488
|
+
get arrowIcons() {
|
|
2489
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
2490
|
+
}
|
|
2491
|
+
get arrowSVGIcons() {
|
|
2492
|
+
return !this.localization.rtl ? ['caretAltLeftIcon', 'caretAltRightIcon'] : ['caretAltRightIcon', 'caretAltLeftIcon'];
|
|
2493
|
+
}
|
|
2488
2494
|
}
|
|
2489
2495
|
ToolbarNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, deps: [{ token: i1$2.PopupService }, { token: ToolbarService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: ViewContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2490
2496
|
ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ToolbarNavigationComponent, selector: "[kendoSchedulerToolbarNavigation]", inputs: { min: "min", max: "max" }, host: { properties: { "class.k-toolbar-group": "this.hostClass" } }, providers: [
|
|
@@ -2502,8 +2508,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2502
2508
|
<button kendoButton
|
|
2503
2509
|
(click)="prevClick()"
|
|
2504
2510
|
class="k-nav-prev"
|
|
2505
|
-
icon="
|
|
2506
|
-
[svgIcon]="svgIcon(
|
|
2511
|
+
[icon]="arrowIcons[0]"
|
|
2512
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2507
2513
|
[attr.title]="previousText"
|
|
2508
2514
|
[attr.aria-label]="previousText"
|
|
2509
2515
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2513,8 +2519,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2513
2519
|
(click)="nextClick()"
|
|
2514
2520
|
type="button"
|
|
2515
2521
|
class="k-nav-next"
|
|
2516
|
-
icon="
|
|
2517
|
-
[svgIcon]="svgIcon(
|
|
2522
|
+
[icon]="arrowIcons[1]"
|
|
2523
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2518
2524
|
[attr.title]="nextText"
|
|
2519
2525
|
[attr.aria-label]="nextText"
|
|
2520
2526
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2551,7 +2557,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2551
2557
|
</kendo-calendar-messages>
|
|
2552
2558
|
</kendo-calendar>
|
|
2553
2559
|
</ng-template>
|
|
2554
|
-
`, 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 });
|
|
2555
2561
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
|
|
2556
2562
|
type: Component,
|
|
2557
2563
|
args: [{
|
|
@@ -2574,8 +2580,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2574
2580
|
<button kendoButton
|
|
2575
2581
|
(click)="prevClick()"
|
|
2576
2582
|
class="k-nav-prev"
|
|
2577
|
-
icon="
|
|
2578
|
-
[svgIcon]="svgIcon(
|
|
2583
|
+
[icon]="arrowIcons[0]"
|
|
2584
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2579
2585
|
[attr.title]="previousText"
|
|
2580
2586
|
[attr.aria-label]="previousText"
|
|
2581
2587
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2585,8 +2591,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2585
2591
|
(click)="nextClick()"
|
|
2586
2592
|
type="button"
|
|
2587
2593
|
class="k-nav-next"
|
|
2588
|
-
icon="
|
|
2589
|
-
[svgIcon]="svgIcon(
|
|
2594
|
+
[icon]="arrowIcons[1]"
|
|
2595
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2590
2596
|
[attr.title]="nextText"
|
|
2591
2597
|
[attr.aria-label]="nextText"
|
|
2592
2598
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2742,7 +2748,7 @@ ToolbarViewSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
2742
2748
|
</span>
|
|
2743
2749
|
</button>
|
|
2744
2750
|
</span>
|
|
2745
|
-
`, 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"] }] });
|
|
2746
2752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
|
|
2747
2753
|
type: Component,
|
|
2748
2754
|
args: [{
|
|
@@ -3151,6 +3157,12 @@ class SchedulerDateTimePickerComponent {
|
|
|
3151
3157
|
this.onTouchedCallback = (_) => { };
|
|
3152
3158
|
this.onChangeCallback = (_) => { };
|
|
3153
3159
|
}
|
|
3160
|
+
/**
|
|
3161
|
+
* @hidden
|
|
3162
|
+
*/
|
|
3163
|
+
get focusableId() {
|
|
3164
|
+
return this.isAllDay ? this.datePicker?.focusableId : this.dateTimePicker?.focusableId;
|
|
3165
|
+
}
|
|
3154
3166
|
writeValue(newDate) {
|
|
3155
3167
|
if (newDate instanceof Date) {
|
|
3156
3168
|
this.date = newDate;
|
|
@@ -3164,7 +3176,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3164
3176
|
* @hidden
|
|
3165
3177
|
*/
|
|
3166
3178
|
focus() {
|
|
3167
|
-
this.datePicker.focus();
|
|
3179
|
+
this.datePicker ? this.datePicker.focus() : this.dateTimePicker.focus();
|
|
3168
3180
|
}
|
|
3169
3181
|
/**
|
|
3170
3182
|
* @hidden
|
|
@@ -3182,19 +3194,20 @@ class SchedulerDateTimePickerComponent {
|
|
|
3182
3194
|
SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3183
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: [
|
|
3184
3196
|
SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
|
|
3185
|
-
], 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: `
|
|
3186
3198
|
<kendo-datepicker
|
|
3199
|
+
*ngIf='isAllDay'
|
|
3187
3200
|
#datepicker
|
|
3188
3201
|
[(value)]='date'
|
|
3189
3202
|
(valueChange)='onValueChange($event)'
|
|
3190
|
-
[style.width.px]="170"
|
|
3191
3203
|
></kendo-datepicker>
|
|
3192
|
-
<kendo-
|
|
3204
|
+
<kendo-datetimepicker
|
|
3205
|
+
*ngIf='!isAllDay'
|
|
3206
|
+
#datetimepicker
|
|
3193
3207
|
[(value)]='date'
|
|
3194
3208
|
(valueChange)='onValueChange($event)'
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
`, 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"] }] });
|
|
3198
3211
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
|
|
3199
3212
|
type: Component,
|
|
3200
3213
|
args: [{
|
|
@@ -3204,21 +3217,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3204
3217
|
selector: 'kendo-scheduler-datetime-picker',
|
|
3205
3218
|
template: `
|
|
3206
3219
|
<kendo-datepicker
|
|
3220
|
+
*ngIf='isAllDay'
|
|
3207
3221
|
#datepicker
|
|
3208
3222
|
[(value)]='date'
|
|
3209
3223
|
(valueChange)='onValueChange($event)'
|
|
3210
|
-
[style.width.px]="170"
|
|
3211
3224
|
></kendo-datepicker>
|
|
3212
|
-
<kendo-
|
|
3225
|
+
<kendo-datetimepicker
|
|
3226
|
+
*ngIf='!isAllDay'
|
|
3227
|
+
#datetimepicker
|
|
3213
3228
|
[(value)]='date'
|
|
3214
3229
|
(valueChange)='onValueChange($event)'
|
|
3215
|
-
|
|
3216
|
-
></kendo-timepicker>
|
|
3230
|
+
>
|
|
3217
3231
|
`
|
|
3218
3232
|
}]
|
|
3219
3233
|
}], propDecorators: { datePicker: [{
|
|
3220
3234
|
type: ViewChild,
|
|
3221
|
-
args: ['datepicker'
|
|
3235
|
+
args: ['datepicker']
|
|
3236
|
+
}], dateTimePicker: [{
|
|
3237
|
+
type: ViewChild,
|
|
3238
|
+
args: ['datetimepicker']
|
|
3222
3239
|
}], isAllDay: [{
|
|
3223
3240
|
type: Input
|
|
3224
3241
|
}], valueChange: [{
|
|
@@ -3253,6 +3270,12 @@ class TimeZoneEditorComponent {
|
|
|
3253
3270
|
this.tzNames = timezoneNames();
|
|
3254
3271
|
this.tzSource = this.tzNames.slice();
|
|
3255
3272
|
}
|
|
3273
|
+
/**
|
|
3274
|
+
* @hidden
|
|
3275
|
+
*/
|
|
3276
|
+
get focusableId() {
|
|
3277
|
+
return this.tzComboBox.focusableId;
|
|
3278
|
+
}
|
|
3256
3279
|
/**
|
|
3257
3280
|
* @hidden
|
|
3258
3281
|
*/
|
|
@@ -3643,12 +3666,18 @@ class RecurrenceFrequencyEditorComponent {
|
|
|
3643
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 });
|
|
3644
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: `
|
|
3645
3668
|
<div class='k-form-field'>
|
|
3646
|
-
<
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
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
|
+
>
|
|
3650
3680
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3651
|
-
[style.width.px]="100"
|
|
3652
3681
|
[togglable]="true"
|
|
3653
3682
|
[selected]="freq.value === selected"
|
|
3654
3683
|
(click)="onClick(freq)"
|
|
@@ -3656,19 +3685,25 @@ RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersio
|
|
|
3656
3685
|
</kendo-buttongroup>
|
|
3657
3686
|
</div>
|
|
3658
3687
|
</div>
|
|
3659
|
-
`, 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"] }] });
|
|
3660
3689
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, decorators: [{
|
|
3661
3690
|
type: Component,
|
|
3662
3691
|
args: [{
|
|
3663
3692
|
selector: 'kendo-recurrence-frequency-editor',
|
|
3664
3693
|
template: `
|
|
3665
3694
|
<div class='k-form-field'>
|
|
3666
|
-
<
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
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
|
+
>
|
|
3670
3706
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3671
|
-
[style.width.px]="100"
|
|
3672
3707
|
[togglable]="true"
|
|
3673
3708
|
[selected]="freq.value === selected"
|
|
3674
3709
|
(click)="onClick(freq)"
|
|
@@ -3690,6 +3725,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3690
3725
|
constructor(recurrence, localization) {
|
|
3691
3726
|
this.recurrence = recurrence;
|
|
3692
3727
|
this.localization = localization;
|
|
3728
|
+
this.cssClass = true;
|
|
3693
3729
|
this.numericOptions = {
|
|
3694
3730
|
min: 1,
|
|
3695
3731
|
format: '#',
|
|
@@ -3750,13 +3786,18 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3750
3786
|
}
|
|
3751
3787
|
}
|
|
3752
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 });
|
|
3753
|
-
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: `
|
|
3754
|
-
<div class=
|
|
3755
|
-
<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>
|
|
3756
3797
|
<div class="k-form-field-wrap">
|
|
3757
3798
|
<kendo-numerictextbox
|
|
3758
3799
|
#intervalNumeric
|
|
3759
|
-
|
|
3800
|
+
class="k-recur-interval"
|
|
3760
3801
|
[min]="numericOptions.min"
|
|
3761
3802
|
[max]="numericOptions.max"
|
|
3762
3803
|
[decimals]="0"
|
|
@@ -3771,22 +3812,26 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3771
3812
|
(blur)="onIntervalBlur()"
|
|
3772
3813
|
(valueChange)="onIntervalChange($event)">
|
|
3773
3814
|
</kendo-numerictextbox>
|
|
3774
|
-
|
|
3775
|
-
<span>{{ textForFrequency() }}</span>
|
|
3815
|
+
<span> {{ textForFrequency() }}</span>
|
|
3776
3816
|
</div>
|
|
3777
3817
|
</div>
|
|
3778
|
-
`, 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"] }] });
|
|
3779
3819
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
|
|
3780
3820
|
type: Component,
|
|
3781
3821
|
args: [{
|
|
3782
3822
|
selector: 'kendo-recurrence-interval-editor',
|
|
3783
3823
|
template: `
|
|
3784
|
-
<div class=
|
|
3785
|
-
<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>
|
|
3786
3831
|
<div class="k-form-field-wrap">
|
|
3787
3832
|
<kendo-numerictextbox
|
|
3788
3833
|
#intervalNumeric
|
|
3789
|
-
|
|
3834
|
+
class="k-recur-interval"
|
|
3790
3835
|
[min]="numericOptions.min"
|
|
3791
3836
|
[max]="numericOptions.max"
|
|
3792
3837
|
[decimals]="0"
|
|
@@ -3801,13 +3846,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3801
3846
|
(blur)="onIntervalBlur()"
|
|
3802
3847
|
(valueChange)="onIntervalChange($event)">
|
|
3803
3848
|
</kendo-numerictextbox>
|
|
3804
|
-
|
|
3805
|
-
<span>{{ textForFrequency() }}</span>
|
|
3849
|
+
<span> {{ textForFrequency() }}</span>
|
|
3806
3850
|
</div>
|
|
3807
3851
|
</div>
|
|
3808
3852
|
`
|
|
3809
3853
|
}]
|
|
3810
|
-
}], 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: [{
|
|
3811
3858
|
type: Input
|
|
3812
3859
|
}] } });
|
|
3813
3860
|
|
|
@@ -3866,36 +3913,52 @@ class RecurrenceWeekdayRuleEditorComponent {
|
|
|
3866
3913
|
}
|
|
3867
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 });
|
|
3868
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: `
|
|
3869
|
-
<div class=
|
|
3870
|
-
<
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
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)"
|
|
3879
3934
|
>{{ capitalize(day.text) }}</button>
|
|
3880
3935
|
</kendo-buttongroup>
|
|
3881
3936
|
</div>
|
|
3882
3937
|
</div>
|
|
3883
|
-
`, 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"] }] });
|
|
3884
3939
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, decorators: [{
|
|
3885
3940
|
type: Component,
|
|
3886
3941
|
args: [{
|
|
3887
3942
|
selector: 'kendo-recurrence-weekday-rule-editor',
|
|
3888
3943
|
template: `
|
|
3889
|
-
<div class=
|
|
3890
|
-
<
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
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)"
|
|
3899
3962
|
>{{ capitalize(day.text) }}</button>
|
|
3900
3963
|
</kendo-buttongroup>
|
|
3901
3964
|
</div>
|
|
@@ -4195,192 +4258,200 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4195
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 });
|
|
4196
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: `
|
|
4197
4260
|
<div class='k-form-field'>
|
|
4198
|
-
<
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
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>
|
|
4207
4290
|
</ng-template>
|
|
4208
|
-
</label>
|
|
4209
4291
|
|
|
4210
|
-
|
|
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
|
+
|
|
4211
4315
|
<kendo-dropdownlist
|
|
4212
|
-
[data]='
|
|
4316
|
+
[data]='offsetPositions'
|
|
4213
4317
|
textField='text'
|
|
4214
4318
|
valueField='value'
|
|
4215
|
-
[value]='
|
|
4319
|
+
[value]='offset'
|
|
4216
4320
|
[valuePrimitive]='true'
|
|
4217
|
-
(valueChange)=
|
|
4218
|
-
[disabled]="isDisabled('
|
|
4219
|
-
[style.width.px]="170"
|
|
4321
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4322
|
+
[disabled]="isDisabled('weekday')"
|
|
4220
4323
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4221
4324
|
</kendo-dropdownlist>
|
|
4222
|
-
</ng-template>
|
|
4223
|
-
|
|
4224
|
-
<kendo-numerictextbox
|
|
4225
|
-
[style.width.px]='70'
|
|
4226
|
-
[min]="numericOptions.min"
|
|
4227
|
-
[max]="numericOptions.max"
|
|
4228
|
-
[decimals]="0"
|
|
4229
|
-
[format]="numericOptions.format"
|
|
4230
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4231
|
-
[readonly]="numericOptions.readonly"
|
|
4232
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4233
|
-
[spinners]="numericOptions.spinners"
|
|
4234
|
-
[step]="numericOptions.step"
|
|
4235
|
-
[title]="numericOptions.title"
|
|
4236
|
-
[value]='monthDay'
|
|
4237
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4238
|
-
[disabled]="isDisabled('monthday')"
|
|
4239
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4240
|
-
</kendo-numerictextbox>
|
|
4241
|
-
</li>
|
|
4242
|
-
<li class='k-radio-item'>
|
|
4243
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4244
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4245
|
-
|
|
4246
|
-
<kendo-dropdownlist
|
|
4247
|
-
[data]='offsetPositions'
|
|
4248
|
-
textField='text'
|
|
4249
|
-
valueField='value'
|
|
4250
|
-
[value]='offset'
|
|
4251
|
-
[valuePrimitive]='true'
|
|
4252
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4253
|
-
[disabled]="isDisabled('weekday')"
|
|
4254
|
-
[style.width.px]="170"
|
|
4255
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4256
|
-
</kendo-dropdownlist>
|
|
4257
|
-
|
|
4258
|
-
<kendo-dropdownlist
|
|
4259
|
-
[data]="extendedWeekDays"
|
|
4260
|
-
textField='text'
|
|
4261
|
-
valueField='value'
|
|
4262
|
-
[value]='weekDay'
|
|
4263
|
-
[valuePrimitive]='true'
|
|
4264
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4265
|
-
[disabled]="isDisabled('weekday')"
|
|
4266
|
-
[style.width.px]="170"
|
|
4267
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4268
|
-
</kendo-dropdownlist>
|
|
4269
|
-
|
|
4270
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4271
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4272
4325
|
|
|
4273
4326
|
<kendo-dropdownlist
|
|
4274
|
-
[data]=
|
|
4327
|
+
[data]="extendedWeekDays"
|
|
4275
4328
|
textField='text'
|
|
4276
4329
|
valueField='value'
|
|
4277
|
-
[value]='
|
|
4330
|
+
[value]='weekDay'
|
|
4278
4331
|
[valuePrimitive]='true'
|
|
4279
|
-
(valueChange)=
|
|
4332
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4280
4333
|
[disabled]="isDisabled('weekday')"
|
|
4281
|
-
[style.width.px]="170"
|
|
4282
4334
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4283
4335
|
</kendo-dropdownlist>
|
|
4284
|
-
|
|
4285
|
-
|
|
4286
|
-
|
|
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>
|
|
4287
4354
|
</div>
|
|
4288
|
-
`, 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"] }] });
|
|
4289
4356
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
|
|
4290
4357
|
type: Component,
|
|
4291
4358
|
args: [{
|
|
4292
4359
|
selector: 'kendo-recurrence-monthly-yearly-editor',
|
|
4293
4360
|
template: `
|
|
4294
4361
|
<div class='k-form-field'>
|
|
4295
|
-
<
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
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>
|
|
4304
4391
|
</ng-template>
|
|
4305
|
-
</label>
|
|
4306
4392
|
|
|
4307
|
-
|
|
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
|
+
|
|
4308
4416
|
<kendo-dropdownlist
|
|
4309
|
-
[data]='
|
|
4417
|
+
[data]='offsetPositions'
|
|
4310
4418
|
textField='text'
|
|
4311
4419
|
valueField='value'
|
|
4312
|
-
[value]='
|
|
4420
|
+
[value]='offset'
|
|
4313
4421
|
[valuePrimitive]='true'
|
|
4314
|
-
(valueChange)=
|
|
4315
|
-
[disabled]="isDisabled('
|
|
4316
|
-
[style.width.px]="170"
|
|
4422
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4423
|
+
[disabled]="isDisabled('weekday')"
|
|
4317
4424
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4318
4425
|
</kendo-dropdownlist>
|
|
4319
|
-
</ng-template>
|
|
4320
|
-
|
|
4321
|
-
<kendo-numerictextbox
|
|
4322
|
-
[style.width.px]='70'
|
|
4323
|
-
[min]="numericOptions.min"
|
|
4324
|
-
[max]="numericOptions.max"
|
|
4325
|
-
[decimals]="0"
|
|
4326
|
-
[format]="numericOptions.format"
|
|
4327
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4328
|
-
[readonly]="numericOptions.readonly"
|
|
4329
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4330
|
-
[spinners]="numericOptions.spinners"
|
|
4331
|
-
[step]="numericOptions.step"
|
|
4332
|
-
[title]="numericOptions.title"
|
|
4333
|
-
[value]='monthDay'
|
|
4334
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4335
|
-
[disabled]="isDisabled('monthday')"
|
|
4336
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4337
|
-
</kendo-numerictextbox>
|
|
4338
|
-
</li>
|
|
4339
|
-
<li class='k-radio-item'>
|
|
4340
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4341
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4342
|
-
|
|
4343
|
-
<kendo-dropdownlist
|
|
4344
|
-
[data]='offsetPositions'
|
|
4345
|
-
textField='text'
|
|
4346
|
-
valueField='value'
|
|
4347
|
-
[value]='offset'
|
|
4348
|
-
[valuePrimitive]='true'
|
|
4349
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4350
|
-
[disabled]="isDisabled('weekday')"
|
|
4351
|
-
[style.width.px]="170"
|
|
4352
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4353
|
-
</kendo-dropdownlist>
|
|
4354
|
-
|
|
4355
|
-
<kendo-dropdownlist
|
|
4356
|
-
[data]="extendedWeekDays"
|
|
4357
|
-
textField='text'
|
|
4358
|
-
valueField='value'
|
|
4359
|
-
[value]='weekDay'
|
|
4360
|
-
[valuePrimitive]='true'
|
|
4361
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4362
|
-
[disabled]="isDisabled('weekday')"
|
|
4363
|
-
[style.width.px]="170"
|
|
4364
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4365
|
-
</kendo-dropdownlist>
|
|
4366
|
-
|
|
4367
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4368
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4369
4426
|
|
|
4370
4427
|
<kendo-dropdownlist
|
|
4371
|
-
[data]=
|
|
4428
|
+
[data]="extendedWeekDays"
|
|
4372
4429
|
textField='text'
|
|
4373
4430
|
valueField='value'
|
|
4374
|
-
[value]='
|
|
4431
|
+
[value]='weekDay'
|
|
4375
4432
|
[valuePrimitive]='true'
|
|
4376
|
-
(valueChange)=
|
|
4433
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4377
4434
|
[disabled]="isDisabled('weekday')"
|
|
4378
|
-
[style.width.px]="170"
|
|
4379
4435
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4380
4436
|
</kendo-dropdownlist>
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
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>
|
|
4384
4455
|
</div>
|
|
4385
4456
|
`
|
|
4386
4457
|
}]
|
|
@@ -4460,6 +4531,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4460
4531
|
constructor(recurrence, localization) {
|
|
4461
4532
|
this.recurrence = recurrence;
|
|
4462
4533
|
this.localization = localization;
|
|
4534
|
+
this.cssClass = true;
|
|
4463
4535
|
this.numericOptions = {
|
|
4464
4536
|
min: 1,
|
|
4465
4537
|
format: '#',
|
|
@@ -4559,142 +4631,167 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4559
4631
|
}
|
|
4560
4632
|
}
|
|
4561
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 });
|
|
4562
|
-
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: `
|
|
4563
|
-
<div class=
|
|
4564
|
-
<
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
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
|
-
|
|
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>
|
|
4625
4708
|
</div>
|
|
4626
|
-
`, 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"] }] });
|
|
4627
4710
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
|
|
4628
4711
|
type: Component,
|
|
4629
4712
|
args: [{
|
|
4630
4713
|
selector: 'kendo-recurrence-end-rule-editor',
|
|
4631
4714
|
template: `
|
|
4632
|
-
<div class=
|
|
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
|
-
|
|
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
|
-
|
|
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>
|
|
4694
4788
|
</div>
|
|
4695
4789
|
`
|
|
4696
4790
|
}]
|
|
4697
|
-
}], 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: [{
|
|
4698
4795
|
type: Input
|
|
4699
4796
|
}], userDatePickerOptions: [{
|
|
4700
4797
|
type: Input
|
|
@@ -5011,24 +5108,26 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5011
5108
|
<kendo-recurrence-frequency-editor>
|
|
5012
5109
|
</kendo-recurrence-frequency-editor>
|
|
5013
5110
|
|
|
5014
|
-
<
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
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>
|
|
5032
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"] }] });
|
|
5033
5132
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEditorComponent, decorators: [{
|
|
5034
5133
|
type: Component,
|
|
@@ -5151,24 +5250,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5151
5250
|
<kendo-recurrence-frequency-editor>
|
|
5152
5251
|
</kendo-recurrence-frequency-editor>
|
|
5153
5252
|
|
|
5154
|
-
<
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
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>
|
|
5172
5273
|
`
|
|
5173
5274
|
}]
|
|
5174
5275
|
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$4.IntlService }]; }, propDecorators: { cssClass: [{
|
|
@@ -5207,6 +5308,8 @@ class EditDialogComponent {
|
|
|
5207
5308
|
this.timezone = 'Etc/UTC';
|
|
5208
5309
|
this.setTimeZone = false;
|
|
5209
5310
|
this.setSeparateStartEndTimeZones = false;
|
|
5311
|
+
this.saveIcon = saveIcon;
|
|
5312
|
+
this.cancelIcon = cancelOutlineIcon;
|
|
5210
5313
|
this.subs = this.editService.changed.subscribe(() => {
|
|
5211
5314
|
this.ngZone.run(() => { this.onChange(); });
|
|
5212
5315
|
});
|
|
@@ -5226,7 +5329,7 @@ class EditDialogComponent {
|
|
|
5226
5329
|
if (this.editTemplate) {
|
|
5227
5330
|
return this.editTemplate.autoFocusedElement;
|
|
5228
5331
|
}
|
|
5229
|
-
return '.k-form-field
|
|
5332
|
+
return '.k-form-field input';
|
|
5230
5333
|
}
|
|
5231
5334
|
get isEditingSeries() {
|
|
5232
5335
|
return this.editMode === EditMode.Series && Boolean(this.formGroup.get(this.fields.recurrenceRule));
|
|
@@ -5395,121 +5498,163 @@ class EditDialogComponent {
|
|
|
5395
5498
|
}
|
|
5396
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 });
|
|
5397
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: `
|
|
5398
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5501
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5399
5502
|
<ng-container *ngIf='!editTemplate'>
|
|
5400
|
-
<
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
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
|
-
|
|
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>
|
|
5435
5548
|
</ng-container>
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
|
|
5443
|
-
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
5450
|
-
|
|
5451
|
-
|
|
5452
|
-
|
|
5453
|
-
|
|
5454
|
-
|
|
5455
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
|
|
5459
|
-
|
|
5460
|
-
|
|
5461
|
-
|
|
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>
|
|
5462
5589
|
</ng-container>
|
|
5463
|
-
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5472
|
-
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
</
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
<!-- Resources -->
|
|
5492
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5493
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5494
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5495
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5496
|
-
</label>
|
|
5497
|
-
<div class='k-form-field-wrap'>
|
|
5498
|
-
<kendo-multiple-resource-editor
|
|
5499
|
-
*ngIf='resource.multiple'
|
|
5500
|
-
[formControl]='getControl(resource.field)'
|
|
5501
|
-
[resource]='resource'>
|
|
5502
|
-
</kendo-multiple-resource-editor>
|
|
5503
|
-
<kendo-single-resource-editor
|
|
5504
|
-
*ngIf='!resource.multiple'
|
|
5505
|
-
[formControl]='getControl(resource.field)'
|
|
5506
|
-
[resource]='resource'>
|
|
5507
|
-
</kendo-single-resource-editor>
|
|
5508
|
-
</div>
|
|
5509
|
-
</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>
|
|
5510
5617
|
</ng-container>
|
|
5511
|
-
</
|
|
5512
|
-
|
|
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>
|
|
5513
5658
|
</ng-container>
|
|
5514
5659
|
|
|
5515
5660
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5526,132 +5671,186 @@ EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
5526
5671
|
</form>
|
|
5527
5672
|
</ng-container>
|
|
5528
5673
|
|
|
5529
|
-
<kendo-dialog-actions>
|
|
5530
|
-
<button
|
|
5531
|
-
|
|
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>
|
|
5532
5689
|
</kendo-dialog-actions>
|
|
5533
5690
|
</kendo-dialog>
|
|
5534
|
-
`, 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"] }] });
|
|
5535
5692
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, decorators: [{
|
|
5536
5693
|
type: Component,
|
|
5537
5694
|
args: [{
|
|
5538
5695
|
selector: 'kendo-scheduler-edit-dialog',
|
|
5539
5696
|
template: `
|
|
5540
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5697
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5541
5698
|
<ng-container *ngIf='!editTemplate'>
|
|
5542
|
-
<
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
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
|
-
|
|
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>
|
|
5577
5744
|
</ng-container>
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
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>
|
|
5604
5785
|
</ng-container>
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
</
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
<!-- Resources -->
|
|
5634
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5635
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5636
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5637
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5638
|
-
</label>
|
|
5639
|
-
<div class='k-form-field-wrap'>
|
|
5640
|
-
<kendo-multiple-resource-editor
|
|
5641
|
-
*ngIf='resource.multiple'
|
|
5642
|
-
[formControl]='getControl(resource.field)'
|
|
5643
|
-
[resource]='resource'>
|
|
5644
|
-
</kendo-multiple-resource-editor>
|
|
5645
|
-
<kendo-single-resource-editor
|
|
5646
|
-
*ngIf='!resource.multiple'
|
|
5647
|
-
[formControl]='getControl(resource.field)'
|
|
5648
|
-
[resource]='resource'>
|
|
5649
|
-
</kendo-single-resource-editor>
|
|
5650
|
-
</div>
|
|
5651
|
-
</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>
|
|
5652
5813
|
</ng-container>
|
|
5653
|
-
</
|
|
5654
|
-
|
|
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>
|
|
5655
5854
|
</ng-container>
|
|
5656
5855
|
|
|
5657
5856
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5668,9 +5867,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5668
5867
|
</form>
|
|
5669
5868
|
</ng-container>
|
|
5670
5869
|
|
|
5671
|
-
<kendo-dialog-actions>
|
|
5672
|
-
<button
|
|
5673
|
-
|
|
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>
|
|
5674
5885
|
</kendo-dialog-actions>
|
|
5675
5886
|
</kendo-dialog>
|
|
5676
5887
|
`
|
|
@@ -8288,7 +8499,7 @@ AgendaTaskItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
8288
8499
|
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
8289
8500
|
</span>
|
|
8290
8501
|
</div>
|
|
8291
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8502
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8292
8503
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaTaskItemComponent, decorators: [{
|
|
8293
8504
|
type: Component,
|
|
8294
8505
|
args: [{
|
|
@@ -8338,9 +8549,9 @@ class AgendaListComponent {
|
|
|
8338
8549
|
constructor(intlService, localization) {
|
|
8339
8550
|
this.intlService = intlService;
|
|
8340
8551
|
this.localization = localization;
|
|
8552
|
+
this.classes = true;
|
|
8341
8553
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
8342
8554
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
8343
|
-
this.classes = true;
|
|
8344
8555
|
}
|
|
8345
8556
|
extractDataItem(item) {
|
|
8346
8557
|
return item.type === "group" ? item.dataItem.items[0] : item.dataItem;
|
|
@@ -8389,6 +8600,12 @@ class AgendaListComponent {
|
|
|
8389
8600
|
});
|
|
8390
8601
|
}
|
|
8391
8602
|
}
|
|
8603
|
+
get arrowIcons() {
|
|
8604
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
8605
|
+
}
|
|
8606
|
+
get arrowSVGIcons() {
|
|
8607
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
8608
|
+
}
|
|
8392
8609
|
}
|
|
8393
8610
|
AgendaListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, deps: [{ token: i1$4.IntlService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8394
8611
|
AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AgendaListComponent, selector: "[kendoSchedulerAgendaList]", inputs: { tasks: "tasks", eventTemplate: "eventTemplate", slotClass: "slotClass", eventClass: "eventClass", eventStyles: "eventStyles", agendaTimeTemplate: "agendaTimeTemplate", agendaDateTemplate: "agendaDateTemplate", editable: "editable" }, host: { properties: { "class.k-scheduler-content": "this.classes" } }, ngImport: i0, template: `
|
|
@@ -8409,16 +8626,16 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8409
8626
|
<div *ngIf="!agendaTimeTemplate">
|
|
8410
8627
|
<kendo-icon-wrapper
|
|
8411
8628
|
*ngIf="extractDataItem(item).tail"
|
|
8412
|
-
name="
|
|
8413
|
-
[svgIcon]="
|
|
8629
|
+
[name]="arrowIcons[0]"
|
|
8630
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8414
8631
|
>
|
|
8415
8632
|
</kendo-icon-wrapper>
|
|
8416
8633
|
|
|
8417
8634
|
{{ formatTime(extractDataItem(item)) }}
|
|
8418
8635
|
<kendo-icon-wrapper
|
|
8419
8636
|
*ngIf="extractDataItem(item).head"
|
|
8420
|
-
name="
|
|
8421
|
-
[svgIcon]="
|
|
8637
|
+
[name]="arrowIcons[1]"
|
|
8638
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8422
8639
|
>
|
|
8423
8640
|
</kendo-icon-wrapper>
|
|
8424
8641
|
</div>
|
|
@@ -8438,7 +8655,7 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8438
8655
|
</ng-container>
|
|
8439
8656
|
</tbody>
|
|
8440
8657
|
</table>
|
|
8441
|
-
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8658
|
+
`, isInline: true, components: [{ type: AgendaHeaderItemComponent, selector: "[kendoSchedulerAgendaHeaderItem]", inputs: ["kendoSchedulerAgendaHeaderItem", "agendaDateTemplate"] }, { type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: AgendaTaskItemComponent, selector: "[kendoSchedulerAgendaTaskItem]", inputs: ["kendoSchedulerAgendaTaskItem", "color", "eventTemplate", "editable"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i11.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
8442
8659
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, decorators: [{
|
|
8443
8660
|
type: Component,
|
|
8444
8661
|
args: [{
|
|
@@ -8462,16 +8679,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8462
8679
|
<div *ngIf="!agendaTimeTemplate">
|
|
8463
8680
|
<kendo-icon-wrapper
|
|
8464
8681
|
*ngIf="extractDataItem(item).tail"
|
|
8465
|
-
name="
|
|
8466
|
-
[svgIcon]="
|
|
8682
|
+
[name]="arrowIcons[0]"
|
|
8683
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8467
8684
|
>
|
|
8468
8685
|
</kendo-icon-wrapper>
|
|
8469
8686
|
|
|
8470
8687
|
{{ formatTime(extractDataItem(item)) }}
|
|
8471
8688
|
<kendo-icon-wrapper
|
|
8472
8689
|
*ngIf="extractDataItem(item).head"
|
|
8473
|
-
name="
|
|
8474
|
-
[svgIcon]="
|
|
8690
|
+
[name]="arrowIcons[1]"
|
|
8691
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8475
8692
|
>
|
|
8476
8693
|
</kendo-icon-wrapper>
|
|
8477
8694
|
</div>
|
|
@@ -9409,6 +9626,8 @@ class BaseViewItem {
|
|
|
9409
9626
|
this.renderer = renderer;
|
|
9410
9627
|
this.localeId = localeId;
|
|
9411
9628
|
this.className = true;
|
|
9629
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
9630
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
9412
9631
|
this.subs = new Subscription();
|
|
9413
9632
|
}
|
|
9414
9633
|
get taskIndex() {
|
|
@@ -9517,6 +9736,12 @@ class BaseViewItem {
|
|
|
9517
9736
|
this.slotService.unregisterItem(this);
|
|
9518
9737
|
this.subs.unsubscribe();
|
|
9519
9738
|
}
|
|
9739
|
+
get arrowIcons() {
|
|
9740
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9741
|
+
}
|
|
9742
|
+
get arrowSVGIcons() {
|
|
9743
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9744
|
+
}
|
|
9520
9745
|
}
|
|
9521
9746
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
9522
9747
|
BaseViewItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BaseViewItem, inputs: { item: "item", resourceIndex: "resourceIndex", rangeIndex: "rangeIndex", index: "index", eventTemplate: "eventTemplate", editable: "editable", dragHint: "dragHint", resources: "resources" }, host: { properties: { "class.k-event": "this.className", "attr.data-task-index": "this.taskIndex", "style.touch-action": "this.touchAction", "attr.aria-label": "this.eventTitle" } }, usesOnChanges: true, ngImport: i0 });
|
|
@@ -9581,8 +9806,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9581
9806
|
<span class="k-event-actions">
|
|
9582
9807
|
<kendo-icon-wrapper
|
|
9583
9808
|
*ngIf="item.tail"
|
|
9584
|
-
name="
|
|
9585
|
-
[svgIcon]="
|
|
9809
|
+
[name]="arrowIcons[0]"
|
|
9810
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9586
9811
|
>
|
|
9587
9812
|
</kendo-icon-wrapper>
|
|
9588
9813
|
<kendo-icon-wrapper
|
|
@@ -9611,8 +9836,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9611
9836
|
</span>
|
|
9612
9837
|
<kendo-icon-wrapper
|
|
9613
9838
|
*ngIf="item.head"
|
|
9614
|
-
name="
|
|
9615
|
-
[svgIcon]="
|
|
9839
|
+
[name]="arrowIcons[1]"
|
|
9840
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9616
9841
|
>
|
|
9617
9842
|
</kendo-icon-wrapper>
|
|
9618
9843
|
</span>
|
|
@@ -9621,7 +9846,7 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9621
9846
|
<span class="k-resize-handle k-resize-w"></span>
|
|
9622
9847
|
<span class="k-resize-handle k-resize-e"></span>
|
|
9623
9848
|
</ng-container>
|
|
9624
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
9849
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
9625
9850
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthViewItemComponent, decorators: [{
|
|
9626
9851
|
type: Component,
|
|
9627
9852
|
args: [{
|
|
@@ -9631,8 +9856,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9631
9856
|
<span class="k-event-actions">
|
|
9632
9857
|
<kendo-icon-wrapper
|
|
9633
9858
|
*ngIf="item.tail"
|
|
9634
|
-
name="
|
|
9635
|
-
[svgIcon]="
|
|
9859
|
+
[name]="arrowIcons[0]"
|
|
9860
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9636
9861
|
>
|
|
9637
9862
|
</kendo-icon-wrapper>
|
|
9638
9863
|
<kendo-icon-wrapper
|
|
@@ -9661,8 +9886,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9661
9886
|
</span>
|
|
9662
9887
|
<kendo-icon-wrapper
|
|
9663
9888
|
*ngIf="item.head"
|
|
9664
|
-
name="
|
|
9665
|
-
[svgIcon]="
|
|
9889
|
+
[name]="arrowIcons[1]"
|
|
9890
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9666
9891
|
>
|
|
9667
9892
|
</kendo-icon-wrapper>
|
|
9668
9893
|
</span>
|
|
@@ -10943,7 +11168,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10943
11168
|
>
|
|
10944
11169
|
</kendo-icon-wrapper>
|
|
10945
11170
|
</div>
|
|
10946
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i1$4.DatePipe } });
|
|
11171
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "kendoDate": i1$4.DatePipe } });
|
|
10947
11172
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthSlotComponent, decorators: [{
|
|
10948
11173
|
type: Component,
|
|
10949
11174
|
args: [{
|
|
@@ -11880,7 +12105,7 @@ ViewFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
11880
12105
|
<span class="k-button-text">{{ item.text }}</span>
|
|
11881
12106
|
</button>
|
|
11882
12107
|
</span>
|
|
11883
|
-
`, 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"] }] });
|
|
11884
12109
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ViewFooterComponent, decorators: [{
|
|
11885
12110
|
type: Component,
|
|
11886
12111
|
args: [{
|
|
@@ -12905,8 +13130,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12905
13130
|
<span class="k-event-actions">
|
|
12906
13131
|
<kendo-icon-wrapper
|
|
12907
13132
|
*ngIf="item.tail && !vertical"
|
|
12908
|
-
name="
|
|
12909
|
-
[svgIcon]="
|
|
13133
|
+
[name]="arrowIcons[0]"
|
|
13134
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12910
13135
|
>
|
|
12911
13136
|
</kendo-icon-wrapper>
|
|
12912
13137
|
<kendo-icon-wrapper
|
|
@@ -12936,8 +13161,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12936
13161
|
</span>
|
|
12937
13162
|
<kendo-icon-wrapper
|
|
12938
13163
|
*ngIf="item.head && !vertical"
|
|
12939
|
-
name="
|
|
12940
|
-
[svgIcon]="
|
|
13164
|
+
[name]="arrowIcons[1]"
|
|
13165
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
12941
13166
|
>
|
|
12942
13167
|
</kendo-icon-wrapper>
|
|
12943
13168
|
</span>
|
|
@@ -12959,7 +13184,7 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12959
13184
|
<span class="k-resize-handle k-resize-w"></span>
|
|
12960
13185
|
<span class="k-resize-handle k-resize-e"></span>
|
|
12961
13186
|
</ng-container>
|
|
12962
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
13187
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
12963
13188
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DayTimeViewItemComponent, decorators: [{
|
|
12964
13189
|
type: Component,
|
|
12965
13190
|
args: [{
|
|
@@ -12969,8 +13194,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
12969
13194
|
<span class="k-event-actions">
|
|
12970
13195
|
<kendo-icon-wrapper
|
|
12971
13196
|
*ngIf="item.tail && !vertical"
|
|
12972
|
-
name="
|
|
12973
|
-
[svgIcon]="
|
|
13197
|
+
[name]="arrowIcons[0]"
|
|
13198
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12974
13199
|
>
|
|
12975
13200
|
</kendo-icon-wrapper>
|
|
12976
13201
|
<kendo-icon-wrapper
|
|
@@ -13000,8 +13225,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13000
13225
|
</span>
|
|
13001
13226
|
<kendo-icon-wrapper
|
|
13002
13227
|
*ngIf="item.head && !vertical"
|
|
13003
|
-
name="
|
|
13004
|
-
[svgIcon]="
|
|
13228
|
+
[name]="arrowIcons[1]"
|
|
13229
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
13005
13230
|
>
|
|
13006
13231
|
</kendo-icon-wrapper>
|
|
13007
13232
|
</span>
|
|
@@ -16691,7 +16916,8 @@ const importedKendoModules = [
|
|
|
16691
16916
|
DropDownsModule,
|
|
16692
16917
|
ReactiveFormsModule,
|
|
16693
16918
|
SharedModule,
|
|
16694
|
-
LabelModule
|
|
16919
|
+
LabelModule,
|
|
16920
|
+
FormFieldModule
|
|
16695
16921
|
];
|
|
16696
16922
|
/**
|
|
16697
16923
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -16778,7 +17004,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
16778
17004
|
DropDownsModule,
|
|
16779
17005
|
ReactiveFormsModule,
|
|
16780
17006
|
SharedModule,
|
|
16781
|
-
LabelModule
|
|
17007
|
+
LabelModule,
|
|
17008
|
+
FormFieldModule], exports: [AgendaViewComponent,
|
|
16782
17009
|
MonthViewModule,
|
|
16783
17010
|
MultiDayViewModule,
|
|
16784
17011
|
ReactiveEditingDirective,
|
|
@@ -17337,7 +17564,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
17337
17564
|
</span>
|
|
17338
17565
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
17339
17566
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
17340
|
-
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17567
|
+
`, isInline: true, components: [{ type: i4$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
17341
17568
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
17342
17569
|
type: Component,
|
|
17343
17570
|
args: [{
|