@progress/kendo-vue-dateinputs 8.4.0-develop.3 → 8.4.0-develop.4
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/dateinput/DateInput.js +1 -1
- package/dateinput/DateInput.mjs +11 -11
- package/datepicker/DatePicker.js +1 -1
- package/datepicker/DatePicker.mjs +21 -21
- package/datepicker/ToggleButton.d.ts +4 -4
- package/daterangepicker/DateRangePicker.js +1 -1
- package/daterangepicker/DateRangePicker.mjs +24 -24
- package/datetimepicker/DateTimePicker.js +1 -1
- package/datetimepicker/DateTimePicker.mjs +14 -14
- package/datetimepicker/DateTimeSelector.d.ts +1 -2
- package/datetimepicker/DateTimeSelector.js +1 -1
- package/datetimepicker/DateTimeSelector.mjs +56 -66
- package/dist/cdn/js/kendo-vue-dateinputs.js +1 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +14 -9
- package/timepicker/TimePicker.js +1 -1
- package/timepicker/TimePicker.mjs +1 -1
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("vue"),G=require("@progress/kendo-vue-labels"),J=require("@progress/kendo-vue-buttons"),Q=require("@progress/kendo-vue-popup"),r=require("@progress/kendo-date-math"),t=require("@progress/kendo-vue-common"),W=require("../dateinput/DateInput.js"),Y=require("../package-metadata.js"),u=require("../utils.js"),o=require("../messages/main.js"),b=require("@progress/kendo-vue-intl"),Z=require("./DateTimeSelector.js"),ee=require("../timepicker/utils.js"),T=require("../defaults.js"),te=require("../dateinput/utils.js"),ie=require("@progress/kendo-svg-icons");function m(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!n.isVNode(e)}const ne=n.defineComponent({name:"KendoDateTimePicker",emits:{changemodel:e=>!0,"update:modelValue":e=>!0,iconclick:e=>!0,change:e=>!0,focus:e=>!0,blur:e=>!0,keydown:e=>!0,open:e=>!0,close:e=>!0},props:{modelValue:{type:Date,default:void 0},defaultShow:{type:Boolean,default:!1},defaultValue:{type:Date,default:null},disabled:{type:Boolean,default:!1},dateInput:{type:[String,Object,Function],default:function(){}},popup:{type:[String,Object,Function],default:function(){}},calendar:{type:[String,Object,Function],default:function(){}},focusedDate:Date,format:{type:[String,Object],default:function(){return"g"}},formatPlaceholder:{type:[String,Object],default:function(){return te.defaultFormatPlaceholder}},rounded:{type:String,validator:function(e){return["none","small","medium","large","full"].includes(e)}},fillMode:{type:String,validator:function(e){return["solid","flat","outline"].includes(e)}},size:{type:String,validator:function(e){return["none","small","medium","large"].includes(e)}},id:String,ariaLabelledBy:String,ariaDescribedBy:String,min:{type:Date,default:function(){return u.MIN_DATE}},max:{type:Date,default:function(){return u.MAX_DATE}},maxTime:{type:Date,default:function(){return r.cloneDate(u.MAX_TIME)}},minTime:{type:Date,default:function(){return r.cloneDate(T.MIN_TIME)}},name:String,label:String,placeholder:String,popupSettings:{type:Object,default:function(){return{}}},show:{type:Boolean,default:void 0},tabIndex:{type:Number,default:0},title:{type:String,default:function(){return""}},steps:{type:Object,default:function(){return{}}},value:Date,weekNumber:{type:Boolean,default:!1},width:String,validationMessage:String,required:{type:Boolean,default:!1},validityStyles:{type:Boolean,default:!0},validate:Boolean,valid:{type:Boolean,default:void 0},cancelButton:{type:Boolean,default:!0},inputAttributes:Object},model:{event:"changemodel"},created(){this._anchor=t.guid(),this._popupId="popup"+t.guid(),this._wrapper=null,this._dateInput=null,this._dateTimeSelector=null,t.validatePackage(Y.packageMetadata),this.currentValue=this.$props.defaultValue,this.currentShow=this.$props.defaultShow},inject:{kendoLocalizationService:{default:null}},data(){return{currentValue:null,currentShow:!1,valueDuringOnChange:void 0,showDuringOnChange:void 0,shouldFocusDateInput:!1,isFocused:!1}},computed:{computedValue(){const e=this.valueDuringOnChange!==void 0?this.valueDuringOnChange:this.$props.value!==void 0?this.$props.value:this.$props.modelValue!==void 0?this.$props.modelValue:this.$data.currentValue;return e!==null?r.cloneDate(e):null},computedShow(){return this.showDuringOnChange!==void 0?this.showDuringOnChange:this.$props.show!==void 0?this.$props.show:this.currentShow}},watch:{show:function(e,i){this._oldShow=i},currentShow:function(e,i){this._oldShow=i}},mounted(){this.computedShow&&this.$forceUpdate();const e=this.dateInputElement();this._dateTimeSelector=this.$refs.dateTimeSelector,this._wrapper=this.kendoAnchorRef,this._dateInput=this.dateInputRef,e&&e.setAttribute("aria-haspopup","dialog")},updated(){const e=this.dateInputElement();this._dateTimeSelector=this.$refs.dateTimeSelector,this._wrapper=this.kendoAnchorRef,this._dateTimeSelector&&this.computedShow&&!this._oldShow&&this._dateTimeSelector.focus({preventScroll:!0}),e&&!this.computedShow&&this.shouldFocusDateInput&&this._dateInput.focus({preventScroll:!0}),this.shouldFocusDateInput=!1},setup(){const e=n.ref(null),i=n.inject("kendoLocalizationService",{});return{kendoAnchorRef:e,kendoLocalizationService:i}},render(){const e=t.getDefaultSlots(this),{disabled:i,tabIndex:a,title:d,id:f,format:g,formatPlaceholder:$,min:k,max:V,weekNumber:_,focusedDate:M,width:S,name:B,steps:v,placeholder:C,validationMessage:q,required:F,validityStyles:O,cancelButton:R,minTime:D,maxTime:w,ariaLabelledBy:ae,ariaDescribedBy:oe,size:p,fillMode:I,rounded:c,inputAttributes:x}=this.$props,{popupClass:E,appendTo:A,animate:j}=this.$props.popupSettings,y=!this.$props.validityStyles||this.validity().valid,N=this.$props.dateInput?t.templateRendering.call(this,this.$props.dateInput,t.getListeners.call(this)):void 0,P=n.createVNode(W.DateInput,{ref:h=>{this.dateInputRef=h},placeholder:C,disabled:i,format:g,formatPlaceholder:$,id:f,max:V,min:k,minTime:D,maxTime:w,name:B,size:null,rounded:null,fillMode:null,onChange:this.handleValueChange,required:F,steps:v,tabIndex:this.computedShow?-1:a,title:d,valid:this.validity().valid,validationMessage:q,validityStyles:O,value:this.computedValue,ariaHasPopup:"dialog",ariaExpanded:this.computedShow,ariaRole:"combobox",ariaControls:this._popupId,inputAttributes:x},m(e)?e:{default:()=>[e]}),L=t.getTemplate.call(this,{h:n.h,template:N,defaultRendering:P}),K=this.$props.calendar?t.templateRendering.call(this,this.$props.calendar,t.getListeners.call(this)):void 0,s=n.createVNode(Z.DateTimeSelector,{ref:"dateTimeSelector",cancelButton:R,value:this.computedValue,onChange:this.handleValueChange,onReject:this.handleReject,disabled:i,weekNumber:_,min:this.$props.min,max:this.$props.max,minTime:D,maxTime:w,focusedDate:M,format:g,calendar:K,steps:v,onFocus:this.timeSelectorFocus,onBlur:this.timeSelectorBlur,onKeydown:this.handleKeyDown},null),z=t.classNames("k-calendar-container k-datetime-container k-reset",E),U=this.$props.popup?t.templateRendering.call(this,this.$props.popup,t.getListeners.call(this)):void 0,X=n.createVNode(Q.Popup,{show:this.computedShow,anchor:this._anchor,popupClass:z,id:this._popupId,anchorAlign:{horizontal:"left",vertical:"bottom"},popupAlign:{horizontal:"left",vertical:"top"},appendTo:A,animate:j},m(s)?s:{default:()=>[s]}),H=t.getTemplate.call(this,{h:n.h,template:U,defaultRendering:X,defaultSlots:s}),l=n.createVNode("div",{class:t.classNames("k-input","k-datetimepicker",{[`k-input-${t.kendoThemeMaps.sizeMap[p]||p}`]:p,[`k-input-${I}`]:I,[`k-rounded-${t.kendoThemeMaps.roundedMap[c]||c}`]:c,"k-invalid":!y,"k-required":this.required,"k-disabled":this.$props.disabled}),ref:h=>{this.kendoAnchorRef=h},onKeydown:this.handleKeyDown,style:{width:S},onFocusin:this.handleFocus,onFocusout:this.handleBlur},[L,n.createVNode(J.Button,{type:"button",tabIndex:-1,icon:"calendar",svgIcon:ie.calendarIcon,onMousedown:this.handleIconMouseDown,onClick:this.handleDateIconClick,title:b.provideLocalizationService(this).toLanguageString(o.toggleDateTimeSelector,o.messages[o.toggleDateTimeSelector]),rounded:null,disabled:i,class:"k-input-button","aria-controls":this._popupId,"aria-label":b.provideLocalizationService(this).toLanguageString(o.toggleDateTimeSelector,o.messages[o.toggleDateTimeSelector])},null),H]);return this.$props.label?n.createVNode(G.FloatingLabel,{label:this.$props.label,editorId:f,editorValid:y,editorValue:this.getDateInputText(),editorPlaceholder:this.$props.placeholder,editorDisabled:this.$props.disabled,style:{width:S}},m(l)?l:{default:()=>[l]}):l},methods:{validity(){const e=u.isInDateRange(this.computedValue,this.$props.min,this.$props.max)&&ee.isInTimeRange(this.computedValue,this.$props.minTime||T.MIN_TIME,this.$props.maxTime||u.MAX_TIME),i=this.$props.validationMessage!==void 0,a=(!this.$props.required||this.computedValue!==null)&&e,d=this.$props.valid!==void 0?this.$props.valid:a;return{customError:i,rangeOverflow:this.computedValue&&this.$props.max.getTime()<this.computedValue.getTime()||!1,rangeUnderflow:this.computedValue&&this.computedValue.getTime()<this.$props.min.getTime()||!1,valid:d,valueMissing:this.computedValue===null}},getDateInputText(){return this.computedValue?!0:this._dateInput?this._dateInput._element.value:""},focus(){const e=this.dateInputElement();e&&e.focus()},setShow(e){this.computedShow!==e&&(this.currentShow=e,this.$emit(e?"open":"close",{component:this}))},handleReject(){this.setShow(!1)},handleValueChange(e){this.currentValue=r.cloneDate(e.value||void 0),this.valueDuringOnChange=e.value,this.showDuringOnChange=!1,this.shouldFocusDateInput=!0,this.$emit("changemodel",this.computedValue),this.$emit("update:modelValue",this.computedValue),this.$emit("change",{event:e.event,value:this.computedValue,show:this.computedShow,component:this,target:{name:this.$props.name,value:this.computedValue,valueAsDate:this.computedValue}}),this.valueDuringOnChange=void 0,this.showDuringOnChange=void 0,this.setShow(!1)},handleFocus(e){this.isFocused=!0,this.$emit("focus",{event:e})},handleBlur(e){this.createBlurTimeout(),this.$emit("blur",{event:e})},timeSelectorBlur(e){this.$emit("blur",{event:e}),clearTimeout(this._blurTimeout),this.createBlurTimeout()},timeSelectorFocus(){clearTimeout(this._blurTimeout)},createBlurTimeout(){this._blurTimeout=setTimeout(()=>{this.isFocused=!1;const e=document.activeElement&&document.activeElement.closest(`#${this._popupId}`);this._dateInput&&t.canUseDOM&&document.activeElement!==this._dateInput.element()&&!e&&this.setShow(!1)},200)},handleDateIconClick(e){this.$props.disabled||(this.shouldFocusDateInput=!0,this.setShow(!this.computedShow),this.$emit("iconclick",e))},handleIconMouseDown(e){e.preventDefault()},handleKeyDown(e){const{altKey:i,keyCode:a}=e;if(a===t.Keys.tab&&this._dateInput&&e.target!==this._dateInput._element){e.preventDefault(),this.$data.shouldFocusDateInput=!0,this.setShow(!1);return}if(a===t.Keys.esc){this.shouldFocusDateInput=!0,this.setShow(!1);return}i&&(a===t.Keys.up||a===t.Keys.down)&&(e.preventDefault(),e.stopPropagation(),this.shouldFocusDateInput=a===t.Keys.up,this.setShow(a===t.Keys.down)),this.$emit("keydown",e)},dateInputElement(){return this._dateInput&&this._dateInput.$el||this._wrapper&&this._wrapper.querySelector(".k-dateinput-wrap > input.k-input")}}});exports.DateTimePicker=ne;
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("vue"),G=require("@progress/kendo-vue-labels"),J=require("@progress/kendo-vue-buttons"),Q=require("@progress/kendo-vue-popup"),r=require("@progress/kendo-date-math"),t=require("@progress/kendo-vue-common"),W=require("../dateinput/DateInput.js"),Y=require("../package-metadata.js"),u=require("../utils.js"),o=require("../messages/main.js"),b=require("@progress/kendo-vue-intl"),Z=require("./DateTimeSelector.js"),ee=require("../timepicker/utils.js"),T=require("../defaults.js"),te=require("../dateinput/utils.js"),ie=require("@progress/kendo-svg-icons");function m(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!n.isVNode(e)}const ne=n.defineComponent({name:"KendoDateTimePicker",emits:{changemodel:e=>!0,"update:modelValue":e=>!0,iconclick:e=>!0,change:e=>!0,focus:e=>!0,blur:e=>!0,keydown:e=>!0,open:e=>!0,close:e=>!0},props:{modelValue:{type:Date,default:void 0},defaultShow:{type:Boolean,default:!1},defaultValue:{type:Date,default:null},disabled:{type:Boolean,default:!1},dateInput:{type:[String,Object,Function],default:function(){}},popup:{type:[String,Object,Function],default:function(){}},calendar:{type:[String,Object,Function],default:function(){}},focusedDate:Date,format:{type:[String,Object],default:function(){return"g"}},formatPlaceholder:{type:[String,Object],default:function(){return te.defaultFormatPlaceholder}},rounded:{type:String,validator:function(e){return["none","small","medium","large","full"].includes(e)}},fillMode:{type:String,validator:function(e){return["solid","flat","outline"].includes(e)}},size:{type:String,validator:function(e){return["none","small","medium","large"].includes(e)}},id:String,ariaLabelledBy:String,ariaDescribedBy:String,min:{type:Date,default:function(){return u.MIN_DATE}},max:{type:Date,default:function(){return u.MAX_DATE}},maxTime:{type:Date,default:function(){return r.cloneDate(u.MAX_TIME)}},minTime:{type:Date,default:function(){return r.cloneDate(T.MIN_TIME)}},name:String,label:String,placeholder:String,popupSettings:{type:Object,default:function(){return{}}},show:{type:Boolean,default:void 0},tabIndex:{type:Number,default:0},title:{type:String,default:function(){return""}},steps:{type:Object,default:function(){return{}}},value:Date,weekNumber:{type:Boolean,default:!1},width:String,validationMessage:String,required:{type:Boolean,default:!1},validityStyles:{type:Boolean,default:!0},validate:Boolean,valid:{type:Boolean,default:void 0},cancelButton:{type:Boolean,default:!0},inputAttributes:Object},model:{event:"changemodel"},created(){this._anchor=t.guid(),this._popupId="popup"+t.guid(),this._wrapper=null,this._dateInput=null,this._dateTimeSelector=null,t.validatePackage(Y.packageMetadata),this.currentValue=this.$props.defaultValue,this.currentShow=this.$props.defaultShow},inject:{kendoLocalizationService:{default:null}},data(){return{currentValue:null,currentShow:!1,valueDuringOnChange:void 0,showDuringOnChange:void 0,shouldFocusDateInput:!1,isFocused:!1}},computed:{computedValue(){const e=this.valueDuringOnChange!==void 0?this.valueDuringOnChange:this.$props.value!==void 0?this.$props.value:this.$props.modelValue!==void 0?this.$props.modelValue:this.$data.currentValue;return e!==null?r.cloneDate(e):null},computedShow(){return this.showDuringOnChange!==void 0?this.showDuringOnChange:this.$props.show!==void 0?this.$props.show:this.currentShow}},watch:{show:function(e,i){this._oldShow=i},currentShow:function(e,i){this._oldShow=i}},mounted(){this.computedShow&&this.$forceUpdate();const e=this.dateInputElement();this._dateTimeSelector=this.$refs.dateTimeSelector,this._wrapper=this.kendoAnchorRef,this._dateInput=this.dateInputRef,e&&e.setAttribute("aria-haspopup","true")},updated(){const e=this.dateInputElement();this._dateTimeSelector=this.$refs.dateTimeSelector,this._wrapper=this.kendoAnchorRef,this._dateTimeSelector&&this.computedShow&&!this._oldShow&&this._dateTimeSelector.focus({preventScroll:!0}),e&&!this.computedShow&&this.shouldFocusDateInput&&this._dateInput.focus({preventScroll:!0}),this.shouldFocusDateInput=!1},setup(){const e=n.ref(null),i=n.inject("kendoLocalizationService",{});return{kendoAnchorRef:e,kendoLocalizationService:i}},render(){const e=t.getDefaultSlots(this),{disabled:i,tabIndex:a,title:d,id:f,format:g,formatPlaceholder:$,min:k,max:V,weekNumber:_,focusedDate:M,width:S,name:B,steps:v,placeholder:C,validationMessage:q,required:F,validityStyles:O,cancelButton:R,minTime:w,maxTime:D,ariaLabelledBy:ae,ariaDescribedBy:oe,size:p,fillMode:I,rounded:c,inputAttributes:x}=this.$props,{popupClass:E,appendTo:A,animate:j}=this.$props.popupSettings,y=!this.$props.validityStyles||this.validity().valid,N=this.$props.dateInput?t.templateRendering.call(this,this.$props.dateInput,t.getListeners.call(this)):void 0,P=n.createVNode(W.DateInput,{ref:h=>{this.dateInputRef=h},placeholder:C,disabled:i,format:g,formatPlaceholder:$,id:f,max:V,min:k,minTime:w,maxTime:D,name:B,size:null,rounded:null,fillMode:null,onChange:this.handleValueChange,required:F,steps:v,tabIndex:this.computedShow?-1:a,title:d,valid:this.validity().valid,validationMessage:q,validityStyles:O,value:this.computedValue,ariaHasPopup:"dialog",ariaExpanded:this.computedShow,ariaRole:"combobox",ariaControls:this.computedShow?this._popupId:void 0,inputAttributes:x},m(e)?e:{default:()=>[e]}),L=t.getTemplate.call(this,{h:n.h,template:N,defaultRendering:P}),K=this.$props.calendar?t.templateRendering.call(this,this.$props.calendar,t.getListeners.call(this)):void 0,s=n.createVNode(Z.DateTimeSelector,{ref:"dateTimeSelector",cancelButton:R,value:this.computedValue,onChange:this.handleValueChange,onReject:this.handleReject,disabled:i,weekNumber:_,min:this.$props.min,max:this.$props.max,minTime:w,maxTime:D,focusedDate:M,format:g,calendar:K,steps:v,onFocus:this.timeSelectorFocus,onBlur:this.timeSelectorBlur,onKeydown:this.handleKeyDown},null),z=t.classNames("k-datetime-container k-reset",E),U=this.$props.popup?t.templateRendering.call(this,this.$props.popup,t.getListeners.call(this)):void 0,X=n.createVNode(Q.Popup,{show:this.computedShow,anchor:this._anchor,popupClass:z,id:this._popupId,anchorAlign:{horizontal:"left",vertical:"bottom"},popupAlign:{horizontal:"left",vertical:"top"},appendTo:A,animate:j},m(s)?s:{default:()=>[s]}),H=t.getTemplate.call(this,{h:n.h,template:U,defaultRendering:X,defaultSlots:s}),l=n.createVNode("div",{class:t.classNames("k-input","k-datetimepicker",{[`k-input-${t.kendoThemeMaps.sizeMap[p]||p}`]:p,[`k-input-${I}`]:I,[`k-rounded-${t.kendoThemeMaps.roundedMap[c]||c}`]:c,"k-invalid":!y,"k-required":this.required,"k-disabled":this.$props.disabled}),ref:h=>{this.kendoAnchorRef=h},onKeydown:this.handleKeyDown,style:{width:S},onFocusin:this.handleFocus,onFocusout:this.handleBlur},[L,n.createVNode(J.Button,{type:"button",tabIndex:-1,icon:"calendar",svgIcon:ie.calendarIcon,onMousedown:this.handleIconMouseDown,onClick:this.handleDateIconClick,title:b.provideLocalizationService(this).toLanguageString(o.toggleDateTimeSelector,o.messages[o.toggleDateTimeSelector]),rounded:null,disabled:i,class:"k-input-button","aria-controls":this._popupId,"aria-label":b.provideLocalizationService(this).toLanguageString(o.toggleDateTimeSelector,o.messages[o.toggleDateTimeSelector])},null),H]);return this.$props.label?n.createVNode(G.FloatingLabel,{label:this.$props.label,editorId:f,editorValid:y,editorValue:this.getDateInputText(),editorPlaceholder:this.$props.placeholder,editorDisabled:this.$props.disabled,style:{width:S}},m(l)?l:{default:()=>[l]}):l},methods:{validity(){const e=u.isInDateRange(this.computedValue,this.$props.min,this.$props.max)&&ee.isInTimeRange(this.computedValue,this.$props.minTime||T.MIN_TIME,this.$props.maxTime||u.MAX_TIME),i=this.$props.validationMessage!==void 0,a=(!this.$props.required||this.computedValue!==null)&&e,d=this.$props.valid!==void 0?this.$props.valid:a;return{customError:i,rangeOverflow:this.computedValue&&this.$props.max.getTime()<this.computedValue.getTime()||!1,rangeUnderflow:this.computedValue&&this.computedValue.getTime()<this.$props.min.getTime()||!1,valid:d,valueMissing:this.computedValue===null}},getDateInputText(){return this.computedValue?!0:this._dateInput?this._dateInput._element.value:""},focus(){const e=this.dateInputElement();e&&e.focus()},setShow(e){this.computedShow!==e&&(this.currentShow=e,this.$emit(e?"open":"close",{component:this}))},handleReject(){this.setShow(!1)},handleValueChange(e){this.currentValue=r.cloneDate(e.value||void 0),this.valueDuringOnChange=e.value,this.showDuringOnChange=!1,this.shouldFocusDateInput=!0,this.$emit("changemodel",this.computedValue),this.$emit("update:modelValue",this.computedValue),this.$emit("change",{event:e.event,value:this.computedValue,show:this.computedShow,component:this,target:{name:this.$props.name,value:this.computedValue,valueAsDate:this.computedValue}}),this.valueDuringOnChange=void 0,this.showDuringOnChange=void 0,this.setShow(!1)},handleFocus(e){this.isFocused=!0,this.$emit("focus",{event:e})},handleBlur(e){this.createBlurTimeout(),this.$emit("blur",{event:e})},timeSelectorBlur(e){this.$emit("blur",{event:e}),clearTimeout(this._blurTimeout),this.createBlurTimeout()},timeSelectorFocus(){clearTimeout(this._blurTimeout)},createBlurTimeout(){this._blurTimeout=setTimeout(()=>{this.isFocused=!1;const e=document.activeElement&&document.activeElement.closest(`#${this._popupId}`);this._dateInput&&t.canUseDOM&&document.activeElement!==this._dateInput.element()&&!e&&this.setShow(!1)},200)},handleDateIconClick(e){this.$props.disabled||(this.shouldFocusDateInput=!0,this.setShow(!this.computedShow),this.$emit("iconclick",e))},handleIconMouseDown(e){e.preventDefault()},handleKeyDown(e){const{altKey:i,keyCode:a}=e;if(a===t.Keys.tab&&this._dateInput&&e.target!==this._dateInput._element){e.preventDefault(),this.$data.shouldFocusDateInput=!0,this.setShow(!1);return}if(a===t.Keys.esc){this.shouldFocusDateInput=!0,this.setShow(!1);return}i&&(a===t.Keys.up||a===t.Keys.down)&&(e.preventDefault(),e.stopPropagation(),this.shouldFocusDateInput=a===t.Keys.up,this.setShow(a===t.Keys.down)),this.$emit("keydown",e)},dateInputElement(){return this._dateInput&&this._dateInput.$el||this._wrapper&&this._wrapper.querySelector(".k-dateinput-wrap > input.k-input")}}});exports.DateTimePicker=ne;
|
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as ie, createVNode as n, h as $, ref as ne, inject as
|
|
8
|
+
import { defineComponent as ie, createVNode as n, h as $, ref as ne, inject as oe, isVNode as ae } from "vue";
|
|
9
9
|
import { FloatingLabel as ue } from "@progress/kendo-vue-labels";
|
|
10
10
|
import { Button as se } from "@progress/kendo-vue-buttons";
|
|
11
11
|
import { Popup as le } from "@progress/kendo-vue-popup";
|
|
12
12
|
import { cloneDate as s } from "@progress/kendo-date-math";
|
|
13
|
-
import { Keys as
|
|
13
|
+
import { Keys as o, canUseDOM as re, getDefaultSlots as de, templateRendering as c, getListeners as m, getTemplate as T, classNames as _, kendoThemeMaps as k, guid as V, validatePackage as pe } from "@progress/kendo-vue-common";
|
|
14
14
|
import { DateInput as he } from "../dateinput/DateInput.mjs";
|
|
15
15
|
import { packageMetadata as ce } from "../package-metadata.mjs";
|
|
16
16
|
import { isInDateRange as me, MAX_TIME as B, MAX_DATE as fe, MIN_DATE as ge } from "../utils.mjs";
|
|
@@ -22,7 +22,7 @@ import { MIN_TIME as M } from "../defaults.mjs";
|
|
|
22
22
|
import { defaultFormatPlaceholder as we } from "../dateinput/utils.mjs";
|
|
23
23
|
import { calendarIcon as Ie } from "@progress/kendo-svg-icons";
|
|
24
24
|
function f(e) {
|
|
25
|
-
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !
|
|
25
|
+
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !ae(e);
|
|
26
26
|
}
|
|
27
27
|
const Pe = /* @__PURE__ */ ie({
|
|
28
28
|
name: "KendoDateTimePicker",
|
|
@@ -223,7 +223,7 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
223
223
|
mounted() {
|
|
224
224
|
this.computedShow && this.$forceUpdate();
|
|
225
225
|
const e = this.dateInputElement();
|
|
226
|
-
this._dateTimeSelector = this.$refs.dateTimeSelector, this._wrapper = this.kendoAnchorRef, this._dateInput = this.dateInputRef, e && e.setAttribute("aria-haspopup", "
|
|
226
|
+
this._dateTimeSelector = this.$refs.dateTimeSelector, this._wrapper = this.kendoAnchorRef, this._dateInput = this.dateInputRef, e && e.setAttribute("aria-haspopup", "true");
|
|
227
227
|
},
|
|
228
228
|
updated() {
|
|
229
229
|
const e = this.dateInputElement();
|
|
@@ -234,7 +234,7 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
234
234
|
}), this.shouldFocusDateInput = !1;
|
|
235
235
|
},
|
|
236
236
|
setup() {
|
|
237
|
-
const e = ne(null), t =
|
|
237
|
+
const e = ne(null), t = oe("kendoLocalizationService", {});
|
|
238
238
|
return {
|
|
239
239
|
kendoAnchorRef: e,
|
|
240
240
|
kendoLocalizationService: t
|
|
@@ -301,7 +301,7 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
301
301
|
ariaHasPopup: "dialog",
|
|
302
302
|
ariaExpanded: this.computedShow,
|
|
303
303
|
ariaRole: "combobox",
|
|
304
|
-
ariaControls: this._popupId,
|
|
304
|
+
ariaControls: this.computedShow ? this._popupId : void 0,
|
|
305
305
|
inputAttributes: q
|
|
306
306
|
}, f(e) ? e : {
|
|
307
307
|
default: () => [e]
|
|
@@ -309,7 +309,7 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
309
309
|
h: $,
|
|
310
310
|
template: G,
|
|
311
311
|
defaultRendering: J
|
|
312
|
-
}), W = this.$props.calendar ? c.call(this, this.$props.calendar, m.call(this)) : void 0,
|
|
312
|
+
}), W = this.$props.calendar ? c.call(this, this.$props.calendar, m.call(this)) : void 0, a = n(Se, {
|
|
313
313
|
ref: "dateTimeSelector",
|
|
314
314
|
cancelButton: K,
|
|
315
315
|
value: this.computedValue,
|
|
@@ -328,7 +328,7 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
328
328
|
onFocus: this.timeSelectorFocus,
|
|
329
329
|
onBlur: this.timeSelectorBlur,
|
|
330
330
|
onKeydown: this.handleKeyDown
|
|
331
|
-
}, null), Y = _("k-
|
|
331
|
+
}, null), Y = _("k-datetime-container k-reset", U), Z = this.$props.popup ? c.call(this, this.$props.popup, m.call(this)) : void 0, ee = n(le, {
|
|
332
332
|
show: this.computedShow,
|
|
333
333
|
anchor: this._anchor,
|
|
334
334
|
popupClass: Y,
|
|
@@ -343,13 +343,13 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
343
343
|
},
|
|
344
344
|
appendTo: X,
|
|
345
345
|
animate: H
|
|
346
|
-
}, f(
|
|
347
|
-
default: () => [
|
|
346
|
+
}, f(a) ? a : {
|
|
347
|
+
default: () => [a]
|
|
348
348
|
}), te = T.call(this, {
|
|
349
349
|
h: $,
|
|
350
350
|
template: Z,
|
|
351
351
|
defaultRendering: ee,
|
|
352
|
-
defaultSlots:
|
|
352
|
+
defaultSlots: a
|
|
353
353
|
}), u = n("div", {
|
|
354
354
|
class: _("k-input", "k-datetimepicker", {
|
|
355
355
|
[`k-input-${k.sizeMap[d] || d}`]: d,
|
|
@@ -471,15 +471,15 @@ const Pe = /* @__PURE__ */ ie({
|
|
|
471
471
|
altKey: t,
|
|
472
472
|
keyCode: i
|
|
473
473
|
} = e;
|
|
474
|
-
if (i ===
|
|
474
|
+
if (i === o.tab && this._dateInput && e.target !== this._dateInput._element) {
|
|
475
475
|
e.preventDefault(), this.$data.shouldFocusDateInput = !0, this.setShow(!1);
|
|
476
476
|
return;
|
|
477
477
|
}
|
|
478
|
-
if (i ===
|
|
478
|
+
if (i === o.esc) {
|
|
479
479
|
this.shouldFocusDateInput = !0, this.setShow(!1);
|
|
480
480
|
return;
|
|
481
481
|
}
|
|
482
|
-
t && (i ===
|
|
482
|
+
t && (i === o.up || i === o.down) && (e.preventDefault(), e.stopPropagation(), this.shouldFocusDateInput = i === o.up, this.setShow(i === o.down)), this.$emit("keydown", e);
|
|
483
483
|
},
|
|
484
484
|
dateInputElement() {
|
|
485
485
|
return this._dateInput && this._dateInput.$el || this._wrapper && this._wrapper.querySelector(".k-dateinput-wrap > input.k-input");
|
|
@@ -129,8 +129,7 @@ declare const DateTimeSelector: import('vue').DefineComponent<import('vue').Extr
|
|
|
129
129
|
handleNowClick(event: any): void;
|
|
130
130
|
handleCalendarValueChange(event: CalendarChangeEvent): void;
|
|
131
131
|
handleTimeListContainerChange(candidate: Date): void;
|
|
132
|
-
|
|
133
|
-
handleTimeClick(event: any): void;
|
|
132
|
+
handleTabChange(value: string): void;
|
|
134
133
|
handleKeyDown(event: any): void;
|
|
135
134
|
handleTimePartMount(value: Date): void;
|
|
136
135
|
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("vue")
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("vue"),$=require("@progress/kendo-vue-intl"),i=require("../messages/main.js"),c=require("@progress/kendo-vue-buttons"),C=require("../calendar/components/Calendar.js"),N=require("../timepicker/TimePart.js"),n=require("../utils.js"),M=require("@progress/kendo-date-math"),r=require("@progress/kendo-vue-common"),h=require("../defaults.js"),d=require("../timepicker/utils.js");function m(e){return typeof e=="function"||Object.prototype.toString.call(e)==="[object Object]"&&!a.isVNode(e)}const B=a.defineComponent({name:"KendoDateTimeSelector",props:{value:Date,disabled:{type:Boolean,default:!1},cancelButton:{type:Boolean,default:!0},min:{type:Date,default:n.MIN_DATE},max:{type:Date,default:n.MAX_DATE},maxTime:{type:Date,default:function(){return r.cloneDate(n.MAX_TIME)}},minTime:{type:Date,default:function(){return r.cloneDate(n.MIN_TIME)}},weekNumber:{type:Boolean,default:!1},steps:{type:Object,default:function(){return{}}},focusedDate:Date,format:[String,Object],calendar:Object,onChange:Function,onReject:Function,onFocus:Function,onBlur:Function,onKeydown:Function},created(){this._calendarWrap=null,this.currentTab="date",this.dateValue=this.$props.value,this.timeValue=this.$props.value||h.MIDNIGHT_DATE},inject:{kendoLocalizationService:{default:null}},data(){return{currentTab:null,dateValue:null,timeValue:Date}},computed:{hasDateValue(){return this.dateValue!==null},computedMinTime(){return this.$props.minTime!==void 0?this.$props.minTime:this.normalizeRange(this.$props.min,this.dateValue)},computedMaxTime(){return this.$props.maxTime!==void 0?this.$props.maxTime:this.normalizeRange(this.$props.max,this.dateValue)}},mounted(){this._acceptButton=this.$refs.acceptButton,this._calendar=this.$refs.calendar,this._calendarWrap=this.$refs.calendarWrap,this._cancelButton=this.$refs.cancelButton,this._timePart=this.$refs.timePart,this.focus({preventScroll:!0})},updated(){this.shouldFocusPart&&this.focus({preventScroll:!0}),this.shouldFocusPart=!1},setup(){const e=a.ref(null),t=a.inject("kendoLocalizationService",{});return{kendoAnchorRef:e,kendoLocalizationService:t}},render(){const{disabled:e,cancelButton:t,min:s,max:p,weekNumber:f,focusedDate:g,format:T,steps:b}=this.$props,v=r.classNames({"k-date-tab":this.currentTab==="date","k-time-tab":this.currentTab==="time","k-disabled":e},"k-datetime-wrap"),u=$.provideLocalizationService(this),V=u.toLanguageString(i.date,i.messages[i.date]),k=u.toLanguageString(i.time,i.messages[i.time]),l=u.toLanguageString(i.dateTimePickerCancel,i.messages[i.dateTimePickerCancel]),o=u.toLanguageString(i.dateTimePickerSet,i.messages[i.dateTimePickerSet]),D=a.createVNode(C.Calendar,{ref:"calendar",min:s,max:p,weekNumber:f,focusedDate:g,disabled:e||this.currentTab!=="date",value:this.dateValue,onChange:this.handleCalendarValueChange,onFocus:this.handleFocus,onBlur:this.handleBlur},null),y=r.getTemplate.call(this,{h:a.h,template:this.$props.calendar,defaultRendering:D});return a.createVNode("div",{onKeydown:this.handleKeyDown,class:v,tabindex:-1},[a.createVNode("div",{class:"k-datetime-buttongroup"},[a.createVNode(c.SegmentedControl,{layoutMode:"stretch",value:this.currentTab,items:[{value:"date",text:V},{value:"time",text:k}],onChange:this.handleTabChange},null)]),a.createVNode("div",{class:"k-datetime-selector"},[a.createVNode("div",{class:"k-datetime-calendar-wrap",ref:"calendarWrap"},[y]),a.createVNode("div",{class:"k-datetime-time-wrap"},[a.createVNode(N.TimePart,{key:1,onNowclick:this.handleNowClick,disabled:e||this.currentTab!=="time",ref:"timePart",min:this.computedMinTime||n.MIN_TIME,max:this.computedMaxTime||n.MAX_TIME,value:this.timeValue,format:T,steps:b,onChange:this.handleTimeListContainerChange,onFocus:this.handleFocus,onBlur:this.handleBlur},null)])]),a.createVNode("div",{class:"k-datetime-footer k-actions k-actions-stretched"},[t&&a.createVNode(c.Button,{type:"button",ref:"cancelButton",class:"k-time-cancel",onClick:this.handleReject,title:l,"aria-label":l},m(l)?l:{default:()=>[l]}),a.createVNode(c.Button,{type:"button",ref:"acceptButton",disabled:!this.hasDateValue,themeColor:"primary",class:"k-time-accept",onClick:this.handleAccept,title:o,"aria-label":o},m(o)?o:{default:()=>[o]})])])},methods:{handleBlur(e){this.$emit("blur",e)},handleFocus(e){this.$emit("focus",e)},focus(e){this.$nextTick(()=>{this.currentTab==="time"&&this._timePart&&this._timePart.focus(e);const t=this.calendarElement();this.currentTab==="date"&&t&&t.focus(e)})},calendarElement(){return this._calendar&&this._calendar.$el?this._calendar:null},normalizeRange(e,t){return M.isEqualDate(e,t||n.getToday())?e:null},hasActiveButton(){return this._acceptButton?r.canUseDOM&&(document.activeElement===this._acceptButton.$el||document.activeElement===this._cancelButton.$el):!1},mergeTime(e,t){return e&&t?n.setTime(t,e):t},mergeDate(e,t){return e?n.setTime(e||n.getToday(),t):t},move(e){if(e==="right"&&this.currentTab==="time"||e==="left"&&this.currentTab==="date")return;const t=e==="left"?"date":"time";this.shouldFocusPart=!0,this.currentTab=t},handleReject(e){this.dateValue=this.$props.value,this.timeValue=this.$props.value||h.MIDNIGHT_DATE;const t=this.mergeDate(this.$props.value,this.$props.value||h.MIDNIGHT_DATE),s={event:e,target:this,value:t};this.$emit("reject",s)},handleAccept(e,t){if(!this.dateValue||!this.timeValue||!this.hasDateValue)return;const s=this.mergeDate(this.dateValue,t||this.timeValue);this.$emit("change",{event:e,value:s,target:this})},handleNowClick(e){this.timeValue=d.getNow(),this.handleAccept(e,d.getNow())},handleCalendarValueChange(e){e.event.stopPropagation(),this.dateValue=e.value,this.currentTab="time",this.shouldFocusPart=!0},handleTimeListContainerChange(e){this.timeValue=e},handleTabChange(e){e==="date"?this.move("left"):e==="time"&&this.move("right")},handleKeyDown(e){const{keyCode:t,altKey:s}=e;switch(this.$emit("keydown",e),t){case r.Keys.enter:!this.hasActiveButton()&&this.hasDateValue&&this.handleAccept(e);return;case r.Keys.left:if(!s)return;this.move("left");return;case r.Keys.right:if(!s)return;this.move("right");return;default:return}},handleTimePartMount(e){this.timeValue=e}}});exports.DateTimeSelector=B;
|
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as F, createVNode as a, h as
|
|
8
|
+
import { defineComponent as F, createVNode as a, h as P, ref as N, inject as j, isVNode as A } from "vue";
|
|
9
9
|
import { provideLocalizationService as E } from "@progress/kendo-vue-intl";
|
|
10
|
-
import { date as
|
|
11
|
-
import {
|
|
10
|
+
import { date as c, messages as l, time as h, dateTimePickerCancel as m, dateTimePickerSet as d } from "../messages/main.mjs";
|
|
11
|
+
import { SegmentedControl as L, Button as p } from "@progress/kendo-vue-buttons";
|
|
12
12
|
import { Calendar as R } from "../calendar/components/Calendar.mjs";
|
|
13
13
|
import { TimePart as z } from "../timepicker/TimePart.mjs";
|
|
14
|
-
import { MAX_DATE as K, MIN_DATE as I, setTime as
|
|
14
|
+
import { MAX_DATE as K, MIN_DATE as I, setTime as f, getToday as g, MAX_TIME as T, MIN_TIME as b } from "../utils.mjs";
|
|
15
15
|
import { isEqualDate as O } from "@progress/kendo-date-math";
|
|
16
|
-
import { Keys as
|
|
17
|
-
import { MIDNIGHT_DATE as
|
|
18
|
-
import { getNow as
|
|
19
|
-
function
|
|
16
|
+
import { Keys as o, canUseDOM as W, classNames as X, getTemplate as q, cloneDate as v } from "@progress/kendo-vue-common";
|
|
17
|
+
import { MIDNIGHT_DATE as u } from "../defaults.mjs";
|
|
18
|
+
import { getNow as k } from "../timepicker/utils.mjs";
|
|
19
|
+
function D(e) {
|
|
20
20
|
return typeof e == "function" || Object.prototype.toString.call(e) === "[object Object]" && !A(e);
|
|
21
21
|
}
|
|
22
22
|
const ne = /* @__PURE__ */ F({
|
|
@@ -42,13 +42,13 @@ const ne = /* @__PURE__ */ F({
|
|
|
42
42
|
maxTime: {
|
|
43
43
|
type: Date,
|
|
44
44
|
default: function() {
|
|
45
|
-
return
|
|
45
|
+
return v(T);
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
minTime: {
|
|
49
49
|
type: Date,
|
|
50
50
|
default: function() {
|
|
51
|
-
return
|
|
51
|
+
return v(b);
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
weekNumber: {
|
|
@@ -71,7 +71,7 @@ const ne = /* @__PURE__ */ F({
|
|
|
71
71
|
onKeydown: Function
|
|
72
72
|
},
|
|
73
73
|
created() {
|
|
74
|
-
this._calendarWrap = null, this.currentTab = "date", this.dateValue = this.$props.value, this.timeValue = this.$props.value ||
|
|
74
|
+
this._calendarWrap = null, this.currentTab = "date", this.dateValue = this.$props.value, this.timeValue = this.$props.value || u;
|
|
75
75
|
},
|
|
76
76
|
inject: {
|
|
77
77
|
kendoLocalizationService: {
|
|
@@ -118,87 +118,80 @@ const ne = /* @__PURE__ */ F({
|
|
|
118
118
|
disabled: e,
|
|
119
119
|
cancelButton: t,
|
|
120
120
|
min: i,
|
|
121
|
-
max:
|
|
122
|
-
weekNumber:
|
|
123
|
-
focusedDate:
|
|
124
|
-
format:
|
|
125
|
-
steps:
|
|
126
|
-
} = this.$props,
|
|
121
|
+
max: $,
|
|
122
|
+
weekNumber: V,
|
|
123
|
+
focusedDate: C,
|
|
124
|
+
format: y,
|
|
125
|
+
steps: B
|
|
126
|
+
} = this.$props, _ = X({
|
|
127
127
|
"k-date-tab": this.currentTab === "date",
|
|
128
128
|
"k-time-tab": this.currentTab === "time",
|
|
129
129
|
"k-disabled": e
|
|
130
|
-
}, "k-datetime-wrap"), r = E(this),
|
|
130
|
+
}, "k-datetime-wrap"), r = E(this), M = r.toLanguageString(c, l[c]), S = r.toLanguageString(h, l[h]), n = r.toLanguageString(m, l[m]), s = r.toLanguageString(d, l[d]), w = a(R, {
|
|
131
131
|
ref: "calendar",
|
|
132
132
|
min: i,
|
|
133
|
-
max:
|
|
134
|
-
weekNumber:
|
|
135
|
-
focusedDate:
|
|
133
|
+
max: $,
|
|
134
|
+
weekNumber: V,
|
|
135
|
+
focusedDate: C,
|
|
136
136
|
disabled: e || this.currentTab !== "date",
|
|
137
137
|
value: this.dateValue,
|
|
138
138
|
onChange: this.handleCalendarValueChange,
|
|
139
139
|
onFocus: this.handleFocus,
|
|
140
140
|
onBlur: this.handleBlur
|
|
141
|
-
}, null),
|
|
142
|
-
h:
|
|
141
|
+
}, null), x = q.call(this, {
|
|
142
|
+
h: P,
|
|
143
143
|
template: this.$props.calendar,
|
|
144
|
-
defaultRendering:
|
|
144
|
+
defaultRendering: w
|
|
145
145
|
});
|
|
146
146
|
return a("div", {
|
|
147
147
|
onKeydown: this.handleKeyDown,
|
|
148
|
-
class:
|
|
148
|
+
class: _,
|
|
149
149
|
tabindex: -1
|
|
150
150
|
}, [a("div", {
|
|
151
151
|
class: "k-datetime-buttongroup"
|
|
152
152
|
}, [a(L, {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
selected: this.currentTab === "time",
|
|
165
|
-
togglable: !0,
|
|
166
|
-
onClick: this.handleTimeClick
|
|
167
|
-
}, u(h) ? h : {
|
|
168
|
-
default: () => [h]
|
|
169
|
-
})]
|
|
170
|
-
})]), a("div", {
|
|
153
|
+
layoutMode: "stretch",
|
|
154
|
+
value: this.currentTab,
|
|
155
|
+
items: [{
|
|
156
|
+
value: "date",
|
|
157
|
+
text: M
|
|
158
|
+
}, {
|
|
159
|
+
value: "time",
|
|
160
|
+
text: S
|
|
161
|
+
}],
|
|
162
|
+
onChange: this.handleTabChange
|
|
163
|
+
}, null)]), a("div", {
|
|
171
164
|
class: "k-datetime-selector"
|
|
172
165
|
}, [a("div", {
|
|
173
166
|
class: "k-datetime-calendar-wrap",
|
|
174
167
|
ref: "calendarWrap"
|
|
175
|
-
}, [
|
|
168
|
+
}, [x]), a("div", {
|
|
176
169
|
class: "k-datetime-time-wrap"
|
|
177
170
|
}, [a(z, {
|
|
178
171
|
key: 1,
|
|
179
172
|
onNowclick: this.handleNowClick,
|
|
180
173
|
disabled: e || this.currentTab !== "time",
|
|
181
174
|
ref: "timePart",
|
|
182
|
-
min: this.computedMinTime ||
|
|
183
|
-
max: this.computedMaxTime ||
|
|
175
|
+
min: this.computedMinTime || b,
|
|
176
|
+
max: this.computedMaxTime || T,
|
|
184
177
|
value: this.timeValue,
|
|
185
|
-
format:
|
|
186
|
-
steps:
|
|
178
|
+
format: y,
|
|
179
|
+
steps: B,
|
|
187
180
|
onChange: this.handleTimeListContainerChange,
|
|
188
181
|
onFocus: this.handleFocus,
|
|
189
182
|
onBlur: this.handleBlur
|
|
190
183
|
}, null)])]), a("div", {
|
|
191
184
|
class: "k-datetime-footer k-actions k-actions-stretched"
|
|
192
|
-
}, [t && a(
|
|
185
|
+
}, [t && a(p, {
|
|
193
186
|
type: "button",
|
|
194
187
|
ref: "cancelButton",
|
|
195
188
|
class: "k-time-cancel",
|
|
196
189
|
onClick: this.handleReject,
|
|
197
190
|
title: n,
|
|
198
191
|
"aria-label": n
|
|
199
|
-
},
|
|
192
|
+
}, D(n) ? n : {
|
|
200
193
|
default: () => [n]
|
|
201
|
-
}), a(
|
|
194
|
+
}), a(p, {
|
|
202
195
|
type: "button",
|
|
203
196
|
ref: "acceptButton",
|
|
204
197
|
disabled: !this.hasDateValue,
|
|
@@ -207,7 +200,7 @@ const ne = /* @__PURE__ */ F({
|
|
|
207
200
|
onClick: this.handleAccept,
|
|
208
201
|
title: s,
|
|
209
202
|
"aria-label": s
|
|
210
|
-
},
|
|
203
|
+
}, D(s) ? s : {
|
|
211
204
|
default: () => [s]
|
|
212
205
|
})])]);
|
|
213
206
|
},
|
|
@@ -229,16 +222,16 @@ const ne = /* @__PURE__ */ F({
|
|
|
229
222
|
return this._calendar && this._calendar.$el ? this._calendar : null;
|
|
230
223
|
},
|
|
231
224
|
normalizeRange(e, t) {
|
|
232
|
-
return O(e, t ||
|
|
225
|
+
return O(e, t || g()) ? e : null;
|
|
233
226
|
},
|
|
234
227
|
hasActiveButton() {
|
|
235
228
|
return this._acceptButton ? W && (document.activeElement === this._acceptButton.$el || document.activeElement === this._cancelButton.$el) : !1;
|
|
236
229
|
},
|
|
237
230
|
mergeTime(e, t) {
|
|
238
|
-
return e && t ?
|
|
231
|
+
return e && t ? f(t, e) : t;
|
|
239
232
|
},
|
|
240
233
|
mergeDate(e, t) {
|
|
241
|
-
return e ?
|
|
234
|
+
return e ? f(e || g(), t) : t;
|
|
242
235
|
},
|
|
243
236
|
move(e) {
|
|
244
237
|
if (e === "right" && this.currentTab === "time" || e === "left" && this.currentTab === "date")
|
|
@@ -247,8 +240,8 @@ const ne = /* @__PURE__ */ F({
|
|
|
247
240
|
this.shouldFocusPart = !0, this.currentTab = t;
|
|
248
241
|
},
|
|
249
242
|
handleReject(e) {
|
|
250
|
-
this.dateValue = this.$props.value, this.timeValue = this.$props.value ||
|
|
251
|
-
const t = this.mergeDate(this.$props.value, this.$props.value ||
|
|
243
|
+
this.dateValue = this.$props.value, this.timeValue = this.$props.value || u;
|
|
244
|
+
const t = this.mergeDate(this.$props.value, this.$props.value || u), i = {
|
|
252
245
|
event: e,
|
|
253
246
|
target: this,
|
|
254
247
|
value: t
|
|
@@ -266,7 +259,7 @@ const ne = /* @__PURE__ */ F({
|
|
|
266
259
|
});
|
|
267
260
|
},
|
|
268
261
|
handleNowClick(e) {
|
|
269
|
-
this.timeValue =
|
|
262
|
+
this.timeValue = k(), this.handleAccept(e, k());
|
|
270
263
|
},
|
|
271
264
|
handleCalendarValueChange(e) {
|
|
272
265
|
e.event.stopPropagation(), this.dateValue = e.value, this.currentTab = "time", this.shouldFocusPart = !0;
|
|
@@ -274,11 +267,8 @@ const ne = /* @__PURE__ */ F({
|
|
|
274
267
|
handleTimeListContainerChange(e) {
|
|
275
268
|
this.timeValue = e;
|
|
276
269
|
},
|
|
277
|
-
|
|
278
|
-
e.
|
|
279
|
-
},
|
|
280
|
-
handleTimeClick(e) {
|
|
281
|
-
e.stopPropagation(), this.move("right");
|
|
270
|
+
handleTabChange(e) {
|
|
271
|
+
e === "date" ? this.move("left") : e === "time" && this.move("right");
|
|
282
272
|
},
|
|
283
273
|
handleKeyDown(e) {
|
|
284
274
|
const {
|
|
@@ -286,15 +276,15 @@ const ne = /* @__PURE__ */ F({
|
|
|
286
276
|
altKey: i
|
|
287
277
|
} = e;
|
|
288
278
|
switch (this.$emit("keydown", e), t) {
|
|
289
|
-
case
|
|
279
|
+
case o.enter:
|
|
290
280
|
!this.hasActiveButton() && this.hasDateValue && this.handleAccept(e);
|
|
291
281
|
return;
|
|
292
|
-
case
|
|
282
|
+
case o.left:
|
|
293
283
|
if (!i)
|
|
294
284
|
return;
|
|
295
285
|
this.move("left");
|
|
296
286
|
return;
|
|
297
|
-
case
|
|
287
|
+
case o.right:
|
|
298
288
|
if (!i)
|
|
299
289
|
return;
|
|
300
290
|
this.move("right");
|