@progress/kendo-vue-scheduler 3.10.2 → 3.11.0-dev.202305230751
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 +17 -9
- package/dist/es/components/SchedulerActionButtons.js +34 -5
- package/dist/es/components/SchedulerForm.js +1 -1
- package/dist/es/components/header/view-selector/SchedulerViewSelector.js +1 -13
- package/dist/es/components/header/view-selector/ViewSelectorItem.js +1 -0
- package/dist/es/components/header/view-selector/ViewSelectorList.js +31 -80
- package/dist/es/editors/SchedulerFormEditor.js +869 -169
- package/dist/es/items/SchedulerItem.js +48 -28
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/recurrence/RecurrenceEditor.js +313 -100
- package/dist/es/recurrence/RecurrenceFrequencyEditor.js +1 -0
- package/dist/es/views/agenda/AgendaViewBody.js +8 -8
- package/dist/esm/Scheduler.js +17 -9
- package/dist/esm/components/SchedulerActionButtons.js +34 -5
- package/dist/esm/components/SchedulerForm.js +1 -1
- package/dist/esm/components/header/view-selector/SchedulerViewSelector.js +1 -13
- package/dist/esm/components/header/view-selector/ViewSelectorItem.js +1 -0
- package/dist/esm/components/header/view-selector/ViewSelectorList.js +31 -80
- package/dist/esm/editors/SchedulerFormEditor.js +869 -169
- package/dist/esm/items/SchedulerItem.js +48 -28
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/recurrence/RecurrenceEditor.js +313 -100
- package/dist/esm/recurrence/RecurrenceFrequencyEditor.js +1 -0
- package/dist/esm/views/agenda/AgendaViewBody.js +8 -8
- package/dist/npm/Scheduler.js +16 -8
- package/dist/npm/components/SchedulerActionButtons.js +34 -5
- package/dist/npm/components/SchedulerForm.js +1 -1
- package/dist/npm/components/header/view-selector/SchedulerViewSelector.js +1 -12
- package/dist/npm/components/header/view-selector/ViewSelectorItem.js +1 -0
- package/dist/npm/components/header/view-selector/ViewSelectorList.js +30 -79
- package/dist/npm/editors/SchedulerFormEditor.js +868 -168
- package/dist/npm/items/SchedulerItem.js +48 -28
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/recurrence/RecurrenceEditor.js +313 -100
- package/dist/npm/recurrence/RecurrenceFrequencyEditor.js +1 -0
- package/dist/npm/views/agenda/AgendaViewBody.js +8 -8
- package/package.json +12 -12
|
@@ -307,26 +307,32 @@ var SchedulerItemVue2 = {
|
|
|
307
307
|
}, [!_this2.$props.resizeHint && h("span", {
|
|
308
308
|
"class": "k-event-actions"
|
|
309
309
|
}, [_this2.$props.tail && h(Icon, {
|
|
310
|
-
name:
|
|
310
|
+
name: _this2.ks.isRtl ? 'caret-alt-right' : 'caret-alt-left',
|
|
311
311
|
attrs: _this2.v3 ? undefined : {
|
|
312
|
-
name:
|
|
313
|
-
icon: caretAltLeftIcon
|
|
312
|
+
name: _this2.ks.isRtl ? 'caret-alt-right' : 'caret-alt-left',
|
|
313
|
+
icon: _this2.ks.isRtl ? caretAltRightIcon : caretAltLeftIcon,
|
|
314
|
+
size: 'medium'
|
|
314
315
|
},
|
|
315
|
-
icon: caretAltLeftIcon
|
|
316
|
+
icon: _this2.ks.isRtl ? caretAltRightIcon : caretAltLeftIcon,
|
|
317
|
+
size: 'medium'
|
|
316
318
|
}), _this2.$props.isRecurring && !_this2.$props.isException && h(Icon, {
|
|
317
319
|
name: "arrow-rotate-cw",
|
|
318
320
|
attrs: _this2.v3 ? undefined : {
|
|
319
321
|
name: "arrow-rotate-cw",
|
|
320
|
-
icon: arrowRotateCwIcon
|
|
322
|
+
icon: arrowRotateCwIcon,
|
|
323
|
+
size: 'medium'
|
|
321
324
|
},
|
|
322
|
-
icon: arrowRotateCwIcon
|
|
325
|
+
icon: arrowRotateCwIcon,
|
|
326
|
+
size: 'medium'
|
|
323
327
|
}), !_this2.$props.isRecurring && _this2.$props.isException && h(Icon, {
|
|
324
328
|
name: "arrows-no-repeat",
|
|
325
329
|
attrs: _this2.v3 ? undefined : {
|
|
326
330
|
name: "arrows-no-repeat",
|
|
327
|
-
icon: arrowsNoRepeatIcon
|
|
331
|
+
icon: arrowsNoRepeatIcon,
|
|
332
|
+
size: 'medium'
|
|
328
333
|
},
|
|
329
|
-
icon: arrowsNoRepeatIcon
|
|
334
|
+
icon: arrowsNoRepeatIcon,
|
|
335
|
+
size: 'medium'
|
|
330
336
|
})]), _this2.formItem && !_this2.showOccurrenceDialog && _this2.currentEditable.edit && h(SchedulerForm, {
|
|
331
337
|
dataItem: _this2.formItem,
|
|
332
338
|
attrs: _this2.v3 ? undefined : {
|
|
@@ -390,16 +396,20 @@ var SchedulerItemVue2 = {
|
|
|
390
396
|
name: "x",
|
|
391
397
|
attrs: _this2.v3 ? undefined : {
|
|
392
398
|
name: "x",
|
|
393
|
-
icon: xIcon
|
|
399
|
+
icon: xIcon,
|
|
400
|
+
size: 'medium'
|
|
394
401
|
},
|
|
395
|
-
icon: xIcon
|
|
402
|
+
icon: xIcon,
|
|
403
|
+
size: 'medium'
|
|
396
404
|
})]), _this2.$props.head && h(Icon, {
|
|
397
|
-
name:
|
|
405
|
+
name: _this2.ks.isRtl ? 'caret-alt-left' : 'caret-alt-right',
|
|
398
406
|
attrs: _this2.v3 ? undefined : {
|
|
399
|
-
name:
|
|
400
|
-
icon: caretAltRightIcon
|
|
407
|
+
name: _this2.ks.isRtl ? 'caret-alt-left' : 'caret-alt-right',
|
|
408
|
+
icon: _this2.ks.isRtl ? caretAltLeftIcon : caretAltRightIcon,
|
|
409
|
+
size: 'medium'
|
|
401
410
|
},
|
|
402
|
-
icon: caretAltRightIcon
|
|
411
|
+
icon: _this2.ks.isRtl ? caretAltLeftIcon : caretAltRightIcon,
|
|
412
|
+
size: 'medium'
|
|
403
413
|
})]), _this2.currentEditable.resize && _this2.$props.vertical && [
|
|
404
414
|
// @ts-ignore function children
|
|
405
415
|
h(Draggable, {
|
|
@@ -529,26 +539,32 @@ var SchedulerItemVue2 = {
|
|
|
529
539
|
}, [!_this2.$props.resizeHint && h("span", {
|
|
530
540
|
"class": "k-event-actions"
|
|
531
541
|
}, [_this2.$props.tail && h(Icon, {
|
|
532
|
-
name:
|
|
542
|
+
name: _this2.ks.isRtl ? 'caret-alt-right' : 'caret-alt-left',
|
|
533
543
|
attrs: _this2.v3 ? undefined : {
|
|
534
|
-
name:
|
|
535
|
-
icon: caretAltLeftIcon
|
|
544
|
+
name: _this2.ks.isRtl ? 'caret-alt-right' : 'caret-alt-left',
|
|
545
|
+
icon: _this2.ks.isRtl ? caretAltRightIcon : caretAltLeftIcon,
|
|
546
|
+
size: 'medium'
|
|
536
547
|
},
|
|
537
|
-
icon: caretAltLeftIcon
|
|
548
|
+
icon: _this2.ks.isRtl ? caretAltRightIcon : caretAltLeftIcon,
|
|
549
|
+
size: 'medium'
|
|
538
550
|
}), _this2.$props.isRecurring && !_this2.$props.isException && h(Icon, {
|
|
539
551
|
name: "arrow-rotate-cw",
|
|
540
552
|
attrs: _this2.v3 ? undefined : {
|
|
541
553
|
name: "arrow-rotate-cw",
|
|
542
|
-
icon: arrowRotateCwIcon
|
|
554
|
+
icon: arrowRotateCwIcon,
|
|
555
|
+
size: 'medium'
|
|
543
556
|
},
|
|
544
|
-
icon: arrowRotateCwIcon
|
|
557
|
+
icon: arrowRotateCwIcon,
|
|
558
|
+
size: 'medium'
|
|
545
559
|
}), !_this2.$props.isRecurring && _this2.$props.isException && h(Icon, {
|
|
546
560
|
name: "arrows-no-repeat",
|
|
547
561
|
attrs: _this2.v3 ? undefined : {
|
|
548
562
|
name: "arrows-no-repeat",
|
|
549
|
-
icon: arrowsNoRepeatIcon
|
|
563
|
+
icon: arrowsNoRepeatIcon,
|
|
564
|
+
size: 'medium'
|
|
550
565
|
},
|
|
551
|
-
icon: arrowsNoRepeatIcon
|
|
566
|
+
icon: arrowsNoRepeatIcon,
|
|
567
|
+
size: 'medium'
|
|
552
568
|
})]), _this2.formItem && !_this2.showOccurrenceDialog && _this2.currentEditable.edit && h(SchedulerForm, {
|
|
553
569
|
dataItem: _this2.formItem,
|
|
554
570
|
attrs: _this2.v3 ? undefined : {
|
|
@@ -612,16 +628,20 @@ var SchedulerItemVue2 = {
|
|
|
612
628
|
name: "x",
|
|
613
629
|
attrs: _this2.v3 ? undefined : {
|
|
614
630
|
name: "x",
|
|
615
|
-
icon: xIcon
|
|
631
|
+
icon: xIcon,
|
|
632
|
+
size: 'medium'
|
|
616
633
|
},
|
|
617
|
-
icon: xIcon
|
|
634
|
+
icon: xIcon,
|
|
635
|
+
size: 'medium'
|
|
618
636
|
})]), _this2.$props.head && h(Icon, {
|
|
619
|
-
name:
|
|
637
|
+
name: _this2.ks.isRtl ? 'caret-alt-left' : 'caret-alt-right',
|
|
620
638
|
attrs: _this2.v3 ? undefined : {
|
|
621
|
-
name:
|
|
622
|
-
icon: caretAltRightIcon
|
|
639
|
+
name: _this2.ks.isRtl ? 'caret-alt-left' : 'caret-alt-right',
|
|
640
|
+
icon: _this2.ks.isRtl ? caretAltLeftIcon : caretAltRightIcon,
|
|
641
|
+
size: 'medium'
|
|
623
642
|
},
|
|
624
|
-
icon: caretAltRightIcon
|
|
643
|
+
icon: _this2.ks.isRtl ? caretAltLeftIcon : caretAltRightIcon,
|
|
644
|
+
size: 'medium'
|
|
625
645
|
})]), _this2.currentEditable.resize && _this2.$props.vertical && [h(Draggable, {
|
|
626
646
|
onPress: _this2.handleResizePress,
|
|
627
647
|
on: _this2.v3 ? undefined : {
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-scheduler',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1684828063,
|
|
9
9
|
version: '',
|
|
10
10
|
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'
|
|
11
11
|
};
|