@progress/kendo-vue-dateinputs 3.7.4-dev.202212020747 → 3.7.4-dev.202301091431
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/calendar/components/Header.js +5 -0
- package/dist/es/dateinput/DateInput.js +9 -2
- package/dist/es/dateinput/models/DateInputSettings.d.ts +1 -1
- package/dist/es/datepicker/DatePicker.js +21 -9
- package/dist/es/datepicker/interfaces/DatePickerProps.d.ts +4 -0
- package/dist/es/daterangepicker/DateRangePicker.js +12 -5
- package/dist/es/datetimepicker/DateTimePicker.js +5 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/TimePicker.js +5 -2
- package/dist/esm/calendar/components/Header.js +5 -0
- package/dist/esm/dateinput/DateInput.js +9 -2
- package/dist/esm/dateinput/models/DateInputSettings.d.ts +1 -1
- package/dist/esm/datepicker/DatePicker.js +21 -9
- package/dist/esm/datepicker/interfaces/DatePickerProps.d.ts +4 -0
- package/dist/esm/daterangepicker/DateRangePicker.js +12 -5
- package/dist/esm/datetimepicker/DateTimePicker.js +5 -2
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/timepicker/TimePicker.js +5 -2
- package/dist/npm/calendar/components/Header.js +5 -0
- package/dist/npm/dateinput/DateInput.js +9 -2
- package/dist/npm/dateinput/models/DateInputSettings.d.ts +1 -1
- package/dist/npm/datepicker/DatePicker.js +20 -8
- package/dist/npm/datepicker/interfaces/DatePickerProps.d.ts +4 -0
- package/dist/npm/daterangepicker/DateRangePicker.js +11 -4
- package/dist/npm/datetimepicker/DateTimePicker.js +5 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/TimePicker.js +5 -2
- package/package.json +11 -9
|
@@ -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: 1673273820,
|
|
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
|
};
|
|
@@ -29,6 +29,7 @@ import { TimeSelector } from './TimeSelector.js';
|
|
|
29
29
|
import { MIDNIGHT_DATE, MIN_TIME, MAX_TIME, setTime } from '../utils.js';
|
|
30
30
|
import { isInRange, isSmallerThanMin, isBiggerThanMax } from './utils.js';
|
|
31
31
|
import { defaultFormatPlaceholder } from '../dateinput/utils.js';
|
|
32
|
+
import { clockIcon } from '@progress/kendo-svg-icons';
|
|
32
33
|
/**
|
|
33
34
|
* @hidden
|
|
34
35
|
*/
|
|
@@ -342,7 +343,7 @@ var TimePickerVue2 = {
|
|
|
342
343
|
validationMessage: validationMessage,
|
|
343
344
|
validityStyles: validityStyles,
|
|
344
345
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
345
|
-
ariaHasPopup:
|
|
346
|
+
ariaHasPopup: 'grid',
|
|
346
347
|
ariaExpanded: this.computedShow,
|
|
347
348
|
ariaRole: "combobox",
|
|
348
349
|
ariaControls: this._popupId
|
|
@@ -371,7 +372,7 @@ var TimePickerVue2 = {
|
|
|
371
372
|
validationMessage: validationMessage,
|
|
372
373
|
validityStyles: validityStyles,
|
|
373
374
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
374
|
-
ariaHasPopup:
|
|
375
|
+
ariaHasPopup: 'grid',
|
|
375
376
|
ariaExpanded: this.computedShow,
|
|
376
377
|
ariaRole: "combobox",
|
|
377
378
|
ariaControls: this._popupId
|
|
@@ -489,6 +490,7 @@ var TimePickerVue2 = {
|
|
|
489
490
|
type: "button",
|
|
490
491
|
tabIndex: -1,
|
|
491
492
|
icon: 'clock',
|
|
493
|
+
svgIcon: clockIcon,
|
|
492
494
|
title: toggleTimeMessage,
|
|
493
495
|
rounded: null,
|
|
494
496
|
"aria-controls": this._popupId,
|
|
@@ -496,6 +498,7 @@ var TimePickerVue2 = {
|
|
|
496
498
|
},
|
|
497
499
|
tabIndex: -1,
|
|
498
500
|
icon: 'clock',
|
|
501
|
+
svgIcon: clockIcon,
|
|
499
502
|
onMousedown: this.handleIconMouseDown,
|
|
500
503
|
on: this.v3 ? undefined : {
|
|
501
504
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -19,6 +19,7 @@ var main_2 = require("../models/main");
|
|
|
19
19
|
var utils_1 = require("../../utils");
|
|
20
20
|
var defaults_1 = require("../../defaults");
|
|
21
21
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
22
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
22
23
|
/**
|
|
23
24
|
* @hidden
|
|
24
25
|
*/
|
|
@@ -213,6 +214,7 @@ var HeaderVue2 = {
|
|
|
213
214
|
attrs: this.v3 ? undefined : {
|
|
214
215
|
type: "button",
|
|
215
216
|
icon: 'chevron-left',
|
|
217
|
+
svgIcon: kendo_svg_icons_1.chevronLeftIcon,
|
|
216
218
|
size: this.$props.size,
|
|
217
219
|
fillMode: 'flat',
|
|
218
220
|
desabled: isPrevDisabled,
|
|
@@ -220,6 +222,7 @@ var HeaderVue2 = {
|
|
|
220
222
|
title: prevViewTitle
|
|
221
223
|
},
|
|
222
224
|
icon: 'chevron-left',
|
|
225
|
+
svgIcon: kendo_svg_icons_1.chevronLeftIcon,
|
|
223
226
|
size: this.$props.size,
|
|
224
227
|
fillMode: 'flat',
|
|
225
228
|
"class": "k-calendar-nav-pre",
|
|
@@ -249,6 +252,7 @@ var HeaderVue2 = {
|
|
|
249
252
|
attrs: this.v3 ? undefined : {
|
|
250
253
|
type: "button",
|
|
251
254
|
icon: 'chevron-right',
|
|
255
|
+
svgIcon: kendo_svg_icons_1.chevronRightIcon,
|
|
252
256
|
size: this.$props.size,
|
|
253
257
|
fillMode: 'flat',
|
|
254
258
|
desabled: isNextDisabled,
|
|
@@ -256,6 +260,7 @@ var HeaderVue2 = {
|
|
|
256
260
|
title: nextViewTittle
|
|
257
261
|
},
|
|
258
262
|
icon: 'chevron-right',
|
|
263
|
+
svgIcon: kendo_svg_icons_1.chevronRightIcon,
|
|
259
264
|
size: this.$props.size,
|
|
260
265
|
fillMode: 'flat',
|
|
261
266
|
"class": "k-calendar-nav-next",
|
|
@@ -23,6 +23,7 @@ var main_2 = require("../messages/main");
|
|
|
23
23
|
var utils_3 = require("../timepicker/utils");
|
|
24
24
|
var defaults_1 = require("../defaults");
|
|
25
25
|
var kendo_vue_labels_1 = require("@progress/kendo-vue-labels");
|
|
26
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
26
27
|
var VALIDATION_MESSAGE = 'Please enter a valid value!';
|
|
27
28
|
/**
|
|
28
29
|
* @hidden
|
|
@@ -153,7 +154,7 @@ var DateInputVue2 = {
|
|
|
153
154
|
default: undefined
|
|
154
155
|
},
|
|
155
156
|
ariaHasPopup: {
|
|
156
|
-
type:
|
|
157
|
+
type: String,
|
|
157
158
|
default: undefined
|
|
158
159
|
}
|
|
159
160
|
},
|
|
@@ -563,7 +564,8 @@ var DateInputVue2 = {
|
|
|
563
564
|
"aria-label": ariaLabel,
|
|
564
565
|
"aria-expanded": ariaExpanded,
|
|
565
566
|
"aria-haspopup": ariaHasPopup,
|
|
566
|
-
"aria-controls": ariaControls
|
|
567
|
+
"aria-controls": ariaControls,
|
|
568
|
+
"aria-disabled": this.$props.disabled
|
|
567
569
|
},
|
|
568
570
|
tabindex: this.$props.tabIndex,
|
|
569
571
|
disabled: this.$props.disabled,
|
|
@@ -600,6 +602,7 @@ var DateInputVue2 = {
|
|
|
600
602
|
"aria-expanded": ariaExpanded,
|
|
601
603
|
"aria-haspopup": ariaHasPopup,
|
|
602
604
|
"aria-controls": ariaControls,
|
|
605
|
+
"aria-disabled": this.$props.disabled,
|
|
603
606
|
ref: (0, kendo_vue_common_1.setRef)(this, 'input')
|
|
604
607
|
}), defaultSlot, this.$props.spinners && h("span", {
|
|
605
608
|
"class": "k-input-spinner k-spin-button",
|
|
@@ -615,6 +618,7 @@ var DateInputVue2 = {
|
|
|
615
618
|
type: "button",
|
|
616
619
|
tabIndex: -1,
|
|
617
620
|
icon: 'caret-alt-up',
|
|
621
|
+
svgIcon: kendo_svg_icons_1.caretAltUpIcon,
|
|
618
622
|
size: this.$props.size,
|
|
619
623
|
fillMode: this.$props.fillMode,
|
|
620
624
|
"aria-label": localizationService.toLanguageString(main_2.increaseValue, main_2.messages[main_2.increaseValue]),
|
|
@@ -622,6 +626,7 @@ var DateInputVue2 = {
|
|
|
622
626
|
},
|
|
623
627
|
tabIndex: -1,
|
|
624
628
|
icon: 'caret-alt-up',
|
|
629
|
+
svgIcon: kendo_svg_icons_1.caretAltUpIcon,
|
|
625
630
|
size: this.$props.size,
|
|
626
631
|
fillMode: this.$props.fillMode,
|
|
627
632
|
"class": "k-spinner-increase",
|
|
@@ -639,6 +644,7 @@ var DateInputVue2 = {
|
|
|
639
644
|
type: "button",
|
|
640
645
|
tabIndex: -1,
|
|
641
646
|
icon: 'caret-alt-down',
|
|
647
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
642
648
|
size: this.$props.size,
|
|
643
649
|
fillMode: this.$props.fillMode,
|
|
644
650
|
"aria-label": localizationService.toLanguageString(main_2.decreaseValue, main_2.messages[main_2.decreaseValue]),
|
|
@@ -647,6 +653,7 @@ var DateInputVue2 = {
|
|
|
647
653
|
tabIndex: -1,
|
|
648
654
|
"class": "k-spinner-decrease",
|
|
649
655
|
icon: 'caret-alt-down',
|
|
656
|
+
svgIcon: kendo_svg_icons_1.caretAltDownIcon,
|
|
650
657
|
size: this.$props.size,
|
|
651
658
|
fillMode: this.$props.fillMode,
|
|
652
659
|
"aria-label": localizationService.toLanguageString(main_2.decreaseValue, main_2.messages[main_2.decreaseValue]),
|
|
@@ -11,6 +11,7 @@ var gh = allVue.h;
|
|
|
11
11
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
12
|
var ref = allVue.ref;
|
|
13
13
|
var inject = allVue.inject;
|
|
14
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
14
15
|
var kendo_vue_popup_1 = require("@progress/kendo-vue-popup");
|
|
15
16
|
var kendo_date_math_1 = require("@progress/kendo-date-math");
|
|
16
17
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
@@ -165,7 +166,8 @@ var DatePickerVue2 = {
|
|
|
165
166
|
valid: {
|
|
166
167
|
type: Boolean,
|
|
167
168
|
default: undefined
|
|
168
|
-
}
|
|
169
|
+
},
|
|
170
|
+
ariaLabel: String
|
|
169
171
|
},
|
|
170
172
|
data: function data() {
|
|
171
173
|
return {
|
|
@@ -404,7 +406,8 @@ var DatePickerVue2 = {
|
|
|
404
406
|
validityStyles = _b.validityStyles,
|
|
405
407
|
size = _b.size,
|
|
406
408
|
fillMode = _b.fillMode,
|
|
407
|
-
rounded = _b.rounded
|
|
409
|
+
rounded = _b.rounded,
|
|
410
|
+
ariaLabel = _b.ariaLabel;
|
|
408
411
|
var _c = this.$props.popupSettings,
|
|
409
412
|
popupClass = _c.popupClass,
|
|
410
413
|
animate = _c.animate,
|
|
@@ -423,12 +426,14 @@ var DatePickerVue2 = {
|
|
|
423
426
|
type: "button",
|
|
424
427
|
tabIndex: -1,
|
|
425
428
|
icon: "calendar",
|
|
429
|
+
svgIcon: kendo_svg_icons_1.calendarIcon,
|
|
426
430
|
title: (0, kendo_vue_intl_1.provideLocalizationService)(this).toLanguageString(main_1.toggleCalendar, main_1.messages[main_1.toggleCalendar]),
|
|
427
431
|
"aria-label": (0, kendo_vue_intl_1.provideLocalizationService)(this).toLanguageString(main_1.toggleCalendar, main_1.messages[main_1.toggleCalendar]),
|
|
428
432
|
rounded: null
|
|
429
433
|
},
|
|
430
434
|
tabIndex: -1,
|
|
431
435
|
icon: "calendar",
|
|
436
|
+
svgIcon: kendo_svg_icons_1.calendarIcon,
|
|
432
437
|
onMousedown: this.handleIconMouseDown,
|
|
433
438
|
on: this.v3 ? undefined : {
|
|
434
439
|
"mousedown": this.handleIconMouseDown,
|
|
@@ -444,8 +449,13 @@ var DatePickerVue2 = {
|
|
|
444
449
|
h: h,
|
|
445
450
|
template: toggleButton,
|
|
446
451
|
defaultRendering: toggleButtonDefaultRendering,
|
|
447
|
-
defaultSlots: h(
|
|
448
|
-
|
|
452
|
+
defaultSlots: h(kendo_vue_common_1.Icon, {
|
|
453
|
+
name: "calendar",
|
|
454
|
+
attrs: this.v3 ? undefined : {
|
|
455
|
+
name: "calendar",
|
|
456
|
+
icon: kendo_svg_icons_1.calendarIcon
|
|
457
|
+
},
|
|
458
|
+
icon: kendo_svg_icons_1.calendarIcon
|
|
449
459
|
}),
|
|
450
460
|
additionalListeners: {
|
|
451
461
|
click: this.handleIconClick
|
|
@@ -476,10 +486,11 @@ var DatePickerVue2 = {
|
|
|
476
486
|
validationMessage: validationMessage,
|
|
477
487
|
validityStyles: validityStyles,
|
|
478
488
|
value: value,
|
|
479
|
-
ariaHasPopup:
|
|
489
|
+
ariaHasPopup: 'grid',
|
|
480
490
|
ariaExpanded: show,
|
|
481
491
|
ariaRole: "combobox",
|
|
482
|
-
ariaControls: this._popupId
|
|
492
|
+
ariaControls: this._popupId,
|
|
493
|
+
ariaLabel: ariaLabel
|
|
483
494
|
},
|
|
484
495
|
disabled: disabled,
|
|
485
496
|
format: format,
|
|
@@ -502,10 +513,11 @@ var DatePickerVue2 = {
|
|
|
502
513
|
validationMessage: validationMessage,
|
|
503
514
|
validityStyles: validityStyles,
|
|
504
515
|
value: value,
|
|
505
|
-
ariaHasPopup:
|
|
516
|
+
ariaHasPopup: 'grid',
|
|
506
517
|
ariaExpanded: show,
|
|
507
518
|
ariaRole: "combobox",
|
|
508
|
-
ariaControls: this._popupId
|
|
519
|
+
ariaControls: this._popupId,
|
|
520
|
+
ariaLabel: ariaLabel
|
|
509
521
|
});
|
|
510
522
|
var dateInputRendering = kendo_vue_common_1.getTemplate.call(this, {
|
|
511
523
|
h: h,
|
|
@@ -34,6 +34,7 @@ var Calendar_1 = require("../calendar/components/Calendar");
|
|
|
34
34
|
var main_1 = require("../calendar/models/main");
|
|
35
35
|
var defaults_1 = require("../defaults");
|
|
36
36
|
var main_2 = require("../messages/main");
|
|
37
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
37
38
|
var WRAPPER_STYLES = {
|
|
38
39
|
display: 'inline-block'
|
|
39
40
|
};
|
|
@@ -266,7 +267,7 @@ var DateRangePickerVue2 = {
|
|
|
266
267
|
size: size,
|
|
267
268
|
fillMode: fillMode,
|
|
268
269
|
rounded: rounded,
|
|
269
|
-
ariaHasPopup:
|
|
270
|
+
ariaHasPopup: 'grid',
|
|
270
271
|
ariaExpanded: this.computedShow,
|
|
271
272
|
value: value.start,
|
|
272
273
|
ariaRole: 'combobox',
|
|
@@ -303,7 +304,7 @@ var DateRangePickerVue2 = {
|
|
|
303
304
|
rounded: rounded,
|
|
304
305
|
disabled: this.$props.disabled,
|
|
305
306
|
valid: this.$props.valid,
|
|
306
|
-
ariaHasPopup:
|
|
307
|
+
ariaHasPopup: 'grid',
|
|
307
308
|
ariaExpanded: this.computedShow,
|
|
308
309
|
value: value.end,
|
|
309
310
|
ariaRole: 'combobox',
|
|
@@ -415,11 +416,17 @@ var DateRangePickerVue2 = {
|
|
|
415
416
|
onClick: this.handleReverseClick,
|
|
416
417
|
"aria-controls": startDateInputId + ' ' + endDateInputId,
|
|
417
418
|
"aria-label": (0, kendo_vue_intl_1.provideLocalizationService)(this).toLanguageString(main_2.swapStartEnd, main_2.messages[main_2.swapStartEnd])
|
|
418
|
-
}, [h(
|
|
419
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
420
|
+
name: 'arrows-swap',
|
|
421
|
+
attrs: this.v3 ? undefined : {
|
|
422
|
+
name: 'arrows-swap',
|
|
423
|
+
icon: kendo_svg_icons_1.arrowsSwapIcon
|
|
424
|
+
},
|
|
425
|
+
icon: kendo_svg_icons_1.arrowsSwapIcon,
|
|
419
426
|
style: {
|
|
420
427
|
transform: 'rotate(90deg)'
|
|
421
428
|
},
|
|
422
|
-
"class": "k-
|
|
429
|
+
"class": "k-button-icon"
|
|
423
430
|
})]);
|
|
424
431
|
return h("span", {
|
|
425
432
|
"class": this.rootClassName,
|
|
@@ -25,6 +25,7 @@ var DateTimeSelector_1 = require("./DateTimeSelector");
|
|
|
25
25
|
var utils_2 = require("../timepicker/utils");
|
|
26
26
|
var defaults_1 = require("../defaults");
|
|
27
27
|
var utils_3 = require("../dateinput/utils");
|
|
28
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
28
29
|
/**
|
|
29
30
|
* @hidden
|
|
30
31
|
*/
|
|
@@ -344,7 +345,7 @@ var DateTimePickerVue2 = {
|
|
|
344
345
|
validationMessage: validationMessage,
|
|
345
346
|
validityStyles: validityStyles,
|
|
346
347
|
value: this.computedValue,
|
|
347
|
-
ariaHasPopup:
|
|
348
|
+
ariaHasPopup: 'grid',
|
|
348
349
|
ariaExpanded: this.computedShow,
|
|
349
350
|
ariaRole: "combobox",
|
|
350
351
|
ariaControls: this._popupId
|
|
@@ -375,7 +376,7 @@ var DateTimePickerVue2 = {
|
|
|
375
376
|
validationMessage: validationMessage,
|
|
376
377
|
validityStyles: validityStyles,
|
|
377
378
|
value: this.computedValue,
|
|
378
|
-
ariaHasPopup:
|
|
379
|
+
ariaHasPopup: 'grid',
|
|
379
380
|
ariaExpanded: this.computedShow,
|
|
380
381
|
ariaRole: "combobox",
|
|
381
382
|
ariaControls: this._popupId
|
|
@@ -499,6 +500,7 @@ var DateTimePickerVue2 = {
|
|
|
499
500
|
type: "button",
|
|
500
501
|
tabIndex: -1,
|
|
501
502
|
icon: 'calendar',
|
|
503
|
+
svgIcon: kendo_svg_icons_1.calendarIcon,
|
|
502
504
|
title: (0, kendo_vue_intl_1.provideLocalizationService)(this).toLanguageString(main_1.toggleDateTimeSelector, main_1.messages[main_1.toggleDateTimeSelector]),
|
|
503
505
|
rounded: null,
|
|
504
506
|
"aria-controls": this._popupId,
|
|
@@ -506,6 +508,7 @@ var DateTimePickerVue2 = {
|
|
|
506
508
|
},
|
|
507
509
|
tabIndex: -1,
|
|
508
510
|
icon: 'calendar',
|
|
511
|
+
svgIcon: kendo_svg_icons_1.calendarIcon,
|
|
509
512
|
onMousedown: this.handleIconMouseDown,
|
|
510
513
|
on: this.v3 ? undefined : {
|
|
511
514
|
"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: 1673273820,
|
|
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
|
};
|
|
@@ -35,6 +35,7 @@ var TimeSelector_1 = require("./TimeSelector");
|
|
|
35
35
|
var utils_1 = require("../utils");
|
|
36
36
|
var utils_2 = require("./utils");
|
|
37
37
|
var utils_3 = require("../dateinput/utils");
|
|
38
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
38
39
|
/**
|
|
39
40
|
* @hidden
|
|
40
41
|
*/
|
|
@@ -348,7 +349,7 @@ var TimePickerVue2 = {
|
|
|
348
349
|
validationMessage: validationMessage,
|
|
349
350
|
validityStyles: validityStyles,
|
|
350
351
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
351
|
-
ariaHasPopup:
|
|
352
|
+
ariaHasPopup: 'grid',
|
|
352
353
|
ariaExpanded: this.computedShow,
|
|
353
354
|
ariaRole: "combobox",
|
|
354
355
|
ariaControls: this._popupId
|
|
@@ -377,7 +378,7 @@ var TimePickerVue2 = {
|
|
|
377
378
|
validationMessage: validationMessage,
|
|
378
379
|
validityStyles: validityStyles,
|
|
379
380
|
value: this.computedValue && this.normalizeTime(this.computedValue),
|
|
380
|
-
ariaHasPopup:
|
|
381
|
+
ariaHasPopup: 'grid',
|
|
381
382
|
ariaExpanded: this.computedShow,
|
|
382
383
|
ariaRole: "combobox",
|
|
383
384
|
ariaControls: this._popupId
|
|
@@ -495,6 +496,7 @@ var TimePickerVue2 = {
|
|
|
495
496
|
type: "button",
|
|
496
497
|
tabIndex: -1,
|
|
497
498
|
icon: 'clock',
|
|
499
|
+
svgIcon: kendo_svg_icons_1.clockIcon,
|
|
498
500
|
title: toggleTimeMessage,
|
|
499
501
|
rounded: null,
|
|
500
502
|
"aria-controls": this._popupId,
|
|
@@ -502,6 +504,7 @@ var TimePickerVue2 = {
|
|
|
502
504
|
},
|
|
503
505
|
tabIndex: -1,
|
|
504
506
|
icon: 'clock',
|
|
507
|
+
svgIcon: kendo_svg_icons_1.clockIcon,
|
|
505
508
|
onMousedown: this.handleIconMouseDown,
|
|
506
509
|
on: this.v3 ? undefined : {
|
|
507
510
|
"mousedown": this.handleIconMouseDown,
|
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.202301091431",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -46,22 +46,24 @@
|
|
|
46
46
|
"framework": "Kendo UI for Vue"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@progress/kendo-licensing": "^1.
|
|
49
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
50
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
50
51
|
"@progress/kendo-vue-intl": "^3.6.0",
|
|
51
52
|
"vue": "^2.6.12 || ^3.0.2"
|
|
52
53
|
},
|
|
53
54
|
"dependencies": {
|
|
54
55
|
"@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.
|
|
56
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202301091431",
|
|
57
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301091431",
|
|
58
|
+
"@progress/kendo-vue-labels": "3.7.4-dev.202301091431",
|
|
59
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301091431"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@progress/kendo-data-query": "^1.5.4",
|
|
62
|
-
"@progress/kendo-licensing": "^1.
|
|
63
|
-
"@progress/kendo-
|
|
64
|
-
"@progress/kendo-vue-
|
|
63
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
64
|
+
"@progress/kendo-svg-icons": "^1.0.0",
|
|
65
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202301091431",
|
|
66
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202301091431"
|
|
65
67
|
},
|
|
66
68
|
"author": "Progress",
|
|
67
69
|
"license": "SEE LICENSE IN LICENSE.md",
|