@progress/kendo-vue-scheduler 3.4.4 → 3.4.5-dev.202207300828
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 +2 -2
- package/dist/es/items/SchedulerItem.d.ts +2 -2
- package/dist/es/items/SchedulerItem.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/slots/SchedulerSlot.d.ts +1 -1
- package/dist/es/slots/SchedulerSlot.js +1 -1
- package/dist/es/tasks/SchedulerTask.d.ts +1 -1
- package/dist/npm/items/SchedulerItem.d.ts +2 -2
- package/dist/npm/items/SchedulerItem.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/slots/SchedulerSlot.d.ts +1 -1
- package/dist/npm/slots/SchedulerSlot.js +1 -1
- package/dist/npm/tasks/SchedulerTask.d.ts +1 -1
- package/package.json +12 -12
|
@@ -23,7 +23,7 @@ export interface SchedulerItemProps extends Item {
|
|
|
23
23
|
*
|
|
24
24
|
* The SchedulerItem applies the following default className:
|
|
25
25
|
* - `k-event`
|
|
26
|
-
* - `k-
|
|
26
|
+
* - `k-selected` - if `props.selected` is set to `true`
|
|
27
27
|
* - `k-event-drag-hint` - if `props.dragHint` is set to `true`
|
|
28
28
|
* - `k-scheduler-marquee` - if `props.resizeHint` is set to `true`
|
|
29
29
|
* - `k-marquee`: if `props.resizeHint` is set to `true`
|
|
@@ -47,7 +47,7 @@ export interface SchedulerItemProps extends Item {
|
|
|
47
47
|
*/
|
|
48
48
|
editable?: EditableProp | boolean;
|
|
49
49
|
/**
|
|
50
|
-
* Sets the selected state of the SchedulerSlot. By default the `k-
|
|
50
|
+
* Sets the selected state of the SchedulerSlot. By default the `k-selected` className is added if `props.selected` is `true`.
|
|
51
51
|
*/
|
|
52
52
|
selected?: boolean;
|
|
53
53
|
/**
|
|
@@ -174,7 +174,7 @@ var SchedulerItemVue2 = {
|
|
|
174
174
|
|
|
175
175
|
return _a = {
|
|
176
176
|
'k-event': !this.$props.resizeHint,
|
|
177
|
-
'k-
|
|
177
|
+
'k-selected': this.$props.selected && this.currentEditable.select,
|
|
178
178
|
'k-event-drag-hint': this.$props.dragHint,
|
|
179
179
|
'k-scheduler-marquee': this.$props.resizeHint,
|
|
180
180
|
'k-marquee': this.$props.resizeHint,
|
|
@@ -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: 1659169525,
|
|
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
|
};
|
|
@@ -43,7 +43,7 @@ export interface SchedulerSlotProps extends Slot {
|
|
|
43
43
|
*/
|
|
44
44
|
isWorkHour?: boolean;
|
|
45
45
|
/**
|
|
46
|
-
* Sets the selected state of the SchedulerSlot. By default the `k-
|
|
46
|
+
* Sets the selected state of the SchedulerSlot. By default the `k-selected` className is added if `props.selected` is `true`.
|
|
47
47
|
*/
|
|
48
48
|
selected?: boolean;
|
|
49
49
|
/**
|
|
@@ -88,7 +88,7 @@ var SchedulerSlotVue2 = {
|
|
|
88
88
|
return {
|
|
89
89
|
'k-scheduler-cell k-slot-cell': true,
|
|
90
90
|
'k-nonwork-hour': !this.$props.isWorkHour || !this.$props.isWorkDay,
|
|
91
|
-
'k-
|
|
91
|
+
'k-selected': this.$props.selected
|
|
92
92
|
};
|
|
93
93
|
},
|
|
94
94
|
slotLabel: function slotLabel() {
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { Item, SchedulerTaskMouseEvent, EditableProp } from '../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue
|
|
8
|
+
* Represents the props of the Kendo UI for Vue SchedulerTask.
|
|
9
9
|
*/
|
|
10
10
|
export interface SchedulerTaskProps extends Item {
|
|
11
11
|
/**
|
|
@@ -23,7 +23,7 @@ export interface SchedulerItemProps extends Item {
|
|
|
23
23
|
*
|
|
24
24
|
* The SchedulerItem applies the following default className:
|
|
25
25
|
* - `k-event`
|
|
26
|
-
* - `k-
|
|
26
|
+
* - `k-selected` - if `props.selected` is set to `true`
|
|
27
27
|
* - `k-event-drag-hint` - if `props.dragHint` is set to `true`
|
|
28
28
|
* - `k-scheduler-marquee` - if `props.resizeHint` is set to `true`
|
|
29
29
|
* - `k-marquee`: if `props.resizeHint` is set to `true`
|
|
@@ -47,7 +47,7 @@ export interface SchedulerItemProps extends Item {
|
|
|
47
47
|
*/
|
|
48
48
|
editable?: EditableProp | boolean;
|
|
49
49
|
/**
|
|
50
|
-
* Sets the selected state of the SchedulerSlot. By default the `k-
|
|
50
|
+
* Sets the selected state of the SchedulerSlot. By default the `k-selected` className is added if `props.selected` is `true`.
|
|
51
51
|
*/
|
|
52
52
|
selected?: boolean;
|
|
53
53
|
/**
|
|
@@ -191,7 +191,7 @@ var SchedulerItemVue2 = {
|
|
|
191
191
|
|
|
192
192
|
return _a = {
|
|
193
193
|
'k-event': !this.$props.resizeHint,
|
|
194
|
-
'k-
|
|
194
|
+
'k-selected': this.$props.selected && this.currentEditable.select,
|
|
195
195
|
'k-event-drag-hint': this.$props.dragHint,
|
|
196
196
|
'k-scheduler-marquee': this.$props.resizeHint,
|
|
197
197
|
'k-marquee': this.$props.resizeHint,
|
|
@@ -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: 1659169525,
|
|
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
|
};
|
|
@@ -43,7 +43,7 @@ export interface SchedulerSlotProps extends Slot {
|
|
|
43
43
|
*/
|
|
44
44
|
isWorkHour?: boolean;
|
|
45
45
|
/**
|
|
46
|
-
* Sets the selected state of the SchedulerSlot. By default the `k-
|
|
46
|
+
* Sets the selected state of the SchedulerSlot. By default the `k-selected` className is added if `props.selected` is `true`.
|
|
47
47
|
*/
|
|
48
48
|
selected?: boolean;
|
|
49
49
|
/**
|
|
@@ -101,7 +101,7 @@ var SchedulerSlotVue2 = {
|
|
|
101
101
|
return {
|
|
102
102
|
'k-scheduler-cell k-slot-cell': true,
|
|
103
103
|
'k-nonwork-hour': !this.$props.isWorkHour || !this.$props.isWorkDay,
|
|
104
|
-
'k-
|
|
104
|
+
'k-selected': this.$props.selected
|
|
105
105
|
};
|
|
106
106
|
},
|
|
107
107
|
slotLabel: function slotLabel() {
|
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { Item, SchedulerTaskMouseEvent, EditableProp } from '../models';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the Kendo UI for Vue
|
|
8
|
+
* Represents the props of the Kendo UI for Vue SchedulerTask.
|
|
9
9
|
*/
|
|
10
10
|
export interface SchedulerTaskProps extends Item {
|
|
11
11
|
/**
|
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.4.
|
|
4
|
+
"version": "3.4.5-dev.202207300828",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@progress/kendo-data-query": "^1.5.1",
|
|
44
44
|
"@progress/kendo-draggable": "^3.0.1",
|
|
45
45
|
"@progress/kendo-recurrence": "^1.0.1",
|
|
46
|
-
"@progress/kendo-vue-common": "3.4.
|
|
46
|
+
"@progress/kendo-vue-common": "3.4.5-dev.202207300828"
|
|
47
47
|
},
|
|
48
48
|
"@progress": {
|
|
49
49
|
"friendlyName": "Scheduler",
|
|
@@ -58,16 +58,16 @@
|
|
|
58
58
|
"@progress/kendo-date-math": "^1.4.1",
|
|
59
59
|
"@progress/kendo-drawing": "^1.8.0",
|
|
60
60
|
"@progress/kendo-licensing": "^1.0.1",
|
|
61
|
-
"@progress/kendo-vue-buttons": "3.4.
|
|
62
|
-
"@progress/kendo-vue-dateinputs": "3.4.
|
|
63
|
-
"@progress/kendo-vue-dialogs": "3.4.
|
|
64
|
-
"@progress/kendo-vue-dropdowns": "3.4.
|
|
65
|
-
"@progress/kendo-vue-form": "3.4.
|
|
66
|
-
"@progress/kendo-vue-inputs": "3.4.
|
|
67
|
-
"@progress/kendo-vue-intl": "3.4.
|
|
68
|
-
"@progress/kendo-vue-labels": "3.4.
|
|
69
|
-
"@progress/kendo-vue-popup": "3.4.
|
|
70
|
-
"@progress/kendo-vue-progressbars": "3.4.
|
|
61
|
+
"@progress/kendo-vue-buttons": "3.4.5-dev.202207300828",
|
|
62
|
+
"@progress/kendo-vue-dateinputs": "3.4.5-dev.202207300828",
|
|
63
|
+
"@progress/kendo-vue-dialogs": "3.4.5-dev.202207300828",
|
|
64
|
+
"@progress/kendo-vue-dropdowns": "3.4.5-dev.202207300828",
|
|
65
|
+
"@progress/kendo-vue-form": "3.4.5-dev.202207300828",
|
|
66
|
+
"@progress/kendo-vue-inputs": "3.4.5-dev.202207300828",
|
|
67
|
+
"@progress/kendo-vue-intl": "3.4.5-dev.202207300828",
|
|
68
|
+
"@progress/kendo-vue-labels": "3.4.5-dev.202207300828",
|
|
69
|
+
"@progress/kendo-vue-popup": "3.4.5-dev.202207300828",
|
|
70
|
+
"@progress/kendo-vue-progressbars": "3.4.5-dev.202207300828",
|
|
71
71
|
"cldr-core": "^41.0.0",
|
|
72
72
|
"cldr-dates-full": "^41.0.0",
|
|
73
73
|
"cldr-numbers-full": "^41.0.0"
|