@progress/kendo-angular-scheduler 13.0.0-develop.1 → 13.0.0-develop.11
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: 1685352049,
|
|
52
|
+
version: '13.0.0-develop.11',
|
|
53
53
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -2520,6 +2520,12 @@ class ToolbarNavigationComponent {
|
|
|
2520
2520
|
this.dateRangeText.current = isDesktop ? this.dateRangeText.long : this.dateRangeText.short;
|
|
2521
2521
|
this.cd.detectChanges();
|
|
2522
2522
|
}
|
|
2523
|
+
get arrowIcons() {
|
|
2524
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
2525
|
+
}
|
|
2526
|
+
get arrowSVGIcons() {
|
|
2527
|
+
return !this.localization.rtl ? ['caretAltLeftIcon', 'caretAltRightIcon'] : ['caretAltRightIcon', 'caretAltLeftIcon'];
|
|
2528
|
+
}
|
|
2523
2529
|
}
|
|
2524
2530
|
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 });
|
|
2525
2531
|
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: [
|
|
@@ -2537,8 +2543,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2537
2543
|
<button kendoButton
|
|
2538
2544
|
(click)="prevClick()"
|
|
2539
2545
|
class="k-nav-prev"
|
|
2540
|
-
icon="
|
|
2541
|
-
[svgIcon]="svgIcon(
|
|
2546
|
+
[icon]="arrowIcons[0]"
|
|
2547
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2542
2548
|
[attr.title]="previousText"
|
|
2543
2549
|
[attr.aria-label]="previousText"
|
|
2544
2550
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2548,8 +2554,8 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2548
2554
|
(click)="nextClick()"
|
|
2549
2555
|
type="button"
|
|
2550
2556
|
class="k-nav-next"
|
|
2551
|
-
icon="
|
|
2552
|
-
[svgIcon]="svgIcon(
|
|
2557
|
+
[icon]="arrowIcons[1]"
|
|
2558
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2553
2559
|
[attr.title]="nextText"
|
|
2554
2560
|
[attr.aria-label]="nextText"
|
|
2555
2561
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2586,7 +2592,7 @@ ToolbarNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
2586
2592
|
</kendo-calendar-messages>
|
|
2587
2593
|
</kendo-calendar>
|
|
2588
2594
|
</ng-template>
|
|
2589
|
-
`, isInline: true, components: [{ type:
|
|
2595
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i6.CalendarComponent, selector: "kendo-calendar", inputs: ["id", "focusedDate", "min", "max", "rangeValidation", "selection", "value", "disabled", "tabindex", "tabIndex", "disabledDates", "navigation", "activeView", "bottomView", "topView", "type", "animateNavigation", "weekNumber", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "size"], outputs: ["activeViewChange", "navigate", "activeViewDateChange", "blur", "focus", "valueChange"], exportAs: ["kendo-calendar"] }, { type: i6.CalendarCustomMessagesComponent, selector: "kendo-calendar-messages" }], directives: [{ type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }], pipes: { "async": i11.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2590
2596
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarNavigationComponent, decorators: [{
|
|
2591
2597
|
type: Component,
|
|
2592
2598
|
args: [{
|
|
@@ -2609,8 +2615,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2609
2615
|
<button kendoButton
|
|
2610
2616
|
(click)="prevClick()"
|
|
2611
2617
|
class="k-nav-prev"
|
|
2612
|
-
icon="
|
|
2613
|
-
[svgIcon]="svgIcon(
|
|
2618
|
+
[icon]="arrowIcons[0]"
|
|
2619
|
+
[svgIcon]="svgIcon(arrowSVGIcons[0])"
|
|
2614
2620
|
[attr.title]="previousText"
|
|
2615
2621
|
[attr.aria-label]="previousText"
|
|
2616
2622
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2620,8 +2626,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2620
2626
|
(click)="nextClick()"
|
|
2621
2627
|
type="button"
|
|
2622
2628
|
class="k-nav-next"
|
|
2623
|
-
icon="
|
|
2624
|
-
[svgIcon]="svgIcon(
|
|
2629
|
+
[icon]="arrowIcons[1]"
|
|
2630
|
+
[svgIcon]="svgIcon(arrowSVGIcons[1])"
|
|
2625
2631
|
[attr.title]="nextText"
|
|
2626
2632
|
[attr.aria-label]="nextText"
|
|
2627
2633
|
[kendoSchedulerFocusIndex]="0"
|
|
@@ -2777,7 +2783,7 @@ ToolbarViewSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12
|
|
|
2777
2783
|
</span>
|
|
2778
2784
|
</button>
|
|
2779
2785
|
</span>
|
|
2780
|
-
`, isInline: true, components: [{ type:
|
|
2786
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
2781
2787
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ToolbarViewSelectorComponent, decorators: [{
|
|
2782
2788
|
type: Component,
|
|
2783
2789
|
args: [{
|
|
@@ -3186,6 +3192,13 @@ class SchedulerDateTimePickerComponent {
|
|
|
3186
3192
|
this.onTouchedCallback = (_) => { };
|
|
3187
3193
|
this.onChangeCallback = (_) => { };
|
|
3188
3194
|
}
|
|
3195
|
+
/**
|
|
3196
|
+
* @hidden
|
|
3197
|
+
*/
|
|
3198
|
+
get focusableId() {
|
|
3199
|
+
var _a, _b;
|
|
3200
|
+
return this.isAllDay ? (_a = this.datePicker) === null || _a === void 0 ? void 0 : _a.input.focusableId : (_b = this.dateTimePicker) === null || _b === void 0 ? void 0 : _b.input.focusableId;
|
|
3201
|
+
}
|
|
3189
3202
|
writeValue(newDate) {
|
|
3190
3203
|
if (newDate instanceof Date) {
|
|
3191
3204
|
this.date = newDate;
|
|
@@ -3199,7 +3212,7 @@ class SchedulerDateTimePickerComponent {
|
|
|
3199
3212
|
* @hidden
|
|
3200
3213
|
*/
|
|
3201
3214
|
focus() {
|
|
3202
|
-
this.datePicker.focus();
|
|
3215
|
+
this.datePicker ? this.datePicker.focus() : this.dateTimePicker.focus();
|
|
3203
3216
|
}
|
|
3204
3217
|
/**
|
|
3205
3218
|
* @hidden
|
|
@@ -3217,19 +3230,20 @@ class SchedulerDateTimePickerComponent {
|
|
|
3217
3230
|
SchedulerDateTimePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3218
3231
|
SchedulerDateTimePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: { isAllDay: "isAllDay" }, outputs: { valueChange: "valueChange" }, providers: [
|
|
3219
3232
|
SCHEDULER_DATETIMEPICKER_VALUE_ACCESSOR
|
|
3220
|
-
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true,
|
|
3233
|
+
], viewQueries: [{ propertyName: "datePicker", first: true, predicate: ["datepicker"], descendants: true }, { propertyName: "dateTimePicker", first: true, predicate: ["datetimepicker"], descendants: true }], ngImport: i0, template: `
|
|
3221
3234
|
<kendo-datepicker
|
|
3235
|
+
*ngIf='isAllDay'
|
|
3222
3236
|
#datepicker
|
|
3223
3237
|
[(value)]='date'
|
|
3224
3238
|
(valueChange)='onValueChange($event)'
|
|
3225
|
-
[style.width.px]="170"
|
|
3226
3239
|
></kendo-datepicker>
|
|
3227
|
-
<kendo-
|
|
3240
|
+
<kendo-datetimepicker
|
|
3241
|
+
*ngIf='!isAllDay'
|
|
3242
|
+
#datetimepicker
|
|
3228
3243
|
[(value)]='date'
|
|
3229
3244
|
(valueChange)='onValueChange($event)'
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
`, isInline: true, components: [{ type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i6.TimePickerComponent, selector: "kendo-timepicker", inputs: ["focusableId", "disabled", "readonly", "readOnlyInput", "format", "formatPlaceholder", "placeholder", "min", "max", "incompleteDateValidation", "cancelButton", "nowButton", "steps", "popupSettings", "tabindex", "tabIndex", "title", "subtitle", "rangeValidation", "adaptiveMode", "value", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-timepicker"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3245
|
+
>
|
|
3246
|
+
`, isInline: true, components: [{ type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { type: i6.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["focusableId", "value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "subtitle", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "adaptiveMode", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
3233
3247
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SchedulerDateTimePickerComponent, decorators: [{
|
|
3234
3248
|
type: Component,
|
|
3235
3249
|
args: [{
|
|
@@ -3239,21 +3253,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3239
3253
|
selector: 'kendo-scheduler-datetime-picker',
|
|
3240
3254
|
template: `
|
|
3241
3255
|
<kendo-datepicker
|
|
3256
|
+
*ngIf='isAllDay'
|
|
3242
3257
|
#datepicker
|
|
3243
3258
|
[(value)]='date'
|
|
3244
3259
|
(valueChange)='onValueChange($event)'
|
|
3245
|
-
[style.width.px]="170"
|
|
3246
3260
|
></kendo-datepicker>
|
|
3247
|
-
<kendo-
|
|
3261
|
+
<kendo-datetimepicker
|
|
3262
|
+
*ngIf='!isAllDay'
|
|
3263
|
+
#datetimepicker
|
|
3248
3264
|
[(value)]='date'
|
|
3249
3265
|
(valueChange)='onValueChange($event)'
|
|
3250
|
-
|
|
3251
|
-
></kendo-timepicker>
|
|
3266
|
+
>
|
|
3252
3267
|
`
|
|
3253
3268
|
}]
|
|
3254
3269
|
}], propDecorators: { datePicker: [{
|
|
3255
3270
|
type: ViewChild,
|
|
3256
|
-
args: ['datepicker'
|
|
3271
|
+
args: ['datepicker']
|
|
3272
|
+
}], dateTimePicker: [{
|
|
3273
|
+
type: ViewChild,
|
|
3274
|
+
args: ['datetimepicker']
|
|
3257
3275
|
}], isAllDay: [{
|
|
3258
3276
|
type: Input
|
|
3259
3277
|
}], valueChange: [{
|
|
@@ -3288,6 +3306,12 @@ class TimeZoneEditorComponent {
|
|
|
3288
3306
|
this.tzNames = timezoneNames();
|
|
3289
3307
|
this.tzSource = this.tzNames.slice();
|
|
3290
3308
|
}
|
|
3309
|
+
/**
|
|
3310
|
+
* @hidden
|
|
3311
|
+
*/
|
|
3312
|
+
get focusableId() {
|
|
3313
|
+
return this.tzComboBox.focusableId;
|
|
3314
|
+
}
|
|
3291
3315
|
/**
|
|
3292
3316
|
* @hidden
|
|
3293
3317
|
*/
|
|
@@ -3680,12 +3704,18 @@ class RecurrenceFrequencyEditorComponent {
|
|
|
3680
3704
|
RecurrenceFrequencyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3681
3705
|
RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceFrequencyEditorComponent, selector: "kendo-recurrence-frequency-editor", viewQueries: [{ propertyName: "weekDayButtons", predicate: Button, descendants: true }], ngImport: i0, template: `
|
|
3682
3706
|
<div class='k-form-field'>
|
|
3683
|
-
<
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3707
|
+
<kendo-label
|
|
3708
|
+
[text]="textFor('repeat')"
|
|
3709
|
+
(click)="onFrequencyClick()"
|
|
3710
|
+
labelCssClass="k-form-label"
|
|
3711
|
+
></kendo-label>
|
|
3712
|
+
<div class="k-form-field-wrap">
|
|
3713
|
+
<kendo-buttongroup
|
|
3714
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3715
|
+
width="100%"
|
|
3716
|
+
selection="single"
|
|
3717
|
+
>
|
|
3687
3718
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3688
|
-
[style.width.px]="100"
|
|
3689
3719
|
[togglable]="true"
|
|
3690
3720
|
[selected]="freq.value === selected"
|
|
3691
3721
|
(click)="onClick(freq)"
|
|
@@ -3693,19 +3723,25 @@ RecurrenceFrequencyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersio
|
|
|
3693
3723
|
</kendo-buttongroup>
|
|
3694
3724
|
</div>
|
|
3695
3725
|
</div>
|
|
3696
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3726
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i4.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3697
3727
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceFrequencyEditorComponent, decorators: [{
|
|
3698
3728
|
type: Component,
|
|
3699
3729
|
args: [{
|
|
3700
3730
|
selector: 'kendo-recurrence-frequency-editor',
|
|
3701
3731
|
template: `
|
|
3702
3732
|
<div class='k-form-field'>
|
|
3703
|
-
<
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3733
|
+
<kendo-label
|
|
3734
|
+
[text]="textFor('repeat')"
|
|
3735
|
+
(click)="onFrequencyClick()"
|
|
3736
|
+
labelCssClass="k-form-label"
|
|
3737
|
+
></kendo-label>
|
|
3738
|
+
<div class="k-form-field-wrap">
|
|
3739
|
+
<kendo-buttongroup
|
|
3740
|
+
class="k-scheduler-recurrence-repeat k-button-group-solid"
|
|
3741
|
+
width="100%"
|
|
3742
|
+
selection="single"
|
|
3743
|
+
>
|
|
3707
3744
|
<button *ngFor='let freq of frequencies' kendoButton
|
|
3708
|
-
[style.width.px]="100"
|
|
3709
3745
|
[togglable]="true"
|
|
3710
3746
|
[selected]="freq.value === selected"
|
|
3711
3747
|
(click)="onClick(freq)"
|
|
@@ -3727,6 +3763,7 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3727
3763
|
constructor(recurrence, localization) {
|
|
3728
3764
|
this.recurrence = recurrence;
|
|
3729
3765
|
this.localization = localization;
|
|
3766
|
+
this.cssClass = true;
|
|
3730
3767
|
this.numericOptions = {
|
|
3731
3768
|
min: 1,
|
|
3732
3769
|
format: '#',
|
|
@@ -3787,13 +3824,18 @@ class RecurrenceIntervalEditorComponent {
|
|
|
3787
3824
|
}
|
|
3788
3825
|
}
|
|
3789
3826
|
RecurrenceIntervalEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3790
|
-
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: `
|
|
3791
|
-
<div class=
|
|
3792
|
-
<kendo-label
|
|
3827
|
+
RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: { userNumericOptions: "userNumericOptions" }, host: { properties: { "class.k-scheduler-recurrence-interval-editor": "this.cssClass" } }, ngImport: i0, template: `
|
|
3828
|
+
<div class="k-form-field">
|
|
3829
|
+
<kendo-label
|
|
3830
|
+
[for]="intervalNumeric"
|
|
3831
|
+
[text]="textForRepeatEvery()"
|
|
3832
|
+
labelCssClass="k-form-label"
|
|
3833
|
+
(click)="intervalNumeric.focus()"
|
|
3834
|
+
></kendo-label>
|
|
3793
3835
|
<div class="k-form-field-wrap">
|
|
3794
3836
|
<kendo-numerictextbox
|
|
3795
3837
|
#intervalNumeric
|
|
3796
|
-
|
|
3838
|
+
class="k-recur-interval"
|
|
3797
3839
|
[min]="numericOptions.min"
|
|
3798
3840
|
[max]="numericOptions.max"
|
|
3799
3841
|
[decimals]="0"
|
|
@@ -3808,22 +3850,26 @@ RecurrenceIntervalEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
|
|
|
3808
3850
|
(blur)="onIntervalBlur()"
|
|
3809
3851
|
(valueChange)="onIntervalChange($event)">
|
|
3810
3852
|
</kendo-numerictextbox>
|
|
3811
|
-
|
|
3812
|
-
<span>{{ textForFrequency() }}</span>
|
|
3853
|
+
<span> {{ textForFrequency() }}</span>
|
|
3813
3854
|
</div>
|
|
3814
3855
|
</div>
|
|
3815
|
-
`, isInline: true, components: [{ type:
|
|
3856
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }] });
|
|
3816
3857
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceIntervalEditorComponent, decorators: [{
|
|
3817
3858
|
type: Component,
|
|
3818
3859
|
args: [{
|
|
3819
3860
|
selector: 'kendo-recurrence-interval-editor',
|
|
3820
3861
|
template: `
|
|
3821
|
-
<div class=
|
|
3822
|
-
<kendo-label
|
|
3862
|
+
<div class="k-form-field">
|
|
3863
|
+
<kendo-label
|
|
3864
|
+
[for]="intervalNumeric"
|
|
3865
|
+
[text]="textForRepeatEvery()"
|
|
3866
|
+
labelCssClass="k-form-label"
|
|
3867
|
+
(click)="intervalNumeric.focus()"
|
|
3868
|
+
></kendo-label>
|
|
3823
3869
|
<div class="k-form-field-wrap">
|
|
3824
3870
|
<kendo-numerictextbox
|
|
3825
3871
|
#intervalNumeric
|
|
3826
|
-
|
|
3872
|
+
class="k-recur-interval"
|
|
3827
3873
|
[min]="numericOptions.min"
|
|
3828
3874
|
[max]="numericOptions.max"
|
|
3829
3875
|
[decimals]="0"
|
|
@@ -3838,13 +3884,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
3838
3884
|
(blur)="onIntervalBlur()"
|
|
3839
3885
|
(valueChange)="onIntervalChange($event)">
|
|
3840
3886
|
</kendo-numerictextbox>
|
|
3841
|
-
|
|
3842
|
-
<span>{{ textForFrequency() }}</span>
|
|
3887
|
+
<span> {{ textForFrequency() }}</span>
|
|
3843
3888
|
</div>
|
|
3844
3889
|
</div>
|
|
3845
3890
|
`
|
|
3846
3891
|
}]
|
|
3847
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
3892
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
3893
|
+
type: HostBinding,
|
|
3894
|
+
args: ['class.k-scheduler-recurrence-interval-editor']
|
|
3895
|
+
}], userNumericOptions: [{
|
|
3848
3896
|
type: Input
|
|
3849
3897
|
}] } });
|
|
3850
3898
|
|
|
@@ -3903,36 +3951,52 @@ class RecurrenceWeekdayRuleEditorComponent {
|
|
|
3903
3951
|
}
|
|
3904
3952
|
RecurrenceWeekdayRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3905
3953
|
RecurrenceWeekdayRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceWeekdayRuleEditorComponent, selector: "kendo-recurrence-weekday-rule-editor", viewQueries: [{ propertyName: "weekDayButtons", predicate: Button, descendants: true }], ngImport: i0, template: `
|
|
3906
|
-
<div class=
|
|
3907
|
-
<
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3954
|
+
<div class="k-form-field">
|
|
3955
|
+
<kendo-label
|
|
3956
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3957
|
+
labelCssClass="k-form-label"
|
|
3958
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3959
|
+
></kendo-label>
|
|
3960
|
+
<div class="k-form-field-wrap">
|
|
3961
|
+
<kendo-buttongroup
|
|
3962
|
+
class="k-button-group-solid"
|
|
3963
|
+
width="100%"
|
|
3964
|
+
selection="multiple"
|
|
3965
|
+
>
|
|
3966
|
+
<button
|
|
3967
|
+
*ngFor='let day of weekDays'
|
|
3968
|
+
kendoButton
|
|
3969
|
+
[toggleable]="true"
|
|
3970
|
+
[selected]="isSelected(day)"
|
|
3971
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3916
3972
|
>{{ capitalize(day.text) }}</button>
|
|
3917
3973
|
</kendo-buttongroup>
|
|
3918
3974
|
</div>
|
|
3919
3975
|
</div>
|
|
3920
|
-
`, isInline: true, components: [{ type: i3.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type:
|
|
3976
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i4.ButtonGroupComponent, selector: "kendo-buttongroup", inputs: ["disabled", "selection", "width", "tabIndex", "navigable"], outputs: ["navigate"], exportAs: ["kendoButtonGroup"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
3921
3977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceWeekdayRuleEditorComponent, decorators: [{
|
|
3922
3978
|
type: Component,
|
|
3923
3979
|
args: [{
|
|
3924
3980
|
selector: 'kendo-recurrence-weekday-rule-editor',
|
|
3925
3981
|
template: `
|
|
3926
|
-
<div class=
|
|
3927
|
-
<
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3982
|
+
<div class="k-form-field">
|
|
3983
|
+
<kendo-label
|
|
3984
|
+
[text]="textFor('weeklyRepeatOn')"
|
|
3985
|
+
labelCssClass="k-form-label"
|
|
3986
|
+
(click)="onWeeklyRepeatOnClick()"
|
|
3987
|
+
></kendo-label>
|
|
3988
|
+
<div class="k-form-field-wrap">
|
|
3989
|
+
<kendo-buttongroup
|
|
3990
|
+
class="k-button-group-solid"
|
|
3991
|
+
width="100%"
|
|
3992
|
+
selection="multiple"
|
|
3993
|
+
>
|
|
3994
|
+
<button
|
|
3995
|
+
*ngFor='let day of weekDays'
|
|
3996
|
+
kendoButton
|
|
3997
|
+
[toggleable]="true"
|
|
3998
|
+
[selected]="isSelected(day)"
|
|
3999
|
+
(selectedChange)="onSelectedChange($event, day.value)"
|
|
3936
4000
|
>{{ capitalize(day.text) }}</button>
|
|
3937
4001
|
</kendo-buttongroup>
|
|
3938
4002
|
</div>
|
|
@@ -4232,192 +4296,200 @@ class RecurrenceMonthlyYearlyEditorComponent {
|
|
|
4232
4296
|
RecurrenceMonthlyYearlyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4233
4297
|
RecurrenceMonthlyYearlyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceMonthlyYearlyEditorComponent, selector: "kendo-recurrence-monthly-yearly-editor", inputs: { userNumericOptions: "userNumericOptions" }, viewQueries: [{ propertyName: "repeatOnRadioButtons", predicate: RepeatOnRadioButtonDirective, descendants: true }], ngImport: i0, template: `
|
|
4234
4298
|
<div class='k-form-field'>
|
|
4235
|
-
<
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4299
|
+
<kendo-label
|
|
4300
|
+
[text]="textForRepeatOn()"
|
|
4301
|
+
labelCssClass="k-form-label"
|
|
4302
|
+
(click)="onRepeatOnLabelClick()"
|
|
4303
|
+
></kendo-label>
|
|
4304
|
+
<div class="k-form-field-wrap">
|
|
4305
|
+
<ul class='k-radio-list'>
|
|
4306
|
+
<li class='k-radio-list-item'>
|
|
4307
|
+
<span class="k-radio-wrap">
|
|
4308
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4309
|
+
</span>
|
|
4310
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4311
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4312
|
+
{{ textFor('monthlyDay') }}
|
|
4313
|
+
</ng-template>
|
|
4314
|
+
</label>
|
|
4315
|
+
|
|
4316
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4317
|
+
<kendo-dropdownlist
|
|
4318
|
+
[data]='months'
|
|
4319
|
+
textField='text'
|
|
4320
|
+
valueField='value'
|
|
4321
|
+
[value]='currentMonthMonthDay'
|
|
4322
|
+
[valuePrimitive]='true'
|
|
4323
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4324
|
+
[disabled]="isDisabled('monthday')"
|
|
4325
|
+
[style.width.px]="170"
|
|
4326
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4327
|
+
</kendo-dropdownlist>
|
|
4244
4328
|
</ng-template>
|
|
4245
|
-
</label>
|
|
4246
4329
|
|
|
4247
|
-
|
|
4330
|
+
<kendo-numerictextbox
|
|
4331
|
+
class="k-recur-monthday"
|
|
4332
|
+
[min]="numericOptions.min"
|
|
4333
|
+
[max]="numericOptions.max"
|
|
4334
|
+
[decimals]="0"
|
|
4335
|
+
[format]="numericOptions.format"
|
|
4336
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4337
|
+
[readonly]="numericOptions.readonly"
|
|
4338
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4339
|
+
[spinners]="numericOptions.spinners"
|
|
4340
|
+
[step]="numericOptions.step"
|
|
4341
|
+
[title]="numericOptions.title"
|
|
4342
|
+
[value]='monthDay'
|
|
4343
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4344
|
+
[disabled]="isDisabled('monthday')">
|
|
4345
|
+
</kendo-numerictextbox>
|
|
4346
|
+
</li>
|
|
4347
|
+
<li class='k-radio-list-item'>
|
|
4348
|
+
<span class="k-radio-wrap">
|
|
4349
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4350
|
+
</span>
|
|
4351
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4352
|
+
|
|
4248
4353
|
<kendo-dropdownlist
|
|
4249
|
-
[data]='
|
|
4354
|
+
[data]='offsetPositions'
|
|
4250
4355
|
textField='text'
|
|
4251
4356
|
valueField='value'
|
|
4252
|
-
[value]='
|
|
4357
|
+
[value]='offset'
|
|
4253
4358
|
[valuePrimitive]='true'
|
|
4254
|
-
(valueChange)=
|
|
4255
|
-
[disabled]="isDisabled('
|
|
4256
|
-
[style.width.px]="170"
|
|
4359
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4360
|
+
[disabled]="isDisabled('weekday')"
|
|
4257
4361
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4258
4362
|
</kendo-dropdownlist>
|
|
4259
|
-
</ng-template>
|
|
4260
|
-
|
|
4261
|
-
<kendo-numerictextbox
|
|
4262
|
-
[style.width.px]='70'
|
|
4263
|
-
[min]="numericOptions.min"
|
|
4264
|
-
[max]="numericOptions.max"
|
|
4265
|
-
[decimals]="0"
|
|
4266
|
-
[format]="numericOptions.format"
|
|
4267
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4268
|
-
[readonly]="numericOptions.readonly"
|
|
4269
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4270
|
-
[spinners]="numericOptions.spinners"
|
|
4271
|
-
[step]="numericOptions.step"
|
|
4272
|
-
[title]="numericOptions.title"
|
|
4273
|
-
[value]='monthDay'
|
|
4274
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4275
|
-
[disabled]="isDisabled('monthday')"
|
|
4276
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4277
|
-
</kendo-numerictextbox>
|
|
4278
|
-
</li>
|
|
4279
|
-
<li class='k-radio-item'>
|
|
4280
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4281
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4282
|
-
|
|
4283
|
-
<kendo-dropdownlist
|
|
4284
|
-
[data]='offsetPositions'
|
|
4285
|
-
textField='text'
|
|
4286
|
-
valueField='value'
|
|
4287
|
-
[value]='offset'
|
|
4288
|
-
[valuePrimitive]='true'
|
|
4289
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4290
|
-
[disabled]="isDisabled('weekday')"
|
|
4291
|
-
[style.width.px]="170"
|
|
4292
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4293
|
-
</kendo-dropdownlist>
|
|
4294
|
-
|
|
4295
|
-
<kendo-dropdownlist
|
|
4296
|
-
[data]="extendedWeekDays"
|
|
4297
|
-
textField='text'
|
|
4298
|
-
valueField='value'
|
|
4299
|
-
[value]='weekDay'
|
|
4300
|
-
[valuePrimitive]='true'
|
|
4301
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4302
|
-
[disabled]="isDisabled('weekday')"
|
|
4303
|
-
[style.width.px]="170"
|
|
4304
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4305
|
-
</kendo-dropdownlist>
|
|
4306
|
-
|
|
4307
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4308
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4309
4363
|
|
|
4310
4364
|
<kendo-dropdownlist
|
|
4311
|
-
[data]=
|
|
4365
|
+
[data]="extendedWeekDays"
|
|
4312
4366
|
textField='text'
|
|
4313
4367
|
valueField='value'
|
|
4314
|
-
[value]='
|
|
4368
|
+
[value]='weekDay'
|
|
4315
4369
|
[valuePrimitive]='true'
|
|
4316
|
-
(valueChange)=
|
|
4370
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4317
4371
|
[disabled]="isDisabled('weekday')"
|
|
4318
|
-
[style.width.px]="170"
|
|
4319
4372
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4320
4373
|
</kendo-dropdownlist>
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4374
|
+
|
|
4375
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4376
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4377
|
+
|
|
4378
|
+
<kendo-dropdownlist
|
|
4379
|
+
[data]='months'
|
|
4380
|
+
textField='text'
|
|
4381
|
+
valueField='value'
|
|
4382
|
+
[value]='currentMonthWeekDay'
|
|
4383
|
+
[valuePrimitive]='true'
|
|
4384
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4385
|
+
[disabled]="isDisabled('weekday')"
|
|
4386
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4387
|
+
</kendo-dropdownlist>
|
|
4388
|
+
</ng-template>
|
|
4389
|
+
</li>
|
|
4390
|
+
</ul>
|
|
4391
|
+
</div>
|
|
4324
4392
|
</div>
|
|
4325
|
-
`, isInline: true, components: [{ type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type:
|
|
4393
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i1$3.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: RepeatOnRadioButtonDirective, selector: "[kendoRecurrenceRepeatOnRadioButton]", inputs: ["kendoRecurrenceRepeatOnRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4326
4394
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceMonthlyYearlyEditorComponent, decorators: [{
|
|
4327
4395
|
type: Component,
|
|
4328
4396
|
args: [{
|
|
4329
4397
|
selector: 'kendo-recurrence-monthly-yearly-editor',
|
|
4330
4398
|
template: `
|
|
4331
4399
|
<div class='k-form-field'>
|
|
4332
|
-
<
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
|
|
4340
|
-
|
|
4400
|
+
<kendo-label
|
|
4401
|
+
[text]="textForRepeatOn()"
|
|
4402
|
+
labelCssClass="k-form-label"
|
|
4403
|
+
(click)="onRepeatOnLabelClick()"
|
|
4404
|
+
></kendo-label>
|
|
4405
|
+
<div class="k-form-field-wrap">
|
|
4406
|
+
<ul class='k-radio-list'>
|
|
4407
|
+
<li class='k-radio-list-item'>
|
|
4408
|
+
<span class="k-radio-wrap">
|
|
4409
|
+
<input kendoRecurrenceRepeatOnRadioButton='monthday-{{uniqueId}}' />
|
|
4410
|
+
</span>
|
|
4411
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-monthday-{{uniqueId}}'>
|
|
4412
|
+
<ng-template [ngIf]="currentFreq === 'monthly'">
|
|
4413
|
+
{{ textFor('monthlyDay') }}
|
|
4414
|
+
</ng-template>
|
|
4415
|
+
</label>
|
|
4416
|
+
|
|
4417
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4418
|
+
<kendo-dropdownlist
|
|
4419
|
+
[data]='months'
|
|
4420
|
+
textField='text'
|
|
4421
|
+
valueField='value'
|
|
4422
|
+
[value]='currentMonthMonthDay'
|
|
4423
|
+
[valuePrimitive]='true'
|
|
4424
|
+
(valueChange)="onMonthChange($event, 'monthday')"
|
|
4425
|
+
[disabled]="isDisabled('monthday')"
|
|
4426
|
+
[style.width.px]="170"
|
|
4427
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4428
|
+
</kendo-dropdownlist>
|
|
4341
4429
|
</ng-template>
|
|
4342
|
-
</label>
|
|
4343
4430
|
|
|
4344
|
-
|
|
4431
|
+
<kendo-numerictextbox
|
|
4432
|
+
class="k-recur-monthday"
|
|
4433
|
+
[min]="numericOptions.min"
|
|
4434
|
+
[max]="numericOptions.max"
|
|
4435
|
+
[decimals]="0"
|
|
4436
|
+
[format]="numericOptions.format"
|
|
4437
|
+
[autoCorrect]="numericOptions.autoCorrect"
|
|
4438
|
+
[readonly]="numericOptions.readonly"
|
|
4439
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4440
|
+
[spinners]="numericOptions.spinners"
|
|
4441
|
+
[step]="numericOptions.step"
|
|
4442
|
+
[title]="numericOptions.title"
|
|
4443
|
+
[value]='monthDay'
|
|
4444
|
+
(valueChange)='onMonthDayChange($event)'
|
|
4445
|
+
[disabled]="isDisabled('monthday')">
|
|
4446
|
+
</kendo-numerictextbox>
|
|
4447
|
+
</li>
|
|
4448
|
+
<li class='k-radio-list-item'>
|
|
4449
|
+
<span class="k-radio-wrap">
|
|
4450
|
+
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4451
|
+
</span>
|
|
4452
|
+
<label [labelClass]="false" class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4453
|
+
|
|
4345
4454
|
<kendo-dropdownlist
|
|
4346
|
-
[data]='
|
|
4455
|
+
[data]='offsetPositions'
|
|
4347
4456
|
textField='text'
|
|
4348
4457
|
valueField='value'
|
|
4349
|
-
[value]='
|
|
4458
|
+
[value]='offset'
|
|
4350
4459
|
[valuePrimitive]='true'
|
|
4351
|
-
(valueChange)=
|
|
4352
|
-
[disabled]="isDisabled('
|
|
4353
|
-
[style.width.px]="170"
|
|
4460
|
+
(valueChange)='onOffsetPositionChange($event)'
|
|
4461
|
+
[disabled]="isDisabled('weekday')"
|
|
4354
4462
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4355
4463
|
</kendo-dropdownlist>
|
|
4356
|
-
</ng-template>
|
|
4357
|
-
|
|
4358
|
-
<kendo-numerictextbox
|
|
4359
|
-
[style.width.px]='70'
|
|
4360
|
-
[min]="numericOptions.min"
|
|
4361
|
-
[max]="numericOptions.max"
|
|
4362
|
-
[decimals]="0"
|
|
4363
|
-
[format]="numericOptions.format"
|
|
4364
|
-
[autoCorrect]="numericOptions.autoCorrect"
|
|
4365
|
-
[readonly]="numericOptions.readonly"
|
|
4366
|
-
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4367
|
-
[spinners]="numericOptions.spinners"
|
|
4368
|
-
[step]="numericOptions.step"
|
|
4369
|
-
[title]="numericOptions.title"
|
|
4370
|
-
[value]='monthDay'
|
|
4371
|
-
(valueChange)='onMonthDayChange($event)'
|
|
4372
|
-
[disabled]="isDisabled('monthday')"
|
|
4373
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4374
|
-
</kendo-numerictextbox>
|
|
4375
|
-
</li>
|
|
4376
|
-
<li class='k-radio-item'>
|
|
4377
|
-
<input kendoRecurrenceRepeatOnRadioButton='weekday-{{uniqueId}}' />
|
|
4378
|
-
<label class='k-radio-label' for='k-repeaton-weekday-{{uniqueId}}'></label>
|
|
4379
|
-
|
|
4380
|
-
<kendo-dropdownlist
|
|
4381
|
-
[data]='offsetPositions'
|
|
4382
|
-
textField='text'
|
|
4383
|
-
valueField='value'
|
|
4384
|
-
[value]='offset'
|
|
4385
|
-
[valuePrimitive]='true'
|
|
4386
|
-
(valueChange)='onOffsetPositionChange($event)'
|
|
4387
|
-
[disabled]="isDisabled('weekday')"
|
|
4388
|
-
[style.width.px]="170"
|
|
4389
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4390
|
-
</kendo-dropdownlist>
|
|
4391
|
-
|
|
4392
|
-
<kendo-dropdownlist
|
|
4393
|
-
[data]="extendedWeekDays"
|
|
4394
|
-
textField='text'
|
|
4395
|
-
valueField='value'
|
|
4396
|
-
[value]='weekDay'
|
|
4397
|
-
[valuePrimitive]='true'
|
|
4398
|
-
(valueChange)='onWeekDayChange($event)'
|
|
4399
|
-
[disabled]="isDisabled('weekday')"
|
|
4400
|
-
[style.width.px]="170"
|
|
4401
|
-
[style.margin]="'0 .4ex 0 1ex'">
|
|
4402
|
-
</kendo-dropdownlist>
|
|
4403
|
-
|
|
4404
|
-
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4405
|
-
<span>{{ textFor('yearlyOf') }}</span>
|
|
4406
4464
|
|
|
4407
4465
|
<kendo-dropdownlist
|
|
4408
|
-
[data]=
|
|
4466
|
+
[data]="extendedWeekDays"
|
|
4409
4467
|
textField='text'
|
|
4410
4468
|
valueField='value'
|
|
4411
|
-
[value]='
|
|
4469
|
+
[value]='weekDay'
|
|
4412
4470
|
[valuePrimitive]='true'
|
|
4413
|
-
(valueChange)=
|
|
4471
|
+
(valueChange)='onWeekDayChange($event)'
|
|
4414
4472
|
[disabled]="isDisabled('weekday')"
|
|
4415
|
-
[style.width.px]="170"
|
|
4416
4473
|
[style.margin]="'0 .4ex 0 1ex'">
|
|
4417
4474
|
</kendo-dropdownlist>
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4475
|
+
|
|
4476
|
+
<ng-template [ngIf]="currentFreq === 'yearly'">
|
|
4477
|
+
<span>{{ textFor('yearlyOf') }}</span>
|
|
4478
|
+
|
|
4479
|
+
<kendo-dropdownlist
|
|
4480
|
+
[data]='months'
|
|
4481
|
+
textField='text'
|
|
4482
|
+
valueField='value'
|
|
4483
|
+
[value]='currentMonthWeekDay'
|
|
4484
|
+
[valuePrimitive]='true'
|
|
4485
|
+
(valueChange)="onMonthChange($event, 'weekday')"
|
|
4486
|
+
[disabled]="isDisabled('weekday')"
|
|
4487
|
+
[style.margin]="'0 .4ex 0 1ex'">
|
|
4488
|
+
</kendo-dropdownlist>
|
|
4489
|
+
</ng-template>
|
|
4490
|
+
</li>
|
|
4491
|
+
</ul>
|
|
4492
|
+
</div>
|
|
4421
4493
|
</div>
|
|
4422
4494
|
`
|
|
4423
4495
|
}]
|
|
@@ -4497,6 +4569,7 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4497
4569
|
constructor(recurrence, localization) {
|
|
4498
4570
|
this.recurrence = recurrence;
|
|
4499
4571
|
this.localization = localization;
|
|
4572
|
+
this.cssClass = true;
|
|
4500
4573
|
this.numericOptions = {
|
|
4501
4574
|
min: 1,
|
|
4502
4575
|
format: '#',
|
|
@@ -4596,142 +4669,167 @@ class RecurrenceEndRuleEditorComponent {
|
|
|
4596
4669
|
}
|
|
4597
4670
|
}
|
|
4598
4671
|
RecurrenceEndRuleEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, deps: [{ token: RecurrenceService }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4599
|
-
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: `
|
|
4600
|
-
<div class=
|
|
4601
|
-
<
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4609
|
-
|
|
4610
|
-
|
|
4611
|
-
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
[
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
[
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4672
|
+
RecurrenceEndRuleEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: RecurrenceEndRuleEditorComponent, selector: "kendo-recurrence-end-rule-editor", inputs: { userNumericOptions: "userNumericOptions", userDatePickerOptions: "userDatePickerOptions" }, host: { properties: { "class.k-scheduler-recurrence-end-rule-editor": "this.cssClass" } }, viewQueries: [{ propertyName: "endRuleRadioButtons", predicate: EndRuleRadioButtonDirective, descendants: true }], ngImport: i0, template: `
|
|
4673
|
+
<div class="k-form-field">
|
|
4674
|
+
<kendo-label
|
|
4675
|
+
[text]="textFor('endLabel')"
|
|
4676
|
+
(click)="onEndLabelClick()"
|
|
4677
|
+
labelCssClass="k-form-label"
|
|
4678
|
+
></kendo-label>
|
|
4679
|
+
<div class="k-form-field-wrap">
|
|
4680
|
+
<ul class='k-radio-list'>
|
|
4681
|
+
<li class='k-radio-list-item'>
|
|
4682
|
+
<span class="k-radio-wrap">
|
|
4683
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4684
|
+
</span>
|
|
4685
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4686
|
+
</li>
|
|
4687
|
+
<li class='k-radio-list-item'>
|
|
4688
|
+
<span class="k-radio-wrap">
|
|
4689
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4690
|
+
</span>
|
|
4691
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4692
|
+
<kendo-numerictextbox
|
|
4693
|
+
#afterOccurances
|
|
4694
|
+
class="k-recur-count"
|
|
4695
|
+
[style.width.px]='70'
|
|
4696
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4697
|
+
[decimals]='0'
|
|
4698
|
+
[disabled]='isCountDisabled'
|
|
4699
|
+
[format]="numericOptions.format"
|
|
4700
|
+
[min]='numericOptions.min'
|
|
4701
|
+
[max]="numericOptions.max"
|
|
4702
|
+
[readonly]="numericOptions.readonly"
|
|
4703
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4704
|
+
[spinners]="numericOptions.spinners"
|
|
4705
|
+
[step]="numericOptions.step"
|
|
4706
|
+
[title]="numericOptions.title"
|
|
4707
|
+
[(value)]='countValue'
|
|
4708
|
+
(blur)="onCountBlur()"
|
|
4709
|
+
(valueChange)='onCountChange($event)'>
|
|
4710
|
+
</kendo-numerictextbox>
|
|
4711
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4712
|
+
</li>
|
|
4713
|
+
<li class='k-radio-list-item'>
|
|
4714
|
+
<span class="k-radio-wrap">
|
|
4715
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4716
|
+
</span>
|
|
4717
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4718
|
+
<kendo-datepicker
|
|
4719
|
+
class="k-recur-until"
|
|
4720
|
+
[style.width.px]='150'
|
|
4721
|
+
[disabled]='isUntilDisabled'
|
|
4722
|
+
[activeView]="datePickerOptions.activeView"
|
|
4723
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4724
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4725
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4726
|
+
[format]="datePickerOptions.format"
|
|
4727
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4728
|
+
[max]="datePickerOptions.max"
|
|
4729
|
+
[min]="datePickerOptions.min"
|
|
4730
|
+
[navigation]="datePickerOptions.navigation"
|
|
4731
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4732
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4733
|
+
[readonly]="datePickerOptions.readonly"
|
|
4734
|
+
[title]="datePickerOptions.title"
|
|
4735
|
+
[topView]="datePickerOptions.topView"
|
|
4736
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4737
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4738
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4739
|
+
[(value)]='untilValue'
|
|
4740
|
+
(blur)="onUntilBlur()"
|
|
4741
|
+
(valueChange)='onUntilChange($event)'>
|
|
4742
|
+
</kendo-datepicker>
|
|
4743
|
+
</li>
|
|
4744
|
+
</ul>
|
|
4745
|
+
</div>
|
|
4662
4746
|
</div>
|
|
4663
|
-
`, isInline: true, components: [{ type:
|
|
4747
|
+
`, isInline: true, components: [{ type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { type: i6.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }], directives: [{ type: EndRuleRadioButtonDirective, selector: "[kendoRecurrenceEndRuleRadioButton]", inputs: ["kendoRecurrenceEndRuleRadioButton"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }] });
|
|
4664
4748
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEndRuleEditorComponent, decorators: [{
|
|
4665
4749
|
type: Component,
|
|
4666
4750
|
args: [{
|
|
4667
4751
|
selector: 'kendo-recurrence-end-rule-editor',
|
|
4668
4752
|
template: `
|
|
4669
|
-
<div class=
|
|
4670
|
-
<
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
|
|
4684
|
-
|
|
4685
|
-
|
|
4686
|
-
|
|
4687
|
-
[
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
[
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4753
|
+
<div class="k-form-field">
|
|
4754
|
+
<kendo-label
|
|
4755
|
+
[text]="textFor('endLabel')"
|
|
4756
|
+
(click)="onEndLabelClick()"
|
|
4757
|
+
labelCssClass="k-form-label"
|
|
4758
|
+
></kendo-label>
|
|
4759
|
+
<div class="k-form-field-wrap">
|
|
4760
|
+
<ul class='k-radio-list'>
|
|
4761
|
+
<li class='k-radio-list-item'>
|
|
4762
|
+
<span class="k-radio-wrap">
|
|
4763
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-never-{{uniqueId}}' />
|
|
4764
|
+
</span>
|
|
4765
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-never-{{uniqueId}}'>{{ textFor('endNever') }}</label>
|
|
4766
|
+
</li>
|
|
4767
|
+
<li class='k-radio-list-item'>
|
|
4768
|
+
<span class="k-radio-wrap">
|
|
4769
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-count-{{uniqueId}}' />
|
|
4770
|
+
</span>
|
|
4771
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-count-{{uniqueId}}'>{{ textFor('endAfter') }}</label>
|
|
4772
|
+
<kendo-numerictextbox
|
|
4773
|
+
#afterOccurances
|
|
4774
|
+
class="k-recur-count"
|
|
4775
|
+
[style.width.px]='70'
|
|
4776
|
+
[autoCorrect]='numericOptions.autoCorrect'
|
|
4777
|
+
[decimals]='0'
|
|
4778
|
+
[disabled]='isCountDisabled'
|
|
4779
|
+
[format]="numericOptions.format"
|
|
4780
|
+
[min]='numericOptions.min'
|
|
4781
|
+
[max]="numericOptions.max"
|
|
4782
|
+
[readonly]="numericOptions.readonly"
|
|
4783
|
+
[selectOnFocus]="numericOptions.selectOnFocus"
|
|
4784
|
+
[spinners]="numericOptions.spinners"
|
|
4785
|
+
[step]="numericOptions.step"
|
|
4786
|
+
[title]="numericOptions.title"
|
|
4787
|
+
[(value)]='countValue'
|
|
4788
|
+
(blur)="onCountBlur()"
|
|
4789
|
+
(valueChange)='onCountChange($event)'>
|
|
4790
|
+
</kendo-numerictextbox>
|
|
4791
|
+
<span>{{ textFor('endOccurrence') }}</span>
|
|
4792
|
+
</li>
|
|
4793
|
+
<li class='k-radio-list-item'>
|
|
4794
|
+
<span class="k-radio-wrap">
|
|
4795
|
+
<input kendoRecurrenceEndRuleRadioButton='k-endrule-until-{{uniqueId}}' />
|
|
4796
|
+
</span>
|
|
4797
|
+
<label [labelClass]="false" class='k-radio-label' for='k-endrule-until-{{uniqueId}}'>{{ textFor('endOn') }}</label>
|
|
4798
|
+
<kendo-datepicker
|
|
4799
|
+
class="k-recur-until"
|
|
4800
|
+
[style.width.px]='150'
|
|
4801
|
+
[disabled]='isUntilDisabled'
|
|
4802
|
+
[activeView]="datePickerOptions.activeView"
|
|
4803
|
+
[bottomView]="datePickerOptions.bottomView"
|
|
4804
|
+
[disabledDatesValidation]="datePickerOptions.disabledDatesValidation"
|
|
4805
|
+
[focusedDate]="datePickerOptions.focusedDate"
|
|
4806
|
+
[format]="datePickerOptions.format"
|
|
4807
|
+
[formatPlaceholder]="datePickerOptions.formatPlaceHolder"
|
|
4808
|
+
[max]="datePickerOptions.max"
|
|
4809
|
+
[min]="datePickerOptions.min"
|
|
4810
|
+
[navigation]="datePickerOptions.navigation"
|
|
4811
|
+
[placeholder]="datePickerOptions.placeholder"
|
|
4812
|
+
[readOnlyInput]="datePickerOptions.readOnlyInput"
|
|
4813
|
+
[readonly]="datePickerOptions.readonly"
|
|
4814
|
+
[title]="datePickerOptions.title"
|
|
4815
|
+
[topView]="datePickerOptions.topView"
|
|
4816
|
+
[weekNumber]="datePickerOptions.weekNumber"
|
|
4817
|
+
[disabledDates]="datePickerOptions.disabledDates"
|
|
4818
|
+
[popupSettings]="datePickerOptions.popupSettings"
|
|
4819
|
+
[(value)]='untilValue'
|
|
4820
|
+
(blur)="onUntilBlur()"
|
|
4821
|
+
(valueChange)='onUntilChange($event)'>
|
|
4822
|
+
</kendo-datepicker>
|
|
4823
|
+
</li>
|
|
4824
|
+
</ul>
|
|
4825
|
+
</div>
|
|
4731
4826
|
</div>
|
|
4732
4827
|
`
|
|
4733
4828
|
}]
|
|
4734
|
-
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: {
|
|
4829
|
+
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$1.LocalizationService }]; }, propDecorators: { cssClass: [{
|
|
4830
|
+
type: HostBinding,
|
|
4831
|
+
args: ['class.k-scheduler-recurrence-end-rule-editor']
|
|
4832
|
+
}], userNumericOptions: [{
|
|
4735
4833
|
type: Input
|
|
4736
4834
|
}], userDatePickerOptions: [{
|
|
4737
4835
|
type: Input
|
|
@@ -5048,24 +5146,26 @@ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
5048
5146
|
<kendo-recurrence-frequency-editor>
|
|
5049
5147
|
</kendo-recurrence-frequency-editor>
|
|
5050
5148
|
|
|
5051
|
-
<
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5149
|
+
<div class="k-recur-view">
|
|
5150
|
+
<kendo-recurrence-interval-editor
|
|
5151
|
+
*ngIf="currentFreq !== 'never'"
|
|
5152
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5153
|
+
</kendo-recurrence-interval-editor>
|
|
5154
|
+
|
|
5155
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5156
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5157
|
+
|
|
5158
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5159
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5160
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5161
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5162
|
+
|
|
5163
|
+
<kendo-recurrence-end-rule-editor
|
|
5164
|
+
*ngIf="currentFreq !== 'never'"
|
|
5165
|
+
[userNumericOptions]="endAfterOptions"
|
|
5166
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5167
|
+
</kendo-recurrence-end-rule-editor>
|
|
5168
|
+
</div>
|
|
5069
5169
|
`, isInline: true, components: [{ type: RecurrenceFrequencyEditorComponent, selector: "kendo-recurrence-frequency-editor" }, { type: RecurrenceIntervalEditorComponent, selector: "kendo-recurrence-interval-editor", inputs: ["userNumericOptions"] }, { type: RecurrenceWeekdayRuleEditorComponent, selector: "kendo-recurrence-weekday-rule-editor" }, { type: RecurrenceMonthlyYearlyEditorComponent, selector: "kendo-recurrence-monthly-yearly-editor", inputs: ["userNumericOptions"] }, { type: RecurrenceEndRuleEditorComponent, selector: "kendo-recurrence-end-rule-editor", inputs: ["userNumericOptions", "userDatePickerOptions"] }], directives: [{ type: RecurrenceEditorLocalizedMessagesDirective, selector: "[kendoRecurrenceEditorLocalizedMessages]" }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
5070
5170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RecurrenceEditorComponent, decorators: [{
|
|
5071
5171
|
type: Component,
|
|
@@ -5188,24 +5288,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5188
5288
|
<kendo-recurrence-frequency-editor>
|
|
5189
5289
|
</kendo-recurrence-frequency-editor>
|
|
5190
5290
|
|
|
5191
|
-
<
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5291
|
+
<div class="k-recur-view">
|
|
5292
|
+
<kendo-recurrence-interval-editor
|
|
5293
|
+
*ngIf="currentFreq !== 'never'"
|
|
5294
|
+
[userNumericOptions]="repeatEveryOptions">
|
|
5295
|
+
</kendo-recurrence-interval-editor>
|
|
5296
|
+
|
|
5297
|
+
<kendo-recurrence-weekday-rule-editor *ngIf="currentFreq === 'weekly'">
|
|
5298
|
+
</kendo-recurrence-weekday-rule-editor>
|
|
5299
|
+
|
|
5300
|
+
<kendo-recurrence-monthly-yearly-editor
|
|
5301
|
+
*ngIf="currentFreq === 'monthly' || currentFreq === 'yearly'"
|
|
5302
|
+
[userNumericOptions]="repeatOnOptions">
|
|
5303
|
+
</kendo-recurrence-monthly-yearly-editor>
|
|
5304
|
+
|
|
5305
|
+
<kendo-recurrence-end-rule-editor
|
|
5306
|
+
*ngIf="currentFreq !== 'never'"
|
|
5307
|
+
[userNumericOptions]="endAfterOptions"
|
|
5308
|
+
[userDatePickerOptions]="endOnOptions">
|
|
5309
|
+
</kendo-recurrence-end-rule-editor>
|
|
5310
|
+
</div>
|
|
5209
5311
|
`
|
|
5210
5312
|
}]
|
|
5211
5313
|
}], ctorParameters: function () { return [{ type: RecurrenceService }, { type: i1$4.IntlService }]; }, propDecorators: { cssClass: [{
|
|
@@ -5244,6 +5346,8 @@ class EditDialogComponent {
|
|
|
5244
5346
|
this.timezone = 'Etc/UTC';
|
|
5245
5347
|
this.setTimeZone = false;
|
|
5246
5348
|
this.setSeparateStartEndTimeZones = false;
|
|
5349
|
+
this.saveIcon = saveIcon;
|
|
5350
|
+
this.cancelIcon = cancelOutlineIcon;
|
|
5247
5351
|
this.subs = this.editService.changed.subscribe(() => {
|
|
5248
5352
|
this.ngZone.run(() => { this.onChange(); });
|
|
5249
5353
|
});
|
|
@@ -5263,7 +5367,7 @@ class EditDialogComponent {
|
|
|
5263
5367
|
if (this.editTemplate) {
|
|
5264
5368
|
return this.editTemplate.autoFocusedElement;
|
|
5265
5369
|
}
|
|
5266
|
-
return '.k-form-field
|
|
5370
|
+
return '.k-form-field input';
|
|
5267
5371
|
}
|
|
5268
5372
|
get isEditingSeries() {
|
|
5269
5373
|
return this.editMode === EditMode.Series && Boolean(this.formGroup.get(this.fields.recurrenceRule));
|
|
@@ -5432,121 +5536,163 @@ class EditDialogComponent {
|
|
|
5432
5536
|
}
|
|
5433
5537
|
EditDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, deps: [{ token: i0.NgZone }, { token: EditService }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: FocusService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5434
5538
|
EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: EditDialogComponent, selector: "kendo-scheduler-edit-dialog", inputs: { resources: "resources", timezone: "timezone", weekStart: "weekStart", fields: "fields", editTemplate: "editTemplate" }, viewQueries: [{ propertyName: "multipleResourceEditors", predicate: MultipleResourceEditorComponent, descendants: true }, { propertyName: "singleResourceEditors", predicate: SingleResourceEditorComponent, descendants: true }], ngImport: i0, template: `
|
|
5435
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5539
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5436
5540
|
<ng-container *ngIf='!editTemplate'>
|
|
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
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5464
|
-
<
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5468
|
-
|
|
5469
|
-
|
|
5470
|
-
|
|
5471
|
-
|
|
5541
|
+
<form
|
|
5542
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5543
|
+
novalidate
|
|
5544
|
+
[formGroup]='formGroup'
|
|
5545
|
+
>
|
|
5546
|
+
<!-- Title -->
|
|
5547
|
+
<kendo-formfield>
|
|
5548
|
+
<kendo-label
|
|
5549
|
+
[for]="title"
|
|
5550
|
+
[text]="textFor('editorEventTitle')"
|
|
5551
|
+
labelCssClass="k-form-label"
|
|
5552
|
+
></kendo-label>
|
|
5553
|
+
<input
|
|
5554
|
+
#title
|
|
5555
|
+
kendoTextBox
|
|
5556
|
+
placeholder='Title'
|
|
5557
|
+
[formControl]='getControl(fields.title)'
|
|
5558
|
+
/>
|
|
5559
|
+
</kendo-formfield>
|
|
5560
|
+
|
|
5561
|
+
<!-- Start -->
|
|
5562
|
+
<kendo-formfield>
|
|
5563
|
+
<kendo-label
|
|
5564
|
+
[for]="startDateTimePicker"
|
|
5565
|
+
[text]="textFor('editorEventStart')"
|
|
5566
|
+
labelCssClass="k-form-label"
|
|
5567
|
+
></kendo-label>
|
|
5568
|
+
<kendo-scheduler-datetime-picker
|
|
5569
|
+
#startDateTimePicker
|
|
5570
|
+
[formControl]='getControl(fields.start)'
|
|
5571
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5572
|
+
></kendo-scheduler-datetime-picker>
|
|
5573
|
+
</kendo-formfield>
|
|
5574
|
+
|
|
5575
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5576
|
+
<ng-container>
|
|
5577
|
+
<span class="k-checkbox-wrap">
|
|
5578
|
+
<input
|
|
5579
|
+
id='k-set-timezone'
|
|
5580
|
+
type='checkbox'
|
|
5581
|
+
kendoCheckBox
|
|
5582
|
+
formControlName='startTimezoneCheckbox'
|
|
5583
|
+
/>
|
|
5584
|
+
</span>
|
|
5585
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5472
5586
|
</ng-container>
|
|
5473
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5587
|
+
</kendo-formfield>
|
|
5588
|
+
|
|
5589
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5590
|
+
<kendo-label
|
|
5591
|
+
[for]="startTzPicker"
|
|
5592
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5593
|
+
labelCssClass="k-form-label"
|
|
5594
|
+
></kendo-label>
|
|
5595
|
+
<kendo-timezone-editor
|
|
5596
|
+
#startTzPicker
|
|
5597
|
+
[width]="undefined"
|
|
5598
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5599
|
+
></kendo-timezone-editor>
|
|
5600
|
+
</kendo-formfield>
|
|
5601
|
+
|
|
5602
|
+
<!-- End -->
|
|
5603
|
+
<kendo-formfield>
|
|
5604
|
+
<kendo-label
|
|
5605
|
+
[for]="endDateTimePicker"
|
|
5606
|
+
[text]="textFor('editorEventEnd')"
|
|
5607
|
+
labelCssClass="k-form-label"
|
|
5608
|
+
></kendo-label>
|
|
5609
|
+
<kendo-scheduler-datetime-picker
|
|
5610
|
+
#endDateTimePicker
|
|
5611
|
+
[formControl]='getControl(fields.end)'
|
|
5612
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5613
|
+
></kendo-scheduler-datetime-picker>
|
|
5614
|
+
</kendo-formfield>
|
|
5615
|
+
|
|
5616
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5617
|
+
<ng-container>
|
|
5618
|
+
<span class="k-checkbox-wrap">
|
|
5619
|
+
<input
|
|
5620
|
+
id='k-use-separate'
|
|
5621
|
+
type='checkbox'
|
|
5622
|
+
kendoCheckBox
|
|
5623
|
+
formControlName='endTimezoneCheckbox'
|
|
5624
|
+
/>
|
|
5625
|
+
</span>
|
|
5626
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5499
5627
|
</ng-container>
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
</
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
<!-- Resources -->
|
|
5529
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5530
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5531
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5532
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5533
|
-
</label>
|
|
5534
|
-
<div class='k-form-field-wrap'>
|
|
5535
|
-
<kendo-multiple-resource-editor
|
|
5536
|
-
*ngIf='resource.multiple'
|
|
5537
|
-
[formControl]='getControl(resource.field)'
|
|
5538
|
-
[resource]='resource'>
|
|
5539
|
-
</kendo-multiple-resource-editor>
|
|
5540
|
-
<kendo-single-resource-editor
|
|
5541
|
-
*ngIf='!resource.multiple'
|
|
5542
|
-
[formControl]='getControl(resource.field)'
|
|
5543
|
-
[resource]='resource'>
|
|
5544
|
-
</kendo-single-resource-editor>
|
|
5545
|
-
</div>
|
|
5546
|
-
</div>
|
|
5628
|
+
</kendo-formfield>
|
|
5629
|
+
|
|
5630
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5631
|
+
<kendo-label
|
|
5632
|
+
[for]="endTzPicker"
|
|
5633
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5634
|
+
labelCssClass="k-form-label"
|
|
5635
|
+
></kendo-label>
|
|
5636
|
+
<kendo-timezone-editor
|
|
5637
|
+
#endTzPicker
|
|
5638
|
+
[width]="undefined"
|
|
5639
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5640
|
+
></kendo-timezone-editor>
|
|
5641
|
+
</kendo-formfield>
|
|
5642
|
+
|
|
5643
|
+
<!-- All day -->
|
|
5644
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5645
|
+
<ng-container>
|
|
5646
|
+
<span class="k-checkbox-wrap">
|
|
5647
|
+
<input
|
|
5648
|
+
id='k-is-allday-chkbox'
|
|
5649
|
+
type='checkbox'
|
|
5650
|
+
kendoCheckBox
|
|
5651
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5652
|
+
/>
|
|
5653
|
+
</span>
|
|
5654
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5547
5655
|
</ng-container>
|
|
5548
|
-
</
|
|
5549
|
-
|
|
5656
|
+
</kendo-formfield>
|
|
5657
|
+
|
|
5658
|
+
<!-- Series -->
|
|
5659
|
+
<kendo-recurrence-editor
|
|
5660
|
+
*ngIf="isEditingSeries"
|
|
5661
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5662
|
+
[start]='recurrenceStart'
|
|
5663
|
+
[timezone]='eventTimezone'
|
|
5664
|
+
[weekStart]='weekStart'
|
|
5665
|
+
></kendo-recurrence-editor>
|
|
5666
|
+
|
|
5667
|
+
<!-- Description -->
|
|
5668
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5669
|
+
<kendo-label
|
|
5670
|
+
[for]="description"
|
|
5671
|
+
[text]="textFor('editorEventDescription')"
|
|
5672
|
+
labelCssClass="k-form-label"
|
|
5673
|
+
></kendo-label>
|
|
5674
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5675
|
+
</kendo-formfield>
|
|
5676
|
+
|
|
5677
|
+
<!-- Resources -->
|
|
5678
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5679
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5680
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5681
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5682
|
+
</label>
|
|
5683
|
+
<kendo-multiple-resource-editor
|
|
5684
|
+
*ngIf='resource.multiple'
|
|
5685
|
+
[formControl]='getControl(resource.field)'
|
|
5686
|
+
[resource]='resource'>
|
|
5687
|
+
</kendo-multiple-resource-editor>
|
|
5688
|
+
<kendo-single-resource-editor
|
|
5689
|
+
*ngIf='!resource.multiple'
|
|
5690
|
+
[formControl]='getControl(resource.field)'
|
|
5691
|
+
[resource]='resource'>
|
|
5692
|
+
</kendo-single-resource-editor>
|
|
5693
|
+
</kendo-formfield>
|
|
5694
|
+
</ng-container>
|
|
5695
|
+
</form>
|
|
5550
5696
|
</ng-container>
|
|
5551
5697
|
|
|
5552
5698
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5563,132 +5709,186 @@ EditDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
5563
5709
|
</form>
|
|
5564
5710
|
</ng-container>
|
|
5565
5711
|
|
|
5566
|
-
<kendo-dialog-actions>
|
|
5567
|
-
<button
|
|
5568
|
-
|
|
5712
|
+
<kendo-dialog-actions layout="start">
|
|
5713
|
+
<button
|
|
5714
|
+
kendoButton
|
|
5715
|
+
themeColor="primary"
|
|
5716
|
+
icon="save"
|
|
5717
|
+
[svgIcon]="saveIcon"
|
|
5718
|
+
[disabled]="!formGroup.valid"
|
|
5719
|
+
(click)="onSave($event)"
|
|
5720
|
+
>{{ textFor('save') }}</button>
|
|
5721
|
+
<button
|
|
5722
|
+
kendoButton
|
|
5723
|
+
icon="cancel-outline"
|
|
5724
|
+
[svgIcon]="cancelIcon"
|
|
5725
|
+
(click)="onCancel($event)"
|
|
5726
|
+
>{{ textFor('cancel') }}</button>
|
|
5569
5727
|
</kendo-dialog-actions>
|
|
5570
5728
|
</kendo-dialog>
|
|
5571
|
-
`, isInline: true, components: [{ type: i1.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation", "themeColor"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: ["isAllDay"], outputs: ["valueChange"] }, { type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type:
|
|
5729
|
+
`, isInline: true, components: [{ type: i1.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation", "themeColor"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i5.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: SchedulerDateTimePickerComponent, selector: "kendo-scheduler-datetime-picker", inputs: ["isAllDay"], outputs: ["valueChange"] }, { type: TimeZoneEditorComponent, selector: "kendo-timezone-editor", inputs: ["width"], outputs: ["valueChange"] }, { type: RecurrenceEditorComponent, selector: "kendo-recurrence-editor", inputs: ["start", "timezone", "weekStart", "repeatEveryOptions", "endAfterOptions", "repeatOnOptions", "endOnOptions"], outputs: ["valueChange"], exportAs: ["kendoRecurrenceEditor"] }, { type: MultipleResourceEditorComponent, selector: "kendo-multiple-resource-editor" }, { type: SingleResourceEditorComponent, selector: "kendo-single-resource-editor" }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i14.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i14.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i14.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i5.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i14.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i14.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i14.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i14.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i5.CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { type: i14.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i3.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { type: i5.TextAreaDirective, selector: "textarea[kendoTextArea]", inputs: ["autoSize", "value"], outputs: ["valueChange"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
5572
5730
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditDialogComponent, decorators: [{
|
|
5573
5731
|
type: Component,
|
|
5574
5732
|
args: [{
|
|
5575
5733
|
selector: 'kendo-scheduler-edit-dialog',
|
|
5576
5734
|
template: `
|
|
5577
|
-
<kendo-dialog (close)='onClose()' [minWidth]='
|
|
5735
|
+
<kendo-dialog (close)='onClose()' [minWidth]='400' *ngIf='isActive' title='{{ textFor("editorTitle") }}' class='k-scheduler-edit-dialog' [autoFocusedElement]="autoFocusedElement">
|
|
5578
5736
|
<ng-container *ngIf='!editTemplate'>
|
|
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
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
<
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5737
|
+
<form
|
|
5738
|
+
class='k-scheduler-edit-form k-form k-form-md k-form-vertical'
|
|
5739
|
+
novalidate
|
|
5740
|
+
[formGroup]='formGroup'
|
|
5741
|
+
>
|
|
5742
|
+
<!-- Title -->
|
|
5743
|
+
<kendo-formfield>
|
|
5744
|
+
<kendo-label
|
|
5745
|
+
[for]="title"
|
|
5746
|
+
[text]="textFor('editorEventTitle')"
|
|
5747
|
+
labelCssClass="k-form-label"
|
|
5748
|
+
></kendo-label>
|
|
5749
|
+
<input
|
|
5750
|
+
#title
|
|
5751
|
+
kendoTextBox
|
|
5752
|
+
placeholder='Title'
|
|
5753
|
+
[formControl]='getControl(fields.title)'
|
|
5754
|
+
/>
|
|
5755
|
+
</kendo-formfield>
|
|
5756
|
+
|
|
5757
|
+
<!-- Start -->
|
|
5758
|
+
<kendo-formfield>
|
|
5759
|
+
<kendo-label
|
|
5760
|
+
[for]="startDateTimePicker"
|
|
5761
|
+
[text]="textFor('editorEventStart')"
|
|
5762
|
+
labelCssClass="k-form-label"
|
|
5763
|
+
></kendo-label>
|
|
5764
|
+
<kendo-scheduler-datetime-picker
|
|
5765
|
+
#startDateTimePicker
|
|
5766
|
+
[formControl]='getControl(fields.start)'
|
|
5767
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5768
|
+
></kendo-scheduler-datetime-picker>
|
|
5769
|
+
</kendo-formfield>
|
|
5770
|
+
|
|
5771
|
+
<kendo-formfield *ngIf="hasStartTimeZone">
|
|
5772
|
+
<ng-container>
|
|
5773
|
+
<span class="k-checkbox-wrap">
|
|
5774
|
+
<input
|
|
5775
|
+
id='k-set-timezone'
|
|
5776
|
+
type='checkbox'
|
|
5777
|
+
kendoCheckBox
|
|
5778
|
+
formControlName='startTimezoneCheckbox'
|
|
5779
|
+
/>
|
|
5780
|
+
</span>
|
|
5781
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-set-timezone'>{{ textFor('editorEventTimeZone') }}</label>
|
|
5614
5782
|
</ng-container>
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
5619
|
-
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
|
|
5633
|
-
|
|
5634
|
-
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5783
|
+
</kendo-formfield>
|
|
5784
|
+
|
|
5785
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible">
|
|
5786
|
+
<kendo-label
|
|
5787
|
+
[for]="startTzPicker"
|
|
5788
|
+
[text]="textFor('editorEventStartTimeZone')"
|
|
5789
|
+
labelCssClass="k-form-label"
|
|
5790
|
+
></kendo-label>
|
|
5791
|
+
<kendo-timezone-editor
|
|
5792
|
+
#startTzPicker
|
|
5793
|
+
[width]="undefined"
|
|
5794
|
+
[formControl]='getControl(fields.startTimezone)'
|
|
5795
|
+
></kendo-timezone-editor>
|
|
5796
|
+
</kendo-formfield>
|
|
5797
|
+
|
|
5798
|
+
<!-- End -->
|
|
5799
|
+
<kendo-formfield>
|
|
5800
|
+
<kendo-label
|
|
5801
|
+
[for]="endDateTimePicker"
|
|
5802
|
+
[text]="textFor('editorEventEnd')"
|
|
5803
|
+
labelCssClass="k-form-label"
|
|
5804
|
+
></kendo-label>
|
|
5805
|
+
<kendo-scheduler-datetime-picker
|
|
5806
|
+
#endDateTimePicker
|
|
5807
|
+
[formControl]='getControl(fields.end)'
|
|
5808
|
+
[isAllDay]='getFormValue(fields.isAllDay)?.value'
|
|
5809
|
+
></kendo-scheduler-datetime-picker>
|
|
5810
|
+
</kendo-formfield>
|
|
5811
|
+
|
|
5812
|
+
<kendo-formfield *ngIf="isStartTimeZoneVisible && hasEndTimeZone">
|
|
5813
|
+
<ng-container>
|
|
5814
|
+
<span class="k-checkbox-wrap">
|
|
5815
|
+
<input
|
|
5816
|
+
id='k-use-separate'
|
|
5817
|
+
type='checkbox'
|
|
5818
|
+
kendoCheckBox
|
|
5819
|
+
formControlName='endTimezoneCheckbox'
|
|
5820
|
+
/>
|
|
5821
|
+
</span>
|
|
5822
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-use-separate'>{{ textFor('editorEventSeparateTimeZones') }}</label>
|
|
5641
5823
|
</ng-container>
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
</
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
<!-- Resources -->
|
|
5671
|
-
<ng-container *ngFor='let resource of resources'>
|
|
5672
|
-
<div class='k-form-field' *ngIf='getFormValue(resource.field)'>
|
|
5673
|
-
<label class='k-form-label' (click)="onResourceClick(resource)">
|
|
5674
|
-
{{ resource.name ? resource.name : resource.field }}
|
|
5675
|
-
</label>
|
|
5676
|
-
<div class='k-form-field-wrap'>
|
|
5677
|
-
<kendo-multiple-resource-editor
|
|
5678
|
-
*ngIf='resource.multiple'
|
|
5679
|
-
[formControl]='getControl(resource.field)'
|
|
5680
|
-
[resource]='resource'>
|
|
5681
|
-
</kendo-multiple-resource-editor>
|
|
5682
|
-
<kendo-single-resource-editor
|
|
5683
|
-
*ngIf='!resource.multiple'
|
|
5684
|
-
[formControl]='getControl(resource.field)'
|
|
5685
|
-
[resource]='resource'>
|
|
5686
|
-
</kendo-single-resource-editor>
|
|
5687
|
-
</div>
|
|
5688
|
-
</div>
|
|
5824
|
+
</kendo-formfield>
|
|
5825
|
+
|
|
5826
|
+
<kendo-formfield *ngIf="isEndTimeZoneVisible">
|
|
5827
|
+
<kendo-label
|
|
5828
|
+
[for]="endTzPicker"
|
|
5829
|
+
[text]="textFor('editorEventEndTimeZone')"
|
|
5830
|
+
labelCssClass="k-form-label"
|
|
5831
|
+
></kendo-label>
|
|
5832
|
+
<kendo-timezone-editor
|
|
5833
|
+
#endTzPicker
|
|
5834
|
+
[width]="undefined"
|
|
5835
|
+
[formControl]='getControl(fields.endTimezone)'
|
|
5836
|
+
></kendo-timezone-editor>
|
|
5837
|
+
</kendo-formfield>
|
|
5838
|
+
|
|
5839
|
+
<!-- All day -->
|
|
5840
|
+
<kendo-formfield *ngIf="hasAllDay">
|
|
5841
|
+
<ng-container>
|
|
5842
|
+
<span class="k-checkbox-wrap">
|
|
5843
|
+
<input
|
|
5844
|
+
id='k-is-allday-chkbox'
|
|
5845
|
+
type='checkbox'
|
|
5846
|
+
kendoCheckBox
|
|
5847
|
+
[formControl]='getControl(fields.isAllDay)'
|
|
5848
|
+
/>
|
|
5849
|
+
</span>
|
|
5850
|
+
<label [labelClass]="false" class='k-checkbox-label' for='k-is-allday-chkbox'>{{ textFor('editorEventAllDay') }}</label>
|
|
5689
5851
|
</ng-container>
|
|
5690
|
-
</
|
|
5691
|
-
|
|
5852
|
+
</kendo-formfield>
|
|
5853
|
+
|
|
5854
|
+
<!-- Series -->
|
|
5855
|
+
<kendo-recurrence-editor
|
|
5856
|
+
*ngIf="isEditingSeries"
|
|
5857
|
+
[formControl]='getControl(fields.recurrenceRule)'
|
|
5858
|
+
[start]='recurrenceStart'
|
|
5859
|
+
[timezone]='eventTimezone'
|
|
5860
|
+
[weekStart]='weekStart'
|
|
5861
|
+
></kendo-recurrence-editor>
|
|
5862
|
+
|
|
5863
|
+
<!-- Description -->
|
|
5864
|
+
<kendo-formfield *ngIf='getFormValue(fields.description)'>
|
|
5865
|
+
<kendo-label
|
|
5866
|
+
[for]="description"
|
|
5867
|
+
[text]="textFor('editorEventDescription')"
|
|
5868
|
+
labelCssClass="k-form-label"
|
|
5869
|
+
></kendo-label>
|
|
5870
|
+
<textarea #description kendoTextArea [formControl]='getControl(fields.description)'></textarea>
|
|
5871
|
+
</kendo-formfield>
|
|
5872
|
+
|
|
5873
|
+
<!-- Resources -->
|
|
5874
|
+
<ng-container *ngFor='let resource of resources'>
|
|
5875
|
+
<kendo-formfield *ngIf='getFormValue(resource.field)'>
|
|
5876
|
+
<label class='k-label k-form-label' (click)="onResourceClick(resource)">
|
|
5877
|
+
{{ resource.name ? resource.name : resource.field }}
|
|
5878
|
+
</label>
|
|
5879
|
+
<kendo-multiple-resource-editor
|
|
5880
|
+
*ngIf='resource.multiple'
|
|
5881
|
+
[formControl]='getControl(resource.field)'
|
|
5882
|
+
[resource]='resource'>
|
|
5883
|
+
</kendo-multiple-resource-editor>
|
|
5884
|
+
<kendo-single-resource-editor
|
|
5885
|
+
*ngIf='!resource.multiple'
|
|
5886
|
+
[formControl]='getControl(resource.field)'
|
|
5887
|
+
[resource]='resource'>
|
|
5888
|
+
</kendo-single-resource-editor>
|
|
5889
|
+
</kendo-formfield>
|
|
5890
|
+
</ng-container>
|
|
5891
|
+
</form>
|
|
5692
5892
|
</ng-container>
|
|
5693
5893
|
|
|
5694
5894
|
<ng-container *ngIf='editTemplate'>
|
|
@@ -5705,9 +5905,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5705
5905
|
</form>
|
|
5706
5906
|
</ng-container>
|
|
5707
5907
|
|
|
5708
|
-
<kendo-dialog-actions>
|
|
5709
|
-
<button
|
|
5710
|
-
|
|
5908
|
+
<kendo-dialog-actions layout="start">
|
|
5909
|
+
<button
|
|
5910
|
+
kendoButton
|
|
5911
|
+
themeColor="primary"
|
|
5912
|
+
icon="save"
|
|
5913
|
+
[svgIcon]="saveIcon"
|
|
5914
|
+
[disabled]="!formGroup.valid"
|
|
5915
|
+
(click)="onSave($event)"
|
|
5916
|
+
>{{ textFor('save') }}</button>
|
|
5917
|
+
<button
|
|
5918
|
+
kendoButton
|
|
5919
|
+
icon="cancel-outline"
|
|
5920
|
+
[svgIcon]="cancelIcon"
|
|
5921
|
+
(click)="onCancel($event)"
|
|
5922
|
+
>{{ textFor('cancel') }}</button>
|
|
5711
5923
|
</kendo-dialog-actions>
|
|
5712
5924
|
</kendo-dialog>
|
|
5713
5925
|
`
|
|
@@ -8320,7 +8532,7 @@ AgendaTaskItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
8320
8532
|
<kendo-icon-wrapper name="x" [svgIcon]="xIcon"></kendo-icon-wrapper>
|
|
8321
8533
|
</span>
|
|
8322
8534
|
</div>
|
|
8323
|
-
`, 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 });
|
|
8535
|
+
`, 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 });
|
|
8324
8536
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaTaskItemComponent, decorators: [{
|
|
8325
8537
|
type: Component,
|
|
8326
8538
|
args: [{
|
|
@@ -8372,9 +8584,9 @@ class AgendaListComponent {
|
|
|
8372
8584
|
constructor(intlService, localization) {
|
|
8373
8585
|
this.intlService = intlService;
|
|
8374
8586
|
this.localization = localization;
|
|
8587
|
+
this.classes = true;
|
|
8375
8588
|
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
8376
8589
|
this.caretAltRightIcon = caretAltRightIcon;
|
|
8377
|
-
this.classes = true;
|
|
8378
8590
|
}
|
|
8379
8591
|
extractDataItem(item) {
|
|
8380
8592
|
return item.type === "group" ? item.dataItem.items[0] : item.dataItem;
|
|
@@ -8423,6 +8635,12 @@ class AgendaListComponent {
|
|
|
8423
8635
|
});
|
|
8424
8636
|
}
|
|
8425
8637
|
}
|
|
8638
|
+
get arrowIcons() {
|
|
8639
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
8640
|
+
}
|
|
8641
|
+
get arrowSVGIcons() {
|
|
8642
|
+
return !this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
8643
|
+
}
|
|
8426
8644
|
}
|
|
8427
8645
|
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 });
|
|
8428
8646
|
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: `
|
|
@@ -8443,16 +8661,16 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8443
8661
|
<div *ngIf="!agendaTimeTemplate">
|
|
8444
8662
|
<kendo-icon-wrapper
|
|
8445
8663
|
*ngIf="extractDataItem(item).tail"
|
|
8446
|
-
name="
|
|
8447
|
-
[svgIcon]="
|
|
8664
|
+
[name]="arrowIcons[0]"
|
|
8665
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8448
8666
|
>
|
|
8449
8667
|
</kendo-icon-wrapper>
|
|
8450
8668
|
|
|
8451
8669
|
{{ formatTime(extractDataItem(item)) }}
|
|
8452
8670
|
<kendo-icon-wrapper
|
|
8453
8671
|
*ngIf="extractDataItem(item).head"
|
|
8454
|
-
name="
|
|
8455
|
-
[svgIcon]="
|
|
8672
|
+
[name]="arrowIcons[1]"
|
|
8673
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8456
8674
|
>
|
|
8457
8675
|
</kendo-icon-wrapper>
|
|
8458
8676
|
</div>
|
|
@@ -8472,7 +8690,7 @@ AgendaListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
8472
8690
|
</ng-container>
|
|
8473
8691
|
</tbody>
|
|
8474
8692
|
</table>
|
|
8475
|
-
`, 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"] }] });
|
|
8693
|
+
`, 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"] }] });
|
|
8476
8694
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AgendaListComponent, decorators: [{
|
|
8477
8695
|
type: Component,
|
|
8478
8696
|
args: [{
|
|
@@ -8496,16 +8714,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
8496
8714
|
<div *ngIf="!agendaTimeTemplate">
|
|
8497
8715
|
<kendo-icon-wrapper
|
|
8498
8716
|
*ngIf="extractDataItem(item).tail"
|
|
8499
|
-
name="
|
|
8500
|
-
[svgIcon]="
|
|
8717
|
+
[name]="arrowIcons[0]"
|
|
8718
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
8501
8719
|
>
|
|
8502
8720
|
</kendo-icon-wrapper>
|
|
8503
8721
|
|
|
8504
8722
|
{{ formatTime(extractDataItem(item)) }}
|
|
8505
8723
|
<kendo-icon-wrapper
|
|
8506
8724
|
*ngIf="extractDataItem(item).head"
|
|
8507
|
-
name="
|
|
8508
|
-
[svgIcon]="
|
|
8725
|
+
[name]="arrowIcons[1]"
|
|
8726
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
8509
8727
|
>
|
|
8510
8728
|
</kendo-icon-wrapper>
|
|
8511
8729
|
</div>
|
|
@@ -9123,6 +9341,8 @@ class BaseViewItem {
|
|
|
9123
9341
|
this.renderer = renderer;
|
|
9124
9342
|
this.localeId = localeId;
|
|
9125
9343
|
this.className = true;
|
|
9344
|
+
this.caretAltLeftIcon = caretAltLeftIcon;
|
|
9345
|
+
this.caretAltRightIcon = caretAltRightIcon;
|
|
9126
9346
|
this.subs = new Subscription();
|
|
9127
9347
|
}
|
|
9128
9348
|
get taskIndex() {
|
|
@@ -9231,6 +9451,12 @@ class BaseViewItem {
|
|
|
9231
9451
|
this.slotService.unregisterItem(this);
|
|
9232
9452
|
this.subs.unsubscribe();
|
|
9233
9453
|
}
|
|
9454
|
+
get arrowIcons() {
|
|
9455
|
+
return !this.localization.rtl ? ['caret-alt-left', 'caret-alt-right'] : ['caret-alt-right', 'caret-alt-left'];
|
|
9456
|
+
}
|
|
9457
|
+
get arrowSVGIcons() {
|
|
9458
|
+
return this.localization.rtl ? [this.caretAltLeftIcon, this.caretAltRightIcon] : [this.caretAltRightIcon, this.caretAltLeftIcon];
|
|
9459
|
+
}
|
|
9234
9460
|
}
|
|
9235
9461
|
BaseViewItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BaseViewItem, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
|
|
9236
9462
|
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 });
|
|
@@ -9615,8 +9841,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9615
9841
|
<span class="k-event-actions">
|
|
9616
9842
|
<kendo-icon-wrapper
|
|
9617
9843
|
*ngIf="item.tail"
|
|
9618
|
-
name="
|
|
9619
|
-
[svgIcon]="
|
|
9844
|
+
[name]="arrowIcons[0]"
|
|
9845
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9620
9846
|
>
|
|
9621
9847
|
</kendo-icon-wrapper>
|
|
9622
9848
|
<kendo-icon-wrapper
|
|
@@ -9645,8 +9871,8 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9645
9871
|
</span>
|
|
9646
9872
|
<kendo-icon-wrapper
|
|
9647
9873
|
*ngIf="item.head"
|
|
9648
|
-
name="
|
|
9649
|
-
[svgIcon]="
|
|
9874
|
+
[name]="arrowIcons[1]"
|
|
9875
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9650
9876
|
>
|
|
9651
9877
|
</kendo-icon-wrapper>
|
|
9652
9878
|
</span>
|
|
@@ -9655,7 +9881,7 @@ MonthViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
9655
9881
|
<span class="k-resize-handle k-resize-w"></span>
|
|
9656
9882
|
<span class="k-resize-handle k-resize-e"></span>
|
|
9657
9883
|
</ng-container>
|
|
9658
|
-
`, 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"] }] });
|
|
9884
|
+
`, 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"] }] });
|
|
9659
9885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthViewItemComponent, decorators: [{
|
|
9660
9886
|
type: Component,
|
|
9661
9887
|
args: [{
|
|
@@ -9665,8 +9891,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9665
9891
|
<span class="k-event-actions">
|
|
9666
9892
|
<kendo-icon-wrapper
|
|
9667
9893
|
*ngIf="item.tail"
|
|
9668
|
-
name="
|
|
9669
|
-
[svgIcon]="
|
|
9894
|
+
[name]="arrowIcons[0]"
|
|
9895
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
9670
9896
|
>
|
|
9671
9897
|
</kendo-icon-wrapper>
|
|
9672
9898
|
<kendo-icon-wrapper
|
|
@@ -9695,8 +9921,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
9695
9921
|
</span>
|
|
9696
9922
|
<kendo-icon-wrapper
|
|
9697
9923
|
*ngIf="item.head"
|
|
9698
|
-
name="
|
|
9699
|
-
[svgIcon]="
|
|
9924
|
+
[name]="arrowIcons[1]"
|
|
9925
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
9700
9926
|
>
|
|
9701
9927
|
</kendo-icon-wrapper>
|
|
9702
9928
|
</span>
|
|
@@ -10948,7 +11174,7 @@ MonthSlotComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
10948
11174
|
>
|
|
10949
11175
|
</kendo-icon-wrapper>
|
|
10950
11176
|
</div>
|
|
10951
|
-
`, 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 } });
|
|
11177
|
+
`, 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 } });
|
|
10952
11178
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: MonthSlotComponent, decorators: [{
|
|
10953
11179
|
type: Component,
|
|
10954
11180
|
args: [{
|
|
@@ -11916,7 +12142,7 @@ ViewFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
11916
12142
|
<span class="k-button-text">{{ item.text }}</span>
|
|
11917
12143
|
</button>
|
|
11918
12144
|
</span>
|
|
11919
|
-
`, isInline: true, components: [{ type:
|
|
12145
|
+
`, isInline: true, components: [{ type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i11.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: FocusableDirective, selector: "[kendoSchedulerFocusIndex]", inputs: ["kendoSchedulerFocusIndex", "containerType"] }] });
|
|
11920
12146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ViewFooterComponent, decorators: [{
|
|
11921
12147
|
type: Component,
|
|
11922
12148
|
args: [{
|
|
@@ -12947,8 +13173,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12947
13173
|
<span class="k-event-actions">
|
|
12948
13174
|
<kendo-icon-wrapper
|
|
12949
13175
|
*ngIf="item.tail && !vertical"
|
|
12950
|
-
name="
|
|
12951
|
-
[svgIcon]="
|
|
13176
|
+
[name]="arrowIcons[0]"
|
|
13177
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
12952
13178
|
>
|
|
12953
13179
|
</kendo-icon-wrapper>
|
|
12954
13180
|
<kendo-icon-wrapper
|
|
@@ -12978,8 +13204,8 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
12978
13204
|
</span>
|
|
12979
13205
|
<kendo-icon-wrapper
|
|
12980
13206
|
*ngIf="item.head && !vertical"
|
|
12981
|
-
name="
|
|
12982
|
-
[svgIcon]="
|
|
13207
|
+
[name]="arrowIcons[1]"
|
|
13208
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
12983
13209
|
>
|
|
12984
13210
|
</kendo-icon-wrapper>
|
|
12985
13211
|
</span>
|
|
@@ -13001,7 +13227,7 @@ DayTimeViewItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
13001
13227
|
<span class="k-resize-handle k-resize-w"></span>
|
|
13002
13228
|
<span class="k-resize-handle k-resize-e"></span>
|
|
13003
13229
|
</ng-container>
|
|
13004
|
-
`, 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"] }] });
|
|
13230
|
+
`, 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"] }] });
|
|
13005
13231
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DayTimeViewItemComponent, decorators: [{
|
|
13006
13232
|
type: Component,
|
|
13007
13233
|
args: [{
|
|
@@ -13011,8 +13237,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13011
13237
|
<span class="k-event-actions">
|
|
13012
13238
|
<kendo-icon-wrapper
|
|
13013
13239
|
*ngIf="item.tail && !vertical"
|
|
13014
|
-
name="
|
|
13015
|
-
[svgIcon]="
|
|
13240
|
+
[name]="arrowIcons[0]"
|
|
13241
|
+
[svgIcon]="arrowSVGIcons[0]"
|
|
13016
13242
|
>
|
|
13017
13243
|
</kendo-icon-wrapper>
|
|
13018
13244
|
<kendo-icon-wrapper
|
|
@@ -13042,8 +13268,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
13042
13268
|
</span>
|
|
13043
13269
|
<kendo-icon-wrapper
|
|
13044
13270
|
*ngIf="item.head && !vertical"
|
|
13045
|
-
name="
|
|
13046
|
-
[svgIcon]="
|
|
13271
|
+
[name]="arrowIcons[1]"
|
|
13272
|
+
[svgIcon]="arrowSVGIcons[1]"
|
|
13047
13273
|
>
|
|
13048
13274
|
</kendo-icon-wrapper>
|
|
13049
13275
|
</span>
|
|
@@ -16735,7 +16961,8 @@ const importedKendoModules = [
|
|
|
16735
16961
|
DropDownsModule,
|
|
16736
16962
|
ReactiveFormsModule,
|
|
16737
16963
|
SharedModule,
|
|
16738
|
-
LabelModule
|
|
16964
|
+
LabelModule,
|
|
16965
|
+
FormFieldModule
|
|
16739
16966
|
];
|
|
16740
16967
|
/**
|
|
16741
16968
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -16822,7 +17049,8 @@ SchedulerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
16822
17049
|
DropDownsModule,
|
|
16823
17050
|
ReactiveFormsModule,
|
|
16824
17051
|
SharedModule,
|
|
16825
|
-
LabelModule
|
|
17052
|
+
LabelModule,
|
|
17053
|
+
FormFieldModule], exports: [AgendaViewComponent,
|
|
16826
17054
|
MonthViewModule,
|
|
16827
17055
|
MultiDayViewModule,
|
|
16828
17056
|
ReactiveEditingDirective,
|
|
@@ -17381,7 +17609,7 @@ PDFCommandDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
17381
17609
|
</span>
|
|
17382
17610
|
<span *ngIf="iconClass" class="k-button-icon" [ngClass]="iconClass"></span>
|
|
17383
17611
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
17384
|
-
`, 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"] }] });
|
|
17612
|
+
`, 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"] }] });
|
|
17385
17613
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: PDFCommandDirective, decorators: [{
|
|
17386
17614
|
type: Component,
|
|
17387
17615
|
args: [{
|