@progress/kendo-vue-dateinputs 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-dateinputs.js +1 -1
- package/dist/es/calendar/components/Calendar.js +1 -1
- package/dist/es/calendar/components/CalendarCell.js +4 -4
- package/dist/es/datepicker/DatePicker.js +3 -1
- package/dist/es/datetimepicker/DateTimePicker.js +1 -1
- package/dist/es/datetimepicker/DateTimeSelector.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimePart.js +2 -2
- package/dist/es/timepicker/TimeSelector.js +1 -1
- package/dist/npm/calendar/components/Calendar.js +1 -1
- package/dist/npm/calendar/components/CalendarCell.js +4 -4
- package/dist/npm/datepicker/DatePicker.js +3 -1
- package/dist/npm/datetimepicker/DateTimePicker.js +1 -1
- package/dist/npm/datetimepicker/DateTimeSelector.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/TimePart.js +2 -2
- package/dist/npm/timepicker/TimeSelector.js +1 -1
- package/package.json +7 -7
|
@@ -456,7 +456,7 @@ var CalendarVue2 = {
|
|
|
456
456
|
|
|
457
457
|
this._service = this._bus.service(activeView, this._intl);
|
|
458
458
|
var rootClassNames = classNames('k-widget k-calendar', 'k-calendar-range', {
|
|
459
|
-
'k-
|
|
459
|
+
'k-disabled': this.$props.disabled,
|
|
460
460
|
'k-week-number': this.$props.weekNumber
|
|
461
461
|
}, this.$props.className);
|
|
462
462
|
var didViewChange = this._lastView !== this.$data.currentActiveView;
|
|
@@ -119,12 +119,12 @@ var CalendarCellVue2 = {
|
|
|
119
119
|
'k-range-split-end': isRangeSplitEnd,
|
|
120
120
|
'k-range-split-start': isRangeSplitStart,
|
|
121
121
|
'k-range-start': isRangeStart,
|
|
122
|
-
'k-
|
|
123
|
-
'k-
|
|
124
|
-
'k-
|
|
122
|
+
'k-active': isStartActive || isEndActive,
|
|
123
|
+
'k-focus': isFocused,
|
|
124
|
+
'k-selected': isSelected || isRangeStart || isRangeEnd,
|
|
125
125
|
'k-today': isToday,
|
|
126
126
|
'k-weekend': isWeekend,
|
|
127
|
-
'k-
|
|
127
|
+
'k-disabled': isDisabled
|
|
128
128
|
},
|
|
129
129
|
onClick: this.handleClick,
|
|
130
130
|
on: this.v3 ? undefined : {
|
|
@@ -438,14 +438,16 @@ var DatePickerVue2 = {
|
|
|
438
438
|
var toggleButton = this.$props.toggleButton ? templateRendering.call(this, this.$props.toggleButton, getListeners.call(this)) : undefined;
|
|
439
439
|
var toggleButtonDefaultRendering = // @ts-ignore
|
|
440
440
|
h(ToggleButton, {
|
|
441
|
-
|
|
441
|
+
type: "button",
|
|
442
442
|
attrs: this.v3 ? undefined : {
|
|
443
|
+
type: "button",
|
|
443
444
|
tabIndex: -1,
|
|
444
445
|
icon: "calendar",
|
|
445
446
|
title: provideLocalizationService(this).toLanguageString(toggleCalendar, messages[toggleCalendar]),
|
|
446
447
|
"aria-label": provideLocalizationService(this).toLanguageString(toggleCalendar, messages[toggleCalendar]),
|
|
447
448
|
rounded: null
|
|
448
449
|
},
|
|
450
|
+
tabIndex: -1,
|
|
449
451
|
icon: "calendar",
|
|
450
452
|
onMousedown: this.handleIconMouseDown,
|
|
451
453
|
on: this.v3 ? undefined : {
|
|
@@ -471,7 +471,7 @@ var DateTimePickerVue2 = {
|
|
|
471
471
|
defaultSlots: dataTimeSelector
|
|
472
472
|
});
|
|
473
473
|
var dateTimePicker = h("div", {
|
|
474
|
-
"class": classNames('k-input', 'k-datetimepicker', (_a = {}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a
|
|
474
|
+
"class": classNames('k-input', 'k-datetimepicker', (_a = {}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a)),
|
|
475
475
|
ref: this.v3 ? function (el) {
|
|
476
476
|
_this.kendoAnchorRef = el;
|
|
477
477
|
} : this._anchor,
|
|
@@ -141,7 +141,7 @@ var DateTimeSelectorVue2 = {
|
|
|
141
141
|
var rootClassName = classNames({
|
|
142
142
|
'k-date-tab': this.currentTab === 'date',
|
|
143
143
|
'k-time-tab': this.currentTab === 'time',
|
|
144
|
-
'k-
|
|
144
|
+
'k-disabled': disabled
|
|
145
145
|
}, 'k-datetime-wrap');
|
|
146
146
|
var localizationService = provideLocalizationService(this);
|
|
147
147
|
var dateMessage = localizationService.toLanguageString(date, messages[date]);
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dateinputs',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1659169366,
|
|
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
|
};
|
|
@@ -154,7 +154,7 @@ var TimePartVue2 = {
|
|
|
154
154
|
this.snapTime = snapTime(generateSnappers(this.$props.steps, this.computedMin));
|
|
155
155
|
this.dateFormatParts = this.intl.splitDateFormat(format).filter(this.timeFormatFilter);
|
|
156
156
|
var rootClassName = classNames({
|
|
157
|
-
'k-
|
|
157
|
+
'k-disabled': disabled
|
|
158
158
|
}, 'k-time-part');
|
|
159
159
|
var localizationService = provideLocalizationService(this);
|
|
160
160
|
var selectNowMessage = localizationService.toLanguageString(selectNow, messages[selectNow]);
|
|
@@ -200,7 +200,7 @@ var TimePartVue2 = {
|
|
|
200
200
|
return part.type !== 'literal' ? h("div", {
|
|
201
201
|
key: idx,
|
|
202
202
|
"class": classNames('k-time-list-wrapper', {
|
|
203
|
-
'k-
|
|
203
|
+
'k-focus': idx === this.activeListIndex
|
|
204
204
|
}),
|
|
205
205
|
role: "presentation",
|
|
206
206
|
attrs: this.v3 ? undefined : {
|
|
@@ -158,7 +158,7 @@ var TimeSelectorVue2 = {
|
|
|
158
158
|
tabindex: !disabled ? tabIndex || 0 : undefined
|
|
159
159
|
},
|
|
160
160
|
"class": classNames('k-timeselector k-reset', {
|
|
161
|
-
'k-
|
|
161
|
+
'k-disabled': disabled
|
|
162
162
|
}),
|
|
163
163
|
onKeydown: this.handleKeyDown,
|
|
164
164
|
on: this.v3 ? undefined : {
|
|
@@ -475,7 +475,7 @@ var CalendarVue2 = {
|
|
|
475
475
|
|
|
476
476
|
this._service = this._bus.service(activeView, this._intl);
|
|
477
477
|
var rootClassNames = kendo_vue_common_1.classNames('k-widget k-calendar', 'k-calendar-range', {
|
|
478
|
-
'k-
|
|
478
|
+
'k-disabled': this.$props.disabled,
|
|
479
479
|
'k-week-number': this.$props.weekNumber
|
|
480
480
|
}, this.$props.className);
|
|
481
481
|
var didViewChange = this._lastView !== this.$data.currentActiveView;
|
|
@@ -128,12 +128,12 @@ var CalendarCellVue2 = {
|
|
|
128
128
|
'k-range-split-end': isRangeSplitEnd,
|
|
129
129
|
'k-range-split-start': isRangeSplitStart,
|
|
130
130
|
'k-range-start': isRangeStart,
|
|
131
|
-
'k-
|
|
132
|
-
'k-
|
|
133
|
-
'k-
|
|
131
|
+
'k-active': isStartActive || isEndActive,
|
|
132
|
+
'k-focus': isFocused,
|
|
133
|
+
'k-selected': isSelected || isRangeStart || isRangeEnd,
|
|
134
134
|
'k-today': isToday,
|
|
135
135
|
'k-weekend': isWeekend,
|
|
136
|
-
'k-
|
|
136
|
+
'k-disabled': isDisabled
|
|
137
137
|
},
|
|
138
138
|
onClick: this.handleClick,
|
|
139
139
|
on: this.v3 ? undefined : {
|
|
@@ -458,14 +458,16 @@ var DatePickerVue2 = {
|
|
|
458
458
|
var toggleButton = this.$props.toggleButton ? kendo_vue_common_1.templateRendering.call(this, this.$props.toggleButton, kendo_vue_common_1.getListeners.call(this)) : undefined;
|
|
459
459
|
var toggleButtonDefaultRendering = // @ts-ignore
|
|
460
460
|
h(ToggleButton_1.ToggleButton, {
|
|
461
|
-
|
|
461
|
+
type: "button",
|
|
462
462
|
attrs: this.v3 ? undefined : {
|
|
463
|
+
type: "button",
|
|
463
464
|
tabIndex: -1,
|
|
464
465
|
icon: "calendar",
|
|
465
466
|
title: kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleCalendar, messages_1.messages[messages_1.toggleCalendar]),
|
|
466
467
|
"aria-label": kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleCalendar, messages_1.messages[messages_1.toggleCalendar]),
|
|
467
468
|
rounded: null
|
|
468
469
|
},
|
|
470
|
+
tabIndex: -1,
|
|
469
471
|
icon: "calendar",
|
|
470
472
|
onMousedown: this.handleIconMouseDown,
|
|
471
473
|
on: this.v3 ? undefined : {
|
|
@@ -493,7 +493,7 @@ var DateTimePickerVue2 = {
|
|
|
493
493
|
defaultSlots: dataTimeSelector
|
|
494
494
|
});
|
|
495
495
|
var dateTimePicker = h("div", {
|
|
496
|
-
"class": kendo_vue_common_1.classNames('k-input', 'k-datetimepicker', (_a = {}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a
|
|
496
|
+
"class": kendo_vue_common_1.classNames('k-input', 'k-datetimepicker', (_a = {}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a)),
|
|
497
497
|
ref: this.v3 ? function (el) {
|
|
498
498
|
_this.kendoAnchorRef = el;
|
|
499
499
|
} : this._anchor,
|
|
@@ -159,7 +159,7 @@ var DateTimeSelectorVue2 = {
|
|
|
159
159
|
var rootClassName = kendo_vue_common_1.classNames({
|
|
160
160
|
'k-date-tab': this.currentTab === 'date',
|
|
161
161
|
'k-time-tab': this.currentTab === 'time',
|
|
162
|
-
'k-
|
|
162
|
+
'k-disabled': disabled
|
|
163
163
|
}, 'k-datetime-wrap');
|
|
164
164
|
var localizationService = kendo_vue_intl_1.provideLocalizationService(this);
|
|
165
165
|
var dateMessage = localizationService.toLanguageString(messages_1.date, messages_1.messages[messages_1.date]);
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-dateinputs',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1659169366,
|
|
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
|
};
|
|
@@ -171,7 +171,7 @@ var TimePartVue2 = {
|
|
|
171
171
|
this.snapTime = utils_2.snapTime(utils_2.generateSnappers(this.$props.steps, this.computedMin));
|
|
172
172
|
this.dateFormatParts = this.intl.splitDateFormat(format).filter(this.timeFormatFilter);
|
|
173
173
|
var rootClassName = kendo_vue_common_1.classNames({
|
|
174
|
-
'k-
|
|
174
|
+
'k-disabled': disabled
|
|
175
175
|
}, 'k-time-part');
|
|
176
176
|
var localizationService = kendo_vue_intl_1.provideLocalizationService(this);
|
|
177
177
|
var selectNowMessage = localizationService.toLanguageString(messages_1.selectNow, messages_1.messages[messages_1.selectNow]);
|
|
@@ -217,7 +217,7 @@ var TimePartVue2 = {
|
|
|
217
217
|
return part.type !== 'literal' ? h("div", {
|
|
218
218
|
key: idx,
|
|
219
219
|
"class": kendo_vue_common_1.classNames('k-time-list-wrapper', {
|
|
220
|
-
'k-
|
|
220
|
+
'k-focus': idx === this.activeListIndex
|
|
221
221
|
}),
|
|
222
222
|
role: "presentation",
|
|
223
223
|
attrs: this.v3 ? undefined : {
|
|
@@ -174,7 +174,7 @@ var TimeSelectorVue2 = {
|
|
|
174
174
|
tabindex: !disabled ? tabIndex || 0 : undefined
|
|
175
175
|
},
|
|
176
176
|
"class": kendo_vue_common_1.classNames('k-timeselector k-reset', {
|
|
177
|
-
'k-
|
|
177
|
+
'k-disabled': disabled
|
|
178
178
|
}),
|
|
179
179
|
onKeydown: this.handleKeyDown,
|
|
180
180
|
on: this.v3 ? undefined : {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-dateinputs",
|
|
3
3
|
"description": "Kendo UI for Vue Date Inputs 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"
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@progress/kendo-date-math": "1.5.1",
|
|
49
|
-
"@progress/kendo-vue-buttons": "3.4.
|
|
50
|
-
"@progress/kendo-vue-common": "3.4.
|
|
51
|
-
"@progress/kendo-vue-labels": "3.4.
|
|
52
|
-
"@progress/kendo-vue-popup": "3.4.
|
|
49
|
+
"@progress/kendo-vue-buttons": "3.4.5-dev.202207300828",
|
|
50
|
+
"@progress/kendo-vue-common": "3.4.5-dev.202207300828",
|
|
51
|
+
"@progress/kendo-vue-labels": "3.4.5-dev.202207300828",
|
|
52
|
+
"@progress/kendo-vue-popup": "3.4.5-dev.202207300828"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@progress/kendo-data-query": "^1.5.4",
|
|
56
56
|
"@progress/kendo-licensing": "^1.1.0",
|
|
57
|
-
"@progress/kendo-vue-dropdowns": "3.4.
|
|
58
|
-
"@progress/kendo-vue-intl": "3.4.
|
|
57
|
+
"@progress/kendo-vue-dropdowns": "3.4.5-dev.202207300828",
|
|
58
|
+
"@progress/kendo-vue-intl": "3.4.5-dev.202207300828"
|
|
59
59
|
},
|
|
60
60
|
"author": "Progress",
|
|
61
61
|
"license": "SEE LICENSE IN LICENSE.md",
|