@progress/kendo-vue-dateinputs 3.0.0-dev.202201170830 → 3.0.0-dev.202201181632
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/dateinput/DateInput.js +7 -3
- package/dist/es/datepicker/DatePicker.js +3 -1
- package/dist/es/datetimepicker/DateTimePicker.js +3 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimePicker.js +3 -1
- package/dist/es/timepicker/services/DOMService.js +1 -1
- package/dist/npm/dateinput/DateInput.js +7 -3
- package/dist/npm/datepicker/DatePicker.js +3 -1
- package/dist/npm/datetimepicker/DateTimePicker.js +3 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/TimePicker.js +3 -1
- package/dist/npm/timepicker/services/DOMService.js +1 -1
- package/package.json +7 -7
|
@@ -631,14 +631,16 @@ var DateInput = {
|
|
|
631
631
|
}
|
|
632
632
|
}, [// @ts-ignore
|
|
633
633
|
h(KButton, {
|
|
634
|
-
|
|
634
|
+
tabIndex: -1,
|
|
635
635
|
attrs: this.v3 ? undefined : {
|
|
636
|
+
tabIndex: -1,
|
|
636
637
|
icon: 'arrow-n',
|
|
637
638
|
size: this.$props.size,
|
|
638
639
|
fillMode: this.$props.fillMode,
|
|
639
640
|
"aria-label": localizationService.toLanguageString(increaseValue, messages[increaseValue]),
|
|
640
641
|
title: localizationService.toLanguageString(increaseValue, messages[increaseValue])
|
|
641
642
|
},
|
|
643
|
+
icon: 'arrow-n',
|
|
642
644
|
size: this.$props.size,
|
|
643
645
|
fillMode: this.$props.fillMode,
|
|
644
646
|
"class": "k-spinner-increase",
|
|
@@ -650,15 +652,17 @@ var DateInput = {
|
|
|
650
652
|
}
|
|
651
653
|
}), // @ts-ignore
|
|
652
654
|
h(KButton, {
|
|
653
|
-
|
|
654
|
-
icon: 'arrow-s',
|
|
655
|
+
tabIndex: -1,
|
|
655
656
|
attrs: this.v3 ? undefined : {
|
|
657
|
+
tabIndex: -1,
|
|
656
658
|
icon: 'arrow-s',
|
|
657
659
|
size: this.$props.size,
|
|
658
660
|
fillMode: this.$props.fillMode,
|
|
659
661
|
"aria-label": localizationService.toLanguageString(decreaseValue, messages[decreaseValue]),
|
|
660
662
|
title: localizationService.toLanguageString(decreaseValue, messages[decreaseValue])
|
|
661
663
|
},
|
|
664
|
+
"class": "k-spinner-decrease",
|
|
665
|
+
icon: 'arrow-s',
|
|
662
666
|
size: this.$props.size,
|
|
663
667
|
fillMode: this.$props.fillMode,
|
|
664
668
|
"aria-label": localizationService.toLanguageString(decreaseValue, messages[decreaseValue]),
|
|
@@ -433,12 +433,14 @@ var DatePicker = {
|
|
|
433
433
|
var toggleButton = this.$props.toggleButton ? templateRendering.call(this, this.$props.toggleButton, getListeners.call(this)) : undefined;
|
|
434
434
|
var toggleButtonDefaultRendering = // @ts-ignore
|
|
435
435
|
h(ToggleButton, {
|
|
436
|
-
|
|
436
|
+
tabIndex: -1,
|
|
437
437
|
attrs: this.v3 ? undefined : {
|
|
438
|
+
tabIndex: -1,
|
|
438
439
|
icon: "calendar",
|
|
439
440
|
title: provideLocalizationService(this).toLanguageString(toggleCalendar, messages[toggleCalendar]),
|
|
440
441
|
"aria-label": provideLocalizationService(this).toLanguageString(toggleCalendar, messages[toggleCalendar])
|
|
441
442
|
},
|
|
443
|
+
icon: "calendar",
|
|
442
444
|
onMousedown: this.handleIconMouseDown,
|
|
443
445
|
on: this.v3 ? undefined : {
|
|
444
446
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -483,13 +483,15 @@ var DateTimePicker = {
|
|
|
483
483
|
onFocusout: this.handleBlur
|
|
484
484
|
}, [dateInputRendering, // @ts-ignore
|
|
485
485
|
h(Button, {
|
|
486
|
-
|
|
486
|
+
tabIndex: -1,
|
|
487
487
|
attrs: this.v3 ? undefined : {
|
|
488
|
+
tabIndex: -1,
|
|
488
489
|
icon: 'calendar',
|
|
489
490
|
title: provideLocalizationService(this).toLanguageString(toggleDateTimeSelector, messages[toggleDateTimeSelector]),
|
|
490
491
|
"aria-controls": this._popupId,
|
|
491
492
|
"aria-label": provideLocalizationService(this).toLanguageString(toggleDateTimeSelector, messages[toggleDateTimeSelector])
|
|
492
493
|
},
|
|
494
|
+
icon: 'calendar',
|
|
493
495
|
onMousedown: this.handleIconMouseDown,
|
|
494
496
|
on: this.v3 ? undefined : {
|
|
495
497
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -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: 1642523086,
|
|
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
|
};
|
|
@@ -480,13 +480,15 @@ var TimePicker = {
|
|
|
480
480
|
} : this._anchor
|
|
481
481
|
}, [dateInputRendering, // @ts-ignore
|
|
482
482
|
h(KButton, {
|
|
483
|
-
|
|
483
|
+
tabIndex: -1,
|
|
484
484
|
attrs: this.v3 ? undefined : {
|
|
485
|
+
tabIndex: -1,
|
|
485
486
|
icon: 'clock',
|
|
486
487
|
title: toggleTimeMessage,
|
|
487
488
|
"aria-controls": this._popupId,
|
|
488
489
|
"aria-label": toggleClockMessage
|
|
489
490
|
},
|
|
491
|
+
icon: 'clock',
|
|
490
492
|
onMousedown: this.handleIconMouseDown,
|
|
491
493
|
on: this.v3 ? undefined : {
|
|
492
494
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -30,7 +30,7 @@ var DOMService = /** @class */ (function () {
|
|
|
30
30
|
var listContainer = container && container.querySelector('.k-time-container');
|
|
31
31
|
var hostContainer = listContainer || document.body;
|
|
32
32
|
var wrapper = hostContainer.appendChild(timeWrapper);
|
|
33
|
-
this.timeListHeight =
|
|
33
|
+
this.timeListHeight = listContainer.offsetHeight;
|
|
34
34
|
this.itemHeight = wrapper.querySelector('li').offsetHeight;
|
|
35
35
|
hostContainer.removeChild(wrapper);
|
|
36
36
|
this.didCalculate = true;
|
|
@@ -651,14 +651,16 @@ var DateInput = {
|
|
|
651
651
|
}
|
|
652
652
|
}, [// @ts-ignore
|
|
653
653
|
h(kendo_vue_buttons_1.Button, {
|
|
654
|
-
|
|
654
|
+
tabIndex: -1,
|
|
655
655
|
attrs: this.v3 ? undefined : {
|
|
656
|
+
tabIndex: -1,
|
|
656
657
|
icon: 'arrow-n',
|
|
657
658
|
size: this.$props.size,
|
|
658
659
|
fillMode: this.$props.fillMode,
|
|
659
660
|
"aria-label": localizationService.toLanguageString(messages_1.increaseValue, messages_1.messages[messages_1.increaseValue]),
|
|
660
661
|
title: localizationService.toLanguageString(messages_1.increaseValue, messages_1.messages[messages_1.increaseValue])
|
|
661
662
|
},
|
|
663
|
+
icon: 'arrow-n',
|
|
662
664
|
size: this.$props.size,
|
|
663
665
|
fillMode: this.$props.fillMode,
|
|
664
666
|
"class": "k-spinner-increase",
|
|
@@ -670,15 +672,17 @@ var DateInput = {
|
|
|
670
672
|
}
|
|
671
673
|
}), // @ts-ignore
|
|
672
674
|
h(kendo_vue_buttons_1.Button, {
|
|
673
|
-
|
|
674
|
-
icon: 'arrow-s',
|
|
675
|
+
tabIndex: -1,
|
|
675
676
|
attrs: this.v3 ? undefined : {
|
|
677
|
+
tabIndex: -1,
|
|
676
678
|
icon: 'arrow-s',
|
|
677
679
|
size: this.$props.size,
|
|
678
680
|
fillMode: this.$props.fillMode,
|
|
679
681
|
"aria-label": localizationService.toLanguageString(messages_1.decreaseValue, messages_1.messages[messages_1.decreaseValue]),
|
|
680
682
|
title: localizationService.toLanguageString(messages_1.decreaseValue, messages_1.messages[messages_1.decreaseValue])
|
|
681
683
|
},
|
|
684
|
+
"class": "k-spinner-decrease",
|
|
685
|
+
icon: 'arrow-s',
|
|
682
686
|
size: this.$props.size,
|
|
683
687
|
fillMode: this.$props.fillMode,
|
|
684
688
|
"aria-label": localizationService.toLanguageString(messages_1.decreaseValue, messages_1.messages[messages_1.decreaseValue]),
|
|
@@ -453,12 +453,14 @@ var DatePicker = {
|
|
|
453
453
|
var toggleButton = this.$props.toggleButton ? kendo_vue_common_1.templateRendering.call(this, this.$props.toggleButton, kendo_vue_common_1.getListeners.call(this)) : undefined;
|
|
454
454
|
var toggleButtonDefaultRendering = // @ts-ignore
|
|
455
455
|
h(ToggleButton_1.ToggleButton, {
|
|
456
|
-
|
|
456
|
+
tabIndex: -1,
|
|
457
457
|
attrs: this.v3 ? undefined : {
|
|
458
|
+
tabIndex: -1,
|
|
458
459
|
icon: "calendar",
|
|
459
460
|
title: kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleCalendar, messages_1.messages[messages_1.toggleCalendar]),
|
|
460
461
|
"aria-label": kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleCalendar, messages_1.messages[messages_1.toggleCalendar])
|
|
461
462
|
},
|
|
463
|
+
icon: "calendar",
|
|
462
464
|
onMousedown: this.handleIconMouseDown,
|
|
463
465
|
on: this.v3 ? undefined : {
|
|
464
466
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -505,13 +505,15 @@ var DateTimePicker = {
|
|
|
505
505
|
onFocusout: this.handleBlur
|
|
506
506
|
}, [dateInputRendering, // @ts-ignore
|
|
507
507
|
h(kendo_vue_buttons_1.Button, {
|
|
508
|
-
|
|
508
|
+
tabIndex: -1,
|
|
509
509
|
attrs: this.v3 ? undefined : {
|
|
510
|
+
tabIndex: -1,
|
|
510
511
|
icon: 'calendar',
|
|
511
512
|
title: kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleDateTimeSelector, messages_1.messages[messages_1.toggleDateTimeSelector]),
|
|
512
513
|
"aria-controls": this._popupId,
|
|
513
514
|
"aria-label": kendo_vue_intl_1.provideLocalizationService(this).toLanguageString(messages_1.toggleDateTimeSelector, messages_1.messages[messages_1.toggleDateTimeSelector])
|
|
514
515
|
},
|
|
516
|
+
icon: 'calendar',
|
|
515
517
|
onMousedown: this.handleIconMouseDown,
|
|
516
518
|
on: this.v3 ? undefined : {
|
|
517
519
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -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: 1642523086,
|
|
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
|
};
|
|
@@ -500,13 +500,15 @@ var TimePicker = {
|
|
|
500
500
|
} : this._anchor
|
|
501
501
|
}, [dateInputRendering, // @ts-ignore
|
|
502
502
|
h(kendo_vue_buttons_1.Button, {
|
|
503
|
-
|
|
503
|
+
tabIndex: -1,
|
|
504
504
|
attrs: this.v3 ? undefined : {
|
|
505
|
+
tabIndex: -1,
|
|
505
506
|
icon: 'clock',
|
|
506
507
|
title: toggleTimeMessage,
|
|
507
508
|
"aria-controls": this._popupId,
|
|
508
509
|
"aria-label": toggleClockMessage
|
|
509
510
|
},
|
|
511
|
+
icon: 'clock',
|
|
510
512
|
onMousedown: this.handleIconMouseDown,
|
|
511
513
|
on: this.v3 ? undefined : {
|
|
512
514
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -33,7 +33,7 @@ var DOMService = /** @class */ (function () {
|
|
|
33
33
|
var listContainer = container && container.querySelector('.k-time-container');
|
|
34
34
|
var hostContainer = listContainer || document.body;
|
|
35
35
|
var wrapper = hostContainer.appendChild(timeWrapper);
|
|
36
|
-
this.timeListHeight =
|
|
36
|
+
this.timeListHeight = listContainer.offsetHeight;
|
|
37
37
|
this.itemHeight = wrapper.querySelector('li').offsetHeight;
|
|
38
38
|
hostContainer.removeChild(wrapper);
|
|
39
39
|
this.didCalculate = true;
|
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.0.0-dev.
|
|
4
|
+
"version": "3.0.0-dev.202201181632",
|
|
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.0.0-dev.
|
|
50
|
-
"@progress/kendo-vue-common": "3.0.0-dev.
|
|
51
|
-
"@progress/kendo-vue-labels": "3.0.0-dev.
|
|
52
|
-
"@progress/kendo-vue-popup": "3.0.0-dev.
|
|
49
|
+
"@progress/kendo-vue-buttons": "3.0.0-dev.202201181632",
|
|
50
|
+
"@progress/kendo-vue-common": "3.0.0-dev.202201181632",
|
|
51
|
+
"@progress/kendo-vue-labels": "3.0.0-dev.202201181632",
|
|
52
|
+
"@progress/kendo-vue-popup": "3.0.0-dev.202201181632"
|
|
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.0.0-dev.
|
|
58
|
-
"@progress/kendo-vue-intl": "3.0.0-dev.
|
|
57
|
+
"@progress/kendo-vue-dropdowns": "3.0.0-dev.202201181632",
|
|
58
|
+
"@progress/kendo-vue-intl": "3.0.0-dev.202201181632"
|
|
59
59
|
},
|
|
60
60
|
"author": "Progress",
|
|
61
61
|
"license": "SEE LICENSE IN LICENSE.md",
|