@progress/kendo-vue-scheduler 3.5.3 → 3.5.4
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/dist/cdn/js/kendo-vue-scheduler.js +1 -1
- package/dist/es/Scheduler.js +0 -1
- package/dist/es/components/footer/bussiness-hours/BusinessHours.js +10 -14
- package/dist/es/components/header/navigation/NavigationDatePicker.js +194 -18
- package/dist/es/components/header/navigation/SchedulerNavigation.js +16 -16
- package/dist/es/components/header/view-selector/ViewSelectorList.js +2 -2
- package/dist/es/items/SchedulerItem.js +8 -8
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tasks/SchedulerTask.js +2 -2
- package/dist/es/views/agenda/AgendaViewBody.js +2 -2
- package/dist/esm/Scheduler.js +0 -1
- package/dist/esm/components/footer/bussiness-hours/BusinessHours.js +10 -14
- package/dist/esm/components/header/navigation/NavigationDatePicker.js +194 -18
- package/dist/esm/components/header/navigation/SchedulerNavigation.js +16 -16
- package/dist/esm/components/header/view-selector/ViewSelectorList.js +2 -2
- package/dist/esm/items/SchedulerItem.js +8 -8
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/tasks/SchedulerTask.js +2 -2
- package/dist/esm/views/agenda/AgendaViewBody.js +2 -2
- package/dist/npm/Scheduler.js +0 -1
- package/dist/npm/components/footer/bussiness-hours/BusinessHours.js +10 -14
- package/dist/npm/components/header/navigation/NavigationDatePicker.js +200 -20
- package/dist/npm/components/header/navigation/SchedulerNavigation.js +16 -16
- package/dist/npm/components/header/view-selector/ViewSelectorList.js +2 -2
- package/dist/npm/items/SchedulerItem.js +8 -8
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tasks/SchedulerTask.js +2 -2
- package/dist/npm/views/agenda/AgendaViewBody.js +2 -2
- package/package.json +12 -12
|
@@ -29,11 +29,19 @@ var isV3 = allVue.version && allVue.version[0] === '3';
|
|
|
29
29
|
|
|
30
30
|
var kendo_vue_dateinputs_1 = require("@progress/kendo-vue-dateinputs");
|
|
31
31
|
|
|
32
|
-
var DatePickerToggleButton_1 = require("./DatePickerToggleButton");
|
|
33
|
-
|
|
34
32
|
var kendo_date_math_1 = require("@progress/kendo-date-math");
|
|
35
33
|
|
|
36
|
-
var
|
|
34
|
+
var kendo_vue_popup_1 = require("@progress/kendo-vue-popup");
|
|
35
|
+
|
|
36
|
+
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
37
|
+
|
|
38
|
+
var main_1 = require("../../../constants/main");
|
|
39
|
+
|
|
40
|
+
var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
|
|
41
|
+
|
|
42
|
+
var main_2 = require("../../../utils/main");
|
|
43
|
+
|
|
44
|
+
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
37
45
|
|
|
38
46
|
var EMPTY_DATE_INPUT = function EMPTY_DATE_INPUT() {
|
|
39
47
|
return null;
|
|
@@ -45,14 +53,52 @@ var EMPTY_DATE_INPUT = function EMPTY_DATE_INPUT() {
|
|
|
45
53
|
|
|
46
54
|
var NavigationDatePickerVue2 = {
|
|
47
55
|
name: 'KendoNavigationDatePicker',
|
|
48
|
-
props:
|
|
56
|
+
props: {
|
|
49
57
|
value: [Date, Object]
|
|
50
|
-
}
|
|
58
|
+
},
|
|
51
59
|
inject: {
|
|
60
|
+
kendoIntlService: {
|
|
61
|
+
default: null
|
|
62
|
+
},
|
|
52
63
|
ks: {
|
|
53
64
|
default: null
|
|
54
65
|
}
|
|
55
66
|
},
|
|
67
|
+
created: function created() {
|
|
68
|
+
this.buttonId = (0, kendo_vue_common_1.guid)();
|
|
69
|
+
this._popupId = 'popup' + (0, kendo_vue_common_1.guid)();
|
|
70
|
+
},
|
|
71
|
+
data: function data() {
|
|
72
|
+
return {
|
|
73
|
+
show: false,
|
|
74
|
+
focused: false,
|
|
75
|
+
media: 'desktop'
|
|
76
|
+
};
|
|
77
|
+
},
|
|
78
|
+
mounted: function mounted() {
|
|
79
|
+
this.buttonRef = this.$refs.button;
|
|
80
|
+
this.calculateMedia();
|
|
81
|
+
this.observer = new window.ResizeObserver(this.calculateMedia);
|
|
82
|
+
this.observer.observe(this.ks.scheduler.$el);
|
|
83
|
+
},
|
|
84
|
+
destroyed: !!isV3 ? undefined : function () {
|
|
85
|
+
if (this.observer) {
|
|
86
|
+
this.observer.disconnect();
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
// @ts-ignore
|
|
90
|
+
unmounted: function unmounted() {
|
|
91
|
+
if (this.observer) {
|
|
92
|
+
this.observer.disconnect();
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
updated: function updated() {
|
|
96
|
+
if (this.show && this.focused) {
|
|
97
|
+
if (this.$refs.calendar) {
|
|
98
|
+
this.$refs.calendar.focus();
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
56
102
|
// @ts-ignore
|
|
57
103
|
setup: !isV3 ? undefined : function () {
|
|
58
104
|
var v3 = !!isV3;
|
|
@@ -62,35 +108,169 @@ var NavigationDatePickerVue2 = {
|
|
|
62
108
|
},
|
|
63
109
|
// @ts-ignore
|
|
64
110
|
render: function render(createElement) {
|
|
111
|
+
var _this2 = this;
|
|
112
|
+
|
|
65
113
|
var h = gh || createElement;
|
|
66
114
|
var normalized = kendo_date_math_1.ZonedDate.fromLocalDate(this.$props.value || this.ks.currentDate, this.ks.timezone);
|
|
67
115
|
var value = (0, kendo_date_math_1.getDate)(normalized);
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
116
|
+
var show = this.show;
|
|
117
|
+
var isMonthView = this.ks.dateRange.end.getTime() - this.ks.dateRange.start.getTime() > main_1.MS_PER_DAY * 27;
|
|
118
|
+
var intl = (0, kendo_vue_intl_1.provideIntlService)(this);
|
|
119
|
+
var text = intl.format(this.ks.dateFormat, isMonthView ? this.ks.currentDate : this.ks.dateRange.zonedStart, isMonthView ? this.ks.currentDate : this.ks.dateRange.zonedEnd.addDays(-1));
|
|
120
|
+
var shortText = intl.format(this.ks.shortDateFormat, isMonthView ? this.ks.currentDate : this.ks.dateRange.zonedStart, isMonthView ? this.ks.currentDate : this.ks.dateRange.zonedEnd.addDays(-1));
|
|
121
|
+
return (// @ts-ignore function children
|
|
122
|
+
h(kendo_vue_buttons_1.Button, {
|
|
123
|
+
ref: 'button',
|
|
124
|
+
id: this.buttonId,
|
|
74
125
|
attrs: this.v3 ? undefined : {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
126
|
+
id: this.buttonId,
|
|
127
|
+
fillMode: 'flat',
|
|
128
|
+
tabIndex: -1,
|
|
129
|
+
icon: "calendar"
|
|
78
130
|
},
|
|
79
|
-
|
|
80
|
-
value: value,
|
|
81
|
-
onChange: this.handleChange,
|
|
131
|
+
onFocus: this.onFocus,
|
|
82
132
|
on: this.v3 ? undefined : {
|
|
83
|
-
"
|
|
133
|
+
"focus": this.onFocus,
|
|
134
|
+
"blur": this.onBlur,
|
|
135
|
+
"click": this.handleClick
|
|
136
|
+
},
|
|
137
|
+
onBlur: this.onBlur,
|
|
138
|
+
fillMode: 'flat',
|
|
139
|
+
"class": 'k-nav-current',
|
|
140
|
+
tabIndex: -1,
|
|
141
|
+
icon: "calendar",
|
|
142
|
+
onClick: this.handleClick
|
|
143
|
+
}, this.v3 ? function () {
|
|
144
|
+
return [_this2.media === 'desktop' ? text : shortText, // @ts-ignore function children
|
|
145
|
+
h(kendo_vue_popup_1.Popup, {
|
|
146
|
+
id: _this2._popupId,
|
|
147
|
+
attrs: _this2.v3 ? undefined : {
|
|
148
|
+
id: _this2._popupId,
|
|
149
|
+
anchor: _this2.buttonId,
|
|
150
|
+
show: show
|
|
151
|
+
},
|
|
152
|
+
anchor: _this2.buttonId,
|
|
153
|
+
show: show
|
|
154
|
+
}, _this2.v3 ? function () {
|
|
155
|
+
return [h(kendo_vue_dateinputs_1.Calendar, {
|
|
156
|
+
ref: 'calendar',
|
|
157
|
+
onBlur: _this2.onCalendarBlur,
|
|
158
|
+
on: _this2.v3 ? undefined : {
|
|
159
|
+
"blur": _this2.onCalendarBlur,
|
|
160
|
+
"change": _this2.handleChange,
|
|
161
|
+
"keydown": _this2.calendarKeydown
|
|
162
|
+
},
|
|
163
|
+
onChange: _this2.handleChange,
|
|
164
|
+
onKeydown: _this2.calendarKeydown,
|
|
165
|
+
value: value,
|
|
166
|
+
attrs: _this2.v3 ? undefined : {
|
|
167
|
+
value: value
|
|
168
|
+
}
|
|
169
|
+
})];
|
|
170
|
+
} : [h(kendo_vue_dateinputs_1.Calendar, {
|
|
171
|
+
ref: 'calendar',
|
|
172
|
+
onBlur: _this2.onCalendarBlur,
|
|
173
|
+
on: _this2.v3 ? undefined : {
|
|
174
|
+
"blur": _this2.onCalendarBlur,
|
|
175
|
+
"change": _this2.handleChange,
|
|
176
|
+
"keydown": _this2.calendarKeydown
|
|
177
|
+
},
|
|
178
|
+
onChange: _this2.handleChange,
|
|
179
|
+
onKeydown: _this2.calendarKeydown,
|
|
180
|
+
value: value,
|
|
181
|
+
attrs: _this2.v3 ? undefined : {
|
|
182
|
+
value: value
|
|
183
|
+
}
|
|
184
|
+
})])];
|
|
185
|
+
} : [_this2.media === 'desktop' ? text : shortText, h(kendo_vue_popup_1.Popup, {
|
|
186
|
+
id: _this2._popupId,
|
|
187
|
+
attrs: _this2.v3 ? undefined : {
|
|
188
|
+
id: _this2._popupId,
|
|
189
|
+
anchor: _this2.buttonId,
|
|
190
|
+
show: show
|
|
191
|
+
},
|
|
192
|
+
anchor: _this2.buttonId,
|
|
193
|
+
show: show
|
|
194
|
+
}, _this2.v3 ? function () {
|
|
195
|
+
return [h(kendo_vue_dateinputs_1.Calendar, {
|
|
196
|
+
ref: 'calendar',
|
|
197
|
+
onBlur: _this2.onCalendarBlur,
|
|
198
|
+
on: _this2.v3 ? undefined : {
|
|
199
|
+
"blur": _this2.onCalendarBlur,
|
|
200
|
+
"change": _this2.handleChange,
|
|
201
|
+
"keydown": _this2.calendarKeydown
|
|
202
|
+
},
|
|
203
|
+
onChange: _this2.handleChange,
|
|
204
|
+
onKeydown: _this2.calendarKeydown,
|
|
205
|
+
value: value,
|
|
206
|
+
attrs: _this2.v3 ? undefined : {
|
|
207
|
+
value: value
|
|
208
|
+
}
|
|
209
|
+
})];
|
|
210
|
+
} : [h(kendo_vue_dateinputs_1.Calendar, {
|
|
211
|
+
ref: 'calendar',
|
|
212
|
+
onBlur: _this2.onCalendarBlur,
|
|
213
|
+
on: _this2.v3 ? undefined : {
|
|
214
|
+
"blur": _this2.onCalendarBlur,
|
|
215
|
+
"change": _this2.handleChange,
|
|
216
|
+
"keydown": _this2.calendarKeydown
|
|
217
|
+
},
|
|
218
|
+
onChange: _this2.handleChange,
|
|
219
|
+
onKeydown: _this2.calendarKeydown,
|
|
220
|
+
value: value,
|
|
221
|
+
attrs: _this2.v3 ? undefined : {
|
|
222
|
+
value: value
|
|
84
223
|
}
|
|
85
|
-
})
|
|
224
|
+
})])])
|
|
86
225
|
);
|
|
87
226
|
},
|
|
88
227
|
methods: {
|
|
89
228
|
handleChange: function handleChange(event) {
|
|
90
|
-
var normalizedValue = kendo_date_math_1.ZonedDate.fromUTCDate((0,
|
|
229
|
+
var normalizedValue = kendo_date_math_1.ZonedDate.fromUTCDate((0, main_2.toUTCDateTime)(event.value), this.ks.timezone);
|
|
91
230
|
this.$emit('change', __assign(__assign({}, event), {
|
|
92
231
|
value: normalizedValue
|
|
93
232
|
}));
|
|
233
|
+
this.hideAndFocusButton();
|
|
234
|
+
},
|
|
235
|
+
handleClick: function handleClick() {
|
|
236
|
+
this.show = !this.show;
|
|
237
|
+
},
|
|
238
|
+
onFocus: function onFocus() {
|
|
239
|
+
clearTimeout(this._blurTimeout);
|
|
240
|
+
this.focused = true;
|
|
241
|
+
},
|
|
242
|
+
onBlur: function onBlur() {
|
|
243
|
+
this.focused = false;
|
|
244
|
+
},
|
|
245
|
+
onCalendarBlur: function onCalendarBlur() {
|
|
246
|
+
clearTimeout(this._blurTimeout);
|
|
247
|
+
this.createBlurTimeout();
|
|
248
|
+
},
|
|
249
|
+
createBlurTimeout: function createBlurTimeout() {
|
|
250
|
+
var _this = this;
|
|
251
|
+
|
|
252
|
+
var that = this;
|
|
253
|
+
this._blurTimeout = setTimeout(function () {
|
|
254
|
+
_this.focused = false;
|
|
255
|
+
var isInPopup = document.activeElement && document.activeElement.closest("#".concat(that._popupId));
|
|
256
|
+
var isButtonActive = kendo_vue_common_1.canUseDOM && document.activeElement !== that.$refs.button.$el;
|
|
257
|
+
|
|
258
|
+
if (isButtonActive && !isInPopup) {
|
|
259
|
+
that.show = false;
|
|
260
|
+
}
|
|
261
|
+
}, 200);
|
|
262
|
+
},
|
|
263
|
+
calendarKeydown: function calendarKeydown(e) {
|
|
264
|
+
if (e.keyCode === kendo_vue_common_1.Keys.esc) {
|
|
265
|
+
this.hideAndFocusButton();
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
hideAndFocusButton: function hideAndFocusButton() {
|
|
269
|
+
this.show = false;
|
|
270
|
+
this.$refs.button.focus();
|
|
271
|
+
},
|
|
272
|
+
calculateMedia: function calculateMedia() {
|
|
273
|
+
this.media = window.matchMedia('(min-width: 1024px)').matches ? 'desktop' : 'mobile';
|
|
94
274
|
}
|
|
95
275
|
}
|
|
96
276
|
};
|
|
@@ -98,12 +98,12 @@ var SchedulerNavigationVue2 = {
|
|
|
98
98
|
return [h("span", {
|
|
99
99
|
"class": "k-button-text"
|
|
100
100
|
}, [h("span", {
|
|
101
|
-
"class": "k-icon k-i-
|
|
101
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
102
102
|
})])];
|
|
103
103
|
} : [h("span", {
|
|
104
104
|
"class": "k-button-text"
|
|
105
105
|
}, [h("span", {
|
|
106
|
-
"class": "k-icon k-i-
|
|
106
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
107
107
|
})])]), // @ts-ignore function children
|
|
108
108
|
h(kendo_vue_buttons_1.Button, {
|
|
109
109
|
role: "button",
|
|
@@ -125,12 +125,12 @@ var SchedulerNavigationVue2 = {
|
|
|
125
125
|
return [h("span", {
|
|
126
126
|
"class": "k-button-text"
|
|
127
127
|
}, [h("span", {
|
|
128
|
-
"class": "k-icon k-i-
|
|
128
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
129
129
|
})])];
|
|
130
130
|
} : [h("span", {
|
|
131
131
|
"class": "k-button-text"
|
|
132
132
|
}, [h("span", {
|
|
133
|
-
"class": "k-icon k-i-
|
|
133
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
134
134
|
})])])];
|
|
135
135
|
} : [h(kendo_vue_buttons_1.Button, {
|
|
136
136
|
role: "button",
|
|
@@ -169,12 +169,12 @@ var SchedulerNavigationVue2 = {
|
|
|
169
169
|
return [h("span", {
|
|
170
170
|
"class": "k-button-text"
|
|
171
171
|
}, [h("span", {
|
|
172
|
-
"class": "k-icon k-i-
|
|
172
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
173
173
|
})])];
|
|
174
174
|
} : [h("span", {
|
|
175
175
|
"class": "k-button-text"
|
|
176
176
|
}, [h("span", {
|
|
177
|
-
"class": "k-icon k-i-
|
|
177
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
178
178
|
})])]), h(kendo_vue_buttons_1.Button, {
|
|
179
179
|
role: "button",
|
|
180
180
|
attrs: _this.v3 ? undefined : {
|
|
@@ -195,12 +195,12 @@ var SchedulerNavigationVue2 = {
|
|
|
195
195
|
return [h("span", {
|
|
196
196
|
"class": "k-button-text"
|
|
197
197
|
}, [h("span", {
|
|
198
|
-
"class": "k-icon k-i-
|
|
198
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
199
199
|
})])];
|
|
200
200
|
} : [h("span", {
|
|
201
201
|
"class": "k-button-text"
|
|
202
202
|
}, [h("span", {
|
|
203
|
-
"class": "k-icon k-i-
|
|
203
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
204
204
|
})])])])];
|
|
205
205
|
} : [h(kendo_vue_buttons_1.ButtonGroup, {
|
|
206
206
|
"class": "k-scheduler-navigation"
|
|
@@ -242,12 +242,12 @@ var SchedulerNavigationVue2 = {
|
|
|
242
242
|
return [h("span", {
|
|
243
243
|
"class": "k-button-text"
|
|
244
244
|
}, [h("span", {
|
|
245
|
-
"class": "k-icon k-i-
|
|
245
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
246
246
|
})])];
|
|
247
247
|
} : [h("span", {
|
|
248
248
|
"class": "k-button-text"
|
|
249
249
|
}, [h("span", {
|
|
250
|
-
"class": "k-icon k-i-
|
|
250
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
251
251
|
})])]), h(kendo_vue_buttons_1.Button, {
|
|
252
252
|
role: "button",
|
|
253
253
|
attrs: _this.v3 ? undefined : {
|
|
@@ -268,12 +268,12 @@ var SchedulerNavigationVue2 = {
|
|
|
268
268
|
return [h("span", {
|
|
269
269
|
"class": "k-button-text"
|
|
270
270
|
}, [h("span", {
|
|
271
|
-
"class": "k-icon k-i-
|
|
271
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
272
272
|
})])];
|
|
273
273
|
} : [h("span", {
|
|
274
274
|
"class": "k-button-text"
|
|
275
275
|
}, [h("span", {
|
|
276
|
-
"class": "k-icon k-i-
|
|
276
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
277
277
|
})])])];
|
|
278
278
|
} : [h(kendo_vue_buttons_1.Button, {
|
|
279
279
|
role: "button",
|
|
@@ -312,12 +312,12 @@ var SchedulerNavigationVue2 = {
|
|
|
312
312
|
return [h("span", {
|
|
313
313
|
"class": "k-button-text"
|
|
314
314
|
}, [h("span", {
|
|
315
|
-
"class": "k-icon k-i-
|
|
315
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
316
316
|
})])];
|
|
317
317
|
} : [h("span", {
|
|
318
318
|
"class": "k-button-text"
|
|
319
319
|
}, [h("span", {
|
|
320
|
-
"class": "k-icon k-i-
|
|
320
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
321
321
|
})])]), h(kendo_vue_buttons_1.Button, {
|
|
322
322
|
role: "button",
|
|
323
323
|
attrs: _this.v3 ? undefined : {
|
|
@@ -338,12 +338,12 @@ var SchedulerNavigationVue2 = {
|
|
|
338
338
|
return [h("span", {
|
|
339
339
|
"class": "k-button-text"
|
|
340
340
|
}, [h("span", {
|
|
341
|
-
"class": "k-icon k-i-
|
|
341
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
342
342
|
})])];
|
|
343
343
|
} : [h("span", {
|
|
344
344
|
"class": "k-button-text"
|
|
345
345
|
}, [h("span", {
|
|
346
|
-
"class": "k-icon k-i-
|
|
346
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
347
347
|
})])])])])
|
|
348
348
|
);
|
|
349
349
|
},
|
|
@@ -137,10 +137,10 @@ var ViewSelectorListVue2 = {
|
|
|
137
137
|
text: activeView.title || activeName
|
|
138
138
|
}, this.v3 ? function () {
|
|
139
139
|
return [h("span", {
|
|
140
|
-
"class": "k-icon k-i-
|
|
140
|
+
"class": "k-icon k-i-caret-alt-down"
|
|
141
141
|
})];
|
|
142
142
|
} : [h("span", {
|
|
143
|
-
"class": "k-icon k-i-
|
|
143
|
+
"class": "k-icon k-i-caret-alt-down"
|
|
144
144
|
})]), this.media === 'desktop' && // @ts-ignore function children
|
|
145
145
|
h(kendo_vue_buttons_1.ButtonGroup, {
|
|
146
146
|
"class": "k-scheduler-views"
|
|
@@ -325,11 +325,11 @@ var SchedulerItemVue2 = {
|
|
|
325
325
|
}, [!_this2.$props.resizeHint && h("span", {
|
|
326
326
|
"class": "k-event-actions"
|
|
327
327
|
}, [_this2.$props.tail && h("span", {
|
|
328
|
-
"class": "k-icon k-i-
|
|
328
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
329
329
|
}), _this2.$props.isRecurring && !_this2.$props.isException && h("span", {
|
|
330
|
-
"class": "k-icon k-i-
|
|
330
|
+
"class": "k-icon k-i-arrow-rotate-cw"
|
|
331
331
|
}), !_this2.$props.isRecurring && _this2.$props.isException && h("span", {
|
|
332
|
-
"class": "k-icon k-i-
|
|
332
|
+
"class": "k-icon k-i-arrows-no-repeat"
|
|
333
333
|
})]), _this2.formItem && !_this2.showOccurrenceDialog && _this2.currentEditable.edit && h(SchedulerForm_1.SchedulerForm, {
|
|
334
334
|
dataItem: _this2.formItem,
|
|
335
335
|
attrs: _this2.v3 ? undefined : {
|
|
@@ -392,7 +392,7 @@ var SchedulerItemVue2 = {
|
|
|
392
392
|
}, [h("span", {
|
|
393
393
|
"class": "k-icon k-i-close"
|
|
394
394
|
})]), _this2.$props.head && h("span", {
|
|
395
|
-
"class": "k-icon k-i-
|
|
395
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
396
396
|
})]), _this2.currentEditable.resize && _this2.$props.vertical && [// @ts-ignore function children
|
|
397
397
|
h(kendo_vue_common_1.Draggable, {
|
|
398
398
|
onPress: _this2.handleResizePress,
|
|
@@ -518,11 +518,11 @@ var SchedulerItemVue2 = {
|
|
|
518
518
|
}, [!_this2.$props.resizeHint && h("span", {
|
|
519
519
|
"class": "k-event-actions"
|
|
520
520
|
}, [_this2.$props.tail && h("span", {
|
|
521
|
-
"class": "k-icon k-i-
|
|
521
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
522
522
|
}), _this2.$props.isRecurring && !_this2.$props.isException && h("span", {
|
|
523
|
-
"class": "k-icon k-i-
|
|
523
|
+
"class": "k-icon k-i-arrow-rotate-cw"
|
|
524
524
|
}), !_this2.$props.isRecurring && _this2.$props.isException && h("span", {
|
|
525
|
-
"class": "k-icon k-i-
|
|
525
|
+
"class": "k-icon k-i-arrows-no-repeat"
|
|
526
526
|
})]), _this2.formItem && !_this2.showOccurrenceDialog && _this2.currentEditable.edit && h(SchedulerForm_1.SchedulerForm, {
|
|
527
527
|
dataItem: _this2.formItem,
|
|
528
528
|
attrs: _this2.v3 ? undefined : {
|
|
@@ -585,7 +585,7 @@ var SchedulerItemVue2 = {
|
|
|
585
585
|
}, [h("span", {
|
|
586
586
|
"class": "k-icon k-i-close"
|
|
587
587
|
})]), _this2.$props.head && h("span", {
|
|
588
|
-
"class": "k-icon k-i-
|
|
588
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
589
589
|
})]), _this2.currentEditable.resize && _this2.$props.vertical && [h(kendo_vue_common_1.Draggable, {
|
|
590
590
|
onPress: _this2.handleResizePress,
|
|
591
591
|
on: _this2.v3 ? undefined : {
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-scheduler',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1662729534,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
|
@@ -151,9 +151,9 @@ var SchedulerTaskVue2 = {
|
|
|
151
151
|
backgroundColor: color
|
|
152
152
|
}
|
|
153
153
|
}), this.$props.isRecurring && h("span", {
|
|
154
|
-
"class": "k-icon k-i-
|
|
154
|
+
"class": "k-icon k-i-arrow-rotate-cw"
|
|
155
155
|
}), this.$props.isException && h("span", {
|
|
156
|
-
"class": "k-icon k-i-
|
|
156
|
+
"class": "k-icon k-i-arrows-no-repeat"
|
|
157
157
|
}), this.$props.title, defaultSlot, editable.remove && h("a", {
|
|
158
158
|
"class": "k-link k-event-delete",
|
|
159
159
|
title: deleteMessage,
|
|
@@ -135,9 +135,9 @@ var AgendaViewBodyVue2 = {
|
|
|
135
135
|
}, [h("div", {
|
|
136
136
|
"class": "k-scheduler-cell k-scheduler-timecolumn"
|
|
137
137
|
}, [h("div", [item.tail && h("span", {
|
|
138
|
-
"class": "k-icon k-i-
|
|
138
|
+
"class": "k-icon k-i-caret-alt-left"
|
|
139
139
|
}), item.isAllDay ? localization.toLanguageString(main_1.allDay, main_1.messages[main_1.allDay]) : getTimeFormat(this.intl, item), item.head && h("span", {
|
|
140
|
-
"class": "k-icon k-i-
|
|
140
|
+
"class": "k-icon k-i-caret-alt-right"
|
|
141
141
|
})])]), h("div", {
|
|
142
142
|
"class": "k-scheduler-cell"
|
|
143
143
|
}, [h(EditTask, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-scheduler",
|
|
3
3
|
"description": "Kendo UI for Vue Scheduler package",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@progress/kendo-data-query": "^1.5.1",
|
|
50
50
|
"@progress/kendo-draggable": "^3.0.1",
|
|
51
51
|
"@progress/kendo-recurrence": "^1.0.1",
|
|
52
|
-
"@progress/kendo-vue-common": "3.5.
|
|
52
|
+
"@progress/kendo-vue-common": "3.5.4"
|
|
53
53
|
},
|
|
54
54
|
"@progress": {
|
|
55
55
|
"friendlyName": "Scheduler",
|
|
@@ -64,16 +64,16 @@
|
|
|
64
64
|
"@progress/kendo-date-math": "^1.4.1",
|
|
65
65
|
"@progress/kendo-drawing": "^1.8.0",
|
|
66
66
|
"@progress/kendo-licensing": "^1.0.1",
|
|
67
|
-
"@progress/kendo-vue-buttons": "3.5.
|
|
68
|
-
"@progress/kendo-vue-dateinputs": "3.5.
|
|
69
|
-
"@progress/kendo-vue-dialogs": "3.5.
|
|
70
|
-
"@progress/kendo-vue-dropdowns": "3.5.
|
|
71
|
-
"@progress/kendo-vue-form": "3.5.
|
|
72
|
-
"@progress/kendo-vue-inputs": "3.5.
|
|
73
|
-
"@progress/kendo-vue-intl": "3.5.
|
|
74
|
-
"@progress/kendo-vue-labels": "3.5.
|
|
75
|
-
"@progress/kendo-vue-popup": "3.5.
|
|
76
|
-
"@progress/kendo-vue-progressbars": "3.5.
|
|
67
|
+
"@progress/kendo-vue-buttons": "3.5.4",
|
|
68
|
+
"@progress/kendo-vue-dateinputs": "3.5.4",
|
|
69
|
+
"@progress/kendo-vue-dialogs": "3.5.4",
|
|
70
|
+
"@progress/kendo-vue-dropdowns": "3.5.4",
|
|
71
|
+
"@progress/kendo-vue-form": "3.5.4",
|
|
72
|
+
"@progress/kendo-vue-inputs": "3.5.4",
|
|
73
|
+
"@progress/kendo-vue-intl": "3.5.4",
|
|
74
|
+
"@progress/kendo-vue-labels": "3.5.4",
|
|
75
|
+
"@progress/kendo-vue-popup": "3.5.4",
|
|
76
|
+
"@progress/kendo-vue-progressbars": "3.5.4",
|
|
77
77
|
"cldr-core": "^41.0.0",
|
|
78
78
|
"cldr-dates-full": "^41.0.0",
|
|
79
79
|
"cldr-numbers-full": "^41.0.0"
|