@progress/kendo-vue-dateinputs 3.7.4-dev.202212020747 → 3.7.4-dev.202212300853
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-dateinputs.js +1 -1
- package/dist/es/dateinput/DateInput.js +3 -1
- package/dist/es/datepicker/DatePicker.js +8 -5
- package/dist/es/daterangepicker/DateRangePicker.js +9 -5
- package/dist/es/datetimepicker/DateTimePicker.js +2 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimePicker.js +2 -2
- package/dist/esm/dateinput/DateInput.js +3 -1
- package/dist/esm/datepicker/DatePicker.js +8 -5
- package/dist/esm/daterangepicker/DateRangePicker.js +9 -5
- package/dist/esm/datetimepicker/DateTimePicker.js +2 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/timepicker/TimePicker.js +2 -2
- package/dist/npm/dateinput/DateInput.js +3 -1
- package/dist/npm/datepicker/DatePicker.js +7 -4
- package/dist/npm/daterangepicker/DateRangePicker.js +8 -4
- package/dist/npm/datetimepicker/DateTimePicker.js +2 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/TimePicker.js +2 -2
- package/package.json +7 -7
|
@@ -557,7 +557,8 @@ var DateInputVue2 = {
|
|
|
557
557
|
"aria-label": ariaLabel,
|
|
558
558
|
"aria-expanded": ariaExpanded,
|
|
559
559
|
"aria-haspopup": ariaHasPopup,
|
|
560
|
-
"aria-controls": ariaControls
|
|
560
|
+
"aria-controls": ariaControls,
|
|
561
|
+
"aria-disabled": this.$props.disabled
|
|
561
562
|
},
|
|
562
563
|
tabindex: this.$props.tabIndex,
|
|
563
564
|
disabled: this.$props.disabled,
|
|
@@ -594,6 +595,7 @@ var DateInputVue2 = {
|
|
|
594
595
|
"aria-expanded": ariaExpanded,
|
|
595
596
|
"aria-haspopup": ariaHasPopup,
|
|
596
597
|
"aria-controls": ariaControls,
|
|
598
|
+
"aria-disabled": this.$props.disabled,
|
|
597
599
|
ref: setRef(this, 'input')
|
|
598
600
|
}), defaultSlot, this.$props.spinners && h("span", {
|
|
599
601
|
"class": "k-input-spinner k-spin-button",
|
|
@@ -7,7 +7,7 @@ var ref = allVue.ref;
|
|
|
7
7
|
var inject = allVue.inject;
|
|
8
8
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
9
9
|
import { getDate, cloneDate } from '@progress/kendo-date-math';
|
|
10
|
-
import { classNames, guid, Keys, templateRendering, getListeners, getTemplate, validatePackage, canUseDOM, kendoThemeMaps, getDefaultSlots, setRef, getRef } from '@progress/kendo-vue-common';
|
|
10
|
+
import { classNames, guid, Keys, templateRendering, getListeners, getTemplate, validatePackage, canUseDOM, kendoThemeMaps, getDefaultSlots, setRef, getRef, Icon } from '@progress/kendo-vue-common';
|
|
11
11
|
import { packageMetadata } from '../package-metadata';
|
|
12
12
|
import { DateInput } from '../dateinput/DateInput';
|
|
13
13
|
import { Calendar } from '../calendar/components/Calendar';
|
|
@@ -438,8 +438,11 @@ var DatePickerVue2 = {
|
|
|
438
438
|
h: h,
|
|
439
439
|
template: toggleButton,
|
|
440
440
|
defaultRendering: toggleButtonDefaultRendering,
|
|
441
|
-
defaultSlots: h(
|
|
442
|
-
|
|
441
|
+
defaultSlots: h(Icon, {
|
|
442
|
+
name: "calendar",
|
|
443
|
+
attrs: this.v3 ? undefined : {
|
|
444
|
+
name: "calendar"
|
|
445
|
+
}
|
|
443
446
|
}),
|
|
444
447
|
additionalListeners: {
|
|
445
448
|
click: this.handleIconClick
|
|
@@ -470,7 +473,7 @@ var DatePickerVue2 = {
|
|
|
470
473
|
validationMessage: validationMessage,
|
|
471
474
|
validityStyles: validityStyles,
|
|
472
475
|
value: value,
|
|
473
|
-
ariaHasPopup:
|
|
476
|
+
ariaHasPopup: 'grid',
|
|
474
477
|
ariaExpanded: show,
|
|
475
478
|
ariaRole: "combobox",
|
|
476
479
|
ariaControls: this._popupId
|
|
@@ -496,7 +499,7 @@ var DatePickerVue2 = {
|
|
|
496
499
|
validationMessage: validationMessage,
|
|
497
500
|
validityStyles: validityStyles,
|
|
498
501
|
value: value,
|
|
499
|
-
ariaHasPopup:
|
|
502
|
+
ariaHasPopup: 'grid',
|
|
500
503
|
ariaExpanded: show,
|
|
501
504
|
ariaRole: "combobox",
|
|
502
505
|
ariaControls: this._popupId
|
|
@@ -19,7 +19,7 @@ var ref = allVue.ref;
|
|
|
19
19
|
var inject = allVue.inject;
|
|
20
20
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
21
21
|
import { cloneDate } from '@progress/kendo-date-math';
|
|
22
|
-
import { guid, Keys, canUseDOM, kendoThemeMaps } from '@progress/kendo-vue-common';
|
|
22
|
+
import { guid, Keys, canUseDOM, kendoThemeMaps, Icon } from '@progress/kendo-vue-common';
|
|
23
23
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
24
24
|
import { validatePackage, templateRendering, getListeners, getTemplate } from '@progress/kendo-vue-common';
|
|
25
25
|
import { packageMetadata } from '../package-metadata';
|
|
@@ -260,7 +260,7 @@ var DateRangePickerVue2 = {
|
|
|
260
260
|
size: size,
|
|
261
261
|
fillMode: fillMode,
|
|
262
262
|
rounded: rounded,
|
|
263
|
-
ariaHasPopup:
|
|
263
|
+
ariaHasPopup: 'grid',
|
|
264
264
|
ariaExpanded: this.computedShow,
|
|
265
265
|
value: value.start,
|
|
266
266
|
ariaRole: 'combobox',
|
|
@@ -297,7 +297,7 @@ var DateRangePickerVue2 = {
|
|
|
297
297
|
rounded: rounded,
|
|
298
298
|
disabled: this.$props.disabled,
|
|
299
299
|
valid: this.$props.valid,
|
|
300
|
-
ariaHasPopup:
|
|
300
|
+
ariaHasPopup: 'grid',
|
|
301
301
|
ariaExpanded: this.computedShow,
|
|
302
302
|
value: value.end,
|
|
303
303
|
ariaRole: 'combobox',
|
|
@@ -409,11 +409,15 @@ var DateRangePickerVue2 = {
|
|
|
409
409
|
onClick: this.handleReverseClick,
|
|
410
410
|
"aria-controls": startDateInputId + ' ' + endDateInputId,
|
|
411
411
|
"aria-label": provideLocalizationService(this).toLanguageString(swapStartEnd, messages[swapStartEnd])
|
|
412
|
-
}, [h(
|
|
412
|
+
}, [h(Icon, {
|
|
413
|
+
name: 'arrows-swap',
|
|
414
|
+
attrs: this.v3 ? undefined : {
|
|
415
|
+
name: 'arrows-swap'
|
|
416
|
+
},
|
|
413
417
|
style: {
|
|
414
418
|
transform: 'rotate(90deg)'
|
|
415
419
|
},
|
|
416
|
-
"class": "k-
|
|
420
|
+
"class": "k-button-icon"
|
|
417
421
|
})]);
|
|
418
422
|
return h("span", {
|
|
419
423
|
"class": this.rootClassName,
|
|
@@ -338,7 +338,7 @@ var DateTimePickerVue2 = {
|
|
|
338
338
|
validationMessage: validationMessage,
|
|
339
339
|
validityStyles: validityStyles,
|
|
340
340
|
value: this.computedValue,
|
|
341
|
-
ariaHasPopup:
|
|
341
|
+
ariaHasPopup: 'grid',
|
|
342
342
|
ariaExpanded: this.computedShow,
|
|
343
343
|
ariaRole: "combobox",
|
|
344
344
|
ariaControls: this._popupId
|
|
@@ -369,7 +369,7 @@ var DateTimePickerVue2 = {
|
|
|
369
369
|
validationMessage: validationMessage,
|
|
370
370
|
validityStyles: validityStyles,
|
|
371
371
|
value: this.computedValue,
|
|
372
|
-
ariaHasPopup:
|
|
372
|
+
ariaHasPopup: 'grid',
|
|
373
373
|
ariaExpanded: this.computedShow,
|
|
374
374
|
ariaRole: "combobox",
|
|
375
375
|
ariaControls: this._popupId
|
|
@@ -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: 1672389883,
|
|
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
|
};
|
|
@@ -342,7 +342,7 @@ var TimePickerVue2 = {
|
|
|
342
342
|
validationMessage: validationMessage,
|
|
343
343
|
validityStyles: validityStyles,
|
|
344
344
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
345
|
-
ariaHasPopup:
|
|
345
|
+
ariaHasPopup: 'grid',
|
|
346
346
|
ariaExpanded: this.computedShow,
|
|
347
347
|
ariaRole: "combobox",
|
|
348
348
|
ariaControls: this._popupId
|
|
@@ -371,7 +371,7 @@ var TimePickerVue2 = {
|
|
|
371
371
|
validationMessage: validationMessage,
|
|
372
372
|
validityStyles: validityStyles,
|
|
373
373
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
374
|
-
ariaHasPopup:
|
|
374
|
+
ariaHasPopup: 'grid',
|
|
375
375
|
ariaExpanded: this.computedShow,
|
|
376
376
|
ariaRole: "combobox",
|
|
377
377
|
ariaControls: this._popupId
|
|
@@ -557,7 +557,8 @@ var DateInputVue2 = {
|
|
|
557
557
|
"aria-label": ariaLabel,
|
|
558
558
|
"aria-expanded": ariaExpanded,
|
|
559
559
|
"aria-haspopup": ariaHasPopup,
|
|
560
|
-
"aria-controls": ariaControls
|
|
560
|
+
"aria-controls": ariaControls,
|
|
561
|
+
"aria-disabled": this.$props.disabled
|
|
561
562
|
},
|
|
562
563
|
tabindex: this.$props.tabIndex,
|
|
563
564
|
disabled: this.$props.disabled,
|
|
@@ -594,6 +595,7 @@ var DateInputVue2 = {
|
|
|
594
595
|
"aria-expanded": ariaExpanded,
|
|
595
596
|
"aria-haspopup": ariaHasPopup,
|
|
596
597
|
"aria-controls": ariaControls,
|
|
598
|
+
"aria-disabled": this.$props.disabled,
|
|
597
599
|
ref: setRef(this, 'input')
|
|
598
600
|
}), defaultSlot, this.$props.spinners && h("span", {
|
|
599
601
|
"class": "k-input-spinner k-spin-button",
|
|
@@ -7,7 +7,7 @@ var ref = allVue.ref;
|
|
|
7
7
|
var inject = allVue.inject;
|
|
8
8
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
9
9
|
import { getDate, cloneDate } from '@progress/kendo-date-math';
|
|
10
|
-
import { classNames, guid, Keys, templateRendering, getListeners, getTemplate, validatePackage, canUseDOM, kendoThemeMaps, getDefaultSlots, setRef, getRef } from '@progress/kendo-vue-common';
|
|
10
|
+
import { classNames, guid, Keys, templateRendering, getListeners, getTemplate, validatePackage, canUseDOM, kendoThemeMaps, getDefaultSlots, setRef, getRef, Icon } from '@progress/kendo-vue-common';
|
|
11
11
|
import { packageMetadata } from '../package-metadata.js';
|
|
12
12
|
import { DateInput } from '../dateinput/DateInput.js';
|
|
13
13
|
import { Calendar } from '../calendar/components/Calendar.js';
|
|
@@ -438,8 +438,11 @@ var DatePickerVue2 = {
|
|
|
438
438
|
h: h,
|
|
439
439
|
template: toggleButton,
|
|
440
440
|
defaultRendering: toggleButtonDefaultRendering,
|
|
441
|
-
defaultSlots: h(
|
|
442
|
-
|
|
441
|
+
defaultSlots: h(Icon, {
|
|
442
|
+
name: "calendar",
|
|
443
|
+
attrs: this.v3 ? undefined : {
|
|
444
|
+
name: "calendar"
|
|
445
|
+
}
|
|
443
446
|
}),
|
|
444
447
|
additionalListeners: {
|
|
445
448
|
click: this.handleIconClick
|
|
@@ -470,7 +473,7 @@ var DatePickerVue2 = {
|
|
|
470
473
|
validationMessage: validationMessage,
|
|
471
474
|
validityStyles: validityStyles,
|
|
472
475
|
value: value,
|
|
473
|
-
ariaHasPopup:
|
|
476
|
+
ariaHasPopup: 'grid',
|
|
474
477
|
ariaExpanded: show,
|
|
475
478
|
ariaRole: "combobox",
|
|
476
479
|
ariaControls: this._popupId
|
|
@@ -496,7 +499,7 @@ var DatePickerVue2 = {
|
|
|
496
499
|
validationMessage: validationMessage,
|
|
497
500
|
validityStyles: validityStyles,
|
|
498
501
|
value: value,
|
|
499
|
-
ariaHasPopup:
|
|
502
|
+
ariaHasPopup: 'grid',
|
|
500
503
|
ariaExpanded: show,
|
|
501
504
|
ariaRole: "combobox",
|
|
502
505
|
ariaControls: this._popupId
|
|
@@ -19,7 +19,7 @@ var ref = allVue.ref;
|
|
|
19
19
|
var inject = allVue.inject;
|
|
20
20
|
import { Popup } from '@progress/kendo-vue-popup';
|
|
21
21
|
import { cloneDate } from '@progress/kendo-date-math';
|
|
22
|
-
import { guid, Keys, canUseDOM, kendoThemeMaps } from '@progress/kendo-vue-common';
|
|
22
|
+
import { guid, Keys, canUseDOM, kendoThemeMaps, Icon } from '@progress/kendo-vue-common';
|
|
23
23
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
24
24
|
import { validatePackage, templateRendering, getListeners, getTemplate } from '@progress/kendo-vue-common';
|
|
25
25
|
import { packageMetadata } from '../package-metadata.js';
|
|
@@ -260,7 +260,7 @@ var DateRangePickerVue2 = {
|
|
|
260
260
|
size: size,
|
|
261
261
|
fillMode: fillMode,
|
|
262
262
|
rounded: rounded,
|
|
263
|
-
ariaHasPopup:
|
|
263
|
+
ariaHasPopup: 'grid',
|
|
264
264
|
ariaExpanded: this.computedShow,
|
|
265
265
|
value: value.start,
|
|
266
266
|
ariaRole: 'combobox',
|
|
@@ -297,7 +297,7 @@ var DateRangePickerVue2 = {
|
|
|
297
297
|
rounded: rounded,
|
|
298
298
|
disabled: this.$props.disabled,
|
|
299
299
|
valid: this.$props.valid,
|
|
300
|
-
ariaHasPopup:
|
|
300
|
+
ariaHasPopup: 'grid',
|
|
301
301
|
ariaExpanded: this.computedShow,
|
|
302
302
|
value: value.end,
|
|
303
303
|
ariaRole: 'combobox',
|
|
@@ -409,11 +409,15 @@ var DateRangePickerVue2 = {
|
|
|
409
409
|
onClick: this.handleReverseClick,
|
|
410
410
|
"aria-controls": startDateInputId + ' ' + endDateInputId,
|
|
411
411
|
"aria-label": provideLocalizationService(this).toLanguageString(swapStartEnd, messages[swapStartEnd])
|
|
412
|
-
}, [h(
|
|
412
|
+
}, [h(Icon, {
|
|
413
|
+
name: 'arrows-swap',
|
|
414
|
+
attrs: this.v3 ? undefined : {
|
|
415
|
+
name: 'arrows-swap'
|
|
416
|
+
},
|
|
413
417
|
style: {
|
|
414
418
|
transform: 'rotate(90deg)'
|
|
415
419
|
},
|
|
416
|
-
"class": "k-
|
|
420
|
+
"class": "k-button-icon"
|
|
417
421
|
})]);
|
|
418
422
|
return h("span", {
|
|
419
423
|
"class": this.rootClassName,
|
|
@@ -338,7 +338,7 @@ var DateTimePickerVue2 = {
|
|
|
338
338
|
validationMessage: validationMessage,
|
|
339
339
|
validityStyles: validityStyles,
|
|
340
340
|
value: this.computedValue,
|
|
341
|
-
ariaHasPopup:
|
|
341
|
+
ariaHasPopup: 'grid',
|
|
342
342
|
ariaExpanded: this.computedShow,
|
|
343
343
|
ariaRole: "combobox",
|
|
344
344
|
ariaControls: this._popupId
|
|
@@ -369,7 +369,7 @@ var DateTimePickerVue2 = {
|
|
|
369
369
|
validationMessage: validationMessage,
|
|
370
370
|
validityStyles: validityStyles,
|
|
371
371
|
value: this.computedValue,
|
|
372
|
-
ariaHasPopup:
|
|
372
|
+
ariaHasPopup: 'grid',
|
|
373
373
|
ariaExpanded: this.computedShow,
|
|
374
374
|
ariaRole: "combobox",
|
|
375
375
|
ariaControls: this._popupId
|
|
@@ -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: 1672389883,
|
|
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
|
};
|
|
@@ -342,7 +342,7 @@ var TimePickerVue2 = {
|
|
|
342
342
|
validationMessage: validationMessage,
|
|
343
343
|
validityStyles: validityStyles,
|
|
344
344
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
345
|
-
ariaHasPopup:
|
|
345
|
+
ariaHasPopup: 'grid',
|
|
346
346
|
ariaExpanded: this.computedShow,
|
|
347
347
|
ariaRole: "combobox",
|
|
348
348
|
ariaControls: this._popupId
|
|
@@ -371,7 +371,7 @@ var TimePickerVue2 = {
|
|
|
371
371
|
validationMessage: validationMessage,
|
|
372
372
|
validityStyles: validityStyles,
|
|
373
373
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
374
|
-
ariaHasPopup:
|
|
374
|
+
ariaHasPopup: 'grid',
|
|
375
375
|
ariaExpanded: this.computedShow,
|
|
376
376
|
ariaRole: "combobox",
|
|
377
377
|
ariaControls: this._popupId
|
|
@@ -563,7 +563,8 @@ var DateInputVue2 = {
|
|
|
563
563
|
"aria-label": ariaLabel,
|
|
564
564
|
"aria-expanded": ariaExpanded,
|
|
565
565
|
"aria-haspopup": ariaHasPopup,
|
|
566
|
-
"aria-controls": ariaControls
|
|
566
|
+
"aria-controls": ariaControls,
|
|
567
|
+
"aria-disabled": this.$props.disabled
|
|
567
568
|
},
|
|
568
569
|
tabindex: this.$props.tabIndex,
|
|
569
570
|
disabled: this.$props.disabled,
|
|
@@ -600,6 +601,7 @@ var DateInputVue2 = {
|
|
|
600
601
|
"aria-expanded": ariaExpanded,
|
|
601
602
|
"aria-haspopup": ariaHasPopup,
|
|
602
603
|
"aria-controls": ariaControls,
|
|
604
|
+
"aria-disabled": this.$props.disabled,
|
|
603
605
|
ref: (0, kendo_vue_common_1.setRef)(this, 'input')
|
|
604
606
|
}), defaultSlot, this.$props.spinners && h("span", {
|
|
605
607
|
"class": "k-input-spinner k-spin-button",
|
|
@@ -444,8 +444,11 @@ var DatePickerVue2 = {
|
|
|
444
444
|
h: h,
|
|
445
445
|
template: toggleButton,
|
|
446
446
|
defaultRendering: toggleButtonDefaultRendering,
|
|
447
|
-
defaultSlots: h(
|
|
448
|
-
|
|
447
|
+
defaultSlots: h(kendo_vue_common_1.Icon, {
|
|
448
|
+
name: "calendar",
|
|
449
|
+
attrs: this.v3 ? undefined : {
|
|
450
|
+
name: "calendar"
|
|
451
|
+
}
|
|
449
452
|
}),
|
|
450
453
|
additionalListeners: {
|
|
451
454
|
click: this.handleIconClick
|
|
@@ -476,7 +479,7 @@ var DatePickerVue2 = {
|
|
|
476
479
|
validationMessage: validationMessage,
|
|
477
480
|
validityStyles: validityStyles,
|
|
478
481
|
value: value,
|
|
479
|
-
ariaHasPopup:
|
|
482
|
+
ariaHasPopup: 'grid',
|
|
480
483
|
ariaExpanded: show,
|
|
481
484
|
ariaRole: "combobox",
|
|
482
485
|
ariaControls: this._popupId
|
|
@@ -502,7 +505,7 @@ var DatePickerVue2 = {
|
|
|
502
505
|
validationMessage: validationMessage,
|
|
503
506
|
validityStyles: validityStyles,
|
|
504
507
|
value: value,
|
|
505
|
-
ariaHasPopup:
|
|
508
|
+
ariaHasPopup: 'grid',
|
|
506
509
|
ariaExpanded: show,
|
|
507
510
|
ariaRole: "combobox",
|
|
508
511
|
ariaControls: this._popupId
|
|
@@ -266,7 +266,7 @@ var DateRangePickerVue2 = {
|
|
|
266
266
|
size: size,
|
|
267
267
|
fillMode: fillMode,
|
|
268
268
|
rounded: rounded,
|
|
269
|
-
ariaHasPopup:
|
|
269
|
+
ariaHasPopup: 'grid',
|
|
270
270
|
ariaExpanded: this.computedShow,
|
|
271
271
|
value: value.start,
|
|
272
272
|
ariaRole: 'combobox',
|
|
@@ -303,7 +303,7 @@ var DateRangePickerVue2 = {
|
|
|
303
303
|
rounded: rounded,
|
|
304
304
|
disabled: this.$props.disabled,
|
|
305
305
|
valid: this.$props.valid,
|
|
306
|
-
ariaHasPopup:
|
|
306
|
+
ariaHasPopup: 'grid',
|
|
307
307
|
ariaExpanded: this.computedShow,
|
|
308
308
|
value: value.end,
|
|
309
309
|
ariaRole: 'combobox',
|
|
@@ -415,11 +415,15 @@ var DateRangePickerVue2 = {
|
|
|
415
415
|
onClick: this.handleReverseClick,
|
|
416
416
|
"aria-controls": startDateInputId + ' ' + endDateInputId,
|
|
417
417
|
"aria-label": (0, kendo_vue_intl_1.provideLocalizationService)(this).toLanguageString(main_2.swapStartEnd, main_2.messages[main_2.swapStartEnd])
|
|
418
|
-
}, [h(
|
|
418
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
419
|
+
name: 'arrows-swap',
|
|
420
|
+
attrs: this.v3 ? undefined : {
|
|
421
|
+
name: 'arrows-swap'
|
|
422
|
+
},
|
|
419
423
|
style: {
|
|
420
424
|
transform: 'rotate(90deg)'
|
|
421
425
|
},
|
|
422
|
-
"class": "k-
|
|
426
|
+
"class": "k-button-icon"
|
|
423
427
|
})]);
|
|
424
428
|
return h("span", {
|
|
425
429
|
"class": this.rootClassName,
|
|
@@ -344,7 +344,7 @@ var DateTimePickerVue2 = {
|
|
|
344
344
|
validationMessage: validationMessage,
|
|
345
345
|
validityStyles: validityStyles,
|
|
346
346
|
value: this.computedValue,
|
|
347
|
-
ariaHasPopup:
|
|
347
|
+
ariaHasPopup: 'grid',
|
|
348
348
|
ariaExpanded: this.computedShow,
|
|
349
349
|
ariaRole: "combobox",
|
|
350
350
|
ariaControls: this._popupId
|
|
@@ -375,7 +375,7 @@ var DateTimePickerVue2 = {
|
|
|
375
375
|
validationMessage: validationMessage,
|
|
376
376
|
validityStyles: validityStyles,
|
|
377
377
|
value: this.computedValue,
|
|
378
|
-
ariaHasPopup:
|
|
378
|
+
ariaHasPopup: 'grid',
|
|
379
379
|
ariaExpanded: this.computedShow,
|
|
380
380
|
ariaRole: "combobox",
|
|
381
381
|
ariaControls: this._popupId
|
|
@@ -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: 1672389883,
|
|
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
|
};
|
|
@@ -348,7 +348,7 @@ var TimePickerVue2 = {
|
|
|
348
348
|
validationMessage: validationMessage,
|
|
349
349
|
validityStyles: validityStyles,
|
|
350
350
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
351
|
-
ariaHasPopup:
|
|
351
|
+
ariaHasPopup: 'grid',
|
|
352
352
|
ariaExpanded: this.computedShow,
|
|
353
353
|
ariaRole: "combobox",
|
|
354
354
|
ariaControls: this._popupId
|
|
@@ -377,7 +377,7 @@ var TimePickerVue2 = {
|
|
|
377
377
|
validationMessage: validationMessage,
|
|
378
378
|
validityStyles: validityStyles,
|
|
379
379
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
380
|
-
ariaHasPopup:
|
|
380
|
+
ariaHasPopup: 'grid',
|
|
381
381
|
ariaExpanded: this.computedShow,
|
|
382
382
|
ariaRole: "combobox",
|
|
383
383
|
ariaControls: this._popupId
|
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.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202212300853",
|
|
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.7.4-dev.
|
|
56
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
57
|
-
"@progress/kendo-vue-labels": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
55
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
|
|
56
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212300853",
|
|
57
|
+
"@progress/kendo-vue-labels": "3.7.4-dev.202212300853",
|
|
58
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202212300853"
|
|
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.7.4-dev.
|
|
64
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
63
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202212300853",
|
|
64
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212300853"
|
|
65
65
|
},
|
|
66
66
|
"author": "Progress",
|
|
67
67
|
"license": "SEE LICENSE IN LICENSE.md",
|