@progress/kendo-vue-dateinputs 3.5.3-dev.202209051408 → 3.5.4-dev.202209091220
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/Header.js +7 -7
- package/dist/es/calendar/components/ViewList.js +2 -2
- package/dist/es/dateinput/DateInput.js +33 -17
- package/dist/es/dateinput/models/DateInputSettings.d.ts +20 -0
- package/dist/es/datepicker/DatePicker.js +11 -18
- package/dist/es/daterangepicker/DateRangePicker.js +6 -21
- package/dist/es/datetimepicker/DateTimePicker.js +13 -9
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimePicker.js +10 -8
- package/dist/es/timepicker/TimeSelector.js +1 -1
- package/dist/esm/calendar/components/Header.js +7 -7
- package/dist/esm/calendar/components/ViewList.js +2 -2
- package/dist/esm/dateinput/DateInput.js +33 -17
- package/dist/esm/dateinput/models/DateInputSettings.d.ts +20 -0
- package/dist/esm/datepicker/DatePicker.js +11 -18
- package/dist/esm/daterangepicker/DateRangePicker.js +6 -21
- package/dist/esm/datetimepicker/DateTimePicker.js +13 -9
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/timepicker/TimePicker.js +10 -8
- package/dist/esm/timepicker/TimeSelector.js +1 -1
- package/dist/npm/calendar/components/Header.js +7 -7
- package/dist/npm/calendar/components/ViewList.js +2 -2
- package/dist/npm/dateinput/DateInput.js +33 -17
- package/dist/npm/dateinput/models/DateInputSettings.d.ts +20 -0
- package/dist/npm/datepicker/DatePicker.js +11 -18
- package/dist/npm/daterangepicker/DateRangePicker.js +6 -21
- package/dist/npm/datetimepicker/DateTimePicker.js +13 -9
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/TimePicker.js +10 -8
- package/dist/npm/timepicker/TimeSelector.js +1 -1
- package/package.json +7 -7
|
@@ -271,8 +271,6 @@ var TimePickerVue2 = {
|
|
|
271
271
|
|
|
272
272
|
if (this._dateInput && this._dateInput.element()) {
|
|
273
273
|
this._dateInput.element().setAttribute('aria-haspopup', 'true');
|
|
274
|
-
|
|
275
|
-
this._dateInput.element().setAttribute('aria-expanded', "".concat(this.computedShow));
|
|
276
274
|
}
|
|
277
275
|
},
|
|
278
276
|
updated: function updated() {
|
|
@@ -280,10 +278,6 @@ var TimePickerVue2 = {
|
|
|
280
278
|
this._timeSelector = this.$refs.timeSelector;
|
|
281
279
|
this._wrapper = this.v3 ? this.kendoAnchorRef : this.$refs[this._anchor];
|
|
282
280
|
|
|
283
|
-
if (this._dateInput && this._dateInput.element()) {
|
|
284
|
-
this._dateInput.element().setAttribute('aria-expanded', "".concat(this.computedShow));
|
|
285
|
-
}
|
|
286
|
-
|
|
287
281
|
if (this._timeSelector && this.computedShow && !this._oldShow) {
|
|
288
282
|
this._timeSelector.focusActiveList();
|
|
289
283
|
} else if (this._dateInput && this._dateInput.element() && !this.computedShow && this.shouldFocusDateInput) {
|
|
@@ -377,7 +371,11 @@ var TimePickerVue2 = {
|
|
|
377
371
|
valid: this.validity().valid,
|
|
378
372
|
validationMessage: validationMessage,
|
|
379
373
|
validityStyles: validityStyles,
|
|
380
|
-
value: this.computedValue && this.normalizeTime(this.computedValue)
|
|
374
|
+
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
375
|
+
ariaHasPopup: true,
|
|
376
|
+
ariaExpanded: this.computedShow,
|
|
377
|
+
ariaRole: "combobox",
|
|
378
|
+
ariaControls: this._popupId
|
|
381
379
|
},
|
|
382
380
|
disabled: disabled,
|
|
383
381
|
format: format,
|
|
@@ -402,7 +400,11 @@ var TimePickerVue2 = {
|
|
|
402
400
|
valid: this.validity().valid,
|
|
403
401
|
validationMessage: validationMessage,
|
|
404
402
|
validityStyles: validityStyles,
|
|
405
|
-
value: this.computedValue && this.normalizeTime(this.computedValue)
|
|
403
|
+
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
404
|
+
ariaHasPopup: true,
|
|
405
|
+
ariaExpanded: this.computedShow,
|
|
406
|
+
ariaRole: "combobox",
|
|
407
|
+
ariaControls: this._popupId
|
|
406
408
|
}, this.v3 ? function () {
|
|
407
409
|
return [defaultSlot];
|
|
408
410
|
} : [defaultSlot]);
|
|
@@ -173,7 +173,7 @@ var TimeSelectorVue2 = {
|
|
|
173
173
|
attrs: this.v3 ? undefined : {
|
|
174
174
|
tabindex: !disabled ? tabIndex || 0 : undefined
|
|
175
175
|
},
|
|
176
|
-
"class": (0, kendo_vue_common_1.classNames)('k-timeselector
|
|
176
|
+
"class": (0, kendo_vue_common_1.classNames)('k-timeselector', {
|
|
177
177
|
'k-disabled': disabled
|
|
178
178
|
}),
|
|
179
179
|
onKeydown: this.handleKeyDown,
|
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.5.
|
|
4
|
+
"version": "3.5.4-dev.202209091220",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -52,16 +52,16 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-date-math": "1.5.1",
|
|
55
|
-
"@progress/kendo-vue-buttons": "3.5.
|
|
56
|
-
"@progress/kendo-vue-common": "3.5.
|
|
57
|
-
"@progress/kendo-vue-labels": "3.5.
|
|
58
|
-
"@progress/kendo-vue-popup": "3.5.
|
|
55
|
+
"@progress/kendo-vue-buttons": "3.5.4-dev.202209091220",
|
|
56
|
+
"@progress/kendo-vue-common": "3.5.4-dev.202209091220",
|
|
57
|
+
"@progress/kendo-vue-labels": "3.5.4-dev.202209091220",
|
|
58
|
+
"@progress/kendo-vue-popup": "3.5.4-dev.202209091220"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@progress/kendo-data-query": "^1.5.4",
|
|
62
62
|
"@progress/kendo-licensing": "^1.1.0",
|
|
63
|
-
"@progress/kendo-vue-dropdowns": "3.5.
|
|
64
|
-
"@progress/kendo-vue-intl": "3.5.
|
|
63
|
+
"@progress/kendo-vue-dropdowns": "3.5.4-dev.202209091220",
|
|
64
|
+
"@progress/kendo-vue-intl": "3.5.4-dev.202209091220"
|
|
65
65
|
},
|
|
66
66
|
"author": "Progress",
|
|
67
67
|
"license": "SEE LICENSE IN LICENSE.md",
|